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.43 kB
const React = require("react"); const { forwardRef } = require("react"); const AddBoxIcon = ({ 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: "M12 12.485 3.77 7.789M12 12.485v8.245m0-8.245 3.6-2.285M3.77 7.79a5.7 5.7 0 0 1 2.27-2.278l3.5-1.886a5.15 5.15 0 0 1 4.92 0l1.14.724M3.77 7.79A6.3 6.3 0 0 0 3 10.813v2.372c0 2.246 1.177 4.298 3.04 5.302l3.5 1.886a5.15 5.15 0 0 0 4.92 0l3.5-1.886c1.863-1.004 3.04-3.056 3.04-5.302v-.701", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "m15.6 4.35-1.14-.724a5.15 5.15 0 0 0-4.92 0l-3.5 1.886a5.7 5.7 0 0 0-2.27 2.277A6.3 6.3 0 0 0 3 10.814v2.372c0 2.246 1.177 4.298 3.04 5.302l3.5 1.886a5.15 5.15 0 0 0 4.92 0l3.5-1.886c1.863-1.004 3.04-3.056 3.04-5.302v-.701" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M19 5.5v4m2-2h-4", opacity: 0.4 })); const ForwardRef = forwardRef(AddBoxIcon); module.exports = ForwardRef;