@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.
14 lines • 452 B
TypeScript
import React from "react";
interface AnimatedListProps {
items?: string[];
onItemSelect?: (item: string, index: number) => void;
showGradients?: boolean;
enableArrowNavigation?: boolean;
className?: string;
itemClassName?: string;
displayScrollbar?: boolean;
initialSelectedIndex?: number;
}
declare const AnimatedList: React.FC<AnimatedListProps>;
export default AnimatedList;
//# sourceMappingURL=AnimatedList.d.ts.map