@mui/material
Version:
React components that implement Google's Material Design.
21 lines (20 loc) • 417 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = formControlState;
function formControlState({
props,
states,
muiFormControl
}) {
return states.reduce((acc, state) => {
acc[state] = props[state];
if (muiFormControl) {
if (typeof props[state] === 'undefined') {
acc[state] = muiFormControl[state];
}
}
return acc;
}, {});
}
;