Function
MenubarSeparator
({
className,
...props
}: React.ComponentProps<typeof MenubarPrimitive.Separator>)
Source from the content-addressed store, hash-verified
| 182 | } |
| 183 | |
| 184 | function MenubarSeparator({ |
| 185 | className, |
| 186 | ...props |
| 187 | }: React.ComponentProps<typeof MenubarPrimitive.Separator>) { |
| 188 | return ( |
| 189 | <MenubarPrimitive.Separator |
| 190 | data-slot="menubar-separator" |
| 191 | className={cn("bg-border -mx-1 my-1 h-px", className)} |
| 192 | {...props} |
| 193 | /> |
| 194 | ) |
| 195 | } |
| 196 | |
| 197 | function MenubarShortcut({ |
| 198 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected