import Link from 'next/link' import {ElementType} from 'react' type SocialLink = { href: string icon: ElementType } export function SocialLink({icon: Icon, href}: SocialLink) { return ( ) }