@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
35 lines • 1.09 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const MoneyIcon = ({
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("rect", {
width: 18,
height: 16,
x: 3,
y: 4,
rx: 4.5
}), /*#__PURE__*/React.createElement("circle", {
cx: 12,
cy: 12,
r: 2,
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "m16.076 7.688.042.836c.04.808.675 1.528 1.416 1.609l.767.083M16.076 16.312l.042-.836c.04-.808.675-1.528 1.416-1.609l.767-.083M5.701 10.27l.755-.171c.729-.166 1.289-.955 1.25-1.763l-.04-.836M5.701 13.73l.755.171c.729.166 1.289.955 1.25 1.763l-.04.836",
opacity: 0.4
}));
const ForwardRef = forwardRef(MoneyIcon);
module.exports = ForwardRef;