1import { Blockquote } from "passport-ui";
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>