/** * @license * Copyright 2025 Qwen Team * SPDX-License-Identifier: Apache-2.0 */ import type React from 'react'; import { ChevronDownIcon, PlusIcon } from '../icons/index.js'; interface ChatHeaderProps { currentSessionTitle: string; onLoadSessions: () => void; onNewSession: () => void; } export const ChatHeader: React.FC = ({ currentSessionTitle, onLoadSessions, onNewSession, }) => (
);