UNPKG

react-datepicker-configurable

Version:

Flexible, Reusable, Mobile friendly DatePicker Component

22 lines (21 loc) 641 B
import * as React from 'react'; interface Props { /** Prev button click event */ onPrev?: () => void; /** Next button click event */ onNext?: () => void; /** Calenar Title Click Event */ onTitleClick?: () => void; /** Prev Icon show or Hide */ shouldShowPrevIcon?: boolean; /** Next icon show or hide */ shouldShowNextIcon?: boolean; /** Title to show in calendar */ title?: string; /** Custom prevIcon */ prevIcon?: React.ReactNode; /** Custom nextIcon */ nextIcon?: React.ReactNode; } declare const CalendarHead: React.FunctionComponent<Props>; export default CalendarHead;