UNPKG

snowfallreact

Version:

A React package for creating highly customizable snowfall effects. Perfect for adding a touch of winter magic to your web applications. Compatible with Next.js and ideal for enhancing the user interface with dynamic, seasonal visuals. Easy to integrate an

10 lines (9 loc) 240 B
import React from 'react'; interface SnowfallProps { imageSrc: string; windSpeed?: number; windDirection?: number; particleCount?: number; } declare const Snowfall: React.FC<SnowfallProps>; export default Snowfall;