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

    Variable LoadingButtonConst

    LoadingButton: (props: LoadingButtonPropsExtend) => Element = LoadingButtonUI

    Type Declaration

      • (props: LoadingButtonPropsExtend): Element
      • Material-UI LoadingButton with optional tooltip support.

        Wraps Material-UI's LoadingButton to provide button with built-in loading indicator and optional tooltip. Useful for async operations like form submission or data fetching where visual feedback of in-progress state is needed. All Material-UI LoadingButton props are supported and passed through directly.

        Parameters

        Returns Element

        LoadingButton with optional tooltip wrapper on hover

        // Basic usage
        <LoadingButton>
        Click Me
        </LoadingButton>

        // With loading state
        <LoadingButton
        loading [[1]](https://getbootstrap.com/docs/3.3/javascript/)
        loadingPosition="start"
        startIcon={<SaveIcon />}
        >
        Saving
        </LoadingButton>

        // With custom styling
        <LoadingButton
        loading={isLoading}
        variant="contained"
        sx={{
        minWidth: 120
        }}
        >
        Submit
        </LoadingButton>