RemotionUI
Scenes

Logo Reveal

Brand logo SVG path draw-on reveal.

ScenevectorsAdvanced

Install
npx remotion-ui@latest add logo-reveal

Combines path-draw, scale-in, and fade-in for a logo reveal scene.

Live preview

AI usage

Install first, then import the copied source component locally.

AI guide

Install

npx remotion-ui@latest add logo-reveal

Import after install

@/remotion/scenes/logo-reveal
  • Use when: full-frame scenes, overlays, cards, and reusable video sections.
  • Customize: pathD, width, height, 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 { LogoReveal } from "@/remotion/scenes/logo-reveal";

<LogoReveal pathD="M 100 20 L 180 180 L 20 180 Z" />

API Reference

PropTypeDescription
pathD*stringSVG path for the logo.
widthnumberSVG width.
heightnumberSVG height.

Related