@mui/codemod
Version:
Codemod scripts for Material UI.
65 lines (64 loc) • 1.05 kB
JavaScript
"use strict";
fn({
MuiOutlinedInput: {
defaultProps: {
slots: {
input: ComponentsInput
},
slotProps: {
input: componentsInputProps
}
}
}
});
fn({
MuiOutlinedInput: {
defaultProps: {
slots: {
input: ComponentsInput,
root: SlotsRoot
},
slotProps: {
input: componentsInputProps,
root: slotsRootProps
}
}
}
});
fn({
MuiOutlinedInput: {
defaultProps: {
slots: {
input: SlotsInput,
root: SlotsRoot
},
slotProps: {
input: {
...componentsInputProps,
...slotsInputProps
},
root: slotsRootProps
}
}
}
});
fn({
MuiOutlinedInput: {
defaultProps: {
slots: {
input: SlotsInput,
root: SlotsRoot
},
slotProps: {
input: {
...componentsInputProps,
...slotsInputProps
},
root: {
...componentsRootProps,
...slotsRootProps
}
}
}
}
});