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.

19 lines 580 B
import React from "react"; export interface ParticleOrbitEffectProps { className?: string; style?: React.CSSProperties; particleCount?: number; radius?: number; particleSpeed?: number; radiusScale?: number; intensity?: number; fadeOpacity?: number; colorRange?: [number, number]; disabled?: boolean; followMouse?: boolean; autoColors?: boolean; particleSize?: number; } declare const ParticleOrbitEffect: React.FC<ParticleOrbitEffectProps>; export default ParticleOrbitEffect; //# sourceMappingURL=particle-orbit-effect.d.ts.map