mirror of
https://github.com/faiztyanirh/clqms-shadcn-v1.git
synced 2026-04-25 02:22:06 +07:00
17 lines
340 B
Svelte
17 lines
340 B
Svelte
<script>
|
|
import { AlertDialog as AlertDialogPrimitive } from "bits-ui";
|
|
import { cn } from "$lib/utils.js";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
...restProps
|
|
} = $props();
|
|
</script>
|
|
|
|
<AlertDialogPrimitive.Title
|
|
bind:ref
|
|
data-slot="alert-dialog-title"
|
|
class={cn("text-lg font-semibold", className)}
|
|
{...restProps}
|
|
/> |