local-weather/components/WeatherIcon.tsx

8 lines
183 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'
export default function WeatherIcon() {
return(
<Image src={sunnyColor} alt="Weather icon"/>
)
};