From b306b71b2479f83037b3bfba6472395f054469ef Mon Sep 17 00:00:00 2001 From: Julian Ariel Martinez Date: Fri, 24 Mar 2023 16:57:58 -0300 Subject: [PATCH] added BlockWallet logo and config. --- .../Svg/WalletsIcons/BlockWallet.tsx | 20 +++++++++++++++++++ src/widgets/WalletModal/config.tsx | 6 ++++++ 2 files changed, 26 insertions(+) create mode 100644 src/components/Svg/WalletsIcons/BlockWallet.tsx diff --git a/src/components/Svg/WalletsIcons/BlockWallet.tsx b/src/components/Svg/WalletsIcons/BlockWallet.tsx new file mode 100644 index 00000000..ffc00728 --- /dev/null +++ b/src/components/Svg/WalletsIcons/BlockWallet.tsx @@ -0,0 +1,20 @@ +import React from "react"; +import { SvgProps } from "../types"; + +const Icon: React.FC = (props) => { + return ( + + + + + + + ); +}; + +export default Icon; diff --git a/src/widgets/WalletModal/config.tsx b/src/widgets/WalletModal/config.tsx index 9238e428..831b678b 100644 --- a/src/widgets/WalletModal/config.tsx +++ b/src/widgets/WalletModal/config.tsx @@ -15,6 +15,7 @@ import Bitkeep from "../../components/Svg/WalletsIcons/Bitkeep"; import OKX from "../../components/Svg/WalletsIcons/OKX"; import MadWallet from "../../components/Svg/WalletsIcons/MadWallet"; import { Config, ConnectorNames } from "./types"; +import BlockWallet from "../../components/Svg/WalletsIcons/BlockWallet"; const connectors: Config[] = [ { @@ -97,6 +98,11 @@ const connectors: Config[] = [ icon: MadWallet, connectorId: ConnectorNames.Injected, }, + { + title: "BlockWallet", + icon: BlockWallet, + connectorId: ConnectorNames.Injected, + }, ]; export default connectors;