Files
005b1850-cb38-4c8b-91b7-4cc…/src/types/button.ts
kudinDmitriyUp c11305ff28 Initial commit
2026-03-27 10:37:09 +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>>;
}