# Block Quotation

A drop-in replacement for the HTML [blockquote](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/blockquote) element that works both on the web and in the mobile apps. It indicates that the enclosed text is an extended quotation.

## Usage

```jsx
import { BlockQuotation } from '@wordpress/components';

const MyBlockQuotation = () => (
	<BlockQuotation>...Quote content</BlockQuotation>
);
```
