Material Autocomplete does not work with InputProps
问题 I am trying to change the border of my TextField that is rendered through my Autocomplete , but when I add the InputProps prop, the Autocomplete no longer renders Chip s <Autocomplete multiple freeSolo options={options} renderTags={(value, { className, onDelete }) => value.map((option, index) => ( <Chip key={index} variant="outlined" data-tag-index={index} tabIndex={-1} label={option} className={className} color="secondary" onDelete={onDelete} /> )) } renderInput={(params) => ( <TextField {..