react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 813 B
JSX
import React, { Component } from 'react';
export default class LeadPencilIcon 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-lead-pencil-icon ${this.props.className}`}><path d="M16.836 2.734c-.386 0-.767.147-1.065.44l-2.119 2.119 5.303 5.303 2.119-2.12a1.487 1.487 0 0 0 0-2.119l-3.179-3.183a1.5 1.5 0 0 0-1.059-.44zM12.944 6l-8.1 8.105 2.558.284.177 2.285 2.28.175.287 2.559 8.101-8.105m-14 3.74l-1.732 6.69 6.684-1.793-.244-2.157-2.31-.176-.18-2.316"/></svg>
)
}
}