Header.js 610 B

123456789101112131415161718192021222324252627
  1. import { StyleSheet, Text, View } from 'react-native'
  2. import React from 'react'
  3. import fonts from '../../theme/fonts'
  4. import colors from '../../theme/colors'
  5. const Header = ({style,children}) => {
  6. return (
  7. <View style={[styles.headerContainer,style]}>
  8. {children}
  9. </View>
  10. )
  11. }
  12. export default Header
  13. const styles = StyleSheet.create({
  14. headerContainer:{
  15. paddingHorizontal: fonts.getSize(20),
  16. flexDirection: 'row',
  17. alignItems:'center',
  18. justifyContent:'space-between',
  19. height: 60,
  20. maxHeight: 60,
  21. backgroundColor: colors.white
  22. }
  23. })