// dashboard/src/components/agent/AnswerCard.tsx // 最终答案卡片:展示 Agent 的最终回答 import { CheckCircle2 } from 'lucide-react'; import type { ColorScheme } from './constants'; import { AgentMarkdown } from './AgentMarkdown'; interface AnswerCardProps { content: string; colorScheme: ColorScheme; isStreaming?: boolean; } export function AnswerCard({ content, colorScheme, isStreaming, }: AnswerCardProps) { return (
结论
{content}
); }