Files
inji-wallet/components/Logo.tsx
Paolo Miguel de Leon b5be632225 version 0.2.0
2022-02-15 10:26:25 +07:00

19 lines
375 B
TypeScript

import React from 'react';
import { View, Image } from 'react-native';
export const Logo: React.FC<LogoProps> = (props) => {
return (
<View>
<Image
style={{ resizeMode: 'contain', ...props }}
source={require('../assets/mosip-logo.png')}
/>
</View>
);
};
interface LogoProps {
width?: number | string;
height?: number | string;
}