Function
ContextMenuSeparator
({
className,
...props
}: React.ComponentProps<typeof ContextMenuPrimitive.Separator>)
Source from the content-addressed store, hash-verified
| 205 | } |
| 206 | |
| 207 | function ContextMenuSeparator({ |
| 208 | className, |
| 209 | ...props |
| 210 | }: React.ComponentProps<typeof ContextMenuPrimitive.Separator>) { |
| 211 | return ( |
| 212 | <ContextMenuPrimitive.Separator |
| 213 | data-slot="context-menu-separator" |
| 214 | className={cn("bg-border -mx-1 my-1 h-px", className)} |
| 215 | {...props} |
| 216 | /> |
| 217 | ) |
| 218 | } |
| 219 | |
| 220 | function ContextMenuShortcut({ |
| 221 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected