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