diff --git a/src/components/icon/Icon.tsx b/src/components/icon/Icon.tsx
index 96e6395a..13e9f3d7 100644
--- a/src/components/icon/Icon.tsx
+++ b/src/components/icon/Icon.tsx
@@ -106,6 +106,8 @@ import forwardIcon from './assets/forward.svg'
import arrowDiagonalIcon from './assets/arrow_diagonal.svg'
import editIcon from './assets/edit.svg'
import blockIcon from './assets/block.svg'
+import walletIcon from './assets/wallet.svg'
+import robotIcon from './assets/robot.svg'
enum IconType {
MINTBASE = 'mintbase',
@@ -141,6 +143,8 @@ const customIcons: { [key: string]: string } = {
[EIconName.AUDIO]: audioIcon,
[EIconName.COMPARE_ARROWS]: compareArrowsIcon,
[EIconName.CREDIT_CARD]: creditCard,
+ [EIconName.WALLET]: walletIcon,
+ [EIconName.ROBOT]: robotIcon,
[EIconName.REPORT]: reportIcon,
[EIconName.ARROW_DROP_DOWN]: arrowDropDownIcon,
[EIconName.ARROW_DROP_UP]: arrowDropUpIcon,
diff --git a/src/components/icon/assets/robot.svg b/src/components/icon/assets/robot.svg
new file mode 100644
index 00000000..5c2906d9
--- /dev/null
+++ b/src/components/icon/assets/robot.svg
@@ -0,0 +1,8 @@
+
diff --git a/src/components/icon/assets/wallet.svg b/src/components/icon/assets/wallet.svg
new file mode 100644
index 00000000..52752472
--- /dev/null
+++ b/src/components/icon/assets/wallet.svg
@@ -0,0 +1,8 @@
+
diff --git a/src/consts/icons.ts b/src/consts/icons.ts
index ed290291..cbf6679d 100644
--- a/src/consts/icons.ts
+++ b/src/consts/icons.ts
@@ -41,11 +41,13 @@ export enum EIconName {
SHARE = 'share',
SIMPLE_SHARE = 'simple_share',
HAND_COINS = 'hand_coins',
+ WALLET = 'wallet',
COINS = 'coins',
FLASH = 'flash',
HAND_RAISE = 'hand_raise',
HAND_SHAKE = 'hand_shake',
HOUSE = 'house',
+ ROBOT = 'robot',
MENU = 'menu',
SEARCH = 'search',
CIRCLE = 'circle',