Replace lottie loading spinner for activity indicator (#6266)

This commit is contained in:
Elias Nahum
2022-05-12 12:54:43 -04:00
committed by GitHub
parent 3f3e0e76db
commit 08d80e6236
25 changed files with 64 additions and 713 deletions

View File

@@ -10,7 +10,6 @@ type ThemeKey = 'denim' | 'sapphire' | 'quartz' | 'indigo' | 'onyx' | 'custom';
type ThemeType = 'Denim' | 'Sapphire' | 'Quartz' | 'Indigo' | 'Onyx' | 'custom';
type Theme = {
[key: string]: string | undefined;
type?: ThemeType | LegacyThemeType;
sidebarBg: string;
sidebarText: string;
@@ -38,4 +37,6 @@ type Theme = {
codeTheme: string;
};
type ExtendedTheme = Theme & {[key: string]: string | undefined};
type ThemeTypeMap = Record<ThemeType | LegacyThemeType, ThemeKey>;