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