mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-09-02 16:52:31 +00:00
32 lines
850 B
Svelte
32 lines
850 B
Svelte
![]() |
<script lang="ts">
|
||
|
import { ContextMenu as ContextMenuPrimitive } from "bits-ui";
|
||
|
import { cn } from "$lib/utils.js";
|
||
|
|
||
|
type $$Props = ContextMenuPrimitive.ItemProps & {
|
||
|
inset?: boolean;
|
||
|
};
|
||
|
type $$Events = ContextMenuPrimitive.ItemEvents;
|
||
|
|
||
|
let className: $$Props["class"] = undefined;
|
||
|
export let inset: $$Props["inset"] = undefined;
|
||
|
export { className as class };
|
||
|
</script>
|
||
|
|
||
|
<ContextMenuPrimitive.Item
|
||
|
class={cn(
|
||
|
"relative flex cursor-default select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none data-[disabled]:pointer-events-none data-[highlighted]:bg-accent data-[highlighted]:text-accent-foreground data-[disabled]:opacity-50",
|
||
|
inset && "pl-8",
|
||
|
className
|
||
|
)}
|
||
|
{...$$restProps}
|
||
|
on:click
|
||
|
on:keydown
|
||
|
on:focusin
|
||
|
on:focusout
|
||
|
on:pointerdown
|
||
|
on:pointerleave
|
||
|
on:pointermove
|
||
|
>
|
||
|
<slot />
|
||
|
</ContextMenuPrimitive.Item>
|