import { ClipboardList, Minimize2 } from 'lucide-react'; import { Button } from './ui'; import { useUIModeStore } from '../store/uiModeStore'; interface TopBarProps { title: string; subtitle?: string; onOpenDetail?: () => void; showDetailButton?: boolean; } export function TopBar({ title, subtitle, onOpenDetail, showDetailButton = true }: TopBarProps) { return (
{/* 左侧标题 */}
{title} {subtitle && ( {subtitle} )}
{/* 中间区域 */}
{/* 右侧按钮 */}
{/* 切换简洁模式 */} {/* 详情按钮 */} {showDetailButton && onOpenDetail && ( )}
); }