@mui/codemod
Version:
Codemod scripts for Material UI.
34 lines (33 loc) • 594 B
JavaScript
"use strict";
fn({
MuiListItemText: {
defaultProps: {
primaryTypographyProps: primaryTypographyProps
}
}
});
fn({
MuiListItemText: {
defaultProps: {
secondaryTypographyProps: secondaryTypographyProps
}
}
});
fn({
MuiListItemText: {
defaultProps: {
primaryTypographyProps: primaryTypographyProps,
secondaryTypographyProps: secondaryTypographyProps
}
}
});
fn({
MuiListItemText: {
defaultProps: {
slotProps: {
primary: primarySlotProps
},
secondaryTypographyProps: secondaryTypographyProps
}
}
});