import type { ReactNode } from "react"; export type ConsolidationCalloutProps = { title: string; icon?: ReactNode; children: ReactNode; className?: string; }; /** 통합·전략 권고 등 강조 CTA 블록 — 리포트 채널 섹션 공통 */ export function ConsolidationCallout({ title, icon, children, className = "", }: ConsolidationCalloutProps) { return (