From 5aec2a0547f60fee2b69ffb4042a6883a92766ea Mon Sep 17 00:00:00 2001 From: AndyKIron Date: Thu, 23 Nov 2023 10:54:35 +0200 Subject: [PATCH] chore(6.x.x): support phosphor bold and fill icons --- projects/fusion-ui/components/icon/v1/icon.component.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/projects/fusion-ui/components/icon/v1/icon.component.ts b/projects/fusion-ui/components/icon/v1/icon.component.ts index 79f326a66..e06419f4b 100644 --- a/projects/fusion-ui/components/icon/v1/icon.component.ts +++ b/projects/fusion-ui/components/icon/v1/icon.component.ts @@ -47,6 +47,8 @@ export class IconComponent extends SvgComponent { this.libVersion += '/regular'; } else if (this.libVersion === 'ph/bold') { this.iconName += '-bold'; + } else if (this.libVersion === 'ph/fill') { + this.iconName += '-fill'; } } }