mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-24 01:35:35 +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
|
|
bind:this={ref}
|
|
data-sidebar="menu-item"
|
|
class={cn('group/menu-item relative', className)}
|
|
{...restProps}
|
|
>
|
|
{@render children?.()}
|
|
</li>
|