import { DownOutlined, RightOutlined } from '@ant-design/icons'; import React from 'react'; import { useTranslation } from 'react-i18next'; interface Props { content: string; } export function VisThinking({ content }: Props) { const { t } = useTranslation(); const [expanded, setExpanded] = React.useState(true); // Control the expansion of the thinking process // console.log("VisThinking", content) return (