Is it possible to make the length of the search bar wider? I am not talking about the actual size because there is a size property, just length.
Also, the defaultValue in Search doesn't seem to work at all, is it just me? The code I am using is basiclly a copy paste of this one: https://react.semantic-ui.com/modules/search/#types-category I just added:
let defaultValue = "Search"
before the render and my Search call is like so (Added the defaultValue part that doesn't show)
<Search
defaultValue={defaultValue}
category
loading={isLoading}
onResultSelect={this.handleResultSelect}
onSearchChange={_.debounce(this.handleSearchChange, 500, { leading: true })}
results={results}
value={value}
{...this.props}
/>