NewscoutLogo.js 402 B

1234567891011121314151617181920
  1. import { StyleSheet, Image, View } from 'react-native'
  2. import React from 'react'
  3. import images from '../../assets/images/images'
  4. const NewscoutLogo = ({style}) => {
  5. return (
  6. <View>
  7. <Image source={images.newscout_light} style={[styles.image,style]}/>
  8. </View>
  9. )
  10. }
  11. export default NewscoutLogo
  12. const styles = StyleSheet.create({
  13. image:{
  14. height:32,
  15. width:32
  16. }
  17. })