UNPKG

react-atmospheres

Version:

A lightweight wrapper to add seasonal, themed visual effects in your React app.

10 lines (9 loc) 260 B
import React from 'react'; export interface SnowProps { containerRef: React.RefObject<HTMLElement>; color?: string; outlineColor?: string; maxFlakes?: number; speedFactor?: number; } export declare const SnowAnimation: React.FC<SnowProps>;