UNPKG

react-calendar-z

Version:

React hook calendar (lib). Ultimate calendar

11 lines (10 loc) 348 B
import React from 'react'; export interface ICalendarFooterProps { showXClose?: boolean; xCloseIcon?: string | React.ReactNode; showFooter?: boolean; selectedValue: string | React.ReactNode; resetSelectionValue: () => any; } declare const CalendarFooter: React.FC<ICalendarFooterProps>; export default CalendarFooter;