UNPKG

reactbits-animation

Version:

A comprehensive collection of beautiful, performant React animation components including bounce effects, click sparks, star borders, scroll-triggered animations, and fade transitions.

21 lines 718 B
import { CanvasProps } from "@react-three/fiber"; interface PixelTrailProps { gridSize?: number; trailSize?: number; maxAge?: number; interpolate?: number; easingFunction?: (x: number) => number; canvasProps?: Partial<CanvasProps>; glProps?: WebGLContextAttributes & { powerPreference?: string; }; gooeyFilter?: { id: string; strength: number; }; color?: string; className?: string; } export default function PixelTrail({ gridSize, trailSize, maxAge, interpolate, easingFunction, canvasProps, glProps, gooeyFilter, color, className, }: PixelTrailProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=PixelTrail.d.ts.map