Files
4b29a127-ff8f-4b04-bb57-e8e…/src/types/button.ts
2026-03-02 21:31:11 +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>>;
}