Skip to main content Home About the Design SystemRoadmap OverviewDesignersDevelopers OverviewColorGridIconographyInteractionsSpacingTypography Overview Global colorBox shadowTypographyBorderOpacitySpaceLengthIconBreakpointsMedia queries All elements Accordion Alert Announcement Audio player Avatar Back to top Badge Blockquote Breadcrumb Button Card Chip Code block Call to action Dialog Disclosure Footer Health index Icon Jump links Menu dropdown Navigation link Navigation (primary) Navigation (secondary) Navigation (vertical) Pagination PopoverPlanned Progress stepper Scheme toggle Site status Skeleton Skip link Spinner Statistic Subnavigation Surface Switch Table Tabs Tag Tile Timestamp Tooltip Video embed OverviewColor PalettesCustomizingDevelopers All PatternsAccordionCall to ActionCardFilterFormLink with iconLogo wallSearch barSticky bannerSticky cardTabsTagTile All Personalization PatternsAnnouncement FundamentalsAccessibility toolsAssistive technologiesCI/CDContentContributorsDesignDevelopmentManual testingResourcesScreen readers Design/code status Release notes Get support

Blockquote

OverviewStyleGuidelinesCodeAccessibilityDemos
BlockquoteCenteredColor ContextHighlightedLargeBlockquoteCenteredColor ContextHighlightedLarge

Blockquote

import '@rhds/elements/rh-blockquote/rh-blockquote.js';
<rh-blockquote>
  <p>In open source, we feel strongly that to really do something well, you have to get a lot of people involved.</p>
  <span slot="author">Linus Torvalds</span>
  <span slot="title">Software Engineer</span>
</rh-blockquote>
import { Blockquote } from "@rhds/elements/react/rh-blockquote/rh-blockquote.js";

// NOTE: React 19+ does not require these wrapper imports.
// You can use the custom elements directly as-is.

export const Demo = () => (
  <Blockquote>
    <p>In open source, we feel strongly that to really do something well, you have to get a lot of people involved.</p>
    <span slot="author">Linus Torvalds</span>
    <span slot="title">Software Engineer</span>
  </Blockquote>
);

Centered

import '@rhds/elements/rh-blockquote/rh-blockquote.js';
<rh-blockquote align="center">
  <p>In open source, we feel strongly that to really do something well, you have to get a lot of people involved.</p>
  <span slot="author">Linus Torvalds</span>
  <span slot="title">Software Engineer</span>
</rh-blockquote>
import { Blockquote } from "@rhds/elements/react/rh-blockquote/rh-blockquote.js";

// NOTE: React 19+ does not require these wrapper imports.
// You can use the custom elements directly as-is.

export const Demo = () => (
  <Blockquote align="center">
    <p>In open source, we feel strongly that to really do something well, you have to get a lot of people involved.</p>
    <span slot="author">Linus Torvalds</span>
    <span slot="title">Software Engineer</span>
  </Blockquote>
);

Color Context

import '@rhds/elements/rh-blockquote/rh-blockquote.js';
import '@rhds/elements/lib/elements/rh-context-demo/rh-context-demo.js';
<rh-context-demo>
  <rh-blockquote>
    <p>In open source, we feel strongly that to really do something well, you have to get a lot of people involved.</p>
    <span slot="author">Linus Torvalds</span>
    <span slot="title">Software Engineer</span>
  </rh-blockquote>

  <rh-blockquote align="center">
    <p>In open source, we feel strongly that to really do something well, you have to get a lot of people involved.</p>
    <span slot="author">Linus Torvalds</span>
    <span slot="title">Software Engineer</span>
  </rh-blockquote>

  <rh-blockquote highlight="inline-start">
    <p>In open source, we feel strongly that to really do something well, you have to get a lot of people involved.</p>
    <span slot="author">Linus Torvalds</span>
    <span slot="title">Software Engineer</span>
  </rh-blockquote>

  <rh-blockquote size="large">
    <p>In open source, we feel strongly that to really do something well, you have to get a lot of people involved.</p>
    <span slot="author">Linus Torvalds</span>
    <span slot="title">Software Engineer</span>
  </rh-blockquote>
</rh-context-demo>
import { Blockquote } from "@rhds/elements/react/rh-blockquote/rh-blockquote.js";

// NOTE: React 19+ does not require these wrapper imports.
// You can use the custom elements directly as-is.

export const Demo = () => (
  <rh-context-demo>
    <Blockquote>
      <p>In open source, we feel strongly that to really do something well, you have to get a lot of people involved.</p>
      <span slot="author">Linus Torvalds</span>
      <span slot="title">Software Engineer</span>
    </Blockquote>
    <Blockquote align="center">
      <p>In open source, we feel strongly that to really do something well, you have to get a lot of people involved.</p>
      <span slot="author">Linus Torvalds</span>
      <span slot="title">Software Engineer</span>
    </Blockquote>
    <Blockquote highlight="inline-start">
      <p>In open source, we feel strongly that to really do something well, you have to get a lot of people involved.</p>
      <span slot="author">Linus Torvalds</span>
      <span slot="title">Software Engineer</span>
    </Blockquote>
    <Blockquote size="large">
      <p>In open source, we feel strongly that to really do something well, you have to get a lot of people involved.</p>
      <span slot="author">Linus Torvalds</span>
      <span slot="title">Software Engineer</span>
    </Blockquote>
  </rh-context-demo>
);

Highlighted

import '@rhds/elements/rh-blockquote/rh-blockquote.js';
<rh-blockquote highlight="inline-start">
  <p>In open source, we feel strongly that to really do something well, you have to get a lot of people involved.</p>
  <span slot="author">Linus Torvalds</span>
  <span slot="title">Software Engineer</span>
</rh-blockquote>
import { Blockquote } from "@rhds/elements/react/rh-blockquote/rh-blockquote.js";

// NOTE: React 19+ does not require these wrapper imports.
// You can use the custom elements directly as-is.

export const Demo = () => (
  <Blockquote highlight="inline-start">
    <p>In open source, we feel strongly that to really do something well, you have to get a lot of people involved.</p>
    <span slot="author">Linus Torvalds</span>
    <span slot="title">Software Engineer</span>
  </Blockquote>
);

Large

import '@rhds/elements/rh-blockquote/rh-blockquote.js';
<rh-blockquote size="large">
  <p>In open source, we feel strongly that to really do something well, you have to get a lot of people involved.</p>
  <span slot="author">Linus Torvalds</span>
  <span slot="title">Software Engineer</span>
</rh-blockquote>
import { Blockquote } from "@rhds/elements/react/rh-blockquote/rh-blockquote.js";

// NOTE: React 19+ does not require these wrapper imports.
// You can use the custom elements directly as-is.

export const Demo = () => (
  <Blockquote size="large">
    <p>In open source, we feel strongly that to really do something well, you have to get a lot of people involved.</p>
    <span slot="author">Linus Torvalds</span>
    <span slot="title">Software Engineer</span>
  </Blockquote>
);
© 2026 Red Hat Deploys by Netlify