office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
24 lines (23 loc) • 569 B
TypeScript
export interface IProgressIndicatorProps {
/**
* Class name to apply to the root in addition to ms-ProgressIndicator.
*/
className?: string;
/**
* Label to display above the control.
*/
label?: string;
/**
* Text describing or supplementing the operation.
*/
description?: string;
/**
* Percentage of the operation's completeness.
*/
percentComplete?: number;
/**
* @deprecated
* Deprecated at v0.43.0, to be removed at >= v0.53.0. Use 'label' instead.
*/
title?: string;
}