import * as React from 'react' import Svg, { Path } from 'react-native-svg' import colors from 'src/styles/colors' interface Props { color?: string testID?: string size?: number } function EarnCoins({ color = colors.accent, testID = 'EarnCoins', size = 24 }: Props) { return ( ) } export default React.memo(EarnCoins)