feat: move connect wallet text to reuse

This commit is contained in:
RadoslavDimchev 2023-09-20 21:12:38 +03:00
parent 87812e61a1
commit b559020bc7
2 changed files with 3 additions and 3 deletions

View File

@ -6,9 +6,6 @@ const ConnectWallet = () => {
return ( return (
<YStack space={'$3'}> <YStack space={'$3'}>
<Text size={19} weight={'semibold'}>
Connect Wallet
</Text>
<XStack space={'$2'} alignItems={'center'}> <XStack space={'$2'} alignItems={'center'}>
<Avatar <Avatar
type="icon" type="icon"

View File

@ -48,6 +48,9 @@ const Deposit = () => {
icon={<PlaceholderIcon size={16} />} icon={<PlaceholderIcon size={16} />}
/> />
)} )}
<Text size={19} weight={'semibold'}>
Connect Wallet
</Text>
<ConnectWallet /> <ConnectWallet />
</YStack> </YStack>
) )