diff --git a/src/pages/Dashboard/SyncStatusCard/SyncCardContent.tsx b/src/pages/Dashboard/SyncStatusCard/SyncCardContent.tsx index f8f49042..04c11cf9 100644 --- a/src/pages/Dashboard/SyncStatusCard/SyncCardContent.tsx +++ b/src/pages/Dashboard/SyncStatusCard/SyncCardContent.tsx @@ -5,6 +5,8 @@ import { CSSProperties } from 'react' import { formatNumberWithComa } from '../../../utilities' import IconText from '../../../components/General/IconText' +import Icon from '../../../components/General/Icon' +import StandardGauge from '../../../components/Charts/StandardGauge' type SyncCardContentProps = { title: string @@ -12,7 +14,20 @@ type SyncCardContentProps = { total: number isTop?: boolean } - +const data = [ + { + id: 'storage', + label: 'Used', + value: 132156, + color: '#ff6161', + }, + { + id: 'storage', + label: 'Free', + value: 200000, + color: '#E7EAEE', + }, +] const SyncCardContent = ({ title, value, total, isTop }: SyncCardContentProps) => { const style: CSSProperties = {} @@ -31,6 +46,17 @@ const SyncCardContent = ({ title, value, total, isTop }: SyncCardContentProps) = {title} + + + + + +