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