mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-02-09 01:55:18 +00:00
fix: remove not used components from connect wallet
This commit is contained in:
parent
b559020bc7
commit
71dcb2aa7f
@ -1,20 +1,18 @@
|
||||
import { Avatar, Button, Text } from '@status-im/components'
|
||||
import { XStack, YStack } from 'tamagui'
|
||||
import { Avatar, Button } from '@status-im/components'
|
||||
import { XStack } from 'tamagui'
|
||||
|
||||
const ConnectWallet = () => {
|
||||
const onConnectWalletClick = () => {}
|
||||
|
||||
return (
|
||||
<YStack space={'$3'}>
|
||||
<XStack space={'$2'} alignItems={'center'}>
|
||||
<Avatar
|
||||
type="icon"
|
||||
size={32}
|
||||
icon={<img src={'/icons/eth-logo.svg'} alt="eth-logo" style={{ width: '100%' }} />}
|
||||
/>
|
||||
<Button onPress={onConnectWalletClick}>Connect Wallet</Button>
|
||||
</XStack>
|
||||
</YStack>
|
||||
<XStack space={'$2'} alignItems={'center'}>
|
||||
<Avatar
|
||||
type="icon"
|
||||
size={32}
|
||||
icon={<img src={'/icons/eth-logo.svg'} alt="eth-logo" style={{ width: '100%' }} />}
|
||||
/>
|
||||
<Button onPress={onConnectWalletClick}>Connect Wallet</Button>
|
||||
</XStack>
|
||||
)
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user