mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2026-05-02 16:07:49 +00:00
30 lines
960 B
Svelte
30 lines
960 B
Svelte
<script lang="ts">
|
|
import { ContextMenu as ContextMenuPrimitive } from "bits-ui";
|
|
import { cn, type WithoutChild } from "$lib/utils.js";
|
|
import ChevronRightIcon from '@lucide/svelte/icons/chevron-right';
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
inset,
|
|
children,
|
|
...restProps
|
|
}: WithoutChild<ContextMenuPrimitive.SubTriggerProps> & {
|
|
inset?: boolean;
|
|
} = $props();
|
|
</script>
|
|
|
|
<ContextMenuPrimitive.SubTrigger
|
|
bind:ref
|
|
data-slot="context-menu-sub-trigger"
|
|
data-inset={inset}
|
|
class={cn(
|
|
"focus:bg-accent focus:text-accent-foreground data-open:bg-accent data-open:text-accent-foreground gap-1.5 rounded-md px-1.5 py-1 text-sm data-inset:pl-7 [&_svg:not([class*='size-'])]:size-4 flex cursor-default items-center outline-hidden select-none data-inset:ps-8 [&_svg]:pointer-events-none [&_svg]:shrink-0",
|
|
className
|
|
)}
|
|
{...restProps}
|
|
>
|
|
{@render children?.()}
|
|
<ChevronRightIcon class="ml-auto" />
|
|
</ContextMenuPrimitive.SubTrigger>
|