mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-06 09:29:29 +00:00
title added to mute button
This commit is contained in:
parent
d8ddec6177
commit
85d0259b45
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ const MuteButton = ({ className, muted, volume, dispatch }) => {
|
|||
volume < 70 ? 'ic_volume2' :
|
||||
'ic_volume3';
|
||||
return (
|
||||
<Button className={classnames(className, { 'disabled': typeof muted !== 'boolean' })} tabIndex={-1} onClick={toggleMuted}>
|
||||
<Button className={classnames(className, { 'disabled': typeof muted !== 'boolean' })} title={muted ? 'Unmute' : 'Mute'} tabIndex={-1} onClick={toggleMuted}>
|
||||
<Icon className={'icon'} icon={icon} />
|
||||
</Button>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue