UNPKG

uiinfinity-components

Version:

Beautiful UI components with smooth animations and 3D effects

12 lines 455 B
import * as React from "react"; import { HTMLMotionProps } from "framer-motion"; interface RevealImageProps extends Omit<HTMLMotionProps<"div">, "ref"> { src: string; alt: string; aspectRatio?: number; parallaxStrength?: number; revealDelay?: number; } declare const RevealImage: React.ForwardRefExoticComponent<RevealImageProps & React.RefAttributes<HTMLDivElement>>; export { RevealImage }; //# sourceMappingURL=reveal-image.d.ts.map