@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
25 lines • 968 B
JavaScript
const React = require("react");
function AddBoxIcon({
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: "round",
strokeLinejoin: "round",
d: "M12 12.539 2.855 7.32M12 12.54v9.16m0-9.16L16 10M2.855 7.321a6.3 6.3 0 0 1 2.523-2.53l3.889-2.096a5.72 5.72 0 0 1 5.466 0L16 3.5M2.855 7.321A7 7 0 0 0 2 10.681v2.637c0 2.495 1.308 4.775 3.378 5.891l3.889 2.096a5.72 5.72 0 0 0 5.466 0l3.889-2.096C20.692 18.093 22 15.813 22 13.32v-.78M20 4v6M23 7h-6"
}));
}
const ForwardRef = React.forwardRef(AddBoxIcon);
module.exports = ForwardRef;