UNPKG

@surveycake/rc

Version:

react component of surveycake

11 lines (10 loc) 268 B
export interface DatePickerProps { value: Date | undefined | null; onChange: (date: Date | null) => void; placeholder?: string; label?: string; minDate?: Date; maxDate?: Date; disableFuture?: boolean; disablePast?: boolean; }