fix: add valid info badge icon to key gen sync card
This commit is contained in:
parent
6f61d151f8
commit
a59b34e019
|
@ -1,5 +1,5 @@
|
||||||
import { Stack, XStack, YStack } from 'tamagui'
|
import { Stack, XStack, YStack } from 'tamagui'
|
||||||
import { ClearIcon } from '@status-im/icons'
|
import { InfoBadgeIcon } from '@status-im/icons'
|
||||||
import { Text } from '@status-im/components'
|
import { Text } from '@status-im/components'
|
||||||
|
|
||||||
import StandardGauge from '../../../../components/Charts/StandardGauge'
|
import StandardGauge from '../../../../components/Charts/StandardGauge'
|
||||||
|
@ -48,7 +48,7 @@ const KeyGenerationSyncCard = ({ synced, total, title, color }: KeyGenerationSyn
|
||||||
{formatNumbersWithComa(synced)} / {formatNumbersWithComa(total)}
|
{formatNumbersWithComa(synced)} / {formatNumbersWithComa(total)}
|
||||||
</Text>
|
</Text>
|
||||||
</YStack>
|
</YStack>
|
||||||
<ClearIcon size={20} color="#A1ABBD" style={{ cursor: 'pointer' }} />
|
<InfoBadgeIcon size={20} color="#A1ABBD" style={{ cursor: 'pointer' }} />
|
||||||
</XStack>
|
</XStack>
|
||||||
</BorderBox>
|
</BorderBox>
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue