UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

33 lines 1.32 kB
const React = require("react"); const { forwardRef } = require("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: "square", strokeLinejoin: "round", d: "M5.5 18.993a2.5 2.5 0 0 1-2.5-2.5V12.97h10V8.455h6l2 3.513v6.025a1 1 0 0 1-1 1" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M11 5.946H5M15 8.2V5a2 2 0 0 0-2-2H6.993M20.5 12.971H13M6 8.957H3" }), /*#__PURE__*/React.createElement("path", { d: "M10 18.993h5" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M18.414 17.574c.572.574.743 1.437.434 2.187A2 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 0M9.414 17.574c.572.574.743 1.437.434 2.187A2 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" })); const ForwardRef = forwardRef(TruckIcon); module.exports = ForwardRef;