feat: create recovery mechanism component
This commit is contained in:
parent
3a847e3ab5
commit
45014fed2b
|
@ -1,10 +1,12 @@
|
|||
import { YStack } from 'tamagui'
|
||||
import KeyGenerationHeader from './KeyGenerationHeader'
|
||||
import RecoveryMechanism from './RecoveryMechanism'
|
||||
|
||||
const KeyGeneration = () => {
|
||||
return (
|
||||
<YStack space={'$2'} style={{ width: '100%', padding: '16px 32px' }}>
|
||||
<KeyGenerationHeader />
|
||||
<RecoveryMechanism />
|
||||
</YStack>
|
||||
)
|
||||
}
|
||||
|
|
|
@ -0,0 +1,32 @@
|
|||
import { Text } from '@status-im/components'
|
||||
import { XStack } from 'tamagui'
|
||||
import BorderBox from '../../../components/General/BorderBox'
|
||||
|
||||
const RecoveryMechanism = () => {
|
||||
return (
|
||||
<XStack style={{ width: '100%', alignItems: 'center', justifyContent: 'space-between' }}>
|
||||
<Text size={19} weight={'semibold'}>
|
||||
Select Recovery Mechanism
|
||||
</Text>
|
||||
<XStack space={'$2'}>
|
||||
<BorderBox>
|
||||
<Text size={15} weight={'semibold'}>
|
||||
Key Files
|
||||
</Text>
|
||||
</BorderBox>
|
||||
<BorderBox>
|
||||
<Text size={15} weight={'semibold'}>
|
||||
Recovery Phrase
|
||||
</Text>
|
||||
</BorderBox>
|
||||
<BorderBox>
|
||||
<Text size={15} weight={'semibold'}>
|
||||
Both Key Files & Recovery Phrase
|
||||
</Text>
|
||||
</BorderBox>
|
||||
</XStack>
|
||||
</XStack>
|
||||
)
|
||||
}
|
||||
|
||||
export default RecoveryMechanism
|
Loading…
Reference in New Issue