import { RiArrowRightLine } from '@remixicon/react' import type { AgentLogItemWithChildren, NodeTracing, } from '@/types/workflow' type AgentLogTriggerProps = { nodeInfo: NodeTracing onShowAgentResultList: (agentLogs: AgentLogItemWithChildren[]) => void } const AgentLogTrigger = ({ nodeInfo, onShowAgentResultList, }: AgentLogTriggerProps) => { const { agentLog } = nodeInfo return (