/** * @license * Copyright 2025 Qwen Team * SPDX-License-Identifier: Apache-2.0 * * Stop icon for canceling operations */ import type React from 'react'; import type { IconProps } from './types.js'; /** * Stop/square icon (16x16) * Used for stop/cancel operations */ export const StopIcon: React.FC = ({ size = 16, className, ...props }) => ( );