about summary refs log tree commit diff
path: root/src/view/com/util/LoadingScreen.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/view/com/util/LoadingScreen.tsx')
-rw-r--r--src/view/com/util/LoadingScreen.tsx17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/view/com/util/LoadingScreen.tsx b/src/view/com/util/LoadingScreen.tsx
deleted file mode 100644
index 1086c9d17..000000000
--- a/src/view/com/util/LoadingScreen.tsx
+++ /dev/null
@@ -1,17 +0,0 @@
-import {ActivityIndicator, View} from 'react-native'
-
-import {s} from '#/lib/styles'
-import * as Layout from '#/components/Layout'
-
-/**
- * @deprecated use Layout compoenents directly
- */
-export function LoadingScreen() {
-  return (
-    <Layout.Content>
-      <View style={s.p20}>
-        <ActivityIndicator size="large" />
-      </View>
-    </Layout.Content>
-  )
-}