logo.tsx 507 B

123456789101112131415161718192021222324
  1. import React from "react";
  2. import { Image, View, StyleProp, ImageStyle, ViewStyle } from 'react-native';
  3. const Logo = () => {
  4. const logoSource = require('../../assets/logo.png');
  5. const imageStyle: ImageStyle = {
  6. width: '100%',
  7. resizeMode: 'contain',
  8. };
  9. const viewStyle: ViewStyle = {
  10. maxWidth: '100%',
  11. alignItems: 'center',
  12. };
  13. return (
  14. <View style={viewStyle}>
  15. <Image source={logoSource} style={imageStyle} />
  16. </View>
  17. );
  18. };
  19. export default Logo;