mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-20 21:05:15 +02:00
24 lines
605 B
Svelte
24 lines
605 B
Svelte
<script lang="ts">
|
|
import { Menubar as MenubarPrimitive } from 'bits-ui';
|
|
import { cn } from '$lib/utils.js';
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
inset,
|
|
...restProps
|
|
}: MenubarPrimitive.ItemProps & {
|
|
inset?: boolean;
|
|
} = $props();
|
|
</script>
|
|
|
|
<MenubarPrimitive.Item
|
|
bind:ref
|
|
class={cn(
|
|
'relative flex cursor-default items-center rounded-sm px-2 py-1.5 text-sm outline-none select-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[highlighted]:bg-accent data-[highlighted]:text-accent-foreground',
|
|
inset && 'pl-8',
|
|
className
|
|
)}
|
|
{...restProps}
|
|
/>
|