@sky-mavis/tanto-widget
Version:
Tanto Widget
24 lines (20 loc) • 1.1 kB
JavaScript
;
var jsxRuntime = require('@emotion/react/jsx-runtime');
const WalletConnectLogo = props => {
return jsxRuntime.jsxs("svg", {
width: "32",
height: "32",
viewBox: "0 0 32 32",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: [jsxRuntime.jsx("path", {
d: "M0 8a8 8 0 0 1 8-8h16a8 8 0 0 1 8 8v16a8 8 0 0 1-8 8H8a8 8 0 0 1-8-8z",
fill: "#fff"
}), jsxRuntime.jsx("path", {
d: "M9.588 11.856a9.067 9.067 0 0 1 12.824 0l.426.426a.453.453 0 0 1 0 .64l-1.458 1.459a.227.227 0 0 1-.32 0l-.587-.587a6.326 6.326 0 0 0-8.946 0l-.628.628a.227.227 0 0 1-.32 0L9.12 12.964a.453.453 0 0 1 0-.64zm15.839 3.015 1.297 1.297a.454.454 0 0 1 0 .641l-5.85 5.85a.45.45 0 0 1-.641 0l-4.153-4.151a.114.114 0 0 0-.16 0l-4.152 4.152a.453.453 0 0 1-.642 0l-5.85-5.85a.453.453 0 0 1 0-.642l1.297-1.297a.453.453 0 0 1 .641 0l4.153 4.152a.11.11 0 0 0 .16 0l4.152-4.152a.453.453 0 0 1 .641 0l4.153 4.152a.11.11 0 0 0 .16 0l4.153-4.152a.453.453 0 0 1 .641 0",
fill: "#3B99FC"
})]
});
};
exports.WalletConnectLogo = WalletConnectLogo;