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 543 B
import React from "react"; interface GlareHoverProps { width?: string; height?: string; background?: string; borderRadius?: string; borderColor?: string; children?: React.ReactNode; glareColor?: string; glareOpacity?: number; glareAngle?: number; glareSize?: number; transitionDuration?: number; playOnce?: boolean; className?: string; style?: React.CSSProperties; } declare const GlareHover: React.FC<GlareHoverProps>; export default GlareHover; //# sourceMappingURL=GlareHover.d.ts.map