/** * @interface Props * @param {string} [className] - The CSS class name(s) for styling purposes. */ const ArrowRight = (props) => { return ( <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width={20} height={20} {...props} > <path fillRule="evenodd" d="M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z" /> </svg> ); }; export default ArrowRight;