import { ArrowLeft } from 'lucide-react'; import type { ReactNode } from 'react'; import type { UnifiedCreationSpec } from './unifiedCreationSpecs'; type UnifiedCreationPageProps = { spec: UnifiedCreationSpec; children: ReactNode; onBack?: () => void; isBackDisabled?: boolean; }; export function UnifiedCreationPage({ spec, children, onBack, isBackDisabled = false, }: UnifiedCreationPageProps) { return (