| 14 | } from "lucide-react"; |
| 15 | |
| 16 | export interface FileNode { |
| 17 | name: string; |
| 18 | path: string; |
| 19 | type: "file" | "folder"; |
| 20 | children?: FileNode[]; |
| 21 | } |
| 22 | |
| 23 | interface FileTreeProps { |
| 24 | files: FileNode[]; |
nothing calls this directly
no outgoing calls
no test coverage detected