UNPKG

@astraicons/react

Version:

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

26 lines 1.05 kB
const React = require("react"); function NewBoxIcon({ 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: "m12 12.539 8.889-5.389M12 12.54 2.855 7.321M12 12.54v9.16M2.855 7.322l-.3-.17m.3.17a6.3 6.3 0 0 1 2.523-2.53l3.889-2.095a5.72 5.72 0 0 1 5.465-.001l3.89 2.096C20.692 5.907 22 8.188 22 10.682v2.638c0 2.494-1.308 4.773-3.378 5.89l-3.889 2.095a5.72 5.72 0 0 1-5.466 0l-3.889-2.096C3.308 18.093 2 15.813 2 13.32v-2.637c0-1.206.306-2.362.855-3.36Z" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M10.5 6.5h3" })); } const ForwardRef = React.forwardRef(NewBoxIcon); module.exports = ForwardRef;