Spaces:
Running
Running
| <script lang="ts"> | |
| import { Menubar as MenubarPrimitive } from "bits-ui"; | |
| import { cn } from "$lib/utils.js"; | |
| let { | |
| ref = $bindable(null), | |
| class: className, | |
| ...restProps | |
| }: MenubarPrimitive.TriggerProps = $props(); | |
| </script> | |
| <MenubarPrimitive.Trigger | |
| bind:ref | |
| data-slot="menubar-trigger" | |
| class={cn( | |
| "focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground flex items-center rounded-sm px-2 py-1 text-sm font-medium outline-hidden select-none", | |
| className | |
| )} | |
| {...restProps} | |
| /> | |