geoview-core - v2.2.0
    Preparing search index...

    Variable ProgressBarConst

    ProgressBar: (props: ProgressbarProps) => Element = ProgressBarUI

    Type Declaration

      • (props: ProgressbarProps): Element
      • Material-UI LinearProgress component for progress indication.

        Wraps Material-UI's LinearProgress to provide horizontal progress bar with multiple variants (determinate, indeterminate, buffer, query). Supports custom values, accessibility labels, and theme-aware styling. All Material-UI LinearProgress props are supported and passed through directly.

        Parameters

        • props: ProgressbarProps

          ProgressBar configuration (see ProgressbarProps interface)

        Returns Element

        Progress bar component with theme styling

        // Basic usage
        <ProgressBar />

        // With determinate value
        <ProgressBar
        variant="determinate"
        value={75}
        />

        // With custom styling
        <ProgressBar
        className="custom-progress"
        variant="buffer"
        />

        // Indeterminate loading
        <ProgressBar variant="indeterminate" />