@mui/codemod
Version:
Codemod scripts for Material UI.
43 lines (42 loc) • 687 B
JavaScript
"use strict";
fn({
MuiDialog: {
defaultProps: {
slots: {
transition: CustomTransition
},
slotProps: {
transition: CustomTransitionProps,
paper: PaperProps
}
}
}
});
fn({
MuiDialog: {
defaultProps: {
slots: {
root: 'div',
transition: CustomTransition
},
slotProps: {
transition: CustomTransitionProps,
paper: PaperProps
}
}
}
});
fn({
MuiDialog: {
defaultProps: {
slots: {
root: 'div',
transition: SlotTransition
},
slotProps: {
transition: CustomTransitionProps,
paper: PaperProps
}
}
}
});