@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.
21 lines (15 loc) • 363 B
Markdown
`<ListGroupItemText />` component example:
```js
import { 
  ListGroup, 
  ListGroupItem,
  ListGroupItemText,
} from '$PACKAGE_NAME';
<ListGroup>
  <ListGroupItem active>
    <ListGroupItemText>
      Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit.
    </ListGroupItemText>
  </ListGroupItem>
</ListGroup>
```