rfa
Version:
**React Form Architect** is an ultimate solution for creating and rendering forms in React. Its main focus is to provide users with a tool to define, render and share a form in a browser.
12 lines (11 loc) • 456 B
TypeScript
/// <reference types="react" />
import { TextFieldProps } from "@material-ui/core";
import { FormContextType, FormFieldError } from "../../types/common-form-components-types";
export declare type TextInputProps = FormContextType & FormFieldError & {
label: string;
helperText?: string;
placeholder?: string;
type?: string;
muiProps?: TextFieldProps;
};
export declare const TextInput: (props: TextInputProps) => JSX.Element;