import { FileText, Layers, Map as MapIcon, Table } from 'lucide-react'; interface Props { type: string; className?: string; colored?: boolean; } export function FileIcon({ type, className = '', colored = false }: Props) { if (!colored) { switch (type) { case 'pdf': return ; case 'cad': return ; case 'gis': return ; case 'excel': return ; default: return ; } } switch (type) { case 'pdf': return ; case 'cad': return ; case 'gis': return ; case 'excel': return
; default: return ; } }