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.

14 lines 451 B
import React, { ReactNode, HTMLAttributes } from "react"; interface MagnetProps extends HTMLAttributes<HTMLDivElement> { children: ReactNode; padding?: number; disabled?: boolean; magnetStrength?: number; activeTransition?: string; inactiveTransition?: string; wrapperClassName?: string; innerClassName?: string; } declare const Magnet: React.FC<MagnetProps>; export default Magnet; //# sourceMappingURL=Magnet.d.ts.map