Dynamic concept by extending this class: extend getIcon in this way:
protected acceptIcon(iconName: string): boolean {
// Check if this is something we want to accept and provide. if(iconName === "myCustomIcon") {
// Inform that we will be providing this.
const icon = this.provideIcon(iconName);
// When data is available set it on this icon object, this can be done at any point in time:
icon.svg = "...";
return true;
}
return false; }
Protected
provide
UmbIconRegistry
Description