如何在不使用以下代码的情况下隐藏/删除 TextField 组件中的下划线:
const theme = createMuiTheme({
overrides: {
MuiInput: {
underline: {
'&:hover:not($disabled):before': {
backgroundColor: 'rgba(0, 188, 212, 0.7)',
},
},
},
},
});
我想使用道具并根据文档:https ://material-ui.com/api/input/
我应该能够更改下划线道具,但它不起作用。