mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-09-05 01:42:54 +00:00
28 lines
746 B
Svelte
28 lines
746 B
Svelte
![]() |
<script lang="ts">
|
||
|
import { Menubar as MenubarPrimitive } from "bits-ui";
|
||
|
import { cn, flyAndScale } from "$lib/utils.js";
|
||
|
|
||
|
type $$Props = MenubarPrimitive.SubContentProps;
|
||
|
type $$Events = MenubarPrimitive.SubContentEvents;
|
||
|
|
||
|
let className: $$Props["class"] = undefined;
|
||
|
export let transition: $$Props["transition"] = flyAndScale;
|
||
|
export let transitionConfig: $$Props["transitionConfig"] = { x: -10, y: 0 };
|
||
|
export { className as class };
|
||
|
</script>
|
||
|
|
||
|
<MenubarPrimitive.SubContent
|
||
|
{transition}
|
||
|
{transitionConfig}
|
||
|
class={cn(
|
||
|
"z-50 min-w-max rounded-md border bg-popover p-1 text-popover-foreground focus:outline-none",
|
||
|
className
|
||
|
)}
|
||
|
{...$$restProps}
|
||
|
on:focusout
|
||
|
on:pointermove
|
||
|
on:keydown
|
||
|
>
|
||
|
<slot />
|
||
|
</MenubarPrimitive.SubContent>
|