Axinom Mosaic Libraries
    Preparing search index...
    interface ProgressBar {
        className?: string;
        indeterminate?: boolean;
        kind: "simple" | "full";
        progress?: number;
        status?: ProgressBarStatus;
    }

    Hierarchy (View Summary)

    Index

    Properties

    className?: string

    CSS Class name for additional styles

    indeterminate?: boolean

    When set to true, the progress bar will just show a progress animation instead of a concrete progress.

    false
    
    kind: "simple" | "full"

    Toggles two different visualizations/sizes.

    progress?: number

    The progress that should be displayed. (0-100)

    Use this to signal the status of the progress.

    ProgressBarStatus.Processing