Files
TestMesa/backend/frontend/node_modules/@mui/material/styles/slotShouldForwardProp.js
2024-12-17 13:23:11 -08:00

5 lines
204 B
JavaScript

// copied from @mui/system/createStyled
function slotShouldForwardProp(prop) {
return prop !== 'ownerState' && prop !== 'theme' && prop !== 'sx' && prop !== 'as';
}
export default slotShouldForwardProp;