import { LucideIcon } from 'lucide-react'; import { Box } from './Box'; import { Icon } from './Icon'; import { Surface } from './Surface'; import { Text } from './Text'; export interface StatBoxProps { label: string; value: string | number; icon: LucideIcon; intent?: 'primary' | 'success' | 'warning' | 'critical' | 'telemetry' | 'low'; color?: string; } export const StatBox = ({ label, value, icon, intent = 'primary', color }: StatBoxProps) => { return ( {label} {value} ); };