UNPKG

react-marquee-slider-vertical

Version:

The marquee slider of your wildest dreams. Only for React.js ⛺

15 lines 413 B
import { ReactNode, FC } from "react"; declare type MarqueeProps = { children: ReactNode[]; direction: "ltr" | "rtl"; velocity: number; scatterRandomly: boolean; resetAfterTries: number; onInit: () => void; onFinish: ({ totalTries }: { totalTries: number; }) => void; }; declare const Marquee: FC<MarqueeProps>; export default Marquee; //# sourceMappingURL=Marquee.d.ts.map