@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.
18 lines (15 loc) • 311 B
Markdown
`<FormGroup />` component example:
```js
import {
Form,
FormGroup,
Label,
FormText,
} from '$PACKAGE_NAME';
<Form>
<FormGroup color="success">
<Label htmlFor="exampleEmail">FormGroup</Label>
<FormText color="muted">I'm wrapped in a form group component</FormText>
</FormGroup>
</Form>
```