Function
MenubarShortcut
({
className,
...props
}: React.ComponentProps<"span">)
Source from the content-addressed store, hash-verified
| 195 | } |
| 196 | |
| 197 | function MenubarShortcut({ |
| 198 | className, |
| 199 | ...props |
| 200 | }: React.ComponentProps<"span">) { |
| 201 | return ( |
| 202 | <span |
| 203 | data-slot="menubar-shortcut" |
| 204 | className={cn( |
| 205 | "text-muted-foreground ml-auto text-xs tracking-widest", |
| 206 | className |
| 207 | )} |
| 208 | {...props} |
| 209 | /> |
| 210 | ) |
| 211 | } |
| 212 | |
| 213 | function MenubarSub({ |
| 214 | ...props |
Callers
nothing calls this directly
Tested by
no test coverage detected