@eggtronic/react-weather-widget
Version:
A nice weather widget component for react
11 lines (10 loc) • 372 B
TypeScript
/// <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;