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 (
Total

{stats.total}

Scheduled

{stats.scheduled}

Live Now

{stats.running}

Completed

{stats.completed}

); }