import { IProgressbarProps } from './types' import './Progressbar.scss' import { __, sprintf } from '@wordpress/i18n' import classNames from 'classnames' export const Progressbar = ({ currentStepNumber, currentStepTitle, currentStepDescription, totalSteps, }: IProgressbarProps) => { return (
{
{Array.from({ length: totalSteps }, (_, i) => (
{i + 1}
))}
}

{currentStepTitle}

{currentStepDescription}

) }