Quillan-Ronin / llama.cpp /tools /server /webui /src /lib /components /ui /sheet /sheet-header.svelte
| <script lang="ts"> | |
| import type { HTMLAttributes } from 'svelte/elements'; | |
| import { cn, type WithElementRef } from '$lib/components/ui/utils.js'; | |
| let { | |
| ref = $bindable(null), | |
| class: className, | |
| children, | |
| ...restProps | |
| } | |
| </script> | |
| <div | |
| bind:this={ref} | |
| data-slot="sheet-header" | |
| class={cn('flex flex-col gap-1.5 p-4', className)} | |
| {...restProps} | |
| > | |
| {@render children?.()} | |
| </div> | |