diff --git a/public/icons/wallets/axs.svg b/public/icons/wallets/axs.svg
new file mode 100644
index 0000000..3ccdb2c
--- /dev/null
+++ b/public/icons/wallets/axs.svg
@@ -0,0 +1,5 @@
+
diff --git a/src/components/WalletConnection/WalletSelector.tsx b/src/components/WalletConnection/WalletSelector.tsx
index c117588..e0131a8 100644
--- a/src/components/WalletConnection/WalletSelector.tsx
+++ b/src/components/WalletConnection/WalletSelector.tsx
@@ -24,14 +24,26 @@ const WalletRow = ({ walletName, walletType }: WalletRowProps) => {
const getWalletIcon = (walletType: WalletType) => {
switch (walletType) {
case WalletType.INJECTED:
- return (
-
- );
+ if (walletName == 'AXS Wallet') {
+ return (
+
+ );
+ } else {
+ return (
+
+ );
+ }
+
case WalletType.WALLET_CONNECT:
return (
{
{error && {handleBlocking()}}
+