mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-08-31 15:43:25 +00:00
17 lines
381 B
Svelte
17 lines
381 B
Svelte
<script lang="ts">
|
|
import { Menubar as MenubarPrimitive } from "bits-ui";
|
|
import { cn } from "$lib/utils.js";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
...restProps
|
|
}: MenubarPrimitive.RootProps = $props();
|
|
</script>
|
|
|
|
<MenubarPrimitive.Root
|
|
bind:ref
|
|
class={cn("bg-background flex h-10 items-center space-x-1 rounded-md border p-1", className)}
|
|
{...restProps}
|
|
/>
|