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