How can I turn off the auto uppercase function of <Button>
in material UI 5?
<Button variant="contained">Hello</Button>
It will automatically turn the text to HELLO
, but I just want to keep the original Hello
. How can I do that?
Simply add this property to your button :
style={{textTransform: 'none'}}