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