From dc750b3199519d07a54cda6c52e7047739711c03 Mon Sep 17 00:00:00 2001 From: Ivana Andersson Date: Thu, 21 Sep 2023 09:48:01 +0300 Subject: [PATCH] fix: change to correct icons on left sidebar --- src/pages/Dashboard/LeftSidebar.tsx | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/src/pages/Dashboard/LeftSidebar.tsx b/src/pages/Dashboard/LeftSidebar.tsx index ac1206df..8184f654 100644 --- a/src/pages/Dashboard/LeftSidebar.tsx +++ b/src/pages/Dashboard/LeftSidebar.tsx @@ -1,5 +1,14 @@ import { IconButton } from '@status-im/components' -import { NodeIcon } from '@status-im/icons' +import { + DashboardIcon, + SpeedIcon, + ChartIcon, + HeartIcon, + CodeBlockIcon, + CommunitiesIcon, + ActivityCenterIcon, + SettingsIcon, +} from '@status-im/icons' import { YStack } from 'tamagui' const LeftSidebar = () => { @@ -15,13 +24,14 @@ const LeftSidebar = () => { border: '1px solid #F0F2F5', }} > - } variant="ghost" selected /> - } variant="ghost" /> - } variant="outline" disabled /> - } variant="ghost" /> - } variant="ghost" /> - } variant="ghost" /> - } variant="ghost" /> + } variant="ghost" selected /> + } variant="ghost" /> + } variant="outline" disabled /> + } variant="ghost" /> + } variant="ghost" /> + } variant="ghost" /> + } variant="ghost" /> + } variant="ghost" /> ) }