UNPKG

mediasfu-reactnative-expo

Version:

mediasfu-reactnative-expo – Expo-managed React Native WebRTC SDK for video conferencing, webinars, live streaming, broadcast, screen sharing, whiteboard, chat, recording, live subtitles, translation, and AI agent rooms on iOS, Android, and web. Prebuilt r

12 lines 467 B
import React from 'react'; import { StyleSheet, View } from 'react-native'; import { modernColors, modernPanelStyle } from './modernTheme'; export const ModernSurface = ({ children, style }) => (<View style={[styles.surface, style]}>{children}</View>); const styles = StyleSheet.create({ surface: { ...modernPanelStyle, backgroundColor: modernColors.surfaceStrong, }, }); export default ModernSurface; //# sourceMappingURL=ModernSurface.js.map