import clsx from 'clsx'; import React from 'react'; import './style.scss'; interface StepSectionProps { heading: string; stepCount?: number; children: React.ReactNode; className?: string; } export default function StepSection( { stepCount, heading, children, className, }: StepSectionProps ) { return (
{ !! stepCount &&
{ stepCount }
}
{ heading }
{ children }
); }