import { Box } from '@/ui/primitives/Box'; import { StatGridItem } from '@/ui/StatGridItem'; import { CalendarDays, Clock, Trophy, Zap } from 'lucide-react'; interface RaceStatsProps { stats: { total: number; scheduled: number; running: number; completed: number; }; } export function RaceStats({ stats }: RaceStatsProps) { return ( ); }