import { Box } from './Box'; import { Text } from './Text'; export interface StatItemProps { label: string; value: string | number; intent?: 'primary' | 'success' | 'warning' | 'critical' | 'high' | 'med' | 'low'; align?: 'left' | 'center' | 'right'; } export const StatItem = ({ label, value, intent = 'high', align = 'left' }: StatItemProps) => { return ( {label} {value} ); };