'use client'; import { Icon } from '@/ui/Icon'; import { Text } from '@/ui/Text'; import { Stack } from '@/ui/Stack'; import { Grid } from '@/ui/Grid'; import { Droplets, Sun, Thermometer, Wind, type LucideIcon } from 'lucide-react'; interface TrackConditionsPanelProps { airTemp: string; trackTemp: string; humidity: string; windSpeed: string; weatherType: string; } export function TrackConditionsPanel({ airTemp, trackTemp, humidity, windSpeed, weatherType, }: TrackConditionsPanelProps) { return ( Track Conditions {weatherType} ); } function ConditionItem({ icon, label, value, color }: { icon: LucideIcon, label: string, value: string, color: string }) { return ( {label} {value} ); }