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