keycloak-demo-frontend/src/components/Base/Loading/types.d.ts

10 lines
267 B
TypeScript

export interface LoadingProps {
typePosition: 'relative' | 'absolute';
typeBackground: 'white' | 'black';
typeZIndex: number;
typeIcon: 'basic' | 'text' | 'icon' | 'line:fix' | 'line:relative';
isLoading: boolean;
isHideText?: boolean;
text?: string;
}