import React from 'react'; import { View, Image } from 'react-native'; import { Theme } from './ui/styleUtils'; export const Logo: React.FC = (props) => { return ( ); }; interface LogoProps { width?: number | string; height?: number | string; }