UNPKG

react-flowfield

Version:

<div align="center"><h1>React-Flowfield</h1></div>

16 lines (15 loc) 396 B
import React from 'react'; export interface RGBA { R: number; G: number; B: number; A: number; } interface ComponentProps extends React.HTMLAttributes<HTMLCanvasElement> { lengthOfAnimation?: number; numberOfParticals?: number; particalColor?: RGBA; backgroundColor?: RGBA; } declare const FlowField: React.FC<ComponentProps>; export { FlowField };