Implement settings section

This commit is contained in:
Hristo Nedelkov 2023-08-16 13:40:23 +03:00
parent 37e01f1031
commit 0555e52bdb
1 changed files with 17 additions and 1 deletions

View File

@ -2,7 +2,7 @@ import { Separator, XStack, YStack } from 'tamagui'
import PageWrapperShadow from '../../components/PageWrappers/PageWrapperShadow'
import SyncStatus from './SyncStatus'
import NimbusLogo from '../../components/Logos/NimbusLogo'
import { Button, Tag } from '@status-im/components'
import { Button, Checkbox, Tag, Text } from '@status-im/components'
import PairIcon from '../../components/Icons/PairIcon'
import CreateIcon from '../../components/Icons/CreateIcon'
import NodeIcon from '../../components/Icons/NodeIcon'
@ -26,6 +26,22 @@ const PairDevice = () => {
<Separator borderColor={'#e3e3e3'} />
<SyncStatus isPairing={true} timer={'00:12'} isAwaitingPairing={true} />
<Separator borderColor={'#e3e3e3'} />
<Text size={19} weight={'semibold'} color="#09101C">
Settings
</Text>
<XStack space={'$4'}>
<Checkbox
id="port-checkbox"
variant="outline"
selected={false}
onCheckedChange={() => {
console.log('checked')
}}
size={20}
/>
<Text size={15}>Auto Connect Paired Device</Text>
</XStack>
<Separator borderColor={'#e3e3e3'} />
<XStack>
<Button icon={<NodeIcon />}>Continue</Button>
</XStack>