feat: create component for ValidatorSetup
This commit is contained in:
parent
e938527962
commit
e319761b3f
|
@ -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
|
Loading…
Reference in New Issue