reactbits-animation
Version:
A comprehensive collection of beautiful, performant React animation components including bounce effects, click sparks, star borders, scroll-triggered animations, and fade transitions.
14 lines • 453 B
TypeScript
import React, { CSSProperties } from "react";
interface PixelTransitionProps {
firstContent: React.ReactNode;
secondContent: React.ReactNode;
gridSize?: number;
pixelColor?: string;
animationStepDuration?: number;
className?: string;
style?: CSSProperties;
aspectRatio?: string;
}
declare const PixelTransition: React.FC<PixelTransitionProps>;
export default PixelTransition;
//# sourceMappingURL=PixelTransition.d.ts.map