import { FC } from 'react'; interface IconXProps { className?: string; } const IconX: FC = ({ className }) => { return ( ); }; export default IconX;