UNPKG

@astraicons/react

Version:

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

26 lines 1.15 kB
import * as React from "react"; import { forwardRef } from "react"; const WalletIcon = ({ 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: "M2.324 14.716v-4.629a5.63 5.63 0 0 1 3.386-5.16l5.762-2.5a1.575 1.575 0 0 1 2.202 1.445v3.853h3.275a4.725 4.725 0 0 1 4.725 4.725v.8H19a2.75 2.75 0 0 0 0 5.5h2.32a4.73 4.73 0 0 1-4.37 2.925h-9.9a4.725 4.725 0 0 1-4.725-4.725zm9.686-11.05a.225.225 0 0 1 .314.206v3.853H7.05a4.7 4.7 0 0 0-3.237 1.283 4.28 4.28 0 0 1 2.436-2.843zM7 11.25a.75.75 0 0 0 0 1.5h5a.75.75 0 0 0 0-1.5z", clipRule: "evenodd" }), /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M19 14.75h2.674v2.2q0 .15-.009.3h-2.666a1.25 1.25 0 0 1 0-2.5", clipRule: "evenodd" })); const ForwardRef = forwardRef(WalletIcon); export default ForwardRef;