UNPKG

@ballistix.digital/react-tailwindcss-datepicker

Version:
14 lines (13 loc) 375 B
import React from "react"; import { DateType } from "types"; interface Props { date: Date; minDate?: DateType; maxDate?: DateType; onClickPrevious: () => void; onClickNext: () => void; changeMonth: (month: number) => void; changeYear: (year: number) => void; } declare const Calendar: (props: Props) => React.JSX.Element; export default Calendar;