@appletosolutions/reactbits
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 • 413 B
TypeScript
import React from "react";
type CanvasStrokeStyle = string | CanvasGradient | CanvasPattern;
interface SquaresProps {
direction?: "diagonal" | "up" | "right" | "down" | "left";
speed?: number;
borderColor?: CanvasStrokeStyle;
squareSize?: number;
hoverFillColor?: CanvasStrokeStyle;
}
declare const Squares: React.FC<SquaresProps>;
export default Squares;
//# sourceMappingURL=Squares.d.ts.map