import { TrashIcon } from '@heroicons/react/24/outline'; import type { FC } from 'react'; import { useContext } from 'react'; import { ChatContext } from '@/context/ChatContext'; /** * 删除聊天记录 */ export const DeleteHistoryButton: FC<{ historyIndex: 'current' | number }> = ({ historyIndex }) => { const { deleteHistory } = useContext(ChatContext)!; return ( ); };