UNPKG

react-tailwindcss-datepicker

Version:

A modern React Datepicker using Tailwind CSS 3

13 lines (12 loc) 370 B
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) => import("react/jsx-runtime").JSX.Element; export default Calendar;