@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
27 lines • 1.2 kB
JavaScript
import * as React from "react";
function WalletIcon({
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: "M1.25 11.645v-1.613a6.25 6.25 0 0 1 3.99-5.827l6.127-2.376A1.75 1.75 0 0 1 13.75 3.46V8h2.75a5.5 5.5 0 0 1 5.494 5.25H19a2.75 2.75 0 1 0 0 5.5h2.52A5.5 5.5 0 0 1 16.5 22h-10A5.5 5.5 0 0 1 1 16.5v-3.25c0-.56.088-1.1.25-1.605m10.66-8.418a.25.25 0 0 1 .34.233V8h-6a5.23 5.23 0 0 0-3.441 1.285 4.75 4.75 0 0 1 2.974-3.682zM7 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.75h3v1.75q0 .382-.05.75H19a1.25 1.25 0 0 1 0-2.5m0 .5a.75.75 0 0 0 0 1.5h.5a.75.75 0 0 0 0-1.5z",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(WalletIcon);
export default ForwardRef;