import classNames from 'classnames'; import { type AnchorHTMLAttributes, type FunctionComponent, type SVGAttributes } from 'react'; import { Tooltip } from '../Tooltip'; import styles from './IconButton.module.scss'; interface Props extends AnchorHTMLAttributes { 'aria-label': string; children?: never; href: string; Icon: FunctionComponent>; tooltip: string; } export const Link: FunctionComponent = ({ className, Icon, tooltip, ...props }) => { return ( ); };