import React from 'react'; import { Icons } from '@/components/ui/Icon'; interface DesktopRightControlsProps { isFullscreen: boolean; isPiPSupported: boolean; isAirPlaySupported: boolean; isCastAvailable: boolean; isProxied?: boolean; onToggleFullscreen: () => void; onTogglePictureInPicture: () => void; onShowAirPlayMenu: () => void; onShowCastMenu: () => void; } export function DesktopRightControls({ isFullscreen, isPiPSupported, isAirPlaySupported, isCastAvailable, isProxied, onToggleFullscreen, onTogglePictureInPicture, onShowAirPlayMenu, onShowCastMenu }: DesktopRightControlsProps) { return (