import type { ReactNode } from 'react';

export interface CtaActionsProps {
  /** One or two `Button`s: a primary and optionally a ghost one. */
  children: ReactNode;
}

/**
 * Centered horizontal row of call-to-action buttons (`.kwac-final-actions`),
 * used in the closing `Section final`. Wraps on narrow screens.
 */
export function CtaActions({ children }: CtaActionsProps) {
  return <div className="kwac-final-actions">{children}</div>;
}
