react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 861 B
JSX
import React, { Component } from 'react';
export default class TruckDeliveryIcon 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-truck-delivery-icon ${this.props.className}`}><path d="M2.998 3.999A1.997 1.997 0 0 0 1 5.996v11.001h1.997a3.001 3.001 0 1 0 6 0H15a3 3 0 1 0 6.001 0h1.996v-5l-2.997-4h-2.997V4M10 6L13.999 10 10 13.999V11H3.999V9H10m7.003.498h2.5l1.962 2.5h-4.462M6 15.498a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3zm11.996 0c.832 0 1.506.674 1.506 1.5a1.5 1.5 0 0 1-1.506 1.5 1.5 1.5 0 0 1 0-3z"/></svg>
)
}
}