1
1
import React from 'react' ;
2
2
import { TFunction } from 'i18next' ;
3
+ import { HBRIcon } from '@components/svg/icons' ;
3
4
import {
4
5
BridgeAccountActionIcon ,
6
+ KosmosProductIcon ,
7
+ StakeProductIcon ,
5
8
SwapAccountActionIcon
6
9
} from '@components/svg/icons/v2/actions' ;
7
- import { HarborAccountAction } from '@components/svg/icons/v2/harbor ' ;
10
+ import { COLORS } from '@constants/colors ' ;
8
11
import { CustomAppEvents } from '@lib/firebaseEventAnalytics' ;
9
12
import { SectionizedProducts } from '../utils' ;
10
13
@@ -18,7 +21,7 @@ export const PRODUCTS = (t: TFunction<string>): SectionizedProducts[] => {
18
21
name : t ( 'token.actions.swap' ) ,
19
22
description : t ( 'products.swap.description' ) ,
20
23
icon : (
21
- < SwapAccountActionIcon scale = { 2 } color = "rgba(166, 129, 239, 1)" />
24
+ < SwapAccountActionIcon scale = { 2.5 } color = "rgba(166, 129, 239, 1)" />
22
25
) ,
23
26
background : [ 'rgba(132, 224, 255, 0.2)' , 'rgba(160, 99, 221, 0.2)' ] ,
24
27
color : 'rgba(52, 27, 104, 1)' ,
@@ -30,7 +33,10 @@ export const PRODUCTS = (t: TFunction<string>): SectionizedProducts[] => {
30
33
name : t ( 'account.actions.bridge' ) ,
31
34
description : t ( 'products.bridge.description' ) ,
32
35
icon : (
33
- < BridgeAccountActionIcon scale = { 2 } color = "rgba(255, 152, 99, 1)" />
36
+ < BridgeAccountActionIcon
37
+ scale = { 2.5 }
38
+ color = "rgba(255, 152, 99, 1)"
39
+ />
34
40
) ,
35
41
background : [ 'rgba(164, 128, 235, 0.2)' , 'rgba(210, 95, 95, 0.2)' ] ,
36
42
color : 'rgba(118, 43, 6, 1)' ,
@@ -46,9 +52,7 @@ export const PRODUCTS = (t: TFunction<string>): SectionizedProducts[] => {
46
52
id : 2 ,
47
53
name : t ( 'account.actions.stake' ) ,
48
54
description : t ( 'products.stake.description' ) ,
49
- icon : (
50
- < SwapAccountActionIcon scale = { 2 } color = "rgba(255, 255, 255, 1)" />
51
- ) ,
55
+ icon : < StakeProductIcon scale = { 2.5 } color = "rgba(255, 255, 255, 1)" /> ,
52
56
background : [ 'rgba(53, 104, 221, 1)' , 'rgba(33, 65, 140, 1)' ] ,
53
57
color : 'rgba(255, 255, 255, 1)' ,
54
58
route : 'StakingPools' ,
@@ -59,7 +63,7 @@ export const PRODUCTS = (t: TFunction<string>): SectionizedProducts[] => {
59
63
name : 'KOSMOS' ,
60
64
description : t ( 'products.kosmos.description' ) ,
61
65
icon : (
62
- < SwapAccountActionIcon scale = { 2 } color = "rgba(255, 255, 255, 1)" />
66
+ < KosmosProductIcon scale = { 2.5 } color = "rgba(255, 255, 255, 1)" />
63
67
) ,
64
68
background : [ 'rgba(67, 68, 145, 1)' , 'rgba(51, 48, 96, 1)' ] ,
65
69
color : 'rgba(255, 255, 255, 1)' ,
@@ -70,7 +74,7 @@ export const PRODUCTS = (t: TFunction<string>): SectionizedProducts[] => {
70
74
id : 4 ,
71
75
name : 'HARBOR' ,
72
76
description : t ( 'products.harbor.description' ) ,
73
- icon : < HarborAccountAction scale = { 1 } /> ,
77
+ icon : < HBRIcon scale = { 2.35 } color = { COLORS . neutral0 } /> ,
74
78
background : [ 'rgba(255, 201, 62, 1)' , 'rgba(224, 131, 0, 1)' ] ,
75
79
color : 'rgba(255, 255, 255, 1)' ,
76
80
route : 'Harbor' ,
0 commit comments