<Reveal>
sharedChromeMotionPresentation
Reveals children when the in-deck reveal step reaches fromStep (client).
When to use: Progressive disclosure inside one slide; advance with Space before the next slide.
Preview
| Prop | Type | Notes |
|---|---|---|
| fromStep | number | Optional. Default: 0. Visible when reveal step >= this value. |
| children | ReactNode | Required. Content to reveal. |
| tween | object | Optional. Optional GSAP vars for the reveal (subset: opacity, autoAlpha, y, x, duration, ease, delay). |
Examples
<Reveal fromStep={0} tween={{ y: 16, opacity: 0, duration: 0.45, ease: "power2.out" }}>
First point lands here.
</Reveal>