'use client'; import React from 'react'; import { Flag } from 'lucide-react'; import { Card } from '@/ui/Card'; import { Stack } from '@/ui/Stack'; import { Heading } from '@/ui/Heading'; import { Grid } from '@/ui/Grid'; import { Box } from '@/ui/Box'; import { Text } from '@/ui/Text'; import { Icon } from '@/ui/Icon'; interface RaceDetailCardProps { track: string; car: string; sessionType: string; statusLabel: string; statusColor: string; } export function RaceDetailCard({ track, car, sessionType, statusLabel, statusColor }: RaceDetailCardProps) { return ( }>Race Details ); } function DetailItem({ label, value, capitalize, color }: { label: string, value: string | number, capitalize?: boolean, color?: string }) { return ( {label} {value} ); }