feat: create Confirm Recovery Phrase component

This commit is contained in:
RadoslavDimchev 2023-08-29 10:58:16 +03:00
parent a7c70823aa
commit 0916161e3c
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
import { YStack } from 'tamagui'
import KeyGenerationTitle from './KeyGenerationTitle'
import { Text } from '@status-im/components'
const ConfirmRecoveryPhrase = () => {
return (
<YStack space={'$4'} style={{ width: '100%', marginTop: '20px' }}>
<KeyGenerationTitle />
<Text size={27}>Confirm Recovery Phrase</Text>
</YStack>
)
}
export default ConfirmRecoveryPhrase