(props)
| 2 | import Link from "next/link"; |
| 3 | |
| 4 | const IconButton = (props) => { |
| 5 | return ( |
| 6 | <Link |
| 7 | href={props.url} |
| 8 | target="_blank" |
| 9 | rel="noopener noreferrer" |
| 10 | legacyBehavior |
| 11 | > |
| 12 | <Image |
| 13 | src={props.src} |
| 14 | width={props.width} |
| 15 | height={props.height} |
| 16 | alt={props.alt} |
| 17 | className={props.className} |
| 18 | /> |
| 19 | </Link> |
| 20 | ); |
| 21 | }; |
| 22 | |
| 23 | export default IconButton; |
nothing calls this directly
no outgoing calls
no test coverage detected