12345678910111213141516171819202122232425262728 |
- import { StyleSheet, Text, TouchableWithoutFeedback, View } from 'react-native'
- import React from 'react'
- import NewscoutLogo from '../../molecules/NewscoutLogo'
- import fonts from '../../../theme/fonts'
- import Header from '../../atoms/Header'
- import colors from '../../../theme/colors'
- const NewscoutHomeHeader = ({ children, headerStyle}) => {
- return (
- <Header style={[styles.header,headerStyle]}>
- <NewscoutLogo style={styles.headerLogo} />
- {children}
- </Header>
- )
- }
- export default NewscoutHomeHeader
- const styles = StyleSheet.create({
- headerLogo: {
- height: fonts.getSize(64),
- width: fonts.getSize(64)
- },
- header:{
- backgroundColor: colors.white
- }
- })
|