import styles from 'styles/Home.module.scss' import { FaSun, FaMoon, FaCloudSun, FaCloudMoon, FaCloud, FaCloudShowersHeavy } from 'react-icons/fa' import { BsCloudDrizzleFill, BsCloudsFill, BsCloudLightningFill, BsCloudSnowFill, BsCloudFogFill } from 'react-icons/bs' const Weather = ({data}: {data: any}) => { const { temp: temperature } = data.main const { icon: weatherIcon, description: weatherDescription} = data.weather[0] const icons: any = { _01d: , _01n: , _02d: , _02n: , _03d: , _03n: , _04d: , _04n: , _09d: , _09n: , _10d: , _10n: , _11d: , _11n: , _13d: , _13n: , _50d: , _50n: } return (
{icons[`_${weatherIcon}`]}

It's currently {parseInt(temperature)} °C ({weatherDescription}) in Budapest

) } export default Weather