react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 503 B
JavaScript
import React from 'react';
export default function ArrowLeftCircleOutlineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-arrow-left-circle-outline ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M18 11v2h-8l3.5 3.5-1.42 1.42L6.16 12l5.92-5.92L13.5 7.5 10 11h8M2 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 12m2 0a8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8 8 8 0 0 0-8 8z" />
</svg>
);
}