"use client"; import clsx from "clsx"; type RunwayPlate = { rwy: string; isSettlement: boolean; tdzTemp: number | null; midTemp: number | null; endTemp: number | null; maxTemp: number | null; dailyHigh: number | null; trend_15m: number | null; }; export function TemperatureRunwayDetails({ isEn, plates, tempSymbol, }: { isEn: boolean; plates: RunwayPlate[]; tempSymbol: string; }) { if (!plates.length) return null; return (