Update where we jump form icon to icon

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner 2022-08-02 14:31:16 +02:00
parent 33ef680c41
commit 93db217239
No known key found for this signature in database
GPG Key ID: D1D45825D60C24D2

View File

@ -30,6 +30,6 @@ interface Props {
export function VolumeIcon({ volume }: Props) {
if (volume <= 0) return <AudioMuted />;
if (volume <= 0.75) return <AudioLow />;
if (volume <= 0.5) return <AudioLow />;
return <Audio />;
}