UNPKG

@alifd/meet-react

Version:

Fusion Mobile React UI System Component

10 lines (9 loc) 383 B
/// <reference types="react" /> /// <reference types="react" /> import { FieldElement, FieldElementProps } from '../field'; import { InputProps } from '../input'; export type InputFieldProps = Omit<FieldElementProps, 'onChange'> & InputProps; export default class InputField extends FieldElement<InputFieldProps> { static displayName: string; renderControl(): JSX.Element; }