Component
PullQuote
Highlight long-form quotes with optional attribution and an accent border.
Interactive preview
Usage
Import the component entry and start with its smallest complete example.
Import
import { PullQuote } from "@chitrank2050/monoline-ui/pull-quote"Basic usage
<PullQuote attribution="Chitrank Agnihotri">
Simplicity is the ultimate sophistication.
</PullQuote>Usage guidance
Choose the component for its interaction model and semantics before customizing its appearance.
PullQuote draws attention to a genuine quotation and optional attribution inside long-form content.
The copy is decorative rather than quoted, or the attribution needs a full testimonial card.
PullQuote uses figure, blockquote, and an optional figcaption, preserving native semantics for both quotation and attribution.
This component can render without adding a Monoline client boundary when its children and props are serializable.
API reference
Props, slots, and callbacks available on this component.
Design tokens
Theme variables this component reads for color, spacing, and motion.
Implementation
The source used by the example above, including any state it needs.
import { PullQuote } from "@chitrank2050/monoline-ui/pull-quote"
export function Quote() {
return (
<PullQuote attribution="Design Principles">
Form follows function, but visual consistency builds trust.
</PullQuote>
)
}Related documentation
Compare related components or review the package and theme setup.