UNPKG

@appletosolutions/reactbits

Version:

A comprehensive collection of beautiful, performant React animation components including bounce effects, click sparks, star borders, scroll-triggered animations, and fade transitions.

20 lines 585 B
import React, { ReactNode } from "react"; interface InfiniteScrollItem { content: ReactNode; } interface InfiniteScrollProps { width?: string; maxHeight?: string; negativeMargin?: string; items?: InfiniteScrollItem[]; itemMinHeight?: number; isTilted?: boolean; tiltDirection?: "left" | "right"; autoplay?: boolean; autoplaySpeed?: number; autoplayDirection?: "down" | "up"; pauseOnHover?: boolean; } declare const InfiniteScroll: React.FC<InfiniteScrollProps>; export default InfiniteScroll; //# sourceMappingURL=InfiniteScroll.d.ts.map