lightswind
Version:
A professionally designed component library & templates market that brings together functionality, accessibility, and beautiful aesthetics for modern applications.
14 lines (13 loc) • 608 B
TypeScript
import React from "react";
export interface GradientButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
children: React.ReactNode;
size?: "sm" | "md" | "lg" | "xl";
className?: string;
gradientColors?: string[];
animationSpeed?: number;
glowEffect?: boolean;
glowSize?: number;
variant?: "default" | "outline" | "ghost";
}
export declare function GradientButton({ children, size, className, gradientColors, animationSpeed, glowEffect, glowSize, variant, ...props }: GradientButtonProps): import("react/jsx-runtime").JSX.Element;
export default GradientButton;