@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
28 lines • 958 B
JavaScript
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: "m16 11.866-3.293 2.878a1.105 1.105 0 0 1-1.414 0L8 11.866M12 4v10.488",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M20.371 10c.852.918.837 2.23-.036 3.133l-5.588 5.785c-1.394 1.443-3.955 1.443-5.349 0L3.53 12.843c-.707-.732-.707-2.112 0-2.843"
}));
const ForwardRef = forwardRef(Download2Icon);
module.exports = ForwardRef;