UNPKG

@astraicons/react

Version:

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

23 lines 1.05 kB
import * as React from "react"; function NewBoxIcon({ 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", { fillRule: "evenodd", d: "m18.622 19.231-3.889 2.098a5.8 5.8 0 0 1-2.195.671v-8.579l8.79-5.733c.434.914.672 1.94.672 3.005v2.641c0 2.498-1.308 4.78-3.378 5.897m-7.584-5.789v8.501a5.8 5.8 0 0 1-1.771-.614l-3.889-2.098C3.308 18.114 2 15.831 2 13.333v-2.64c0-.824.142-1.625.408-2.368zm-5.66-8.647A6.3 6.3 0 0 0 3.067 6.97l8.702 5.16 8.768-5.718a6.2 6.2 0 0 0-1.915-1.617l-3.89-2.1a5.71 5.71 0 0 0-5.465.002zm5.622.46a.75.75 0 0 0 0 1.501h3a.75.75 0 0 0 0-1.502z", clipRule: "evenodd" })); } const ForwardRef = React.forwardRef(NewBoxIcon); export default ForwardRef;