import { ChevronRight, PlayCircle } from 'lucide-react'; import { Box } from '@/ui/Box'; import { Heading } from '@/ui/Heading'; import { Icon } from '@/ui/Icon'; import { Text } from '@/ui/Text'; interface LiveRaceItemProps { track: string; leagueName: string; onClick?: () => void; } export function LiveRaceItem({ track, leagueName, onClick }: LiveRaceItemProps) { return ( {track} {leagueName} ); }