Files
0260dbe5-3bcb-4bbd-aa85-c80…/src/types/button.ts
2026-02-20 22:31:13 +00:00

12 lines
365 B
TypeScript

import type { CTAButtonVariant, ButtonPropsForVariant } from "@/components/button/types";
export type ButtonAnimationType = "none" | "opacity" | "slide-up" | "blur-reveal";
export interface ButtonConfig {
text: string;
onClick?: () => void;
href?: string;
scrollToSection?: boolean;
props?: Partial<ButtonPropsForVariant<CTAButtonVariant>>;
}