import { Box } from '@/ui/Box'; import { Card } from '@/ui/Card'; import { Grid } from '@/ui/Grid'; import { Heading } from '@/ui/Heading'; import { Icon } from '@/ui/Icon'; import { StatGridItem } from '@/ui/StatGridItem'; import { TrendingUp } from 'lucide-react'; interface CareerStatsProps { stats: { totalRaces: number; wins: number; podiums: number; consistency: number | null; }; } export function CareerStats({ stats }: CareerStatsProps) { return ( }> Career Statistics ); }