import React from 'react'; import {Image, StyleSheet, Text, View} from 'react-native'; import {normalize} from '../../utils'; const BadgeScreenHeader: React.FC = () => { return ( Brown University Badges Search for organizations you are a part of! ); }; const styles = StyleSheet.create({ container: { alignItems: 'center', marginBottom: '1%', }, universityTextContainer: {marginTop: 12}, universityText: { fontSize: normalize(20), fontWeight: '700', lineHeight: normalize(23.87), color: 'white', }, searchTextContainer: {marginTop: 6}, searchText: { fontSize: normalize(15), fontWeight: '500', lineHeight: normalize(17.9), color: 'white', }, }); export default BadgeScreenHeader;