RemotionUI

Stat Card

Big animated number with label.

SceneScenes

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

Uses spring-in and counter for a stat highlight moment.

Installs `counter` and `fade-in`.

Agent notes

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

Import
@/remotion/scenes/stat-card
  • Use when: full-frame scenes, overlays, cards, and reusable video sections.
  • Customize: value, label, suffix, 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 { StatCard } from "@/remotion/scenes/stat-card"; <StatCard value={98} label="Satisfaction" suffix="%" />

API Reference

PropTypeDescription
value*numberNumber to count up to.
label*stringMetric label.
suffixstringAppended to the value.

Related