| 7 | import { Badge } from "@/components/ui/badge" |
| 8 | |
| 9 | interface Document { |
| 10 | id: number |
| 11 | name: string |
| 12 | source: string |
| 13 | icon: typeof File | typeof FileText |
| 14 | } |
| 15 | |
| 16 | const initialDocuments: Document[] = [ |
| 17 | { id: 1, name: "Project Proposal.docx", source: "local", icon: FileText }, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…