'How can I remove this border style using MUI sx inline

Looking to remove this border prop in the image using inline sx prop from mui.enter image description here

Its a textfield if thats important..



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

enter image description here

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