UNPKG

react-progressive-blur

Version:

A lightweight React component that creates smooth, progressive blur effects with customizable intensity and positioning. Perfect for creating modern UI overlays, video controls, and aesthetic blur gradients.

8 lines (7 loc) 269 B
type BlurEffectProps = { className?: string; intensity?: number; position?: 'top' | 'bottom' | 'left' | 'right'; }; export default function BlurEffect({ className, intensity, position }: BlurEffectProps): import("react/jsx-runtime").JSX.Element; export {};