import {
Paper,
Stack,
Text,
Group,
ThemeIcon,
Box,
Badge,
useMantineTheme
} from '@mantine/core'
import { LineChart, BarChart } from '@mantine/charts'
import { TbTimeline, TbChartBar, TbArrowUpRight } from 'react-icons/tb'
interface ChartProps {
data?: any[]
isLoading?: boolean
}
export function VillageActivityLineChart({ data = [], isLoading }: ChartProps) {
const theme = useMantineTheme()
return (
DAILY ACTIVITY - ALL VILLAGES
Trend over the last 7 days
}>
{isLoading ? '...' : 'Live'}
)
}
export function VillageComparisonBarChart({ data = [], isLoading }: ChartProps) {
const theme = useMantineTheme()
return (
USAGE COMPARISON BETWEEN VILLAGES
Most active village deployments
)
}