mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-18 01:54:00 +02:00
25 lines
603 B
Svelte
25 lines
603 B
Svelte
<script lang="ts">
|
|
import { ContextMenu as ContextMenuPrimitive } from 'bits-ui';
|
|
import { cn } from '$lib/utils.js';
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
portalProps,
|
|
...restProps
|
|
}: ContextMenuPrimitive.ContentProps & {
|
|
portalProps?: ContextMenuPrimitive.PortalProps;
|
|
} = $props();
|
|
</script>
|
|
|
|
<ContextMenuPrimitive.Portal {...portalProps}>
|
|
<ContextMenuPrimitive.Content
|
|
class={cn(
|
|
'z-50 min-w-[8rem] rounded-md border bg-popover p-1 text-popover-foreground shadow-md focus:outline-none',
|
|
className
|
|
)}
|
|
{...restProps}
|
|
bind:ref
|
|
/>
|
|
</ContextMenuPrimitive.Portal>
|