18 lines
384 B
Svelte
18 lines
384 B
Svelte
<script lang="ts">
|
|
import { cn } from '$lib/utils.js';
|
|
import { Dialog as DialogPrimitive } from 'bits-ui';
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
...restProps
|
|
}: DialogPrimitive.DescriptionProps = $props();
|
|
</script>
|
|
|
|
<DialogPrimitive.Description
|
|
bind:ref
|
|
data-slot="dialog-description"
|
|
class={cn('text-muted-foreground text-sm', className)}
|
|
{...restProps}
|
|
/>
|