import { memo } from 'react'; import { WiDaySunny, WiNightClear, WiDayCloudy, WiNightCloudy, WiCloud, WiCloudy, WiDayShowers, WiNightShowers, WiRain, WiThunderstorm, WiSnow, WiFog, } from 'react-icons/wi'; function WeatherIcon({ name }) { // name is the openweathermap icon name, see https://openweathermap.org/weather-conditions switch (name) { case '01d': return ; case '01n': return ; case '02d': return ; case '02n': return ; case '03d': case '03n': return ; case '04d': case '04n': return ; case '09d': return ; case '09n': return ; case '10d': case '10n': return ; case '11d': case '11n': return ; case '13d': case '13n': return ; case '50d': case '50n': return ; default: return null; } } export default memo(WeatherIcon);