Floating balance icon #23
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ class FloatingWalletBalance extends React.PureComponent<Props> {
|
|||
style={floatingButtonStyle.container}
|
||||
onPress={() => navigation && navigation.navigate({ routeName: 'WalletStack' })}
|
||||
>
|
||||
<Icon name="wallet" size={12} style={floatingButtonStyle.balanceIcon} />
|
||||
<Icon name="coins" size={12} style={floatingButtonStyle.balanceIcon} />
|
||||
{isNaN(balance) && <ActivityIndicator size="small" color={Colors.White} />}
|
||||
{(!isNaN(balance) || balance === 0) && (
|
||||
<Text style={floatingButtonStyle.text}>{formatCredits(parseFloat(balance), 0)}</Text>
|
||||
|
|
Loading…
Add table
Reference in a new issue