import React from 'react'; import { StyleProp, View, ViewStyle } from 'react-native'; import styles from '../../styles'; import { useTheme } from '../../../../theme'; import RCActivityIndicator from '../../../ActivityIndicator'; import { CustomIcon, TIconsName } from '../../../CustomIcon'; const OverlayComponent = ({ loading = false, style = {}, iconName }: { loading: boolean; style: StyleProp; iconName: TIconsName; }) => { const { colors } = useTheme(); return ( <> {loading ? : } ); }; export default OverlayComponent;