@mui/codemod
Version:
Codemod scripts for Material UI.
45 lines (44 loc) • 724 B
JavaScript
"use strict";
fn({
MuiStepLabel: {
defaultProps: {
componentsProps: {
label: componentsLabelProps
}
}
}
});
fn({
MuiStepLabel: {
defaultProps: {
componentsProps: {
label: componentsLabelProps
},
slotProps: {
label: slotLabelProps
}
}
}
});
fn({
MuiStepLabel: {
defaultProps: {
StepIconComponent: StepIconComponent,
StepIconProps: StepIconProps
}
}
});
fn({
MuiStepLabel: {
defaultProps: {
componentsProps: {
label: componentsLabelProps
},
slotProps: {
label: slotLabelProps
},
StepIconComponent: StepIconComponent,
StepIconProps: StepIconProps
}
}
});