'How can I remove this border style using MUI sx inline
Solution 1:[1]
You could try this sx prop inside your TextField
sx={{
"& .MuiOutlinedInput-notchedOutline": {
border: "0 none",
},
}}
that's how you can find it
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 |


