22 lines
498 B
Svelte
22 lines
498 B
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<HTMLUListElement>, HTMLUListElement> = $props();
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<ul
|
||
|
|
bind:this={ref}
|
||
|
|
data-slot="sidebar-menu"
|
||
|
|
data-sidebar="menu"
|
||
|
|
class={cn('flex w-full min-w-0 flex-col gap-1', className)}
|
||
|
|
{...restProps}
|
||
|
|
>
|
||
|
|
{@render children?.()}
|
||
|
|
</ul>
|