\n
\n
\n\n {label && (\n
\n \n {label}\n \n {description && (\n \n {description}\n \n )}\n
\n )}\n
\n\n {/* Vertical connector */}\n {!isLast && (\n
\n )}\n
\n );\n }\n);\n\nStepperStep.displayName = 'StepperStep';\n\n// ========================================\n// CONTENT COMPONENT\n// ========================================\n\ninterface StepperContentProps {\n /** Value of the step this content belongs to */\n value: string;\n /** Content to display when step is active */\n children: ReactNode;\n /** Optional className */\n className?: string;\n}\n\nconst StepperContent: FC