@finagraph/strongbox-finconnect-react
Version:
React components to integrate with Finagraph Strongbox
22 lines (21 loc) • 648 B
TypeScript
import '../../styles.scss';
import * as React from 'react';
import { PropsWithChildren } from 'react';
export declare enum OverlayType {
None = "none",
Dark = "dark",
Light = "light"
}
interface ILoadingIndicatorProps {
active: boolean;
overlayStyle?: React.CSSProperties;
overlayText?: string;
overlayTextClassName?: string;
overlayType?: OverlayType;
showSpinner?: boolean;
size?: number;
style?: React.CSSProperties;
thickness?: number;
}
declare const LoadingIndicatorComponent: React.FC<ILoadingIndicatorProps & PropsWithChildren>;
export default LoadingIndicatorComponent;