@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 1.66 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",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M7.5 3.25A5.25 5.25 0 0 0 2.25 8.5v7c0 2.9 2.35 5.25 5.25 5.25h9c2.9 0 5.25-2.35 5.25-5.25v-7c0-2.9-2.35-5.25-5.25-5.25zM10.75 12a1.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.015 1.043c-.041.43-.395.742-.79.7l-.766-.084c-1.093-.119-2-1.149-2.06-2.34l-.041-.835c-.022-.43.282-.8.678-.825s.735.304.757.734l.042.836c.021.425.382.835.772.877l.767.084c.395.042.681.425.64.854m-.79 2.715c.395-.043.749.27.79.699.04.428-.246.81-.641.853l-.767.084c-.39.042-.751.452-.772.877l-.042.836c-.022.43-.36.759-.757.734-.396-.026-.7-.395-.678-.825l.042-.835c.06-1.191.966-2.221 2.059-2.34zM7.629 6.722c.397-.013.736.324.757.754l.04.835c.057 1.186-.738 2.306-1.808 2.55l-.755.17c-.388.089-.774-.18-.864-.602-.09-.42.153-.833.54-.92l.755-.172c.388-.088.713-.546.692-.977l-.04-.836c-.02-.43.285-.788.683-.802m.757 9.802c-.02.43-.36.767-.757.754-.398-.014-.703-.373-.683-.802l.04-.836c.021-.43-.304-.889-.692-.977l-.755-.171c-.387-.088-.63-.5-.54-.921s.476-.69.864-.603l.755.172c1.07.243 1.865 1.363 1.808 2.549z",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(MoneyIcon);
module.exports = ForwardRef;