import type { ReactNode } from "react"; import { cn } from "@/lib/utils"; type ConfigWorkflowSectionProps = { step: number; title: string; description?: ReactNode; children: ReactNode; className?: string; contentClassName?: string; }; /** 编号步骤卡片,用于赔率/回水等合并配置页主栏分区。 */ export function ConfigWorkflowSection({ step, title, description, children, className, contentClassName, }: ConfigWorkflowSectionProps) { return (
{step}

{title}

{description ?
{description}
: null}
{children}
); }