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