react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 516 B
JavaScript
import React from 'react';
export default function CheckUnderlineCircleOutlineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-check-underline-circle-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-10A10 10 0 0 0 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m-5-5h10v2H7v-2m3.3-3.8L8.4 9.3 7 10.7l3.3 3.3L17 7.3l-1.4-1.4-5.3 5.3z" />
</svg>
);
}