import { StyleSheet, View, ActivityIndicator as RNActivityIndicator } from 'react-native'; import type { ActivityIndicatorProps, FCCWD } from '../../types'; import { opacity } from '../../utilities'; import { applyDefaults } from '../../core/KitraProvider'; const styles = StyleSheet.create({ centeredView: { zIndex: 100, flex: 1, width: '100%', height: '100%', alignItems: 'center', justifyContent: 'center', }, modalView: { borderRadius: 20, width: 150, height: 150, }, }); const ActivityIndicator:FCCWD = ({ theme, children }) => ( {children || } ); export default applyDefaults(ActivityIndicator);