13 lines
322 B
Svelte
13 lines
322 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.Description
|
||
|
bind:ref
|
||
|
class={cn("text-sm text-muted-foreground", className)}
|
||
|
{...restProps}
|
||
|
/>
|