UNPKG

@mui/material

Version:

React components that implement Google's Material Design.

15 lines 316 B
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; }, {}); }