25 lines
452 B
JavaScript
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;
|