RemotionUI
Scenes

Stat Card

Big animated number with label.

Sceneblocks

Install
npx remotion-ui@latest add stat-card

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

Live preview
Installs `counter` and `fade-in`.

AI usage

Install first, then import the copied source component locally.

AI guide

Install

npx remotion-ui@latest add stat-card

Import after install

@/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

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