// Generated by scripts/generate-showcase.mjs. Do not edit directly. page BlockquoteDetail { layout = "showcase" state playground_quote = ctx.url.searchParams.get("pg_quote") ?? "I just wanted to say that I'm very happy with my purchase so far. The documentation is outstanding - clear and detailed." state playground_citation = ctx.url.searchParams.get("pg_citation") ?? "" state playground_citationTitle = ctx.url.searchParams.get("pg_citationTitle") ?? "" state playground_citationUrl = ctx.url.searchParams.get("pg_citationUrl") ?? "" state playground_avatarSrc = ctx.url.searchParams.get("pg_avatarSrc") ?? "" state playground_avatarAlt = ctx.url.searchParams.get("pg_avatarAlt") ?? "" state playground_size = ctx.url.searchParams.get("pg_size") ?? "md" state playground_color = ctx.url.searchParams.get("pg_color") ?? "primary" state playground_align = ctx.url.searchParams.get("pg_align") ?? "left" state playground_variant = ctx.url.searchParams.get("pg_variant") ?? "default" state playground_quoteMark = ctx.url.searchParams.get("pg_quoteMark") ?? "true" state playground_italic = ctx.url.searchParams.get("pg_italic") ?? "true" state playground_class = ctx.url.searchParams.get("pg_class") ?? "" seo { title = "Blockquote" description = "Theme-aware, responsive blockquote component." } view {
Base component

Blockquote

Theme-aware, responsive blockquote component.

13 props1 slots0 eventsTheme readyResponsive
Interactive playground

Configure Blockquote

Change any prop and inspect the server-rendered component immediately.

Live preview
Component code
<Blockquote />
Component props13 controls
Live examples

Designed for real product surfaces

Compare configurations and resize the browser to check responsive behavior.

Recommended

Production default

Balanced spacing, hierarchy, and content for the most common product workflow.

01
Live preview
Component usage.wrn
<Blockquote />
Dense UI

Compact application

A tighter variation for dashboards, side panels, tables, and operational interfaces.

02
Live preview
Component usage.wrn
<Blockquote
  quote="Good design makes the complex understandable and the useful feel effortless."
  citation="Josh Grazioso"
  citationTitle="Product designer"
  size="sm"
  color="info"
  align="center"
/>
Extended

Rich configuration

A more expressive variation using additional data, stronger emphasis, and optional states.

03
Live preview
Component usage.wrn
<Blockquote
  quote="The strongest product experiences are built when clarity, craft, and empathy reinforce one another."
  citation="Josh Grazioso"
  citationTitle="Source title"
  citationUrl="#blockquote-demo"
  avatarSrc="/avatar-example.svg"
  avatarAlt="Josh Grazioso"
  size="lg"
  color="success"
  variant="bordered"
  quoteMark="false"
/>
Component events

Events

Public events declared by this component. Custom events bubble from the component root and expose state through event.detail.

No public component events.
Component API

Props and configuration

All content and behavior shown above is supplied through these props and slots.

PropTypeDefaultRequired
quotestring"I just wanted to say that I'm very happy with my purchase so far. The documentation is outstanding - clear and detailed."No
citationstring""No
citationTitlestring""No
citationUrlstring""No
avatarSrcstring""No
avatarAltstring""No
sizestring"md"No
colorstring"primary"No
alignstring"left"No
variantstring"default"No
quoteMarkbooleantrueNo
italicbooleantrueNo
classstring""No
} }