UNPKG

swipe-animate

Version:

Text Swipe Animation - a text animation library just like https://korahq.com/#move-money landing page.

10 lines (9 loc) 219 B
import React from "react"; interface SwipeProps { words: string[]; intervalDuration?: number; textSize?: string; textColors?: string[]; } declare const Swipe: React.FC<SwipeProps>; export default Swipe;