@mui/codemod
Version:
Codemod scripts for Material UI.
58 lines (57 loc) • 771 B
JavaScript
"use strict";
fn({
MuiDrawer: {
defaultProps: {
BackdropComponent: Backdrop,
BackdropProps: {
transitionDuration: 300
}
}
}
});
fn({
MuiSwipeableDrawer: {
defaultProps: {
BackdropComponent: Backdrop,
BackdropProps: {
transitionDuration: 300
}
}
}
});
fn({
MuiDrawer: {
defaultProps: {
PaperProps: {
elevation: 20
}
}
}
});
fn({
MuiSwipeableDrawer: {
defaultProps: {
PaperProps: {
elevation: 20
}
}
}
});
fn({
MuiDrawer: {
defaultProps: {
SlideProps: {
direction: 'right'
}
}
}
});
fn({
MuiSwipeableDrawer: {
defaultProps: {
SlideProps: {
direction: 'right'
}
}
}
});