UNPKG

goobs-frontend

Version:

A comprehensive React-based libary for building modern web applications

27 lines 749 B
import { default as React } from 'react'; export interface DateFieldProps { label?: string; value?: Date | null; onChange: (date: Date | null) => void; variant?: string; disableFutureDateValidation?: boolean; placeholder?: string; styles?: { disabled?: boolean; required?: boolean; theme?: string; helperTextType?: string; height?: string; fontSize?: string; borderRadius?: string; marginBottom?: string; marginTop?: string; width?: string; minHeight?: string; padding?: string; }; helperText?: string; } declare const DateField: React.FC<DateFieldProps>; export default DateField; //# sourceMappingURL=index.d.ts.map