mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 01:40:12 +01:00
13 lines
330 B
TypeScript
13 lines
330 B
TypeScript
import React from 'react';
|
|
import { ActivityIndicator, StyleSheet, View } from 'react-native';
|
|
|
|
export const LazyLoadingIndicator = () => (
|
|
<View style={styles.root}>
|
|
<ActivityIndicator size="large" />
|
|
</View>
|
|
);
|
|
|
|
const styles = StyleSheet.create({
|
|
root: { flex: 1, justifyContent: 'center', alignItems: 'center' },
|
|
});
|