File size: 276 Bytes
a03b3ba
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
<script lang="ts">
	import { VolumeMuted, VolumeHigh, VolumeLow } from "@gradio/icons";
	export let currentVolume: number;
</script>

{#if currentVolume == 0}
	<VolumeMuted />
{:else if currentVolume < 0.5}
	<VolumeLow />
{:else if currentVolume >= 0.5}
	<VolumeHigh />
{/if}