diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-03-14 13:12:42 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-03-14 13:12:42 -0500 |
commit | c73d1e80b1ce39c2ae4d4c02ffee5e7c596c0a96 (patch) | |
tree | 3ad163d318dc0b4472956d0c1cd82dfaaffd8c9b | |
parent | 4eb9eb006ca2e6fcf22d0193a68708209a79c50d (diff) | |
download | voidsky-c73d1e80b1ce39c2ae4d4c02ffee5e7c596c0a96.tar.zst |
Remove dead code
-rw-r--r-- | src/view/com/auth/Logo.tsx | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/src/view/com/auth/Logo.tsx b/src/view/com/auth/Logo.tsx deleted file mode 100644 index ac408cd2f..000000000 --- a/src/view/com/auth/Logo.tsx +++ /dev/null @@ -1,26 +0,0 @@ -import React from 'react' -import {StyleSheet, View} from 'react-native' -import {s, colors} from 'lib/styles' -import {Text} from '../util/text/Text' - -export const LogoTextHero = () => { - return ( - <View style={[styles.textHero]}> - <Text type="title-lg" style={[s.white, s.bold]}> - Bluesky - </Text> - </View> - ) -} - -const styles = StyleSheet.create({ - textHero: { - flexDirection: 'row', - alignItems: 'center', - justifyContent: 'center', - paddingRight: 20, - paddingVertical: 15, - marginBottom: 20, - backgroundColor: colors.blue3, - }, -}) |