interface StatItemProps { label: string; value: string; color: string; } export default function StatItem({ label, value, color }: StatItemProps) { return (
{label} {value}
); }