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.
12 lines • 402 B
TypeScript
import React from "react";
interface LiquidChromeProps extends React.HTMLAttributes<HTMLDivElement> {
baseColor?: [number, number, number];
speed?: number;
amplitude?: number;
frequencyX?: number;
frequencyY?: number;
interactive?: boolean;
}
export declare const LiquidChrome: React.FC<LiquidChromeProps>;
export default LiquidChrome;
//# sourceMappingURL=LiquidChrome.d.ts.map