react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 730 B
JSX
import React, { Component } from 'react';
export default class ScrewdriverIcon 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-screwdriver-icon ${this.props.className}`}><path d="M18 1.826c-.511 0-1.022.196-1.414.588L8 11l1.5 1.5L6 16H4l-2 4 2 2 4-2v-2l3.5-3.5L13 16l8.586-8.586c.626-.914.783-2.045 0-2.828l-2.172-2.172A1.994 1.994 0 0 0 18 1.826zM18 4l2 2-7 7-2-2 7-7z"/></svg>
)
}
}