FrontPastel/node_modules/@mui/material/modern/FormControl/formControlState.js

15 lines
316 B
JavaScript
Raw Normal View History

2024-04-17 13:55:11 +00:00
export default 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;
}, {});
}