import { FC } from 'react'; import styles from './close.module.scss'; export type CloseProps = { /** * Should the svg be hidden from assistive technologies? */ 'aria-hidden'?: boolean; /** * Set additional classnames to the icon. */ className?: string; }; /** * Close component * * Render a close svg icon. */ const Close: FC = ({ className = '', ...props }) => { return ( ); }; export default Close;