feat: create RecoveryPhrase component

This commit is contained in:
RadoslavDimchev 2023-08-29 09:20:41 +03:00
parent b24259c3ab
commit b89e4641a3

View File

@ -0,0 +1,18 @@
import { YStack } from 'tamagui'
import { Button, InformationBox } from '@status-im/components'
import { CloseCircleIcon } from '@status-im/icons'
const RecoveryPhrase = () => {
return (
<YStack space={'$2'}>
<Button>Reveal Recovery Phrase</Button>
<InformationBox
message="Write down and keep your Secret Recovery Phrase in a secure place. Make sure no one is looking at your screen."
variant="error"
icon={<CloseCircleIcon size={20} />}
/>
</YStack>
)
}
export default RecoveryPhrase