import React, { FC, ReactType } from 'react'; import css from './index.module.css'; import classnames from 'classnames'; export interface ProgressBarProps { title?: string; steps?: { id: string; title: string; isActive: boolean; Link: ReactType; LinkProps: unknown; }[]; } const ProgressBar: FC = ({ steps, title }) => { return (
{title &&

{title}

}
); }; export default ProgressBar;