UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

23 lines 1.08 kB
import * as React from "react"; function DollarCircleIcon({ 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: "M22 12c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10m-9.25-5a.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 1 1 0-2.5m1.75 6.5v-2.5H13a1.25 1.25 0 1 1 0 2.5z", clipRule: "evenodd" })); } const ForwardRef = React.forwardRef(DollarCircleIcon); export default ForwardRef;