import * as React from 'react' import { StyleSheet, View, ViewStyle } from 'react-native' import Svg, { Defs, G, LinearGradient, Path, Stop } from 'react-native-svg' interface Props { size?: number color?: string style?: ViewStyle testID?: string } export default function Logo({ style, size = 32, color = 'url(#prefix__paint0_linear)', testID, }: Props) { return ( ) } const styles = StyleSheet.create({ container: { shadowOffset: { width: 0, height: 0 }, shadowRadius: 2, shadowOpacity: 1, shadowColor: 'rgba(46, 51, 56, 0.15)', }, })