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;