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