'use client'; /** * PlayerSettings - Global settings for the video player * Following Liquid Glass design system */ import { Icons } from '@/components/ui/Icon'; interface PlayerSettingsProps { fullscreenType: 'native' | 'window'; onFullscreenTypeChange: (type: 'native' | 'window') => void; } export function PlayerSettings({ fullscreenType, onFullscreenTypeChange, }: PlayerSettingsProps) { return (

播放器设置

{/* Fullscreen Mode Selection */}

默认全屏方式

选择在桌面端点击播放器全屏按钮时的行为

); }