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.
23 lines (22 loc) • 670 B
TypeScript
import React from "react";
export interface TrialButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
/**
* The text to display inside the button.
*/
children: React.ReactNode;
/**
* The color used for the animated trail / border gradient.
* Example: "#4f46e5" or "blue"
*/
trailColor?: string;
/**
* The color used for the inner blur/glow animation.
* Example: "#60a5fa" or "aqua"
*/
blurColor?: string;
}
/**
* A reusable button component with a shiny, animated gradient effect.
* Supports dynamic trail and blur colors.
*/
export declare const TrialButton: React.FC<TrialButtonProps>;