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.
18 lines (17 loc) • 417 B
TypeScript
import React from 'react';
declare global {
interface Window {
particlesJS: any;
}
}
interface ParticlesBackgroundProps {
colors?: string[];
size?: number;
countDesktop?: number;
countTablet?: number;
countMobile?: number;
zIndex?: number;
height?: string;
}
export declare const ParticlesBackground: React.FC<ParticlesBackgroundProps>;
export default ParticlesBackground;