({ className, children }: ShortcutIconProps)
| 4 | }; |
| 5 | |
| 6 | export function ShortcutIcon({ className, children }: ShortcutIconProps) { |
| 7 | return ( |
| 8 | <span |
| 9 | className={`flex items-center justify-center rounded ${className ?? ""}`} |
| 10 | > |
| 11 | {children} |
| 12 | </span> |
| 13 | ); |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected