diff --git a/src/pages/LogsPage/LogsSumCard.tsx b/src/pages/LogsPage/LogsSumCard.tsx index e6b03420..2d2b106c 100644 --- a/src/pages/LogsPage/LogsSumCard.tsx +++ b/src/pages/LogsPage/LogsSumCard.tsx @@ -1,10 +1,11 @@ import { Text } from '@status-im/components' -import { Separator, 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 = () => { +const LogsSumCard = ({ type, count, countActive, countInactive }: LogsSumCardProps) => { return ( { border: 'none', backgroundColor: '#fff', flexGrow: '1', - minWidth: '320px', + minWidth: '280px', }} > { > - - Critical + + {type} {'>'} @@ -35,7 +36,7 @@ const LogsSumCard = () => { - 16 + {count} Per Minute @@ -44,9 +45,12 @@ const LogsSumCard = () => { - + } weight={'semibold'}> - {'Good'} + {countActive + ' Active'} + + } weight={'semibold'}> + {countInactive + ' Inactive'}