lightswind
Version:
A collection of beautifully crafted React Components, Blocks & Templates for Modern Developers. Create stunning web applications effortlessly by using our 160+ professional and animated react components.
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;