feat: create recovery mechanism component

This commit is contained in:
RadoslavDimchev 2023-08-28 11:27:43 +03:00
parent 3a847e3ab5
commit 45014fed2b
2 changed files with 34 additions and 0 deletions

View File

@ -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>
)
}

View File

@ -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