Supra_App/src/lib/components/ui/alert-dialog/alert-dialog-title.svelte
pakintada@gmail.com e9192c8607 change: remove loading while request recipe
progress: WIP editing flow

Signed-off-by: pakintada@gmail.com <Pakin>
2026-03-24 17:52:53 +07:00

17 lines
508 B
Svelte

<script lang="ts">
import { AlertDialog as AlertDialogPrimitive } from "bits-ui";
import { cn } from "$lib/utils.js";
let {
ref = $bindable(null),
class: className,
...restProps
}: AlertDialogPrimitive.TitleProps = $props();
</script>
<AlertDialogPrimitive.Title
bind:ref
data-slot="alert-dialog-title"
class={cn("text-base font-medium sm:group-data-[size=default]/alert-dialog-content:group-has-data-[slot=alert-dialog-media]/alert-dialog-content:col-start-2", className)}
{...restProps}
/>