15 lines
424 B
Svelte
15 lines
424 B
Svelte
<script>
|
|
import { ContextMenu as ContextMenuPrimitive } from "bits-ui";
|
|
import { cn } from "$lib/utils.js";
|
|
|
|
let { ref = $bindable(null), class: className, ...restProps } = $props();
|
|
</script>
|
|
|
|
<ContextMenuPrimitive.SubContent
|
|
bind:ref
|
|
class={cn(
|
|
"z-50 min-w-[8rem] overflow-hidden rounded-md border bg-popover p-1 text-popover-foreground shadow-md focus:outline-none",
|
|
className,
|
|
)}
|
|
{...restProps}
|
|
/>
|