({ onClick }: ApiKeyButtonProps)
| 6 | } |
| 7 | |
| 8 | export function ApiKeyButton({ onClick }: ApiKeyButtonProps) { |
| 9 | return ( |
| 10 | <Button |
| 11 | onClick={onClick} |
| 12 | className="border-[3px] border-black bg-green-400 px-4 py-2 text-black shadow-[4px_4px_0_0_#000000] transition-transform hover:-translate-x-0.5 hover:-translate-y-0.5 hover:bg-green-400" |
| 13 | > |
| 14 | <Key className="mr-2 h-5 w-5" /> |
| 15 | Use Your API Key |
| 16 | </Button> |
| 17 | ); |
| 18 | } |
nothing calls this directly
no outgoing calls
no test coverage detected