1<script lang="ts">
 2	import { Dialog as SheetPrimitive } from 'bits-ui';
 3	import { cn } from '$lib/components/ui/utils.js';
 4
 5	let {
 6		ref = $bindable(null),
 7		class: className,
 8		...restProps
 9	}: SheetPrimitive.TitleProps = $props();
10</script>
11
12<SheetPrimitive.Title
13	bind:ref
14	data-slot="sheet-title"
15	class={cn('font-semibold text-foreground', className)}
16	{...restProps}
17/>