@octopusdeploy/design-system-components
Version:
The design systems component library.
12 lines (11 loc) • 469 B
TypeScript
interface DatePickerCalendarProps {
selected: Date | undefined;
onSelect: (date: Date) => void;
month: Date | undefined;
onMonthChange: (date: Date | undefined) => void;
startMonth: Date;
endMonth: Date;
disablePastDates?: boolean;
}
export declare function DatePickerCalendar({ selected, onSelect, month, onMonthChange, startMonth, endMonth, disablePastDates }: DatePickerCalendarProps): import("react/jsx-runtime").JSX.Element;
export {};