@atlaskit/progress-bar
Version:
A progress bar communicates the status of a system process.
13 lines (12 loc) • 582 B
TypeScript
import React from 'react';
import { type CustomProgressBarProps } from '../types';
/**
* __Transparent progress bar__
*
* A transparent progress bar is used on bold backgrounds to maintain suitable contrast.
*
* - [Examples](https://atlassian.design/components/progress-bar/transparent-progress-bar/examples)
* - [Code](https://atlassian.design/components/progress-bar/transparent-progress-bar/code)
*/
declare const TransparentProgressBar: ({ ariaLabel, isIndeterminate, testId, value, }: CustomProgressBarProps) => React.JSX.Element;
export default TransparentProgressBar;