@theredhead — Frontend Library - v1.0.0
    Preparing search index...

    Type Alias FileIconRegistry

    FileIconRegistry: Record<string, string>

    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 }]