import { Grid } from '@/ui/Grid'; import { StatGridItem } from '@/ui/StatGridItem'; import { CheckCircle, Clock, Gavel } from 'lucide-react'; interface RaceStewardingStatsProps { pendingCount: number; resolvedCount: number; penaltiesCount: number; } export function RaceStewardingStats({ pendingCount, resolvedCount, penaltiesCount }: RaceStewardingStatsProps) { return ( ); }