office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
18 lines (17 loc) • 650 B
TypeScript
/// <reference types="react" />
import { BaseComponent } from '../../Utilities';
import { IProgressIndicatorProps } from './ProgressIndicator.types';
/**
* ProgressIndicator with no default styles.
* [Use the `styles` API to add your own styles.](https://github.com/OfficeDev/office-ui-fabric-react/wiki/Styling)
*/
export declare class ProgressIndicatorBase extends BaseComponent<IProgressIndicatorProps, {}> {
static defaultProps: {
label: string;
description: string;
width: number;
};
constructor(props: IProgressIndicatorProps);
render(): JSX.Element;
private _onRenderProgress;
}