Blockquote

A component for displaying quoted text with optional citation.

Installation

Import the component from the passport-ui package.

components/example.tsx
1import { Blockquote } from "passport-ui";

Usage

Basic example showing how to use the component.

components/example.tsx
1<div className="w-sm">
2 <Blockquote>
3 This is a blockquote that demonstrates how quoted text appears with
4 proper styling and visual hierarchy.
5 </Blockquote>
6</div>
7
8{/* Nested blockquote */}
9<Blockquote>
10 This is a parent quote.
11 <Blockquote nested>
12 This is a nested quote within the parent.
13 </Blockquote>
14 Back to the parent quote content.
15</Blockquote>

Additional resources

Documentation and examples are available in Storybook.