UNPKG

react-awesome-reveal

Version:

React components to add reveal animations using the Intersection Observer API and CSS Animations.

11 lines (9 loc) 289 B
import { RevealProps } from '../Reveal'; export interface RollProps extends Omit<RevealProps, "keyframes"> { /** * Specifies if the animation should make element(s) disappear. * @default false */ reverse?: boolean; } export declare const Roll: React.FC<RollProps>;