UNPKG

react-material-icon-svg

Version:
18 lines (14 loc) 798 B
import React, { Component } from 'react'; export default class TruckFastIcon 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-fast-icon ${this.props.className}`}><path d="M3 13.5L2.25 12H7.5l-.6-1.5H2L1.25 9h7.8l-.6-1.5H1.111L.25 6H4a2 2 0 0 1 2-2h12v4h3l3 4v5h-2a3 3 0 1 1-6 0h-4a3 3 0 1 1-6 0H4v-3.5H3zm16 5a1.5 1.5 0 1 0-.001-3.001A1.5 1.5 0 0 0 19 18.5zm1.5-9H18V12h4.464L20.5 9.5zM9 18.5a1.5 1.5 0 1 0-.001-3 1.5 1.5 0 0 0 0 3z"/></svg> ) } }