feat(deposit-panel): add base

This commit is contained in:
RadoslavDimchev 2024-02-23 08:20:09 +02:00 committed by Emil Ivanichkov
parent 77df98985d
commit 2cfaf4cdd7
1 changed files with 27 additions and 2 deletions

View File

@ -1,7 +1,32 @@
import Deposit from '../../../../ValidatorOnboarding/Deposit/Deposit'
import { Button, Text } from '@status-im/components'
import { XStack, YStack } from 'tamagui'
import PanelWrapper from './PanelWrapper'
const DepositPanel = () => {
return <Deposit />
const connectWalletHandler = () => {}
return (
<PanelWrapper>
<Text size={19} weight={'semibold'}>
Deposit Funds
</Text>
<YStack
space={'$3'}
style={{
alignItems: 'center',
textAlign: 'center',
marginBottom: '6px',
}}
>
<XStack
style={{ width: '100%', justifyContent: 'end', marginTop: '6px' }}
>
<Button onPress={connectWalletHandler}>Connect Wallet</Button>
</XStack>
</YStack>
</PanelWrapper>
)
}
export default DepositPanel