import { SunIcon } from "@heroicons/react/24/solid"; import { useContext } from "react"; import { VideoPlayerContext } from "../VideoPlayer"; export default function Brightness() { const { brightness, setBrightness } = useContext(VideoPlayerContext); return ( <> {/* 亮度控制 */}