payzli-ui-aryan
Version:
A custom react components library
16 lines (15 loc) • 382 B
TypeScript
export interface IDateRangeInput {
id?: string;
style?: React.CSSProperties;
dates: string[];
handleChange: (date: string[]) => void;
inputFormat?: string;
displayFormat?: string;
UiLanguage: string;
hideFooter?: boolean;
hideHeader?: boolean;
target?: JSX.Element;
label?: string;
required?: boolean;
buttonFormClass?: string;
}