geoview-core
    Preparing search index...

    Variable ProgressBarConst

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

    Type Declaration

      • (props: ProgressbarProps): Element
      • Create a customized Material UI Linear Progress Bar component.

        Parameters

        • props: ProgressbarProps

          The properties passed to the Progress Bar element

        Returns Element

        The Progress Bar component

        // 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" />