| 5 | import { Wind, Droplets, Thermometer } from "lucide-react"; |
| 6 | |
| 7 | interface Forecast { |
| 8 | day: string; |
| 9 | max: number; |
| 10 | min: number; |
| 11 | emoji: string; |
| 12 | } |
| 13 | |
| 14 | interface WeatherData { |
| 15 | city: string; |
nothing calls this directly
no outgoing calls
no test coverage detected