diff --git a/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryPhrase.tsx b/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryPhrase.tsx index aa2ffcf0..531c707f 100644 --- a/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryPhrase.tsx +++ b/src/pages/ValidatorOnboarding/KeyGeneration/RecoveryPhrase.tsx @@ -1,11 +1,35 @@ -import { YStack } from 'tamagui' -import { Button, InformationBox } from '@status-im/components' +import { Stack, YStack } from 'tamagui' +import { Button, InformationBox, Text } from '@status-im/components' import { CloseCircleIcon } from '@status-im/icons' +import { useState } from 'react' const RecoveryPhrase = () => { + const [isReveal, setIsReveal] = useState(false) + + const revealHandler = () => { + setIsReveal(state => !state) + } + return ( - - + + + + + asdf + + + + + +