react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 786 B
JSX
import React, { Component } from 'react';
export default class CheckboxMarkedCircleOutlineIcon extends Component {
static defaultProps = {
className: ''
};
constructor(props) {
super(props);
}
render() {
return (
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" baseProfile="full" viewBox="0 0 24.00 24.00" {...this.props} className={`material material-checkbox-marked-circle-outline-icon ${this.props.className}`}><path d="M20 11.998a8 8 0 1 1-8-8c.763 0 1.5.114 2.2.314l1.572-1.572A9.96 9.96 0 0 0 12 1.998c-5.523 0-10 4.477-10 10s4.477 10 10 10 10-4.477 10-10M7.913 10.084L6.5 11.498l4.5 4.5 10-10-1.414-1.414L11 13.17l-3.086-3.086z"/></svg>
)
}
}