import * as React from 'react' import { ViewStyle } from 'react-native' import Svg, { Path } from 'react-native-svg' interface Props { width?: number height?: number style?: ViewStyle } export default function WelcomeLogo({ width = 243, height = 64, style }: Props) { return ( ) }