+
+
+ ${renderIcon('restart', { class: cn(icon, iconState.play.restart) })}
+ ${renderIcon('play', { class: cn(icon, iconState.play.play) })}
+ ${renderIcon('pause', { class: cn(icon, iconState.play.pause) })}
+
+
+
+
+
+
+
+
+ ${renderIcon('volume-off', { class: cn(icon, iconState.mute.volumeOff) })}
+ ${renderIcon('volume-low', { class: cn(icon, iconState.mute.volumeLow) })}
+ ${renderIcon('volume-high', { class: cn(icon, iconState.mute.volumeHigh) })}
+
+
+
+
+ ${renderIcon('captions-off', { class: cn(icon, iconState.captions.off) })}
+ ${renderIcon('captions-on', { class: cn(icon, iconState.captions.on) })}
+
+
+
+ ${renderIcon('cast-enter', { class: cn(icon, iconState.cast.enter) })}
+ ${renderIcon('cast-exit', { class: cn(icon, iconState.cast.exit) })}
+
+
+
+ ${renderIcon('pip-enter', { class: cn(icon, iconState.pip.off) })}
+ ${renderIcon('pip-exit', { class: cn(icon, iconState.pip.on) })}
+
+
+
+ ${renderIcon('fullscreen-enter', { class: cn(icon, iconState.fullscreen.enter) })}
+ ${renderIcon('fullscreen-exit', { class: cn(icon, iconState.fullscreen.exit) })}
+
+
+
+
+