xlibs-components
Version:
Modern React component library with Aceternity, MagicUI, and ShadCN components for building beautiful web applications
9 lines • 440 B
TypeScript
import React from "react";
interface PulsatingButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
pulseColor?: string;
duration?: string;
variant?: "default" | "primary" | "secondary" | "success" | "warning" | "error";
}
export declare const PulsatingButton: React.ForwardRefExoticComponent<PulsatingButtonProps & React.RefAttributes<HTMLButtonElement>>;
export {};
//# sourceMappingURL=pulsating-button.d.ts.map