import React from 'react'; import { Box } from './Box'; import { Text } from './Text'; interface MiniStatProps { label: string; value: string | number; color?: string; } export function MiniStat({ label, value, color = 'text-white' }: MiniStatProps) { return ( {value} {label} ); }