21 lines
479 B
Svelte
21 lines
479 B
Svelte
<script lang="ts">
|
|
import { cn, type WithElementRef } from "@/lib/utils.js";
|
|
import type { HTMLAttributes } from "svelte/elements";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
children,
|
|
...restProps
|
|
}: WithElementRef<HTMLAttributes<HTMLLIElement>, HTMLLIElement> = $props();
|
|
</script>
|
|
|
|
<li
|
|
bind:this={ref}
|
|
data-slot="sidebar-menu-item"
|
|
data-sidebar="menu-item"
|
|
class={cn("group/menu-item relative", className)}
|
|
{...restProps}
|
|
>
|
|
{@render children?.()}
|
|
</li>
|