import LottieView from 'lottie-react-native' import React from 'react' import { StyleProp, StyleSheet, ViewStyle } from 'react-native' interface IProps { style?: StyleProp } const Error: React.FC = ({ style }) => { return ( ) } const styles = StyleSheet.create({ view: { width: 40, height: 40 } }) export default Error