@charlesvien/react-animatecss
Version:
A React component implementing the latest version of Animate.css
21 lines (20 loc) • 564 B
TypeScript
import React, { FunctionComponent } from 'react';
import './style/animate.min.css';
import './style/style.css';
interface AnimateProps {
animationIn?: string;
animationOut?: string;
inDelay?: number;
outDelay?: number;
inDuration?: number;
outDuration?: number;
repeat?: number;
onMount?: boolean;
visible?: boolean;
loop?: boolean;
className?: string;
style?: React.CSSProperties;
children?: React.ReactNode;
}
declare const Animate: FunctionComponent<AnimateProps>;
export default Animate;