feat: add continue section

This commit is contained in:
RadoslavDimchev 2023-08-16 13:21:36 +03:00
parent 2b7f29607e
commit d25c13396c
1 changed files with 6 additions and 1 deletions

View File

@ -2,9 +2,10 @@ import { Separator, XStack, YStack } from 'tamagui'
import PageWrapperShadow from '../../components/PageWrappers/PageWrapperShadow'
import SyncStatus from './SyncStatus'
import NimbusLogo from '../../components/Logos/NimbusLogo'
import { Tag } from '@status-im/components'
import { Button, Tag } from '@status-im/components'
import PairIcon from '../../components/Icons/PairIcon'
import CreateIcon from '../../components/Icons/CreateIcon'
import NodeIcon from '../../components/Icons/NodeIcon'
const PairDevice = () => {
return (
@ -24,6 +25,10 @@ const PairDevice = () => {
</XStack>
<Separator borderColor={'#e3e3e3'} />
<SyncStatus isPairing={true} timer={'00:12'} isAwaitingPairing={true} />
<Separator borderColor={'#e3e3e3'} />
<XStack>
<Button icon={<NodeIcon />}>Continue</Button>
</XStack>
</YStack>
</PageWrapperShadow>
)