UNPKG

lightswind

Version:

A collection of beautifully crafted React Components, Blocks & Templates for Modern Developers. Create stunning web applications effortlessly by using our 160+ professional and animated react components.

21 lines (20 loc) 632 B
import React from "react"; export interface InteractiveGridBackgroundProps extends React.HTMLProps<HTMLDivElement> { gridSize?: number; gridColor?: string; darkGridColor?: string; effectColor?: string; darkEffectColor?: string; trailLength?: number; width?: number; height?: number; idleSpeed?: number; glow?: boolean; glowRadius?: number; children?: React.ReactNode; showFade?: boolean; fadeIntensity?: number; idleRandomCount?: number; } export declare const InteractiveGridBackground: React.FC<InteractiveGridBackgroundProps>; export default InteractiveGridBackground;