react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 429 B
JavaScript
import React from 'react';
export default function ArrowLeftCircleIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-arrow-left-circle ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M2 12A10 10 0 0 1 12 2a10 10 0 0 1 10 10 10 10 0 0 1-10 10A10 10 0 0 1 2 12m16-1h-8l3.5-3.5-1.42-1.42L6.16 12l5.92 5.92 1.42-1.42L10 13h8v-2z" />
</svg>
);
}