2

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?

Olivier Tassinari
  • 8,238
  • 4
  • 23
  • 23
xirururu
  • 5,028
  • 9
  • 35
  • 64

1 Answers1

6

Simply add this property to your button :

style={{textTransform: 'none'}}
Shashank
  • 121
  • 5