UNPKG

@astraicons/react

Version:

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

34 lines 1.35 kB
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", { 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.945H5M15 8.2V5a2 2 0 0 0-2-2H6.993M20.5 12.97H13M6 8.957H3" }), /*#__PURE__*/React.createElement("path", { d: "M10 18.992h5" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M18.414 17.575c.572.574.743 1.437.434 2.187A2 2 0 0 1 17 21a2 2 0 0 1-1.848-1.24 2.01 2.01 0 0 1 .434-2.186 1.995 1.995 0 0 1 2.828 0M9.414 17.575c.572.574.743 1.437.434 2.187A2 2 0 0 1 8 21a2 2 0 0 1-1.848-1.24 2.01 2.01 0 0 1 .434-2.186 1.995 1.995 0 0 1 2.828 0" })); } const ForwardRef = React.forwardRef(TruckIcon); export default ForwardRef;