@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
37 lines • 1.25 kB
JavaScript
const React = require("react");
function WalletIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__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: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M2 13.25C2 10.35 4.35 8 7.25 8h9.25a5.5 5.5 0 0 1 5.5 5.5v3a5.5 5.5 0 0 1-5.5 5.5h-9A5.5 5.5 0 0 1 2 16.5v-3.25Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M22 14h-3a2 2 0 1 0 0 4h2.5"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 10,
d: "M19 16h.5"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M7 12h5"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M2 15v-4.968a5.5 5.5 0 0 1 3.511-5.128l6.127-2.376A1 1 0 0 1 13 3.46v3.957"
}));
}
const ForwardRef = React.forwardRef(WalletIcon);
module.exports = ForwardRef;