local-weather/components/WeatherIcon.tsx

9 lines
219 B
TypeScript

import Image from "next/image";
import sunnyColor from '../public/sunny.svg'
import { useContext } from "react";
export default function WeatherIcon() {
return(
<Image src={sunnyColor} alt="Weather icon"/>
)
};