diff --git a/projects/assets-library/assets/icons/sidebar-left.svg b/projects/assets-library/assets/icons/sidebar-left.svg new file mode 100644 index 000000000..e0cce4a50 --- /dev/null +++ b/projects/assets-library/assets/icons/sidebar-left.svg @@ -0,0 +1,3 @@ + + + diff --git a/projects/assets-library/src/icons/icon-library.module.ts b/projects/assets-library/src/icons/icon-library.module.ts index a0667ba40..eaacb0e35 100644 --- a/projects/assets-library/src/icons/icon-library.module.ts +++ b/projects/assets-library/src/icons/icon-library.module.ts @@ -78,6 +78,7 @@ const iconsRootPath = 'assets/icons'; { key: IconType.Search, url: `${iconsRootPath}/search.svg` }, { key: IconType.SidebarCollapse, url: `${iconsRootPath}/sidebar-collapse.svg` }, { key: IconType.SidebarExpand, url: `${iconsRootPath}/sidebar-expand.svg` }, + { key: IconType.SidebarLeft, url: `${iconsRootPath}/sidebar-left.svg` }, { key: IconType.Sort, url: `${iconsRootPath}/sort.svg` }, { key: IconType.Slack, url: `${iconsRootPath}/slack.svg` }, { key: IconType.Spinner, url: `${iconsRootPath}/spinner.svg` }, diff --git a/projects/assets-library/src/icons/icon-type.ts b/projects/assets-library/src/icons/icon-type.ts index 83ece203e..b31c17954 100644 --- a/projects/assets-library/src/icons/icon-type.ts +++ b/projects/assets-library/src/icons/icon-type.ts @@ -99,6 +99,7 @@ export const enum IconType { Share = 'share', SidebarCollapse = 'svg:sidebar-collapse', SidebarExpand = 'svg:sidebar-expand', + SidebarLeft = 'svg:sidebar-left', Slack = 'svg:slack', Sort = 'svg:sort', SpanId = 'bookmark_border',