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