({ filePath, className }: FileIconProps)
| 101 | } |
| 102 | |
| 103 | export function FileIcon({ filePath, className }: FileIconProps) { |
| 104 | const Icon = getFileIcon(filePath); |
| 105 | return <Icon className={className} />; |
| 106 | } |
nothing calls this directly
no test coverage detected