import React, { ReactNode } from 'react'; import { Surface } from './primitives/Surface'; interface OnboardingStepPanelProps { children: ReactNode; className?: string; } export function OnboardingStepPanel({ children, className = '' }: OnboardingStepPanelProps) { return ( {children} ); }