@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 1.03 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const FundingWalletIcon = ({
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: "M12 2.25c-5.385 0-9.75 4.365-9.75 9.75s4.365 9.75 9.75 9.75 9.75-4.365 9.75-9.75S17.385 2.25 12 2.25m3.823 8.513-2.586-2.586a1.75 1.75 0 0 0-2.474 0l-2.586 2.586a1.75 1.75 0 0 0 0 2.474l2.586 2.586a1.75 1.75 0 0 0 2.474 0l2.586-2.586a1.75 1.75 0 0 0 0-2.474m-6.586 1.06 2.586-2.586a.25.25 0 0 1 .354 0l2.586 2.586a.25.25 0 0 1 0 .354l-2.586 2.586a.25.25 0 0 1-.354 0l-2.586-2.586a.25.25 0 0 1 0-.354",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(FundingWalletIcon);
module.exports = ForwardRef;