Update ConnectDevicePage.tsx

This commit is contained in:
Hristo Nedelkov 2023-12-15 12:27:41 +02:00
parent 2ad62c9c6b
commit 9ca87c1aff
1 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
import { useEffect, useState } from 'react' import { useEffect, useState } from 'react'
import BreadcrumbBar from '../../components/General/BreadcrumbBar/BreadcrumbBar' import BreadcrumbBar from '../../components/General/BreadcrumbBar/BreadcrumbBar'
import { Button as StatusButton, Text, Avatar, Checkbox } from '@status-im/components' import { Button as StatusButton, Text, Avatar, Checkbox } from '@status-im/components'
import { Label, Separator, Stack, XStack, YStack } from 'tamagui' import { Article, Label, Separator, Stack, XStack, YStack } from 'tamagui'
import PageWrapperShadow from '../../components/PageWrappers/PageWrapperShadow' import PageWrapperShadow from '../../components/PageWrappers/PageWrapperShadow'
import Titles from '../../components/General/Titles' import Titles from '../../components/General/Titles'
import LabelInputField from '../../components/General/LabelInputField' import LabelInputField from '../../components/General/LabelInputField'
@ -46,7 +46,7 @@ const ConnectDevicePage = () => {
<YStack space={'$3'}> <YStack space={'$3'}>
<Header selectedTag="connect" /> <Header selectedTag="connect" />
<article className="content"> <Article className="content">
<Titles <Titles
title="Connect Device" title="Connect Device"
subtitle="Configure your device to connect to the Nimbus Node Manager" subtitle="Configure your device to connect to the Nimbus Node Manager"
@ -113,7 +113,7 @@ const ConnectDevicePage = () => {
<Separator alignSelf="stretch" borderColor={'#F0F2F5'} /> <Separator alignSelf="stretch" borderColor={'#F0F2F5'} />
</YStack> </YStack>
<StatusButton icon={<NodeIcon size={20} />}>Connect Device</StatusButton> <StatusButton icon={<NodeIcon size={20} />}>Connect Device</StatusButton>
</article> </Article>
</YStack> </YStack>
</PageWrapperShadow> </PageWrapperShadow>
) )