react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 344 B
JavaScript
import React from 'react';
export default function ArrowRightIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-arrow-right ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M4 11v2h12l-5.5 5.5 1.42 1.42L19.84 12l-7.92-7.92L10.5 5.5 16 11H4z" />
</svg>
);
}