Function
DropdownMenuShortcut
({
className,
...props
}: React.ComponentProps<"span">)
Source from the content-addressed store, hash-verified
| 175 | } |
| 176 | |
| 177 | function DropdownMenuShortcut({ |
| 178 | className, |
| 179 | ...props |
| 180 | }: React.ComponentProps<"span">) { |
| 181 | return ( |
| 182 | <span |
| 183 | data-slot="dropdown-menu-shortcut" |
| 184 | className={cn( |
| 185 | "text-muted-foreground ml-auto text-xs tracking-widest", |
| 186 | className |
| 187 | )} |
| 188 | {...props} |
| 189 | /> |
| 190 | ) |
| 191 | } |
| 192 | |
| 193 | function DropdownMenuSub({ |
| 194 | ...props |
Callers
nothing calls this directly
Tested by
no test coverage detected