You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
385 B

import {View, Image} from 'react-native';
import LogoSvg from '../asset/src/logo_simples_ip.svg';
import React from 'react';
const Logo = () => {
return (
<View
style={{
alignItems: 'center',
justifyContent: 'center',
width: '100%',
}}>
<LogoSvg width={'100%'} height={85} />
</View>
);
};
export default Logo;