xlibs-components
Version:
Modern React component library with Aceternity, MagicUI, and ShadCN components for building beautiful web applications
13 lines • 675 B
TypeScript
import * as React from "react";
import type { HTMLMotionProps } from "motion/react";
interface AnimatedSubscribeButtonProps extends HTMLMotionProps<"button"> {
children: React.ReactNode;
className?: string;
variant?: "default" | "primary" | "secondary" | "success" | "warning" | "error";
size?: "sm" | "md" | "lg";
action?: "subscribe" | "follow" | "like" | "bookmark" | "download";
onAction?: (action: string) => void;
}
export declare const AnimatedSubscribeButton: React.ForwardRefExoticComponent<Omit<AnimatedSubscribeButtonProps, "ref"> & React.RefAttributes<HTMLButtonElement>>;
export {};
//# sourceMappingURL=animated-subscribe-button.d.ts.map