UNPKG

react-material-icon-svg

Version:
10 lines (8 loc) 545 B
import React from 'react'; export default function DumpTruckIcon(props) { return ( <svg viewBox="0 0 24 24" {...props} className={`rmi rmi-dump-truck ${props.className}`}> <path d="M20 8h-5v6H2v3h1a3 3 0 0 0 3 3 3 3 0 0 0 3-3h6a3 3 0 0 0 3 3 3 3 0 0 0 3-3h2v-5l-3-4M6 18.5A1.5 1.5 0 0 1 4.5 17 1.5 1.5 0 0 1 6 15.5 1.5 1.5 0 0 1 7.5 17 1.5 1.5 0 0 1 6 18.5m12 0a1.5 1.5 0 0 1-1.5-1.5 1.5 1.5 0 0 1 1.5-1.5 1.5 1.5 0 0 1 1.5 1.5 1.5 1.5 0 0 1-1.5 1.5M17 12V9.5h2.5l1.96 2.5H17m1-5h-4v6H3L1.57 8H1V6h12l1-1h4v2z" /> </svg> ); }