@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
30 lines • 1.15 kB
JavaScript
const React = require("react");
function MoneyIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__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: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M2 10.071C2 6.166 4.736 3 8.111 3h7.778C19.264 3 22 6.166 22 10.071v3.858C22 17.834 19.264 21 15.889 21H8.11C4.736 21 2 17.834 2 13.929z"
}), /*#__PURE__*/React.createElement("circle", {
cx: 12,
cy: 12,
r: 2
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "m16.528 7.21.047.928c.045.897.75 1.698 1.573 1.787l.852.093M16.528 16.79l.047-.928c.045-.897.75-1.697 1.573-1.787l.852-.093M5 10.078l.839-.19c.81-.185 1.432-1.062 1.39-1.96L7.183 7M5 13.922l.839.19c.81.185 1.432 1.062 1.39 1.96L7.183 17"
}));
}
const ForwardRef = React.forwardRef(MoneyIcon);
module.exports = ForwardRef;