UNPKG

date-picker-np

Version:
20 lines (14 loc) 492 B
import React from "react"; import { DatePickerCommonProps } from "./DatePickerNP"; import { CalendarStyles } from "./Calendar"; export type DatePickerCalendarProps = DatePickerCommonProps & { value?: string; onChange: (date?: string) => void; calendarPositions?: React.CSSProperties; calendarStyles: CalendarStyles; }; export type CalendarFooterProps = DatePickerCommonProps & { hasValidValue: boolean; onChange: (date?: string) => void; calendarStyles: CalendarStyles; };