Add Link
This commit is contained in:
parent
a1340d4265
commit
0f0dd918b6
|
@ -3,6 +3,8 @@ import { XStack, Stack, YStack } from 'tamagui'
|
|||
import { Text } from '@status-im/components'
|
||||
import Confetti from 'react-confetti'
|
||||
import ActivationCard from './ActivationCard'
|
||||
import { Link } from 'react-router-dom'
|
||||
import { ArrowLeftIcon } from '@status-im/icons'
|
||||
|
||||
const Activation = () => {
|
||||
const [showConfetti, setShowConfetti] = useState(true)
|
||||
|
@ -55,6 +57,16 @@ const Activation = () => {
|
|||
</XStack>
|
||||
</YStack>
|
||||
</YStack>
|
||||
<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
|
||||
</Link>
|
||||
</XStack>
|
||||
</Text>
|
||||
</Stack>
|
||||
</YStack>
|
||||
</Stack>
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue