@mui/codemod
Version:
Codemod scripts for Material UI.
37 lines (36 loc) • 496 B
JavaScript
"use strict";
fn({
MuiRating: {
defaultProps: {
slotProps: {
icon: {
component: CustomContainer
}
}
}
}
});
fn({
MuiRating: {
defaultProps: {
slotProps: {
root: {},
icon: {
component: CustomContainer
}
}
}
}
});
fn({
MuiRating: {
defaultProps: {
slotProps: {
icon: {
id: 'my-rating-icon',
component: CustomContainer
}
}
}
}
});