Production default
Balanced spacing, hierarchy, and content for the most common product workflow.
<Blockquote />
// 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 {
Theme-aware, responsive blockquote component. Change any prop and inspect the server-rendered component immediately.Blockquote
Configure Blockquote
<Blockquote />
Compare configurations and resize the browser to check responsive behavior.
Balanced spacing, hierarchy, and content for the most common product workflow.
<Blockquote />
A tighter variation for dashboards, side panels, tables, and operational interfaces.
<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"
/>
A more expressive variation using additional data, stronger emphasis, and optional states.
<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"
/>
Public events declared by this component. Custom events bubble from the component root and expose state through event.detail.
All content and behavior shown above is supplied through these props and slots.
| Prop | Type | Default | Required |
|---|---|---|---|
quote | string | "I just wanted to say that I'm very happy with my purchase so far. The documentation is outstanding - clear and detailed." | No |
citation | string | "" | No |
citationTitle | string | "" | No |
citationUrl | string | "" | No |
avatarSrc | string | "" | No |
avatarAlt | string | "" | No |
size | string | "md" | No |
color | string | "primary" | No |
align | string | "left" | No |
variant | string | "default" | No |
quoteMark | boolean | true | No |
italic | boolean | true | No |
class | string | "" | No |