Function
CommandShortcut
({
className,
...props
}: React.ComponentProps<"span">)
Source from the content-addressed store, hash-verified
| 156 | } |
| 157 | |
| 158 | function CommandShortcut({ |
| 159 | className, |
| 160 | ...props |
| 161 | }: React.ComponentProps<"span">) { |
| 162 | return ( |
| 163 | <span |
| 164 | data-slot="command-shortcut" |
| 165 | className={cn( |
| 166 | "text-muted-foreground ml-auto text-xs tracking-widest", |
| 167 | className |
| 168 | )} |
| 169 | {...props} |
| 170 | /> |
| 171 | ) |
| 172 | } |
| 173 | |
| 174 | export { |
| 175 | Command, |
Callers
nothing calls this directly
Tested by
no test coverage detected