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