UNPKG

@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.

32 lines (26 loc) 514 B
`<InputGroupButton />` component example: ```js import { InputGroup, Input, InputGroupButton, } from '$PACKAGE_NAME'; <InputGroup> <InputGroupButton> I'm a button </InputGroupButton> <Input /> </InputGroup> ``` ```js import { InputGroup, Input, InputGroupButton, } from '$PACKAGE_NAME'; <InputGroup> <InputGroupButton color="danger">To the Left!</InputGroupButton> <Input placeholder="and..." /> <InputGroupButton color="success">To the Right!</InputGroupButton> </InputGroup> ```