Function
DropdownMenuSeparator
({
className,
...props
}: React.ComponentProps<typeof DropdownMenuPrimitive.Separator>)
Source from the content-addressed store, hash-verified
| 164 | } |
| 165 | |
| 166 | function DropdownMenuSeparator({ |
| 167 | className, |
| 168 | ...props |
| 169 | }: React.ComponentProps<typeof DropdownMenuPrimitive.Separator>) { |
| 170 | return ( |
| 171 | <DropdownMenuPrimitive.Separator |
| 172 | data-slot="dropdown-menu-separator" |
| 173 | className={cn("bg-border -mx-1 my-1 h-px", className)} |
| 174 | {...props} |
| 175 | /> |
| 176 | ) |
| 177 | } |
| 178 | |
| 179 | function DropdownMenuShortcut({ |
| 180 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected