I want to make a input element width shorter using Reactstrap, how do I do it?
I've tried setting bsSize to small and it still doesn't work
<InputGroup>
<Input
type="text"
name="searchTxt"
value={props.searchText}
onChange={props.updateSearchText}
placeholder="Type keyword here..."
size="md"
bsSize="small"
></Input>
<Button
color="secondary"
onClick={() => props.getSearchResult(props.searchText)}
>
<MdSearch />
</Button>
</InputGroup>
This takes all the remaining space in Navbar, I wanted it just to take small amount of space.
