7 lines
210 B
Plaintext
7 lines
210 B
Plaintext
|
|
<ToggleButton
|
||
|
|
aria-pressed={muted ? 'true' : 'false'}
|
||
|
|
onClick={() => setMuted((bool) => !bool)}
|
||
|
|
sx={{ minWidth: 120 }}
|
||
|
|
>
|
||
|
|
Mute {muted ? <VolumeOffRoundedIcon /> : <VolumeUpRoundedIcon />}
|
||
|
|
</ToggleButton>
|