Function
DropdownMenuSeparator
({
className,
...props
}: MenuPrimitive.Separator.Props)
Source from the content-addressed store, hash-verified
| 222 | } |
| 223 | |
| 224 | function DropdownMenuSeparator({ |
| 225 | className, |
| 226 | ...props |
| 227 | }: MenuPrimitive.Separator.Props) { |
| 228 | return ( |
| 229 | <MenuPrimitive.Separator |
| 230 | data-slot="dropdown-menu-separator" |
| 231 | className={cn("bg-border -mx-1 h-px", className)} |
| 232 | {...props} |
| 233 | /> |
| 234 | ); |
| 235 | } |
| 236 | |
| 237 | function DropdownMenuShortcut({ |
| 238 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected