From 4ad25114c3b97f3b35f32997f67a6c940267066f Mon Sep 17 00:00:00 2001 From: fmtabbara Date: Tue, 24 Aug 2021 12:46:34 +0100 Subject: [PATCH] update nav cards --- tauri-wallet/src/components/BalanceCard.tsx | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/tauri-wallet/src/components/BalanceCard.tsx b/tauri-wallet/src/components/BalanceCard.tsx index 0807a74a00..39bbbb6cd1 100644 --- a/tauri-wallet/src/components/BalanceCard.tsx +++ b/tauri-wallet/src/components/BalanceCard.tsx @@ -1,5 +1,10 @@ import React, { useContext } from 'react' -import { CardContent, IconButton, useTheme } from '@material-ui/core' +import { + CardContent, + IconButton, + Typography, + useTheme, +} from '@material-ui/core' import { ClientContext } from '../context/main' import { FileCopy, Refresh } from '@material-ui/icons' import { NymCard } from './NymCard' @@ -12,6 +17,7 @@ export const BalanceCard = () => {
@@ -19,7 +25,9 @@ export const BalanceCard = () => { } > - {client.balance} + + {client.balance} +
) @@ -32,6 +40,7 @@ export const AddressCard = () => {