@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
25 lines • 1.02 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const NewBoxIcon = ({
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", {
d: "m12 12.485 8-4.85m-8 4.85L3.77 7.79M12 12.485v8.245M3.77 7.79l-.27-.155m.27.154a5.7 5.7 0 0 1 2.27-2.277l3.5-1.886a5.15 5.15 0 0 1 4.919 0l3.5 1.886C19.824 6.516 21 8.57 21 10.814v2.374c0 2.245-1.177 4.296-3.04 5.3l-3.5 1.886a5.15 5.15 0 0 1-4.92 0l-3.5-1.886C4.177 17.484 3 15.432 3 13.187v-2.373c0-1.086.275-2.126.77-3.025Z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M11 7h2"
}));
const ForwardRef = forwardRef(NewBoxIcon);
module.exports = ForwardRef;