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.

37 lines (25 loc) 866 B
`<Blockquote />` component example: Quoting blocks of content: ```js import { Blockquote, P } from '$PACKAGE_NAME'; <Blockquote> <P>"Lorem ipsum dolor sit amet, consectetur adipiscing elit."</P> <P className="blockquote-footer">Someone famous in something</P> </Blockquote> ``` Also work using centering `className` like `text-center` (or even `mx-auto`): ```js import { Blockquote, P } from '$PACKAGE_NAME'; <Blockquote className="text-center"> <P>"Lorem ipsum dolor sit amet, consectetur adipiscing elit."</P> <P className="blockquote-footer">Someone famous in something</P> </Blockquote> ``` Or with `reverse` props: ```js import { Blockquote, P } from '$PACKAGE_NAME'; <Blockquote reverse> <P>"Lorem ipsum dolor sit amet, consectetur adipiscing elit."</P> <P className="blockquote-footer">Someone famous in something</P> </Blockquote> ```