1
- import { DotChartOutlined , PartitionOutlined , UnorderedListOutlined , WarningOutlined } from '@ant-design/ icons' ;
1
+ import { ListBullets , TreeStructure , ChartScatter , WarningCircle , FileText , Infinity } from '@phosphor- icons/react ' ;
2
2
import { IncidentTab } from '@app/entity/shared/tabs/Incident/IncidentTab' ;
3
3
import TabNameWithCount from '@app/entityV2/shared/tabs/Entity/TabNameWithCount' ;
4
4
import * as React from 'react' ;
@@ -41,22 +41,27 @@ export class MLFeatureEntity implements Entity<MlFeature> {
41
41
42
42
icon = ( fontSize ?: number , styleType ?: IconStyleType , color ?: string ) => {
43
43
if ( styleType === IconStyleType . TAB_VIEW ) {
44
- return < DotChartOutlined className = { TYPE_ICON_CLASS_NAME } style = { { fontSize, color } } /> ;
44
+ return < ChartScatter className = { TYPE_ICON_CLASS_NAME } style = { { fontSize, color } } weight = "regular" /> ;
45
45
}
46
46
47
47
if ( styleType === IconStyleType . HIGHLIGHT ) {
48
48
return (
49
- < DotChartOutlined className = { TYPE_ICON_CLASS_NAME } style = { { fontSize, color : color || '#9633b9' } } />
49
+ < ChartScatter
50
+ className = { TYPE_ICON_CLASS_NAME }
51
+ style = { { fontSize, color : color || '#9633b9' } }
52
+ weight = "regular"
53
+ />
50
54
) ;
51
55
}
52
56
53
57
return (
54
- < DotChartOutlined
58
+ < ChartScatter
55
59
className = { TYPE_ICON_CLASS_NAME }
56
60
style = { {
57
61
fontSize,
58
62
color : color || '#BFBFBF' ,
59
63
} }
64
+ weight = "regular"
60
65
/>
61
66
) ;
62
67
} ;
@@ -98,22 +103,26 @@ export class MLFeatureEntity implements Entity<MlFeature> {
98
103
{
99
104
name : 'Feature Tables' ,
100
105
component : FeatureTableTab ,
106
+ icon : Infinity ,
101
107
} ,
102
108
{
103
109
name : 'Documentation' ,
104
110
component : DocumentationTab ,
111
+ icon : FileText ,
105
112
} ,
106
113
{
107
114
name : 'Lineage' ,
108
115
component : LineageTab ,
116
+ icon : TreeStructure ,
109
117
} ,
110
118
{
111
119
name : 'Properties' ,
112
120
component : PropertiesTab ,
121
+ icon : ListBullets ,
113
122
} ,
114
123
{
115
124
name : 'Incidents' ,
116
- icon : WarningOutlined ,
125
+ icon : WarningCircle ,
117
126
component : IncidentTab ,
118
127
getDynamicName : ( _ , mlFeature , loading ) => {
119
128
const activeIncidentCount = mlFeature ?. mlFeature ?. activeIncidents ?. total ;
@@ -164,7 +173,7 @@ export class MLFeatureEntity implements Entity<MlFeature> {
164
173
name : 'Lineage' ,
165
174
component : LineageTab ,
166
175
description : "View this data asset's upstream and downstream dependencies" ,
167
- icon : PartitionOutlined ,
176
+ icon : TreeStructure ,
168
177
properties : {
169
178
actionType : SidebarTitleActionType . LineageExplore ,
170
179
} ,
@@ -173,7 +182,7 @@ export class MLFeatureEntity implements Entity<MlFeature> {
173
182
name : 'Properties' ,
174
183
component : PropertiesTab ,
175
184
description : 'View additional properties about this asset' ,
176
- icon : UnorderedListOutlined ,
185
+ icon : ListBullets ,
177
186
} ,
178
187
] ;
179
188
0 commit comments