@mui/codemod
Version:
Codemod scripts for Material UI.
39 lines (38 loc) • 852 B
JavaScript
"use strict";
fn({
MuiSnackbar: {
defaultProps: {
ClickAwayListenerProps: CustomListenerProps,
ContentProps: CustomContentProps,
TransitionComponent: CustomTransition,
TransitionProps: CustomTransitionProps
}
}
});
fn({
MuiSnackbar: {
defaultProps: {
ClickAwayListenerProps: CustomListenerProps,
ContentProps: CustomContentProps,
TransitionComponent: CustomTransition,
TransitionProps: CustomTransitionProps,
slots: {
root: 'div'
}
}
}
});
fn({
MuiSnackbar: {
defaultProps: {
ClickAwayListenerProps: CustomListenerProps,
ContentProps: CustomContentProps,
TransitionComponent: ComponentTransition,
TransitionProps: CustomTransitionProps,
slots: {
root: 'div',
transition: SlotTransition
}
}
}
});