@bootstrap-styled/v4
Version:
twbs/bootstrap V4 UI Components made with bootstrap-styled. Work with css-in-js, react, styled-components, and Bootstrap Styled utilities.
20 lines (17 loc) • 365 B
Markdown
`<InputGroup />` component example:
```js
import {
InputGroup,
Input,
InputGroupAddon,
InputGroupButton,
} from '$PACKAGE_NAME';
<InputGroup>
<Input placeholder="username" />
<InputGroupAddon>
<Input addon type="checkbox" />
</InputGroupAddon>
<Input placeholder="Check it out" />
<InputGroupButton>Send</InputGroupButton>
</InputGroup>
```