import { ArrowRight } from 'lucide-react'; import { Box } from './Box'; import { Button } from './Button'; import { Card } from './Card'; import { Grid } from './Grid'; import { Heading } from './Heading'; import { Icon } from './Icon'; import { Image } from './Image'; import { Link } from './Link'; import { Stack } from './Stack'; import { Surface } from './Surface'; import { Text } from './Text'; interface LeagueSummaryCardProps { id: string; name: string; description?: string; maxDrivers: number; qualifyingFormat: string; href: string; } export function LeagueSummaryCard({ id, name, description, maxDrivers, qualifyingFormat, href, }: LeagueSummaryCardProps) { return ( {name} League {name} {description && ( {description} )} Max Drivers {maxDrivers} Format {qualifyingFormat} ); }