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