import { ReactNode } from "react"; import { LinkProps } from "@shared/components/link/types"; export interface CallButtonProps extends Omit { showBlinkDot?: boolean; buttonStyle?: "primary"; className?: string; size?: "sm" | "md" | "lg"; children: ReactNode; /** Optional content rendered as a sibling BEFORE the pill (e.g. "Call now:"). */ prefix?: ReactNode; /** Optional className applied to the outer wrapper when `prefix` is used. */ containerClassName?: string; }