react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 603 B
JavaScript
import React from 'react';
export default function DumpTruckIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-dump-truck ${props.className}`}
viewBox="0 0 24 24"
>
<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>
);
}