Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can i change TextField border-radius in Mui

I am trying to change mui TextField border radius but it's not working. Can anyone help me to solve this problem.

Here is my code:

<TextField variant="outlined" sx={{ borderRadius: 5 }} />

Can anyone fix it this?


2 Answers

override MuiOutlinedInput-root clasee

 sx={{
      ".MuiOutlinedInput-root": {
        borderRadius: 5 
      }
    }}
like image 93
Sachila Ranawaka Avatar answered Nov 27 '25 15:11

Sachila Ranawaka


Try this

<TextField
    className="inputRounded"
    placeholder="Search"
    variant="outlined"
    size="small"
  />
</div>
like image 26
Hasnain matadar Avatar answered Nov 27 '25 17:11

Hasnain matadar



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!