@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
40 lines • 1.49 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const TruckIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M21 17v-5.032l-2-3.513h-6v4.516H3V16"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M11 5.946H5M15 8.2V5a2 2 0 0 0-2-2H6.993",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M20.5 12.971H13"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M6 8.957H3",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M10 18.993h5m-9.5 0a2.5 2.5 0 0 1-2.5-2.5V12.97h10V8.455h6l2 3.513v6.025a1 1 0 0 1-1 1m-1.586-1.42c.572.575.743 1.438.434 2.188A2 2 0 0 1 17 21a2 2 0 0 1-1.848-1.239 2.01 2.01 0 0 1 .434-2.187 1.995 1.995 0 0 1 2.828 0m-9 0c.572.575.743 1.438.434 2.188A2 2 0 0 1 8 21a2 2 0 0 1-1.848-1.239 2.01 2.01 0 0 1 .434-2.187 1.995 1.995 0 0 1 2.828 0",
opacity: 0.4
}));
const ForwardRef = forwardRef(TruckIcon);
export default ForwardRef;