Props for the ProgressBar.

interface IProps {
    content?: string;
    percentage: number;
    width?: number;
}

Properties

content?: string

Text to show inside progress bar.

percentage: number

The current progress percentage, from 0 to 100

width?: number

Width of progress bar in pixel.