0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

[React] MUI - Buttonのchildrenを英字の文字列にすると大文字になってしまう現象を回避する

Posted at

はじめに

React・MUI学習中に少し詰まったので、備忘録として残しておきます。

結論

以下のようにレイアウトを指定すれば回避できる!

'textTransform: "none"'を追加
<Button variant='contained' sx={{ textTransform: "none" }}>
    Download
</Button>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?