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

    Variable CircularProgressBaseConst

    CircularProgressBase: (props: CircularProgressProps) => Element = CircularProgressBaseUI

    Type Declaration

      • (props: CircularProgressProps): Element
      • Material-UI CircularProgress without animation wrapper.

        Base circular progress component with direct Material-UI CircularProgress rendering without fade animation or additional container. Use this for simple progress indicators where animation is not needed. All Material-UI CircularProgress props are supported and passed through directly.

        Parameters

        • props: CircularProgressProps

          CircularProgress configuration (see MUI docs for all available props)

        Returns Element

        Base CircularProgress component without animation

        // Basic usage
        <CircularProgressBase />

        // With specific value
        <CircularProgressBase value={75} />

        // Indeterminate with color
        <CircularProgressBase
        color="secondary"
        variant="indeterminate"
        />

        // With custom size and thickness
        <CircularProgressBase
        size={60}
        thickness={4}
        value={80}
        />