Skip to content

Commit

Permalink
views/Wallet: navigation footer: tweak size of BTC icon
Browse files Browse the repository at this point in the history
  • Loading branch information
kaloudis committed Mar 16, 2023
1 parent 28129da commit 250da92
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion views/Wallet/Wallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,12 @@ export default class Wallet extends React.Component<WalletProps, WalletState> {
screenOptions={({ route }) => ({
tabBarIcon: ({ color }) => {
if (route.name === 'Keypad') {
return <Bitcoin fill={color} />;
return (
<Bitcoin
height={20}
fill={color}
/>
);
}
if (route.name === 'Balance') {
return <Temple fill={color} />;
Expand Down

0 comments on commit 250da92

Please sign in to comment.