import type React from 'react'; import classNames from 'classnames'; interface RightArrowIconProps { className?: string; } const RightArrowIcon: React.FC = ({ className }) => { return ( ); }; export default RightArrowIcon;