The use of inputProps
is deprecated in MUI v6 and will be removed in MUI v7.
MUI suggests (through docstring) using slotProps
instead like that:
<TextField
size="small"
slotProps={{ htmlInput: { sx: { fontSize: '0.9rem' } } }}
variant="standard"
/>