Type Alias ProgressProps

ProgressProps: React.ComponentProps<typeof Container> & {
    scaleFrom?: number;
    scaleTo?: number;
    value?: number;
    valueFrom?: number;
}

Type declaration

  • OptionalscaleFrom?: number

    Redefines the scale of the progress bar. By default, the scale is 0-100. This controls the starting point of the progress bar.

  • OptionalscaleTo?: number

    Redefines the scale of the progress bar. By default, the scale is 0-100. This controls the ending point of the progress bar.

  • Optionalvalue?: number

    The value of the progress bar. If used alone, it's the percentage value of the progress bar.

  • OptionalvalueFrom?: number

    Value from which the value bar starts. Default is equal to scaleFrom.