I'm trying disable, or even better, make the content of my input.search component non-editable, after a user clicks search. However, using the disabled property to achieve this, also disables the "search" button, and I only need to disable the input field itself. Is there any way to achieve this easily?
<Input.Search
enterButton={inProgress ? 'Cancel' : 'Search'}
onSearch={text => this.go(text)}
allowClear={inProgress ? false : true}
disabled={inProgress ? false : true}
/>