@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
44 lines • 1.44 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",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M11 19h3"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "square",
strokeLinejoin: "round",
d: "M4.5 19v0A1.5 1.5 0 0 1 3 17.5V13h10V8.5h6l2 3.5v6.75a.25.25 0 0 1-.25.25v0"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M11 6H5M15.06 8.052V5a2 2 0 0 0-2-2H7.009",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M20.5 13H13"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M6 9H3",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M18.414 17.586a2 2 0 1 1-2.827 2.828 2 2 0 0 1 2.827-2.828M9.414 17.586a2 2 0 1 1-2.827 2.828 2 2 0 0 1 2.827-2.828",
clipRule: "evenodd",
opacity: 0.4
}));
}
const ForwardRef = React.forwardRef(TruckIcon);
export default ForwardRef;