@hydroperx/metro
    Preparing search index...

    Variable IconRegistryConst

    IconRegistry: {
        get(type: string, color: "white" | "black"): any;
        register(type: string, sources: { black: any; white: any }): void;
        registerMap(map: Map<string, { black: any; white: any }>): void;
        unregister(type: string): void;
    } = ...

    Icon registry.

    Type declaration

    • get: function
      • Parameters

        • type: string
        • color: "white" | "black"

        Returns any

    • register: function
      • Parameters

        • type: string
        • sources: { black: any; white: any }

        Returns void

    • registerMap: function
      • Parameters

        • map: Map<string, { black: any; white: any }>

        Returns void

    • unregister: function