react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 794 B
JSX
import React, { Component } from 'react';
export default class PencilCircleOutlineIcon 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-pencil-circle-outline-icon ${this.props.className}`}><path d="M7 14.94l6.06-6.06 2.06 2.06L9.06 17H7v-2.06zM12 20a8 8 0 1 0 0-16 8 8 0 0 0 0 16zm4.7-10.65l-1 1-2.05-2.05 1-1c.21-.22.56-.22.77 0l1.28 1.28c.22.21.22.56 0 .77M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12C2 6.5 6.47 2 12 2"/></svg>
)
}
}