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
15 lines • 691 B
JavaScript
import React from 'react';
import MeetingProgressTimer from '../../components/displayComponents/MeetingProgressTimer';
import { getModernColors, resolveIsDarkMode } from '../core/modernTheme';
export const ModernMeetingProgressTimer = (props) => {
const colors = getModernColors(resolveIsDarkMode(props));
return (<MeetingProgressTimer {...props} initialBackgroundColor={props.initialBackgroundColor ?? colors.accent} textStyle={[
{
color: colors.invertedText,
fontWeight: '800',
},
props.textStyle,
]}/>);
};
export default ModernMeetingProgressTimer;
//# sourceMappingURL=ModernMeetingProgressTimer.js.map