Implement settings section
This commit is contained in:
parent
37e01f1031
commit
0555e52bdb
|
@ -2,7 +2,7 @@ import { Separator, XStack, YStack } from 'tamagui'
|
||||||
import PageWrapperShadow from '../../components/PageWrappers/PageWrapperShadow'
|
import PageWrapperShadow from '../../components/PageWrappers/PageWrapperShadow'
|
||||||
import SyncStatus from './SyncStatus'
|
import SyncStatus from './SyncStatus'
|
||||||
import NimbusLogo from '../../components/Logos/NimbusLogo'
|
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 PairIcon from '../../components/Icons/PairIcon'
|
||||||
import CreateIcon from '../../components/Icons/CreateIcon'
|
import CreateIcon from '../../components/Icons/CreateIcon'
|
||||||
import NodeIcon from '../../components/Icons/NodeIcon'
|
import NodeIcon from '../../components/Icons/NodeIcon'
|
||||||
|
@ -26,6 +26,22 @@ const PairDevice = () => {
|
||||||
<Separator borderColor={'#e3e3e3'} />
|
<Separator borderColor={'#e3e3e3'} />
|
||||||
<SyncStatus isPairing={true} timer={'00:12'} isAwaitingPairing={true} />
|
<SyncStatus isPairing={true} timer={'00:12'} isAwaitingPairing={true} />
|
||||||
<Separator borderColor={'#e3e3e3'} />
|
<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>
|
<XStack>
|
||||||
<Button icon={<NodeIcon />}>Continue</Button>
|
<Button icon={<NodeIcon />}>Continue</Button>
|
||||||
</XStack>
|
</XStack>
|
||||||
|
|
Loading…
Reference in New Issue