mui-forms
Version:
Material UI forms with json based schema
11 lines (10 loc) • 408 B
TypeScript
/// <reference types="react" />
import { TextFieldProps, InputBaseProps } from "@mui/material";
import { IFieldProps } from "../../common/field";
interface InputControlProps extends IFieldProps {
type: string;
htmlProps?: InputBaseProps["inputProps"];
textFieldProps?: TextFieldProps;
}
declare function InputControl(props: InputControlProps): JSX.Element;
export default InputControl;