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