@mui/codemod
Version:
Codemod scripts for Material UI.
36 lines (35 loc) • 453 B
JavaScript
"use strict";
fn({
MuiCheckbox: {
defaultProps: {
slotProps: {
input: {
'aria-label': 'Checkbox'
}
}
}
}
});
fn({
MuiCheckbox: {
defaultProps: {
slotProps: {
input: {
ref: ref
}
}
}
}
});
fn({
MuiCheckbox: {
defaultProps: {
slotProps: {
input: {
'aria-label': 'Checkbox',
ref: ref
}
}
}
}
});