reablocks
Version:
Component library for React
18 lines (17 loc) • 471 B
TypeScript
import { FC } from 'react';
import { CalendarTheme } from '../CalendarTheme';
export interface CalendarMonthsProps {
/**
* The currently displayed month of the calendar.
*/
value: number;
/**
* A callback function that is called when a day is selected.
*/
onChange: (month: number) => void;
/**
* Theme for the CalendarMonths.
*/
theme?: CalendarTheme;
}
export declare const CalendarMonths: FC<CalendarMonthsProps>;