Reflex Logo

Intro

Gallery

Hosting

Components

New

Learn

Components

API Reference

Onboarding

Library

/

Typography

/

Blockquote

Perfect typography is certainly the most elusive of all arts.
rx.blockquote(
    "Perfect typography is certainly the most elusive of all arts."
)

Use the size prop to control the size of the blockquote. The prop also provides correct line height and corrective letter spacing—as text size increases, the relative line height and letter spacing decrease.

Perfect typography is certainly the most elusive of all arts.
Perfect typography is certainly the most elusive of all arts.
Perfect typography is certainly the most elusive of all arts.
Perfect typography is certainly the most elusive of all arts.
Perfect typography is certainly the most elusive of all arts.
Perfect typography is certainly the most elusive of all arts.
Perfect typography is certainly the most elusive of all arts.
Perfect typography is certainly the most elusive of all arts.
Perfect typography is certainly the most elusive of all arts.
rx.flex(
    rx.blockquote(
        "Perfect typography is certainly the most elusive of all arts.",
        size="1",
    ),
    rx.blockquote(
        "Perfect typography is certainly the most elusive of all arts.",
        size="2",
    ),
    rx.blockquote(
        "Perfect typography is certainly the most elusive of all arts.",
        size="3",
    ),
    rx.blockquote(
        "Perfect typography is certainly the most elusive of all arts.",
        size="4",
    ),
    rx.blockquote(
        "Perfect typography is certainly the most elusive of all arts.",
        size="5",
    ),
    rx.blockquote(
        "Perfect typography is certainly the most elusive of all arts.",
        size="6",
    ),
    rx.blockquote(
        "Perfect typography is certainly the most elusive of all arts.",
        size="7",
    ),
    rx.blockquote(
        "Perfect typography is certainly the most elusive of all arts.",
        size="8",
    ),
    rx.blockquote(
        "Perfect typography is certainly the most elusive of all arts.",
        size="9",
    ),
    direction="column",
    spacing="3",
)

Use the weight prop to set the blockquote weight.

Perfect typography is certainly the most elusive of all arts.
Perfect typography is certainly the most elusive of all arts.
Perfect typography is certainly the most elusive of all arts.
Perfect typography is certainly the most elusive of all arts.
rx.flex(
    rx.blockquote(
        "Perfect typography is certainly the most elusive of all arts.",
        weight="light",
    ),
    rx.blockquote(
        "Perfect typography is certainly the most elusive of all arts.",
        weight="regular",
    ),
    rx.blockquote(
        "Perfect typography is certainly the most elusive of all arts.",
        weight="medium",
    ),
    rx.blockquote(
        "Perfect typography is certainly the most elusive of all arts.",
        weight="bold",
    ),
    direction="column",
    spacing="3",
)

Use the color_scheme prop to assign a specific color, ignoring the global theme.

Perfect typography is certainly the most elusive of all arts.
Perfect typography is certainly the most elusive of all arts.
Perfect typography is certainly the most elusive of all arts.
Perfect typography is certainly the most elusive of all arts.
rx.flex(
    rx.blockquote(
        "Perfect typography is certainly the most elusive of all arts.",
        color_scheme="indigo",
    ),
    rx.blockquote(
        "Perfect typography is certainly the most elusive of all arts.",
        color_scheme="cyan",
    ),
    rx.blockquote(
        "Perfect typography is certainly the most elusive of all arts.",
        color_scheme="crimson",
    ),
    rx.blockquote(
        "Perfect typography is certainly the most elusive of all arts.",
        color_scheme="orange",
    ),
    direction="column",
    spacing="3",
)

Use the high_contrast prop to increase color contrast with the background.

Perfect typography is certainly the most elusive of all arts.
Perfect typography is certainly the most elusive of all arts.
rx.flex(
    rx.blockquote(
        "Perfect typography is certainly the most elusive of all arts."
    ),
    rx.blockquote(
        "Perfect typography is certainly the most elusive of all arts.",
        high_contrast=True,
    ),
    direction="column",
    spacing="3",
)

A block level extended quotation.

Test
PropTypeDescriptionValues
sizeLiteral

Text size: "1" - "9"

weightLiteral

Thickness of text: "light" | "regular" | "medium" | "bold"

color_schemeLiteral

Overrides the accent color inherited from the Theme.

high_contrastbool

Whether to render the text with higher contrast color

citeUnion

Define the title of a work.

Event Triggers

See the full list of default event triggers
← ThemePanelCode →

Did you find this useful?

HomeGalleryChangelogIntroductionHosting