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