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