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