import { Box } from '@/ui/Box'; import { Card } from '@/ui/Card'; import { Heading } from '@/ui/Heading'; import { RatingComponent } from '@/components/drivers/RatingComponent'; import { RatingHistoryItem } from '@/components/drivers/RatingHistoryItem'; import { Stack } from '@/ui/Stack'; import { Text } from '@/ui/Text'; interface RatingBreakdownProps { skillRating?: number; safetyRating?: number; sportsmanshipRating?: number; } export function RatingBreakdown({ skillRating = 1450, safetyRating = 92, sportsmanshipRating = 4.8 }: RatingBreakdownProps) { return ( Rating Components Rating History 📈 Rating Insights ✓ Strong safety rating - keep up the clean racing! → Skill rating improving - competitive against higher-rated drivers i Complete more races to stabilize your ratings ); }