Files
beb3efcf-19ed-4400-b592-6db…/src/types/button.ts
Nikolay Pecheniev 21e5931cb4 Initial commit
2026-03-13 16:05:38 +02: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>>;
}