Files
gpx.studio/website/src/lib/components/ui/menubar/menubar.svelte

17 lines
381 B
Svelte
Raw Normal View History

2024-04-08 17:12:39 +02:00
<script lang="ts">
import { Menubar as MenubarPrimitive } from "bits-ui";
import { cn } from "$lib/utils.js";
2025-06-08 16:32:41 +02:00
let {
ref = $bindable(null),
class: className,
...restProps
}: MenubarPrimitive.RootProps = $props();
2024-04-08 17:12:39 +02:00
</script>
<MenubarPrimitive.Root
2025-06-08 16:32:41 +02:00
bind:ref
class={cn("bg-background flex h-10 items-center space-x-1 rounded-md border p-1", className)}
{...restProps}
/>