import { FC, SVGAttributes } from 'react'; import styles from './close.module.scss'; export type CloseProps = SVGAttributes; /** * Close component * * Render a close svg icon. */ export const Close: FC = ({ className = '', ...props }) => { return ( ); };