react-particle-components
Version:
React components for adding beautiful tsParticles effects with minimal setup.
17 lines (13 loc) • 324 B
text/typescript
import { FC } from 'react';
interface ParticleType {
id?: string;
speed?: number;
value?: number;
opacity?: number;
distance?: number;
area?: number;
color?: string;
type?: 'circle' | 'bubbles';
}
declare const ParticleComponent: FC<ParticleType>;
export { ParticleComponent as default };