Fix LogsSumCard

This commit is contained in:
Hristo Nedelkov 2023-11-09 12:11:00 +02:00
parent 4cfb809ecd
commit 2433247c9d
1 changed files with 43 additions and 35 deletions

View File

@ -1,10 +1,12 @@
import { Text } from '@status-im/components' import { Text } from '@status-im/components'
import { Separator, Stack, XStack, YStack } from 'tamagui' import { Separator, XStack, YStack } from 'tamagui'
import IconText from '../../components/General/IconText' import IconText from '../../components/General/IconText'
import Icon from '../../components/General/Icon' import Icon from '../../components/General/Icon'
import DashboardCardWrapper from '../Dashboard/DashboardCardWrapper'
const LogsSumCard = () => { const LogsSumCard = () => {
return ( return (
<DashboardCardWrapper>
<YStack <YStack
style={{ style={{
borderRadius: '16px', borderRadius: '16px',
@ -23,9 +25,14 @@ const LogsSumCard = () => {
}} }}
> >
<YStack space={'$3'} width={'100%'}> <YStack space={'$3'} width={'100%'}>
<Text size={15} weight={'semibold'}> <XStack justifyContent="space-between" width={'100%'}>
<Text size={27} weight={'semibold'} >
Critical Critical
</Text> </Text>
<Text size={15} weight={'semibold'}>
{'>'}
</Text>
</XStack>
<XStack justifyContent="space-between" width={'100%'}> <XStack justifyContent="space-between" width={'100%'}>
<Text size={27} weight={'semibold'}> <Text size={27} weight={'semibold'}>
16 16
@ -43,6 +50,7 @@ const LogsSumCard = () => {
</IconText> </IconText>
</XStack> </XStack>
</YStack> </YStack>
</DashboardCardWrapper>
) )
} }