/** * @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; } export const ThinkingIcon: React.FC = ({ size = 16, className, enabled = false, style, ...props }) => ( ); export const TerminalIcon: React.FC = ({ size = 20, className, ...props }) => ( );