react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 432 B
JavaScript
import React from 'react';
export default function ArrowRightCircleIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-arrow-right-circle ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M22 12a10 10 0 0 1-10 10A10 10 0 0 1 2 12 10 10 0 0 1 12 2a10 10 0 0 1 10 10M6 13h8l-3.5 3.5 1.42 1.42L17.84 12l-5.92-5.92L10.5 7.5 14 11H6v2z" />
</svg>
);
}