Maps file extensions (without leading dot, lower-case) to SVG icon strings. Consumers provide this via DI to customise the icon view.
const MY_ICONS: FileIconRegistry = { ts: UIIcons.Lucide.Files.FileCode, json: UIIcons.Lucide.Files.FileJson, md: UIIcons.Lucide.Files.FileText,};providers: [{ provide: FILE_ICON_REGISTRY, useValue: MY_ICONS }] Copy
const MY_ICONS: FileIconRegistry = { ts: UIIcons.Lucide.Files.FileCode, json: UIIcons.Lucide.Files.FileJson, md: UIIcons.Lucide.Files.FileText,};providers: [{ provide: FILE_ICON_REGISTRY, useValue: MY_ICONS }]
Maps file extensions (without leading dot, lower-case) to SVG icon strings. Consumers provide this via DI to customise the icon view.