@unep-wcmc/icca-mapeo-mobile-intro-screens
Version:
Intro screens for Mapeo Mobile for the WCMC ICCA registration app
12 lines (11 loc) • 444 B
TypeScript
import { ImageStyle, ImageSourcePropType } from 'react-native';
/**
* For a source that is either SVG or bitmap, render the best way. SVGs in
* react-native are a real pain, and expo and bare react-native projects differ
* in how they handle require'ing SVG files.
*/
declare const UniversalImage: ({ source, style, }: {
source: ImageSourcePropType;
style?: ImageStyle | undefined;
}) => JSX.Element;
export default UniversalImage;