UNPKG

goobs-frontend

Version:

A comprehensive React-based libary for building modern web applications

15 lines 406 B
import { default as React } from 'react'; export interface TimeFieldProps { onChange?: (time: Date | null) => void; value?: Date | null; label?: string; helperText?: string; styles?: { disabled?: boolean; required?: boolean; theme?: string; }; } declare const TimeField: React.FC<TimeFieldProps>; export default TimeField; //# sourceMappingURL=index.d.ts.map