UNPKG

react-calendar-kit

Version:

React Calendar Kit is a powerful and flexible library for building accessible and highly customizable calendar and date/time picker components in your React applications. React Calendar Kit provides a solid foundation for creating inclusive user experienc

11 lines (8 loc) 372 B
import { CalendarDate } from '@internationalized/date'; import { ElementProps } from '../types/common.types.js'; interface CalendarHeaderProps extends ElementProps<'div'> { date: CalendarDate; currentMonth: CalendarDate; } declare const CalendarHeader: (props: CalendarHeaderProps) => JSX.Element; export { type CalendarHeaderProps, CalendarHeader as default };