@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
31 lines • 1.08 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const WalletIcon = ({
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("path", {
d: "M3 12.45A4.05 4.05 0 0 1 7.05 8.4h9.9A4.05 4.05 0 0 1 21 12.45v4.5A4.05 4.05 0 0 1 16.95 21h-9.9A4.05 4.05 0 0 1 3 16.95v-4.5Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M21 14h-2a2 2 0 1 0 0 4h2"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M7 12h5"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M3 14.7v-4.613a4.95 4.95 0 0 1 2.98-4.54l5.762-2.501A.9.9 0 0 1 13 3.872V8"
}));
const ForwardRef = forwardRef(WalletIcon);
module.exports = ForwardRef;