Quillan-Ronin / llama.cpp /tools /server /webui /src /lib /components /ui /sheet /sheet-description.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.DescriptionProps = $props(); | |
| </script> | |
| <SheetPrimitive.Description | |
| bind:ref | |
| data-slot="sheet-description" | |
| class={cn('text-sm text-muted-foreground', className)} | |
| {...restProps} | |
| /> | |