"use client"; import type { ReactNode } from "react"; import { CreateFlowHeaderLockup } from "./CreateFlowHeaderLockup"; import { CreateFlowStepShell } from "./CreateFlowStepShell"; /** Shared `RuleCard` / template card chrome: width + radius; padding comes from `RuleCard` (L+expanded = 24px). */ export const CREATE_FLOW_REVIEW_RULE_CARD_LAYOUT_CLASS = "w-full min-w-0 rounded-[12px] md:rounded-[24px] md:!max-w-full md:!w-full"; type CreateFlowLockupCardStepShellProps = { lockupTitle: string; lockupDescription?: string; children: ReactNode; }; /** * Final-review-style create-flow step: `wideGrid` shell, two-column grid at `md+`, * left `CreateFlowHeaderLockup` (vertically centered in column), right column for card content. */ export function CreateFlowLockupCardStepShell({ lockupTitle, lockupDescription, children, }: CreateFlowLockupCardStepShellProps) { return (
{children}
); }