UNPKG

@upv/react-ui-core

Version:

**USHI Design System — Modern UI Component Library**

9 lines (8 loc) 273 B
import React from "react"; import { TextFieldProps } from "../TextField"; export interface DateFieldProps extends Omit<TextFieldProps, "type"> { minDate?: string; maxDate?: string; startDate?: string; } export declare const DateField: React.FC<DateFieldProps>;