UNPKG

@astraicons/react

Version:

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

20 lines 1.28 kB
const React = require("react"); const { forwardRef } = require("react"); const AddBoxIcon = ({ 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", { d: "m17.96 18.207-3.5 1.886c-.486.262-1 .442-1.523.54-.102.019-.187-.08-.187-.184v-7.283a1 1 0 0 1 .464-.844l2.788-1.77.028-.018.06-.043a1 1 0 0 1 1.115-.022l3.335 2.142a.92.92 0 0 1 .437.84c-.174 2.028-1.306 3.834-3.017 4.756M11.25 20.449c0 .104-.085.203-.187.184a5.2 5.2 0 0 1-1.523-.54l-3.5-1.886C4.177 17.203 3 15.151 3 12.906v-2.373q.001-.637.122-1.245c.119-.595.797-.831 1.324-.53l6.3 3.594a1 1 0 0 1 .504.869zM12.488 11.006a1 1 0 0 1-1.032.025L5.143 7.428c-.518-.295-.668-.983-.23-1.388q.509-.474 1.127-.809l3.5-1.886a5.15 5.15 0 0 1 4.92 0l.676.43a1 1 0 0 1 .464.844v3.876a.98.98 0 0 1-.416.8zM19.75 5.22a.75.75 0 0 0-1.5 0v1.25H17a.75.75 0 0 0 0 1.5h1.25v1.25a.75.75 0 0 0 1.5 0V7.97H21a.75.75 0 0 0 0-1.5h-1.25z" })); const ForwardRef = forwardRef(AddBoxIcon); module.exports = ForwardRef;