feat: create component for ValidatorSetup

This commit is contained in:
RadoslavDimchev 2023-08-24 12:00:55 +03:00
parent e938527962
commit e319761b3f
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
import { Button, Shadow } from '@status-im/components'
import { Stack } from 'tamagui'
const ValidatorSetup = () => {
return (
<>
<Shadow
variant="$1"
style={{
borderRadius: '16px',
border: 'none',
backgroundColor: '#fff',
padding: '16px 32px',
}}
></Shadow>
<Stack style={{ alignItems: 'end', width: '100%', marginTop: '16px' }}>
<Button>Continue</Button>
</Stack>
</>
)
}
export default ValidatorSetup