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 • 682 B
TypeScript
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;
}
declare const InteractiveGridBackground: React.FC<InteractiveGridBackgroundProps>;
export default InteractiveGridBackground;
//# sourceMappingURL=interactive-grid-background.d.ts.map