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