UNPKG

react-scroll-motion

Version:
11 lines (10 loc) 303 B
import { CSSProperties, FC, ReactNode } from "react"; import { Animation } from "./types"; interface AnimatorProps { children: ReactNode | ReactNode[]; animation: Animation; style?: CSSProperties; className?: string; } declare const Animator: FC<AnimatorProps>; export default Animator;