UNPKG

@nish1896/rhf-mui-components

Version:

A suite of 20+ production-ready react-hook-form components built with material-ui. Fully typed, tree-shakable, and optimized for enterprise-grade forms.

14 lines (13 loc) 386 B
import { jsx } from "react/jsx-runtime"; import FormControl from "@mui/material/FormControl"; //#region src/common/FormControl.tsx const FormControl$1 = ({ children, error, fullWidth = true, ...otherFormControlProps }) => { return /* @__PURE__ */ jsx(FormControl, { fullWidth, error, ...otherFormControlProps, children }); }; //#endregion export { FormControl$1 as default };