UNPKG

@astraicons/react

Version:

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

27 lines 933 B
const React = require("react"); const { forwardRef } = require("react"); const Download2Icon = ({ 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", strokeLinejoin: "round", d: "m15.6 12-2.963 2.964a.9.9 0 0 1-1.273 0L8.4 12M12 3.9v10.8" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M20.371 10.2c.852.909.837 2.207-.036 3.101l-5.588 5.728c-1.394 1.428-3.955 1.428-5.349 0L3.53 13.014c-.707-.724-.707-2.09 0-2.814" })); const ForwardRef = forwardRef(Download2Icon); module.exports = ForwardRef;