FrontPastel/node_modules/@mui/base/utils/resolveComponentProps.js

10 lines
337 B
JavaScript
Raw Normal View History

2024-04-17 13:55:11 +00:00
/**
* If `componentProps` is a function, calls it with the provided `ownerState`.
* Otherwise, just returns `componentProps`.
*/
export function resolveComponentProps(componentProps, ownerState, slotState) {
if (typeof componentProps === 'function') {
return componentProps(ownerState, slotState);
}
return componentProps;
}