({ width = 50, height = 50 }: TwitterButtonProps)
| 8 | }; |
| 9 | |
| 10 | const TwitterButton = ({ width = 50, height = 50 }: TwitterButtonProps) => ( |
| 11 | <div> |
| 12 | <a |
| 13 | href="https://twitter.com/rogeriopvl" |
| 14 | target="_blank" |
| 15 | rel="me noopener noreferrer" |
| 16 | title="http.cat dev twitter" |
| 17 | > |
| 18 | <Image |
| 19 | src={twitterIcon} |
| 20 | alt="Twitter logo" |
| 21 | width={width} |
| 22 | height={height} |
| 23 | /> |
| 24 | </a> |
| 25 | </div> |
| 26 | ); |
| 27 | |
| 28 | export default TwitterButton; |
nothing calls this directly
no outgoing calls
no test coverage detected