Function
ContextMenuShortcut
({
className,
...props
}: React.ComponentProps<"span">)
Source from the content-addressed store, hash-verified
| 218 | } |
| 219 | |
| 220 | function ContextMenuShortcut({ |
| 221 | className, |
| 222 | ...props |
| 223 | }: React.ComponentProps<"span">) { |
| 224 | return ( |
| 225 | <span |
| 226 | data-slot="context-menu-shortcut" |
| 227 | className={cn( |
| 228 | "text-muted-foreground ml-auto text-xs tracking-widest", |
| 229 | className |
| 230 | )} |
| 231 | {...props} |
| 232 | /> |
| 233 | ) |
| 234 | } |
| 235 | |
| 236 | export { |
| 237 | ContextMenu, |
Callers
nothing calls this directly
Tested by
no test coverage detected