mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-27 16:25:12 +02:00
22 lines
538 B
Svelte
22 lines
538 B
Svelte
<script lang="ts">
|
|
import {cn} from "$lib/utils.js";
|
|
import type {WithElementRef} from "bits-ui";
|
|
import type {HTMLAttributes} from "svelte/elements";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
children,
|
|
...restProps
|
|
}: WithElementRef<HTMLAttributes<HTMLLIElement>, HTMLLIElement> = $props();
|
|
</script>
|
|
|
|
<li
|
|
{...restProps}
|
|
bind:this={ref}
|
|
class={cn("group/menu-item relative", className)}
|
|
data-sidebar="menu-item"
|
|
>
|
|
{@render children?.()}
|
|
</li>
|