UNPKG

@astraicons/react

Version:

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

22 lines 1.06 kB
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", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M14.778 3.031a5.82 5.82 0 0 0-5.559 0l-3.5 1.887A6.3 6.3 0 0 0 3.603 6.79l8.396 4.913 8.397-4.913a6.3 6.3 0 0 0-2.117-1.872zm6.29 4.93-8.394 4.911v8.764a5.9 5.9 0 0 0 2.105-.668l3.5-1.886c2.098-1.13 3.395-3.42 3.395-5.894v-2.374a7 7 0 0 0-.606-2.853m-9.744 13.674v-8.763L2.93 7.961a7 7 0 0 0-.606 2.853v2.373c0 2.474 1.298 4.765 3.395 5.895l3.5 1.886a5.9 5.9 0 0 0 2.105.667M10.249 7a.75.75 0 0 1 .75-.75h2a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1-.75-.75", clipRule: "evenodd" })); const ForwardRef = forwardRef(NewBoxIcon); module.exports = ForwardRef;