TempMonitor/src/lib/components/ui/context-menu/context-menu-sub-content.svelte
2025-05-18 13:18:46 +02:00

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}
/>