react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 741 B
JSX
import React, { Component } from 'react';
export default class ForkliftIcon 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-forklift-icon ${this.props.className}`}><path d="M6 4v7H4c-1.11 0-2 .89-2 2v4a3 3 0 0 0 6 0h2a3 3 0 0 0 6 0v-4l-4-9H6zm11 1v14h5v-1.5h-3.5V5H17zm-9.5.5h3.7l3.3 7.5h-7V5.5zM5 15.5a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3zm8 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3z"/></svg>
)
}
}