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.

18 lines 470 B
import React from "react"; interface GooeyNavItem { label: string; href: string; } export interface GooeyNavProps { items: GooeyNavItem[]; animationTime?: number; particleCount?: number; particleDistances?: [number, number]; particleR?: number; timeVariance?: number; colors?: number[]; initialActiveIndex?: number; } declare const GooeyNav: React.FC<GooeyNavProps>; export default GooeyNav; //# sourceMappingURL=GooeyNav.d.ts.map