import React from 'react'; import { ImageStyle, Text } from 'react-native'; import Animated, { AnimatedStyleProp } from 'react-native-reanimated'; type ErrorComponentProps = { transXYStyle? : AnimatedStyleProp; size : 'small' | 'big'; } const ErrorComponent = ({ transXYStyle, size = 'big' } : ErrorComponentProps ) => { return ( {`✖︎`} { (size === 'big') ? {`Not Found`} : null } ) }; export default ErrorComponent