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