Skip to content

Commit f367c50

Browse files
authored
Add Microsoft Fabric and OneLake icons (#33834)
## Summary & Motivation Useful to have icons to represent Fabric and OneLake. ## Test Plan ## Changelog Added kinds tags for Microsoft Fabric and OneLake
1 parent a062d57 commit f367c50

6 files changed

Lines changed: 18 additions & 0 deletions

File tree

docs/docs/partials/_KindsTags.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
| `evidence` | <img src="/images/guides/build/assets/metadata-tags/kinds/icons/tool-evidence.svg" width={20} height={20} /> |
6262
| `exasol` | <img src="/images/guides/build/assets/metadata-tags/kinds/icons/tool-exasol-color.svg" width={20} height={20} /> |
6363
| `excel` | <img src="/images/guides/build/assets/metadata-tags/kinds/icons/tool-excel-color.svg" width={20} height={20} /> |
64+
| `fabric` | <img src="/images/guides/build/assets/metadata-tags/kinds/icons/tool-fabric-color.svg" width={20} height={20} /> |
6465
| `facebook` | <img src="/images/guides/build/assets/metadata-tags/kinds/icons/tool-facebook-color.svg" width={20} height={20} /> |
6566
| `fivetran` | <img src="/images/guides/build/assets/metadata-tags/kinds/icons/tool-fivetran-color.svg" width={20} height={20} /> |
6667
| `flink` | <img src="/images/guides/build/assets/metadata-tags/kinds/icons/tool-flink-color.svg" width={20} height={20} /> |
@@ -128,6 +129,7 @@
128129
| `notion` | <img src="/images/guides/build/assets/metadata-tags/kinds/icons/tool-notion-color.svg" width={20} height={20} /> |
129130
| `numpy` | <img src="/images/guides/build/assets/metadata-tags/kinds/icons/tool-numpy-color.svg" width={20} height={20} /> |
130131
| `omni` | <img src="/images/guides/build/assets/metadata-tags/kinds/icons/tool-omni-color.svg" width={20} height={20} /> |
132+
| `onelake` | <img src="/images/guides/build/assets/metadata-tags/kinds/icons/tool-onelake-color.svg" width={20} height={20} /> |
131133
| `openai` | <img src="/images/guides/build/assets/metadata-tags/kinds/icons/tool-openai-color.svg" width={20} height={20} /> |
132134
| `openmetadata` | <img src="/images/guides/build/assets/metadata-tags/kinds/icons/tool-openmetadata-color.svg" width={20} height={20} /> |
133135
| `optuna` | <img src="/images/guides/build/assets/metadata-tags/kinds/icons/tool-optuna-color.svg" width={20} height={20} /> |
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading

js_modules/ui-core/src/graph/OpTags.tsx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ import elasticsearch from './kindtag-images/tool-elasticsearch-color.svg';
7272
import evidence from './kindtag-images/tool-evidence.svg';
7373
import exasol from './kindtag-images/tool-exasol-color.svg';
7474
import excel from './kindtag-images/tool-excel-color.svg';
75+
import fabric from './kindtag-images/tool-fabric-color.svg';
7576
import facebook from './kindtag-images/tool-facebook-color.svg';
7677
import fivetran from './kindtag-images/tool-fivetran-color.svg';
7778
import flink from './kindtag-images/tool-flink-color.svg';
@@ -132,6 +133,7 @@ import noteable from './kindtag-images/tool-noteable-color.svg';
132133
import notion from './kindtag-images/tool-notion-color.svg';
133134
import numpy from './kindtag-images/tool-numpy-color.svg';
134135
import omni from './kindtag-images/tool-omni-color.svg';
136+
import onelake from './kindtag-images/tool-onelake-color.svg';
135137
import openai from './kindtag-images/tool-openai-color.svg';
136138
import openmetadata from './kindtag-images/tool-openmetadata-color.svg';
137139
import optuna from './kindtag-images/tool-optuna-color.svg';
@@ -311,6 +313,7 @@ export type KnownTagType =
311313
| 'exasol'
312314
| 'excel'
313315
| 'expand'
316+
| 'fabric'
314317
| 'facebook'
315318
| 'file'
316319
| 'fivetran'
@@ -381,6 +384,7 @@ export type KnownTagType =
381384
| 'notion'
382385
| 'numpy'
383386
| 'omni'
387+
| 'onelake'
384388
| 'openai'
385389
| 'openmetadata'
386390
| 'optuna'
@@ -625,6 +629,10 @@ export const KNOWN_TAGS: Record<KnownTagType, KnownTag> = {
625629
icon: omni,
626630
content: 'Omni',
627631
},
632+
onelake: {
633+
icon: onelake,
634+
content: 'OneLake',
635+
},
628636
datadog: {
629637
icon: datadog,
630638
content: 'Datadog',
@@ -865,6 +873,10 @@ export const KNOWN_TAGS: Record<KnownTagType, KnownTag> = {
865873
icon: excel,
866874
content: 'Excel',
867875
},
876+
fabric: {
877+
icon: fabric,
878+
content: 'Fabric',
879+
},
868880
ray: {
869881
icon: ray,
870882
content: 'Ray',
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)