import * as React from 'react' import { View, ViewStyle } from 'react-native' import Svg, { Circle, Path } from 'svgs' import { getSizing } from '../styles/accessibility' interface Props { color: string width?: number style?: ViewStyle } export default class Error extends React.PureComponent { static defaultProps = { width: getSizing(), style: {}, } render() { return ( ) } }