@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.
17 lines (16 loc) • 401 B
JavaScript
//#region src/config/DefaultConfig.ts
const DefaultStyles = Object.freeze({ margin: {
top: "0.25rem",
bottom: "0.75rem",
left: 0
} });
const DefaultRHFMuiConfig = {
defaultFormLabelSx: { mb: DefaultStyles.margin.bottom },
defaultFormControlLabelSx: {},
defaultFormHelperTextSx: {
mt: DefaultStyles.margin.top,
ml: DefaultStyles.margin.left
}
};
//#endregion
export { DefaultRHFMuiConfig };