UNPKG

@100mslive/react-native-room-kit

Version:

100ms Room Kit provides simple & easy to use UI components to build Live Streaming & Video Conferencing experiences in your apps.

17 lines 488 B
import React from 'react'; import { ActivityIndicator, StyleSheet } from 'react-native'; import { COLORS } from '../utils/theme'; export const FullScreenIndicator = () => { return /*#__PURE__*/React.createElement(ActivityIndicator, { size: 'large', color: COLORS.PRIMARY.DEFAULT, style: styles.indicator }); }; const styles = StyleSheet.create({ indicator: { flex: 1, backgroundColor: COLORS.BACKGROUND.DIM } }); //# sourceMappingURL=FullScreenIndicator.js.map