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