import { CloudRain, CloudSun, MoonStar, Snowflake, Sun, Wind } from "lucide-react"; import type { WeatherMood } from "@/types/imgw"; export function WeatherIcon({ mood, className = "" }: { mood: WeatherMood; className?: string }) { const Icon = { clear: Sun, rain: CloudRain, wind: Wind, cold: Snowflake, night: MoonStar, mild: CloudSun, }[mood]; return ; }