fix: change and icon for advanced rec method link

This commit is contained in:
RadoslavDimchev 2023-08-30 13:55:27 +03:00
parent 26e4d03961
commit f470267c5b
1 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@ import { Separator, Stack, XStack, YStack } from 'tamagui'
import SetupRow from './SetupRow'
import WithdrawalAddress from './WithdrawalAddress'
import { Text } from '@status-im/components'
import { ArrowLeftIcon } from '@status-im/icons'
import { ArrowRightIcon } from '@status-im/icons'
import { Link } from 'react-router-dom'
const ClientSetup = () => {
@ -14,10 +14,10 @@ const ClientSetup = () => {
<Stack style={{ maxWidth: 'fit-content', marginTop: '50px' }}>
<Text size={15}>
<XStack space={'$1'} style={{ alignItems: 'center' }}>
<ArrowLeftIcon size={16} color="#2A4CF4" />
<Link style={{ color: '#2A4CF4' }} to={'/'}>
Edit Validators
Advanced Recovery Method
</Link>
<ArrowRightIcon size={16} color="#2A4CF4" />
</XStack>
</Text>
</Stack>