Merge branch 'hn.validator-onboarding' of https://github.com/nimbus-gui/nimbus-gui into hn.validator-onboarding

This commit is contained in:
Hristo Nedelkov 2023-08-29 12:11:16 +03:00
commit a0a3c2561d
1 changed files with 7 additions and 2 deletions

View File

@ -1,12 +1,17 @@
import { YStack } from 'tamagui'
import { Stack, YStack } from 'tamagui'
import KeyGenerationTitle from './KeyGenerationTitle'
import { Text } from '@status-im/components'
import { Input, Text } from '@status-im/components'
const ConfirmRecoveryPhrase = () => {
return (
<YStack space={'$4'} style={{ width: '100%', marginTop: '20px' }}>
<KeyGenerationTitle />
<Text size={27}>Confirm Recovery Phrase</Text>
<Stack style={{ display: 'grid', gridTemplateColumns: 'repeat(4, 1fr)', gap: '16px 16px' }}>
{Array.from({ length: 24 }, (_, index) => (
<Input key={`input-${index}`} />
))}
</Stack>
</YStack>
)
}