import { StyleSheet } from "react-native"; const HeaderStyles = StyleSheet.create({ headerContainer: { backgroundColor: '#19345E' }, headerApp: { flexDirection: 'row', alignItems: 'center', justifyContent: 'space-between', paddingHorizontal: 16, }, headerTitle: { color: '#fff', fontSize: 18, fontWeight: '600' }, headerSide: { width: 40, alignItems: 'center' }, wrapHeadViewMember: { backgroundColor: '#19345E', paddingVertical: 30, paddingHorizontal: 15, alignItems: 'center', borderBottomLeftRadius: 25, borderBottomRightRadius: 25, }, }); export default HeaderStyles;