Files
llama.cpp-mtp-turboquant/tools/server/webui/src/lib/components/ui/sheet/sheet-title.svelte
T
2025-09-17 19:29:13 +02:00

18 lines
376 B
Svelte

<script lang="ts">
import { Dialog as SheetPrimitive } from 'bits-ui';
import { cn } from '$lib/components/ui/utils.js';
let {
ref = $bindable(null),
class: className,
...restProps
}: SheetPrimitive.TitleProps = $props();
</script>
<SheetPrimitive.Title
bind:ref
data-slot="sheet-title"
class={cn('font-semibold text-foreground', className)}
{...restProps}
/>