Fix LogsSumCard
This commit is contained in:
parent
4cfb809ecd
commit
2433247c9d
|
@ -1,10 +1,12 @@
|
|||
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 Icon from '../../components/General/Icon'
|
||||
import DashboardCardWrapper from '../Dashboard/DashboardCardWrapper'
|
||||
|
||||
const LogsSumCard = () => {
|
||||
return (
|
||||
<DashboardCardWrapper>
|
||||
<YStack
|
||||
style={{
|
||||
borderRadius: '16px',
|
||||
|
@ -23,9 +25,14 @@ const LogsSumCard = () => {
|
|||
}}
|
||||
>
|
||||
<YStack space={'$3'} width={'100%'}>
|
||||
<Text size={15} weight={'semibold'}>
|
||||
<XStack justifyContent="space-between" width={'100%'}>
|
||||
<Text size={27} weight={'semibold'} >
|
||||
Critical
|
||||
</Text>
|
||||
<Text size={15} weight={'semibold'}>
|
||||
{'>'}
|
||||
</Text>
|
||||
</XStack>
|
||||
<XStack justifyContent="space-between" width={'100%'}>
|
||||
<Text size={27} weight={'semibold'}>
|
||||
16
|
||||
|
@ -43,6 +50,7 @@ const LogsSumCard = () => {
|
|||
</IconText>
|
||||
</XStack>
|
||||
</YStack>
|
||||
</DashboardCardWrapper>
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue