lightswind
Version:
A professionally designed animate react component library & templates market that brings together functionality, accessibility, and beautiful aesthetics for modern applications.
17 lines (16 loc) • 605 B
TypeScript
import React from "react";
export interface GradientCardProps {
color: string;
glowColor: string;
width?: string;
height?: string;
borderRadius?: string;
className?: string;
children?: React.ReactNode;
followMouse?: boolean;
hoverOnly?: boolean;
intensity?: number;
backgroundColor?: string;
}
export declare const InteractiveGradient: ({ color, glowColor, width, height, borderRadius, className, children, followMouse, hoverOnly, intensity, backgroundColor, }: GradientCardProps) => import("react/jsx-runtime").JSX.Element;
export default InteractiveGradient;