diff --git a/projects/assets-library/assets/icons/drilldown-filter.svg b/projects/assets-library/assets/icons/drilldown-filter.svg new file mode 100644 index 000000000..bd0ef0e4f --- /dev/null +++ b/projects/assets-library/assets/icons/drilldown-filter.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 eaacb0e35..b00809752 100644 --- a/projects/assets-library/src/icons/icon-library.module.ts +++ b/projects/assets-library/src/icons/icon-library.module.ts @@ -42,6 +42,7 @@ const iconsRootPath = 'assets/icons'; { key: IconType.Dashboard, url: `${iconsRootPath}/dashboard.svg` }, { key: IconType.Device, url: `${iconsRootPath}/device.svg` }, { key: IconType.Download, url: `${iconsRootPath}/download.svg` }, + { key: IconType.DrilldownFilter, url: `${iconsRootPath}/drilldown-filter.svg` }, { key: IconType.Edge, url: `${iconsRootPath}/edge.svg` }, { key: IconType.ExpandAll, url: `${iconsRootPath}/expand-all.svg` }, { key: IconType.Expanded, url: `${iconsRootPath}/minus-circle.svg` }, diff --git a/projects/assets-library/src/icons/icon-type.ts b/projects/assets-library/src/icons/icon-type.ts index b31c17954..9dace3811 100644 --- a/projects/assets-library/src/icons/icon-type.ts +++ b/projects/assets-library/src/icons/icon-type.ts @@ -40,6 +40,7 @@ export const enum IconType { Device = 'svg:device', Done = 'done', Download = 'download', + DrilldownFilter = 'svg:drilldown-filter', Edge = 'edge', Error = 'error_outline', Empty = 'panorama_fish_eye',