UNPKG

@astraicons/react

Version:

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

21 lines 1.42 kB
import * as React from "react"; function AddBoxIcon({ 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: "M9.35 2.41a5.65 5.65 0 0 1 5.005-.145c.1.046.204.126.301.244.269.326.338.818.156 1.289-.303.784-.665 1.965-.552 3.02.094.87.369 1.414.692 1.905.084.127.165.242.243.354.108.156.213.305.315.47-.619.358-1.406.8-2.114 1.195-.48.267-.921.51-1.242.687l-.15.083-9.014-5.03a6.1 6.1 0 0 1 2.082-1.817zM14.138 12.017c.808-.45 1.74-.974 2.408-1.367 1.768.787 3.633 1.284 4.866 1.56.496.112.838.532.838.983 0 2.435-1.305 4.63-3.322 5.692L14.65 21.14a5.7 5.7 0 0 1-1.9.61v-8.965l.14-.077zM11.25 21.75v-8.97L2.268 7.77a6.7 6.7 0 0 0-.518 2.588v2.836c0 2.435 1.305 4.63 3.322 5.692L9.35 21.14a5.7 5.7 0 0 0 1.9.61M20.752 3.951a.74.74 0 0 0-.749-.734.74.74 0 0 0-.75.733l-.002 1.223-1.25-.001a.74.74 0 0 0-.751.733c0 .405.335.734.75.734l1.25.001-.001 1.222c0 .405.335.734.749.734s.75-.327.75-.732l.002-1.222H22c.413.001.75-.327.75-.732a.74.74 0 0 0-.75-.734l-1.249-.002z" })); } const ForwardRef = React.forwardRef(AddBoxIcon); export default ForwardRef;