@mui/codemod
Version:
Codemod scripts for Material UI.
62 lines (61 loc) • 885 B
JavaScript
"use strict";
fn({
MuiSpeedDialAction: {
defaultProps: {
FabProps: {
id: 'test'
}
}
}
});
fn({
MuiSpeedDialAction: {
defaultProps: {
TooltipClasses: classes
}
}
});
fn({
MuiSpeedDialAction: {
defaultProps: {
tooltipOpen: true
}
}
});
fn({
MuiSpeedDialAction: {
defaultProps: {
tooltipPlacement: 'top'
}
}
});
fn({
MuiSpeedDialAction: {
defaultProps: {
tooltipTitle: 'test'
}
}
});
fn({
MuiSpeedDialAction: {
defaultProps: {
FabProps: {
id: 'test'
},
TooltipClasses: classes,
tooltipOpen: true,
tooltipPlacement: 'top',
tooltipTitle: 'test'
}
}
});
fn({
MuiSpeedDialAction: {
defaultProps: {
TooltipClasses: classes,
tooltipOpen: true,
tooltipPlacement: 'top',
tooltipTitle: 'test'
}
}
});