import { Box } from './Box'; import { Text } from './Text'; export interface MiniStatProps { label: string; value: string | number; intent?: 'primary' | 'success' | 'warning' | 'critical' | 'high' | 'med' | 'low'; color?: string; } export const MiniStat = ({ label, value, intent = 'high', color }: MiniStatProps) => { return ( {value} {label} ); };