@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
31 lines • 2.55 kB
JavaScript
import * as React from "react";
function TruckIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M6 2.84c0-.464.353-.84.79-.84h6.315C14.704 2 16 3.379 16 5.08V8h-1.579V5.08c0-.773-.589-1.4-1.316-1.4H6.79C6.353 3.68 6 3.304 6 2.84",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M4 6c0-.552.358-1 .8-1h6.4c.442 0 .8.448.8 1s-.358 1-.8 1H4.8C4.358 7 4 6.552 4 6M7.845 17.636c-.343 0-.672.144-.914.4-.37.39-.48.976-.28 1.486s.67.842 1.194.842.994-.333 1.194-.842c.2-.51.09-1.096-.28-1.486a1.26 1.26 0 0 0-.914-.4m-2.01-.781A2.74 2.74 0 0 1 7.845 16c.754 0 1.478.316 2.011.879m0 0c.814.858 1.057 2.148.617 3.27C10.033 21.268 8.995 22 7.845 22s-2.188-.73-2.628-1.852c-.442-1.128-.198-2.447.618-3.293m11.32.781c-.343 0-.672.144-.914.4-.37.39-.48.976-.28 1.486s.671.842 1.194.842.995-.333 1.195-.842c.2-.51.09-1.096-.28-1.486a1.26 1.26 0 0 0-.915-.4m-2.011-.757A2.77 2.77 0 0 1 17.155 16c.761 0 1.516.323 2.012.879.844.855 1.077 2.146.616 3.27-.44 1.12-1.477 1.851-2.628 1.851-1.15 0-2.188-.73-2.628-1.852-.44-1.12-.197-2.411.617-3.269",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M12.482 8.22a.78.78 0 0 1 .544-.22h6.154c.276 0 .53.144.667.378l1.759 3a.73.73 0 0 1-.003.748.77.77 0 0 1-.665.374h-7.912a.78.78 0 0 1-.544-.22.74.74 0 0 1-.226-.53v-3a.74.74 0 0 1 .226-.53M2.769 14h18.462c.204 0 .4.079.544.22a.74.74 0 0 1 .225.53v3.5c0 .966-.804 1.75-1.795 1.75h-.368c.163-.5.198-.964.159-1.378l-.077-.413-.136-.403c-.158-.35-.262-.536-.508-.806-.26-.319-.466-.49-1.019-.766-.472-.187-.752-.243-1.261-.223-1.03.081-1.731.56-2.303 1.489-.382.737-.386 1.476-.382 1.5h-3.62c-.05-.34-.084-.813-.168-1.013-.394-.94-.761-1.297-1.57-1.75-.593-.24-.934-.273-1.567-.197 0 0-.726.192-1.112.46-.383.265-.505.382-.815.869-.311.486-.346.915-.418 1.131.169-.638-.296.419.177 1.648C3.092 20.148 2 18.321 2 16.25v-1.5a.76.76 0 0 1 .77-.75M2 9c0-.552.298-1 .667-1h2.666C5.702 8 6 8.448 6 9s-.298 1-.667 1H2.667C2.298 10 2 9.552 2 9",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(TruckIcon);
export default ForwardRef;