react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 466 B
JavaScript
import React from 'react';
export default function ArrowLeftDropCircleOutlineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-arrow-left-drop-circle-outline ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M22 12A10 10 0 0 0 12 2 10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10m-2 0a8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8 8 8 0 0 1 8 8m-6-5l-5 5 5 5V7z" />
</svg>
);
}