mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-09 05:27:57 -05:00
20 lines
402 B
TypeScript
20 lines
402 B
TypeScript
import React from 'react';
|
|
import { View, Image } from 'react-native';
|
|
import { Theme } from './ui/styleUtils';
|
|
|
|
export const Logo: React.FC<LogoProps> = (props) => {
|
|
return (
|
|
<View>
|
|
<Image
|
|
style={{ resizeMode: 'contain', ...props }}
|
|
source={Theme.MosipSplashLogo}
|
|
/>
|
|
</View>
|
|
);
|
|
};
|
|
|
|
interface LogoProps {
|
|
width?: number | string;
|
|
height?: number | string;
|
|
}
|