import React from 'react'; import { LucideIcon } from 'lucide-react'; import { Stack } from './Stack'; import { Box } from './Box'; import { Text } from './Text'; import { Icon } from './Icon'; import { Surface } from './Surface'; interface StatBoxProps { icon: LucideIcon; label: string; value: string | number; color?: string; } export function StatBox({ icon, label, value, color = 'text-primary-blue' }: StatBoxProps) { return ( {value} {label} ); }