@omtanke/react-material-icons
Version:
Google Fonts - Material Icons
17 lines (15 loc) • 407 B
JavaScript
const SvgArrowRightRound = (props) => {
return (
<svg
xmlns='http://www.w3.org/2000/svg'
height='1em'
viewBox='0 0 24 24'
width='1em'
className='svg-icon'
{...props}>
<path d='M0 0h24v24H0V0z' fill='none' />
<path d='M11.71 15.29l2.59-2.59a.996.996 0 000-1.41L11.71 8.7c-.63-.62-1.71-.18-1.71.71v5.17c0 .9 1.08 1.34 1.71.71z' />
</svg>
);
}
export default SvgArrowRightRound;