@atlaskit/progress-bar
Version:
A progress bar communicates the status of a system process.
18 lines (17 loc) • 592 B
TypeScript
/// <reference types="react" />
/**
* @jsxRuntime classic
* @jsx jsx
*/
import { type DefaultProgressBarProps } from '../types';
/**
* __Progress bar__
*
* A progress bar displays the status of a given process.
*
* - [Examples](https://atlassian.design/components/progress-bar/examples)
* - [Code](https://atlassian.design/components/progress-bar/code)
* - [Usage](https://atlassian.design/components/progress-bar/usage)
*/
declare const ProgressBar: ({ appearance, ariaLabel, isIndeterminate, testId, value, }: DefaultProgressBarProps) => JSX.Element;
export default ProgressBar;