wix-style-react
Version:
14 lines (11 loc) • 413 B
TypeScript
import * as React from 'react';
export interface BounceAnimationProps {
dataHook?: string;
children: React.ReactNode;
active?: boolean;
onStart?: (event: React.AnimationEvent<HTMLDivElement>) => void;
onEnd?: (event: React.AnimationEvent<HTMLDivElement>) => void;
loop?: boolean;
delay?: string | number;
}
export default class BounceAnimation extends React.PureComponent<BounceAnimationProps> {}