UNPKG

@astraicons/react

Version:

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

35 lines 1.2 kB
const React = require("react"); const { forwardRef } = require("react"); const DocumentUploadIcon = ({ title, titleId, ...props }, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M21 7.636V16.5a4.5 4.5 0 0 1-4.5 4.5h-9A4.5 4.5 0 0 1 3 16.5v-9A4.5 4.5 0 0 1 7.5 3H15" }), /*#__PURE__*/React.createElement("path", { d: "m15.672 3.097 5.212 4.343c.248.207.072.56-.278.56h-5.213C15.176 8 15 7.853 15 7.672V3.328c0-.292.424-.438.672-.231Z", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M12 18v-6m0 0-2 2m2-2 2 2", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M6.75 10.25h1.5M6.75 7.25h4.5", opacity: 0.4 })); const ForwardRef = forwardRef(DocumentUploadIcon); module.exports = ForwardRef;