Quillan-Ronin / llama.cpp /tools /server /webui /src /lib /components /ui /sidebar /sidebar-inset.svelte
| <script lang="ts"> | |
| import { cn, type WithElementRef } from '$lib/components/ui/utils.js'; | |
| import type { HTMLAttributes } from 'svelte/elements'; | |
| let { | |
| ref = $bindable(null), | |
| class: className, | |
| children, | |
| ...restProps | |
| }: WithElementRef<HTMLAttributes<HTMLElement>> = $props(); | |
| </script> | |
| <main | |
| bind:this={ref} | |
| data-slot="sidebar-inset" | |
| class={cn( | |
| 'relative flex w-full flex-1 flex-col', | |
| 'md:peer-data-[variant=inset]:m-2 md:peer-data-[variant=inset]:ml-0 md:peer-data-[variant=inset]:rounded-xl md:peer-data-[variant=inset]:shadow-sm md:peer-data-[variant=inset]:peer-data-[state=collapsed]:ml-2', | |
| className | |
| )} | |
| {...restProps} | |
| > | |
| {@render children?.()} | |
| </main> | |