viettel-ekyc-sdk
Version:
29 lines • 991 B
JavaScript
/* eslint-disable react-native/no-inline-styles */
import React from 'react';
import { ActivityIndicator, View } from 'react-native';
import { MashBackground } from './MashBackground';
export const Loadding = () => {
return (React.createElement(View, { style: {
position: 'absolute',
top: 0,
left: 0,
right: 0,
bottom: 0,
zIndex: 50,
} },
React.createElement(MashBackground, null),
React.createElement(View, { style: {
flex: 1,
alignItems: 'center',
position: 'absolute',
top: 0,
left: 0,
right: 0,
bottom: 0,
flexDirection: 'column',
justifyContent: 'center',
alignContent: 'center',
} },
React.createElement(ActivityIndicator, { size: 'large', color: 'white' }))));
};
//# sourceMappingURL=Loadding.js.map