@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.
26 lines • 750 B
JavaScript
import * as React from 'react';
import { Text, StyleSheet } from 'react-native';
import { SafeAreaView } from 'react-native-safe-area-context';
import { COLORS } from '../utils/theme';
export const HMSMeetingEnded = () => {
return /*#__PURE__*/React.createElement(SafeAreaView, {
style: styles.container
}, /*#__PURE__*/React.createElement(Text, {
style: styles.title
}, "Meeting Ended"));
};
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: COLORS.BACKGROUND.DIM,
alignItems: 'center',
justifyContent: 'center'
},
title: {
color: COLORS.SURFACE.ON_SURFACE.HIGH,
fontSize: 24,
fontFamily: 'Inter-SemiBold',
lineHeight: 32
}
});
//# sourceMappingURL=HMSMeetingEnded.js.map