@truenas/ui-components 0.1.21 → 0.1.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -477,6 +477,9 @@ class TnIconComponent {
477
477
  // Convert to registry format for Lucide icons
478
478
  effectiveIconName = `lucide:${name}`;
479
479
  }
480
+ else if (library === 'custom' && !name.startsWith('app-')) {
481
+ effectiveIconName = `app-${name}`;
482
+ }
480
483
  // 1. Try icon registry (libraries and custom icons)
481
484
  const iconOptions = {
482
485
  size: this.size(),