import React, { JSX } from 'react'; import { Platform, StyleProp, StyleSheet, View, ViewStyle } from 'react-native'; import Spin from 'react-native-spinkit'; import { THEME_COLOR } from '@app/constants'; function Spinner(props: { containerStyle?: StyleProp; }): JSX.Element { return ( ); } export default Spinner; const styles = StyleSheet.create({ container: { position: 'absolute', backgroundColor: 'rgba(43, 43, 43, 0.1)', top: 0, left: 0, bottom: 0, right: 0, alignItems: 'center', justifyContent: 'center', }, });