UNPKG

@nish1896/rhf-mui-components

Version:

A suite of 20+ reusable Material UI components for React Hook Form to minimize your time and effort in creating and styling forms

9 lines (8 loc) 265 B
import type { ReactElement } from 'react'; type Props = { children: ReactElement | ReactElement[]; error: boolean; fullWidth?: boolean; }; declare const FormControl: (props: Props) => import("react/jsx-runtime").JSX.Element; export default FormControl;