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