in src/components/ui/Roster/RosterCell/index.tsx [49:62]
function getVideoIcon(
isVideoEnabled: boolean | null | undefined,
isSharingContent: boolean | null | undefined
) {
if (isSharingContent) {
return <ScreenShare />;
}
if (typeof isVideoEnabled === 'boolean') {
return <Camera disabled={!isVideoEnabled} />;
}
return null;
}