import Link from 'next/link' import classNames from 'classnames' export interface IconLinkProps { selected?: boolean href: string title?: string className?: string } export const IconLink: React.FC> = ( props ) => { const { children, selected, href, title, className } = props return (
{children}
) }