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