import React from 'react'; import { Button } from '@douyinfe/semi-ui'; import { Settings, Eye, EyeOff, } from 'lucide-react'; const FloatingButtons = ({ styleState, showSettings, showDebugPanel, onToggleSettings, onToggleDebugPanel, }) => { if (!styleState.isMobile) return null; return ( <> {/* 设置按钮 */} {!showSettings && (