feat(deposit-panel): add base
This commit is contained in:
parent
77df98985d
commit
2cfaf4cdd7
|
@ -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 = () => {
|
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
|
export default DepositPanel
|
||||||
|
|
Loading…
Reference in New Issue