diff options
Diffstat (limited to 'src')
-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, - }, -}) |