UNPKG

@eggtronic/react-weather-widget

Version:
11 lines (10 loc) 372 B
/// <reference types="react" /> import { WeatherData, WeatherWidgetTheme } from './types/weatherWidget'; interface WeatherHourlyProps { hourly: WeatherData['hourly']; from: number; to: number; theme: WeatherWidgetTheme; } declare function WeatherHourly({ hourly, from, to, theme }: WeatherHourlyProps): JSX.Element; export default WeatherHourly;