@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
26 lines • 1.37 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const DollarCircleIcon = ({
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: "M13.205 12.96a1.25 1.25 0 0 1 1.045 1.234v.306c0 .69-.56 1.25-1.25 1.25h-.25v-2.865zM10.795 11.04A1.25 1.25 0 0 1 9.75 9.805V9.5c0-.69.56-1.25 1.25-1.25h.25v2.864z",
clipRule: "evenodd"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M12 21.75c5.385 0 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25 2.25 6.615 2.25 12s4.365 9.75 9.75 9.75M14.25 9.5v.5a.75.75 0 0 0 1.5 0v-.5A2.75 2.75 0 0 0 13 6.75h-.25V6a.75.75 0 0 0-1.5 0v.75H11A2.75 2.75 0 0 0 8.25 9.5v.306a2.75 2.75 0 0 0 2.298 2.713l.702.116v3.115H11c-.69 0-1.25-.56-1.25-1.25V14a.75.75 0 0 0-1.5 0v.5A2.75 2.75 0 0 0 11 17.25h.25V18a.75.75 0 0 0 1.5 0v-.75H13a2.75 2.75 0 0 0 2.75-2.75v-.306a2.75 2.75 0 0 0-2.298-2.713l-.702-.117V8.25H13c.69 0 1.25.56 1.25 1.25",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(DollarCircleIcon);
module.exports = ForwardRef;