@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 1.68 kB
JavaScript
import * as React from "react";
function MoneyIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M8.111 3C4.736 3 2 6.166 2 10.071v3.858C2 17.834 4.736 21 8.111 21h7.778C19.264 21 22 17.834 22 13.929V10.07C22 6.166 19.264 3 15.889 3zm2.639 9a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0M12 9.25a2.75 2.75 0 1 0 0 5.5 2.75 2.75 0 0 0 0-5.5m7.715.845c-.041.429-.394.742-.79.699l-.851-.093c-1.175-.127-2.152-1.237-2.217-2.518l-.046-.928c-.022-.43.282-.8.678-.825s.735.304.757.734l.046.928c.026.515.458 1.005.93 1.057l.852.092c.395.043.682.425.64.854m-14.64.699c-.396.043-.749-.27-.79-.699-.04-.429.246-.81.64-.854l.853-.092c.472-.052.904-.542.93-1.057l.046-.928c.022-.43.36-.759.757-.734.396.025.7.394.678.825l-.046.928c-.065 1.28-1.042 2.39-2.217 2.518zm14.64 3.11c-.041-.428-.394-.74-.79-.698l-.851.093c-1.175.127-2.152 1.237-2.217 2.518l-.046.928c-.022.43.282.8.678.825s.735-.304.757-.734l.046-.928c.026-.515.458-1.005.93-1.057l.852-.092c.395-.043.682-.425.64-.854m-14.64-.698c-.396-.043-.749.27-.79.699-.04.429.246.81.64.854l.853.092c.472.052.904.542.93 1.057l.046.928c.022.43.36.759.757.734.396-.025.7-.394.678-.825l-.046-.928c-.065-1.28-1.042-2.39-2.217-2.518z",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(MoneyIcon);
export default ForwardRef;