@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
21 lines • 941 B
JavaScript
import * as React from "react";
function BoxIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "m14.733 21.33 3.889-2.099C20.692 18.114 22 15.832 22 13.334v-2.64a7 7 0 0 0-.671-3.006l-8.791 5.733V22a5.8 5.8 0 0 0 2.195-.67M11.038 21.943v-8.5l-8.63-5.118A7 7 0 0 0 2 10.693v2.64c0 2.498 1.308 4.781 3.378 5.898l3.889 2.098c.565.305 1.162.51 1.77.614M3.067 6.97a6.3 6.3 0 0 1 2.311-2.175l3.889-2.098a5.71 5.71 0 0 1 5.465-.001l3.89 2.099a6.2 6.2 0 0 1 1.915 1.617L11.77 12.13z"
}));
}
const ForwardRef = React.forwardRef(BoxIcon);
export default ForwardRef;