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