Production default
Balanced spacing, hierarchy, and content for the most common product workflow.
<Blockquote
citationTitle="Blockquote example"
align="start"
/>
// 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") ?? "Blockquote example"
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") ?? "start"
state playground_variant = ctx.url.searchParams.get("pg_variant") ?? "default"
state playground_quoteMark = (ctx.url.searchParams.get("pg_quoteMark") ?? "true") === "true"
state playground_italic = (ctx.url.searchParams.get("pg_italic") ?? "true") === "true"
state playground_class = ctx.url.searchParams.get("pg_class") ?? "showcase-instance showcase-instance--1"
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
citationTitle="Blockquote example"
align="start"
/>
Compare configurations and resize the browser to check responsive behavior.
Balanced spacing, hierarchy, and content for the most common product workflow.
<Blockquote
citationTitle="Blockquote example"
align="start"
/>
A tighter variation for dashboards, side panels, tables, and operational interfaces.
<Blockquote
citationTitle="Compact Blockquote"
size="sm"
align="center"
variant="secondary"
/>
A more expressive variation using additional data, stronger emphasis, and optional states.
<Blockquote
citationTitle="Advanced Blockquote"
size="lg"
align="end"
variant="success"
/>
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 |