RemotionUI

Quote Card

A pull quote read aloud — mark, lines, marker sweep, attribution.

SceneScenes

quote-card30fps · 960×540
Install
$ npx remotion-ui@latest add quote-card

The quote mark draws, the quote rises line by line out of its own masks, a marker sweeps the emphasis phrase word by word, and the attribution arrives last with its initials disc.

emphasis is matched over the whole quote and sliced per line, so a phrase that spans a line break still reads as one stroke.

Agent notes

Install first, then import the copied source component locally. AI guide →

Import
@/remotion/scenes/quote-card
  • Use when: full-frame scenes, overlays, cards, and reusable video sections.
  • Customize: quote, emphasis, author, role, plus copied source for timing, layout, colors, and typography.
  • Rule: do not import this component from the remotion-ui npm package; it is copied into your project.

Usage

Example
import { QuoteCard } from "@/remotion/scenes/quote-card"; <QuoteCard quote="The best motion is code you can read and change" emphasis="motion" author="Team" />

API Reference

PropTypeDescription
quote*stringQuote body.
emphasisstringPhrase swept with a marker; matched over the whole quote, so it may span a line break.
authorstringAttribution name.
rolestringSecond attribution line — role, company, handle.
initialsstringInitials in the attribution disc. Defaults to the author's.
charsPerLinenumberCharacters per line the quote balances to.
accentColorstringMark, marker, and disc colour.
theme"dark" | "light"Surface palette.
speednumberAnimation speed multiplier.

Related