lole-ui
Version:
React UI Component which like a love letter
10 lines (9 loc) • 390 B
TypeScript
import React from "react";
import { CSSTransitionProps } from 'react-transition-group/CSSTransition';
declare type AnimatorName = 'zoom-in-top' | 'zoom-in-left' | 'zoom-in-right' | 'zoom-in-bottom';
declare type AnimatorProps = CSSTransitionProps & {
animation?: AnimatorName;
wrapper?: boolean;
};
declare const Animator: React.FC<AnimatorProps>;
export default Animator;