mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-22 13:55:13 +02:00
29 lines
838 B
Svelte
29 lines
838 B
Svelte
<script lang="ts">
|
|
import { ContextMenu as ContextMenuPrimitive, type WithoutChild } from "bits-ui";
|
|
import ChevronRight from "@lucide/svelte/icons/chevron-right";
|
|
import { cn } from "$lib/utils.js";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
children,
|
|
inset,
|
|
...restProps
|
|
}: WithoutChild<ContextMenuPrimitive.SubTriggerProps> & {
|
|
inset?: boolean;
|
|
} = $props();
|
|
</script>
|
|
|
|
<ContextMenuPrimitive.SubTrigger
|
|
bind:ref
|
|
class={cn(
|
|
"data-[highlighted]:bg-accent data-[state=open]:bg-accent data-[highlighted]:text-accent-foreground data-[state=open]:text-accent-foreground flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none",
|
|
inset && "pl-8",
|
|
className
|
|
)}
|
|
{...restProps}
|
|
>
|
|
{@render children?.()}
|
|
<ChevronRight class="ml-auto size-4" />
|
|
</ContextMenuPrimitive.SubTrigger>
|