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

    Variable CircularProgressConst

    CircularProgress: (props: CircularProgressPropsExtend) => Element = CircularProgressUI

    Type Declaration

      • (props: CircularProgressPropsExtend): Element
      • Material-UI CircularProgress with fade-in/out animation.

        Wraps Material-UI's CircularProgress with Fade animation controlled by the isLoaded prop. Shows loading spinner when isLoaded is false, fades out when true using theme transitions. All Material-UI CircularProgress props are supported. Useful for displaying loading states with smooth visibility transitions.

        Parameters

        Returns Element

        Fading CircularProgress component showing when not loaded

        // Basic usage with loading state
        <CircularProgress isLoaded={false} />

        // With custom size and color
        <CircularProgress
        isLoaded={false}
        size={40}
        color="secondary"
        />

        // With custom styling
        <CircularProgress
        isLoaded={false}
        sx={{
        color: 'primary.main',
        position: 'absolute'
        }}
        />

        // With custom thickness
        <CircularProgress
        isLoaded={false}
        thickness={4}
        size={50}
        />