You can either disable it by setting the style of a single button like this:
style={{textTransform: 'none'}}
Or you can disable to all buttons in your theme like this:
const theme = createTheme({
typography: {
allVariants: { textTransform: "none" },
},
});