logo.tsx 471 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: "60%",
  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;