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