react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 733 B
JSX
import React, { Component } from 'react';
export default class CarPickupIcon 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-car-pickup-icon ${this.props.className}`}><path d="M16 6l-5.5.004V10H1v5h2a3 3 0 1 0 6 0h6a3 3 0 1 0 6 0h2v-3c0-1.11-.89-2-2-2h-2l-3-4zm-4 1.5h3.5l1.96 2.5H12V7.5zm-6 6a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3zm12 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3z"/></svg>
)
}
}