# Blockquote

A component for displaying quoted text with an optional citation.

## Props

*   `cite` (string, optional): The source of the quotation, displayed as a footer.
*   All other standard `<blockquote>` attributes are supported.

## Usage

```tsx
import { Blockquote } from './src/components';

<Blockquote cite="A wise person">
  This is an example of a blockquote. It can be used to highlight important text or quotes from other sources.
</Blockquote>
```