You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[added] bsSize prop to Input, supporting input groups
This allows for specifying a size, such as 'small' or 'large', such as:
<Input
type="text"
placeholder="Search"
bsSize="small"
buttonAfter={<Button><Glyphicon glyph="search" /></Button>}
/>
(Input groups are enabled whenever these props have values:
addonBefore, addonAfter, buttonBefore, or buttonAfter)
This maps to the "input-group-sm" and "input-group-lg" classes as documented here:
http://getbootstrap.com/components/#input-groups-sizing
0 commit comments