UNPKG

@react-typed-forms/mui

Version:

![npm](https://img.shields.io/npm/v/@react-typed-forms/mui?style=plastic)

8 lines (7 loc) 330 B
import { TextFieldProps } from "@mui/material"; import { Control } from "@react-typed-forms/core"; import React from "react"; export type FTextFieldProps = TextFieldProps & { state: Control<string | undefined | null>; }; export declare function FTextField({ state, helperText, ...props }: FTextFieldProps): React.JSX.Element;