UNPKG

@shinyongjun/react-datepicker

Version:
11 lines (10 loc) 421 B
type TViewType = 'century' | 'decade' | 'year' | 'month'; interface IProps { viewDate: string; viewType: TViewType; labelFormat: string; showsMultipleCalendar: boolean; setViewType: (value: TViewType) => void; } declare function ControllerLabel({ viewDate, viewType, labelFormat, showsMultipleCalendar, setViewType, }: IProps): import("react/jsx-runtime").JSX.Element; export default ControllerLabel;