local-weather/components/WeatherIcon.tsx

9 lines
219 B
TypeScript
Raw Normal View History

2024-05-07 19:18:51 +00:00
import Image from "next/image";
import sunnyColor from '../public/sunny.svg'
import { useContext } from "react";
2024-05-07 19:18:51 +00:00
export default function WeatherIcon() {
return(
<Image src={sunnyColor} alt="Weather icon"/>
)
};