UNPKG

323 BJavaScriptView Raw
1/**
2 * If `componentProps` is a function, calls it with the provided `ownerState`.
3 * Otherwise, just returns `componentProps`.
4 */
5export default function resolveComponentProps(componentProps, ownerState) {
6 if (typeof componentProps === 'function') {
7 return componentProps(ownerState);
8 }
9 return componentProps;
10}
\No newline at end of file