local-weather/components/WeatherIcon.tsx
2024-05-07 21:18:51 +02:00

8 lines
183 B
TypeScript

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