Interface LoadingModalOptions

Interface defining the props for the LoadingModal component.

interface LoadingModalOptions {
    isVisible: boolean;
    backgroundColor?: string;
    displayColor?: string;
}

Properties

isVisible: boolean

Determines if the modal is visible.

backgroundColor?: string

The background color of the modal overlay.

'rgba(0, 0, 0, 0.5)'
displayColor?: string

The color of the loading spinner and text.

'black'