Files
6db75a79-4ab3-46ba-adbd-9bd…/src/types/button.ts
2026-04-12 04:02:59 +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>>;
}