Quillan-Ronin / llama.cpp /tools /server /webui /src /lib /components /ui /sheet /sheet-title.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} | |
| /> | |