UNPKG

@astraicons/react

Version:

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

33 lines 1.32 kB
const React = require("react"); const { forwardRef } = require("react"); const BuyCryptoIcon = ({ title, titleId, ...props }, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("circle", { cx: 11, cy: 13, r: 8 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M18.681 15a6.9 6.9 0 0 0 1.805-2.531 6.8 6.8 0 0 0 .407-3.793 6.84 6.84 0 0 0-1.702-3.424 6.98 6.98 0 0 0-3.287-2 7.04 7.04 0 0 0-3.861.037c-1.161.343-2.21.98-3.043 1.844", opacity: 0.4 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M14 12.764c0-.374-.119-.733-.33-.998l-1.875-2.353C11.585 9.15 11.298 9 11 9s-.585.149-.796.414L8.33 11.767c-.21.265-.329.624-.329.998m6 0c0 .374-.118.733-.33.997l-1.875 2.767c-.21.265-.497.471-.795.471s-.585-.206-.796-.47L8.33 13.762a1.6 1.6 0 0 1-.33-.998m6 0-1.999 1.156a2 2 0 0 1-2.002 0L8 12.765", opacity: 0.4 })); const ForwardRef = forwardRef(BuyCryptoIcon); module.exports = ForwardRef;