"use client"; import React from "react"; import type { Citation } from "@duoc-thu/shared-types"; import { CitationCard } from "@duoc-thu/ui"; import { BookOpen, X, ShieldCheck, Layers, FileSearch } from "lucide-react"; import { cn } from "@duoc-thu/ui"; interface EvidencePanelProps { citations: Citation[]; activeCitationIndex: number | null; onSelectCitation: (citation: Citation, index: number) => void; onClose?: () => void; className?: string; } export function EvidencePanel({ citations, activeCitationIndex, onSelectCitation, onClose, className, }: EvidencePanelProps) { return ( ); }