import * as React from 'react' import Svg, { Path } from 'react-native-svg' interface Props { color?: string size?: number testID?: string } const Wallet = ({ color, size, testID }: Props) => ( ) export default Wallet