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