mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-01-21 00:40:09 +00:00
feat: create RecoveryPhrase component
This commit is contained in:
parent
b24259c3ab
commit
b89e4641a3
@ -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
|
Loading…
x
Reference in New Issue
Block a user