Update DeviceStorageHealth.tsx
This commit is contained in:
parent
e0c72a2bcd
commit
419dbc3959
|
@ -1,5 +1,5 @@
|
||||||
import IconText from '../General/IconText'
|
import IconText from '../General/IconText'
|
||||||
import { Separator, XStack, YStack } from 'tamagui'
|
import { Separator, Stack, XStack, YStack } from 'tamagui'
|
||||||
import StandardGauge from './StandardGauge'
|
import StandardGauge from './StandardGauge'
|
||||||
import { Shadow, Text } from '@status-im/components'
|
import { Shadow, Text } from '@status-im/components'
|
||||||
import { CheckCircleIcon, IncorrectIcon } from '@status-im/icons'
|
import { CheckCircleIcon, IncorrectIcon } from '@status-im/icons'
|
||||||
|
@ -56,7 +56,7 @@ const DeviceStorageHealth = ({ storage, maxStorage }: DeviceStorageHealthProps)
|
||||||
position: 'relative',
|
position: 'relative',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<div
|
<Stack
|
||||||
style={{
|
style={{
|
||||||
position: 'absolute',
|
position: 'absolute',
|
||||||
right: '33px',
|
right: '33px',
|
||||||
|
@ -65,7 +65,7 @@ const DeviceStorageHealth = ({ storage, maxStorage }: DeviceStorageHealthProps)
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<StandardGauge data={data(free)} />
|
<StandardGauge data={data(free)} />
|
||||||
</div>
|
</Stack>
|
||||||
<YStack space={'$3'}>
|
<YStack space={'$3'}>
|
||||||
<Text size={15} weight={'semibold'}>
|
<Text size={15} weight={'semibold'}>
|
||||||
Storage
|
Storage
|
||||||
|
|
Loading…
Reference in New Issue