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