feat: Implement PlaybackControls component and add i18n files for common terms in English, Spanish, and Chinese.

This commit is contained in:
AP Solanki
2026-03-22 15:33:43 +05:30
parent 5d561ff06f
commit eae3f119a4
4 changed files with 11 additions and 5 deletions
@@ -100,9 +100,9 @@ export default function PlaybackControls({
aria-label={isFullscreen ? t("playback.exitFullscreen") : t("playback.fullscreen")}
>
{isFullscreen ? (
<Minimize className="w-3.5 h-3.5 fill-current" />
<Minimize className="w-3.5 h-3.5" />
) : (
<Maximize className="w-3.5 h-3.5 fill-current" />
<Maximize className="w-3.5 h-3.5" />
)}
</Button>
)}