UNPKG

@react-typed-forms/mui

Version:

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

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