From 440501b4e092975b125ec38cab471868199fe0b9 Mon Sep 17 00:00:00 2001 From: Sandeep Kumar Sharma Date: Mon, 26 Apr 2021 12:57:27 +0530 Subject: [PATCH 1/2] feat: adding note icon --- projects/assets-library/assets/icons/note.svg | 6 ++++++ projects/assets-library/src/icons/icon-library.module.ts | 1 + projects/assets-library/src/icons/icon-type.ts | 2 ++ 3 files changed, 9 insertions(+) create mode 100644 projects/assets-library/assets/icons/note.svg diff --git a/projects/assets-library/assets/icons/note.svg b/projects/assets-library/assets/icons/note.svg new file mode 100644 index 000000000..1e5167ff3 --- /dev/null +++ b/projects/assets-library/assets/icons/note.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/projects/assets-library/src/icons/icon-library.module.ts b/projects/assets-library/src/icons/icon-library.module.ts index 6591d1075..905bdf7d7 100644 --- a/projects/assets-library/src/icons/icon-library.module.ts +++ b/projects/assets-library/src/icons/icon-library.module.ts @@ -65,6 +65,7 @@ const iconsRootPath = 'assets/icons'; { key: IconType.MoreVertical, url: `${iconsRootPath}/more-vertical.svg` }, { key: IconType.NoData, url: `${iconsRootPath}/no-data.svg` }, { key: IconType.Node, url: `${iconsRootPath}/node.svg` }, + { key: IconType.Note, url: `${iconsRootPath}/note.svg` }, { key: IconType.OpenInNewTab, url: `${iconsRootPath}/open-in-new-tab.svg` }, { key: IconType.Search, url: `${iconsRootPath}/search.svg` }, { key: IconType.SidebarCollapse, url: `${iconsRootPath}/sidebar-collapse.svg` }, diff --git a/projects/assets-library/src/icons/icon-type.ts b/projects/assets-library/src/icons/icon-type.ts index 9dd6d6fc7..a281a7a48 100644 --- a/projects/assets-library/src/icons/icon-type.ts +++ b/projects/assets-library/src/icons/icon-type.ts @@ -35,6 +35,7 @@ export const enum IconType { Dashboard = 'svg:dashboard', Debug = 'bug_report', Delete = 'delete', + Description = 'svg:page', Device = 'svg:device', Done = 'done', Edge = 'edge', @@ -78,6 +79,7 @@ export const enum IconType { NoData = 'svg:noData', Node = 'node', None = 'none', + Note = 'svg:note', OpenInNewTab = 'svg:open-in-new-tab', PageView = 'pageview', Previous = 'navigate_before', From 031e34542ce2bd49cd04df1bb98ff5306324e900 Mon Sep 17 00:00:00 2001 From: Sandeep Kumar Sharma Date: Mon, 26 Apr 2021 18:28:39 +0530 Subject: [PATCH 2/2] fix: removing unwanted code --- projects/assets-library/src/icons/icon-type.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/projects/assets-library/src/icons/icon-type.ts b/projects/assets-library/src/icons/icon-type.ts index a281a7a48..b33b828ca 100644 --- a/projects/assets-library/src/icons/icon-type.ts +++ b/projects/assets-library/src/icons/icon-type.ts @@ -35,7 +35,6 @@ export const enum IconType { Dashboard = 'svg:dashboard', Debug = 'bug_report', Delete = 'delete', - Description = 'svg:page', Device = 'svg:device', Done = 'done', Edge = 'edge',