mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-07 20:53:54 -05:00
19 lines
375 B
TypeScript
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;
|
|
}
|