react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 547 B
JavaScript
import React from 'react';
export default function CircleEditOutlineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-circle-edit-outline ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M12 2A10 10 0 0 0 2 12a10 10 0 0 0 10 10 10 10 0 0 0 10-10h-2a8 8 0 0 1-8 8 8 8 0 0 1-8-8 8 8 0 0 1 8-8V2m6.78 1a.69.69 0 0 0-.48.2l-1.22 1.21 2.5 2.5L20.8 5.7c.26-.26.26-.7 0-.95L19.25 3.2c-.13-.13-.3-.2-.47-.2m-2.41 2.12L9 12.5V15h2.5l7.37-7.38-2.5-2.5z" />
</svg>
);
}