import { CalendarDays, Clock, Zap, Trophy } from 'lucide-react'; interface RaceStatsProps { stats: { total: number; scheduled: number; running: number; completed: number; }; className?: string; } export function RaceStats({ stats, className }: RaceStatsProps) { return (
{stats.total}
{stats.scheduled}
{stats.running}
{stats.completed}