dndbeyond_src/ddb_main/node_modules/@mui/base/utils/resolveComponentProps.js
2025-05-28 15:36:51 -07:00

10 lines
337 B
JavaScript

/**
* 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;
}