UNPKG

lightswind

Version:

A collection of beautifully crafted React Components, Blocks & Templates for Modern Developers. Create stunning web applications effortlessly by using our 160+ professional and animated react components.

23 lines (22 loc) 691 B
import React from 'react'; export interface WoofyHoverImageProps { src: string; alt?: string; width?: number | string; height?: number | string; className?: string; effectType?: 'inversion' | 'blackWhite' | 'sepia' | 'duotone' | 'pixelate' | 'blur'; maskRadius?: number; turbulenceIntensity?: number; animationSpeed?: number; appearDuration?: number; disappearDuration?: number; effectIntensity?: number; invertMask?: boolean; duotoneColor1?: string; duotoneColor2?: string; onHover?: () => void; onLeave?: () => void; } export declare const WoofyHoverImage: React.FC<WoofyHoverImageProps>; export default WoofyHoverImage;