@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
25 lines • 1.31 kB
JavaScript
import * as React from "react";
function DollarReceiveIcon({
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", {
d: "M20.75 2a.75.75 0 0 0-1.5 0v2.19l-.72-.72a.75.75 0 1 0-1.06 1.06l2 2a.75.75 0 0 0 1.06 0l2-2a.75.75 0 0 0-1.06-1.06l-.72.72z"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M21.672 9.46a10 10 0 1 1-7.269-7.167c.462.114.734.57.723 1.046-.088 4.052 3.28 5.261 5.586 5.4.441.027.848.294.96.722M12.75 7a.75.75 0 0 0-1.5 0v.25H11a2.75 2.75 0 0 0 0 5.5h.25v2.5h-.313a1.25 1.25 0 0 1-1.21-.937.75.75 0 1 0-1.453.374 2.75 2.75 0 0 0 2.663 2.063h.313V17a.75.75 0 0 0 1.5 0v-.25H13a2.75 2.75 0 1 0 0-5.5h-.25v-2.5h.313a1.25 1.25 0 0 1 1.21.937.75.75 0 1 0 1.453-.374 2.75 2.75 0 0 0-2.663-2.063h-.313zM11 8.75h.25v2.5H11a1.25 1.25 0 0 1 0-2.5m1.75 6.5v-2.5H13a1.25 1.25 0 1 1 0 2.5z",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(DollarReceiveIcon);
export default ForwardRef;