/** * @license * Copyright 2025 Qwen Team * SPDX-License-Identifier: Apache-2.0 * * Special UI icons */ import type React from 'react'; import type { IconProps } from './types.js'; interface ThinkingIconProps extends IconProps { /** * Whether thinking is enabled (affects styling) */ enabled?: boolean; } /** * Thinking/brain wave icon (16x16) * Used for thinking mode toggle */ export const ThinkingIcon: React.FC = ({ size = 16, className, enabled = false, style, ...props }) => ( ); /** * Terminal/code editor icon (20x20) * Used for terminal preference info banner */ export const TerminalIcon: React.FC = ({ size = 20, className, ...props }) => ( );