react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 799 B
JSX
import React, { Component } from 'react';
export default class ShovelIcon 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-shovel-icon ${this.props.className}`}><g><path d="M15.1 1.81l-2.83 2.83a2 2 0 0 0 0 2.83l1.41 1.41-4.55 4.55-2.82-2.83L4.89 12c-4.95 5-1.39 8.48-1.39 8.48S7 24 12 19.09l1.41-1.41-2.8-2.8 4.54-4.54 1.39 1.39a2 2 0 0 0 2.83 0L22.2 8.9l-7.1-7.09zm2.83 8.47L16.55 8.9l-1.44-1.44-1.4-1.4 1.41-1.41 4.23 4.23-1.42 1.4z"/></g></svg>
)
}
}