UNPKG

@surveycake/rc

Version:

react component of surveycake

13 lines (12 loc) 301 B
export interface DatePickerProps { value: Date | undefined | null; onChange: (date: Date | null) => void; placeholder?: string; label?: string; minDate?: Date; maxDate?: Date; invalidDateMsg?: string; } export interface InvalidDateMsgProps { msg: string; }