Files
3f2c392f-e1bb-46c0-afb4-324…/src/types/button.ts
kudinDmitriyUp 8ce6d67e60 Initial commit
2026-03-09 20:31:40 +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>>;
}