/* Dependencies */ import React from 'react' import { ActivityIndicator, Modal, StyleSheet, View } from 'react-native' /* Types */ type Props = { /** * Whether the loader is visible */ visible: boolean } const LoaderCircle = ({ visible }: Props) => { return ( ) } LoaderCircle.displayName = 'Loader.Circle' const styles = StyleSheet.create({ container: { alignItems: 'center', backgroundColor: '#00000040', flex: 1, flexDirection: 'column', justifyContent: 'space-around' }, indicator: { alignItems: 'center', backgroundColor: '#FFFFFF', borderRadius: 10, display: 'flex', height: 100, justifyContent: 'space-around', width: 100 } }) export default LoaderCircle