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