@fluentui/react
Version:
Reusable React components for building web experiences.
20 lines (19 loc) • 681 B
TypeScript
import * as React from 'react';
import type { IProgressIndicatorProps } from './ProgressIndicator.types';
import type { JSXElement } from '@fluentui/utilities';
/**
* ProgressIndicator with no default styles.
* [Use the `styles` API to add your own styles.](https://github.com/microsoft/fluentui/wiki/Styling)
*/
export declare class ProgressIndicatorBase extends React.Component<IProgressIndicatorProps, {}> {
static defaultProps: {
label: string;
description: string;
width: number;
};
private _labelId;
private _descriptionId;
constructor(props: IProgressIndicatorProps);
render(): JSXElement;
private _onRenderProgress;
}