Change to a more logical audio mute icon
parent
881164a718
commit
5c4eeb121a
|
|
@ -12,8 +12,8 @@ import { useIntl, FormattedMessage } from 'react-intl';
|
||||||
import VideoView from '../VideoContainers/VideoView';
|
import VideoView from '../VideoContainers/VideoView';
|
||||||
import Tooltip from '@material-ui/core/Tooltip';
|
import Tooltip from '@material-ui/core/Tooltip';
|
||||||
import Fab from '@material-ui/core/Fab';
|
import Fab from '@material-ui/core/Fab';
|
||||||
import MicIcon from '@material-ui/icons/Mic';
|
import VolumeUpIcon from '@material-ui/icons/VolumeUp';
|
||||||
import MicOffIcon from '@material-ui/icons/MicOff';
|
import VolumeOffIcon from '@material-ui/icons/VolumeOff';
|
||||||
import NewWindowIcon from '@material-ui/icons/OpenInNew';
|
import NewWindowIcon from '@material-ui/icons/OpenInNew';
|
||||||
import FullScreenIcon from '@material-ui/icons/Fullscreen';
|
import FullScreenIcon from '@material-ui/icons/Fullscreen';
|
||||||
import Volume from './Volume';
|
import Volume from './Volume';
|
||||||
|
|
@ -252,9 +252,9 @@ const Peer = (props) =>
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{ micEnabled ?
|
{ micEnabled ?
|
||||||
<MicIcon />
|
<VolumeUpIcon />
|
||||||
:
|
:
|
||||||
<MicOffIcon />
|
<VolumeOffIcon />
|
||||||
}
|
}
|
||||||
</Fab>
|
</Fab>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,8 @@ import { useIntl } from 'react-intl';
|
||||||
import IconButton from '@material-ui/core/IconButton';
|
import IconButton from '@material-ui/core/IconButton';
|
||||||
import VideocamIcon from '@material-ui/icons/Videocam';
|
import VideocamIcon from '@material-ui/icons/Videocam';
|
||||||
import VideocamOffIcon from '@material-ui/icons/VideocamOff';
|
import VideocamOffIcon from '@material-ui/icons/VideocamOff';
|
||||||
import MicIcon from '@material-ui/icons/Mic';
|
import VolumeUpIcon from '@material-ui/icons/VolumeUp';
|
||||||
import MicOffIcon from '@material-ui/icons/MicOff';
|
import VolumeOffIcon from '@material-ui/icons/VolumeOff';
|
||||||
import ScreenIcon from '@material-ui/icons/ScreenShare';
|
import ScreenIcon from '@material-ui/icons/ScreenShare';
|
||||||
import ScreenOffIcon from '@material-ui/icons/StopScreenShare';
|
import ScreenOffIcon from '@material-ui/icons/StopScreenShare';
|
||||||
import ExitIcon from '@material-ui/icons/ExitToApp';
|
import ExitIcon from '@material-ui/icons/ExitToApp';
|
||||||
|
|
@ -217,9 +217,9 @@ const ListPeer = (props) =>
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{ micEnabled ?
|
{ micEnabled ?
|
||||||
<MicIcon />
|
<VolumeUpIcon />
|
||||||
:
|
:
|
||||||
<MicOffIcon />
|
<VolumeOffIcon />
|
||||||
}
|
}
|
||||||
</IconButton>
|
</IconButton>
|
||||||
{ isModerator &&
|
{ isModerator &&
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue