@atlaskit/progress-tracker
Version:
A progress tracker displays the steps and progress through a journey.
13 lines (12 loc) • 327 B
TypeScript
interface StageBarProps {
testId?: string;
percentageComplete: number;
}
/**
* __Progress bar__
*
* A progress bar describes the horizontal tracking bar that traverses each individual step.
*
*/
declare const ProgressBar: ({ percentageComplete, testId }: StageBarProps) => JSX.Element;
export default ProgressBar;