This repository has been archived on 2022-12-12. You can view files and clone it, but cannot push or open issues or pull requests.
GiftGenie/components/LogoTitle.js

25 lines
452 B
JavaScript

import { StyleSheet, Image, View } from "react-native";
const LogoTitle = (props) => {
return (
<View style={styles.screen}>
<Image style={styles.image} source={require("../assets/present.png")} />
</View>
);
};
const styles = StyleSheet.create({
srceen: {
flex: 1,
alignItem: "center",
justifyContent: "center",
},
image: {
marginBottom: 12,
width: 50,
height: 50,
},
});
export default LogoTitle;