@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
40 lines • 1.6 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const Web3WalletIcon = ({
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.5A4.5 4.5 0 0 1 7.5 8h9a4.5 4.5 0 0 1 4.5 4.5v4a4.5 4.5 0 0 1-4.5 4.5h-9A4.5 4.5 0 0 1 3 16.5v-4Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M21 14h-3a2 2 0 1 0 0 4h2.5",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
strokeMiterlimit: 10,
d: "M18 16h.5",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M3 14v-3.67c0-2.41 1.453-4.562 3.633-5.38l5.028-1.887C12.312 2.818 13 3.32 13 4.04V7.5"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M11 14.294c0-.328-.099-.642-.275-.874l-1.562-2.058C8.987 11.13 8.748 11 8.5 11s-.487.13-.663.362L6.275 13.42a1.46 1.46 0 0 0-.275.874m5-.001c0 .327-.099.641-.274.873l-1.563 2.421c-.176.232-.414.412-.663.412s-.487-.18-.663-.412l-1.562-2.42A1.46 1.46 0 0 1 6 14.295m5-.001-1.905.824a1.5 1.5 0 0 1-1.19 0L6 14.295",
opacity: 0.4
}));
const ForwardRef = forwardRef(Web3WalletIcon);
module.exports = ForwardRef;