@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
32 lines • 1.16 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const EarnIcon = ({
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: "M8 5v1M16 5v1M12 3v2",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M3 20.25h18M19.773 20a8.57 8.57 0 0 0 .07-7.5 8.65 8.65 0 0 0-3.25-3.63 8.76 8.76 0 0 0-9.396.098 8.64 8.64 0 0 0-3.17 3.698 8.56 8.56 0 0 0-.651 4.81c.153.99.335 1.78.7 2.524"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M15 15v-.5a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v.306a2 2 0 0 0 1.671 1.973l2.658.442A2 2 0 0 1 15 19.194v.306M12 11v9",
opacity: 0.4
}));
const ForwardRef = forwardRef(EarnIcon);
module.exports = ForwardRef;