import React, { forwardRef } from 'react' import { StatusBar } from './StatusBar' export const Avatar = forwardRef(function Avatar({ idleVideoSrc = '/avatar_videos/idle.mp4', wsStatus, rtcStatus, udpStatus, showRtcVideo, showCanvas }, ref) { const { rtcVideoRef, canvasRef } = ref || {} return (
) })