Spaces:
Running
Running
File size: 281 Bytes
6ce4ca6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<script lang="ts">
import { Menubar as MenubarPrimitive } from "bits-ui";
let {
ref = $bindable(null),
...restProps
}: MenubarPrimitive.GroupProps & {
inset?: boolean;
} = $props();
</script>
<MenubarPrimitive.Group bind:ref data-slot="menubar-group" {...restProps} />
|