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