Files
MediaManager/web/src/lib/components/ui/menubar/menubar-sub-content.svelte
2025-12-06 22:39:09 +01:00

20 lines
432 B
Svelte

<script lang="ts">
import { Menubar as MenubarPrimitive } from 'bits-ui';
import { cn } from '$lib/utils.js';
let {
ref = $bindable(null),
class: className,
...restProps
}: MenubarPrimitive.SubContentProps = $props();
</script>
<MenubarPrimitive.SubContent
bind:ref
class={cn(
'z-50 min-w-max rounded-md border bg-popover p-1 text-popover-foreground shadow-lg focus:outline-none',
className
)}
{...restProps}
/>