import React from 'react' import { ActivityIndicator, Modal, Text, View } from 'react-native' import R from '../../res' import s from './styles' import { ILoadingProps } from './types' const Loading = ({ text = 'Loading...', styles, customComponent }: ILoadingProps) => { return ( {customComponent ? ( customComponent ) : ( <> {text} )} ) } export default Loading