1
- import ImageIcon from '@mui/icons-material/Image' ;
2
- import NotesOutlinedIcon from '@mui/icons-material/NotesOutlined' ;
3
- import FormIcon from '@mui/icons-material/Description' ;
4
- import HeaderIcon from '@mui/icons-material/TextFormat' ;
5
- import CodeIcon from '@mui/icons-material/Code' ;
6
- import ButtonIcon from '@mui/icons-material/EditAttributes' ;
7
- import ToggleOffOutlinedIcon from '@mui/icons-material/ToggleOffOutlined' ;
8
- import LinkIcon from '@mui/icons-material/Link' ;
9
- import FormatListBulletedOutlinedIcon from '@mui/icons-material/FormatListBulletedOutlined' ;
10
- import EditOutlinedIcon from '@mui/icons-material/EditOutlined' ;
11
- import FormatListNumberedOutlinedIcon from '@mui/icons-material/FormatListNumberedOutlined' ;
12
- import FeaturedPlayListOutlinedIcon from '@mui/icons-material/FeaturedPlayListOutlined' ;
13
- import ListAltOutlinedIcon from '@mui/icons-material/ListAltOutlined' ;
14
- import RouteOutlinedIcon from '@mui/icons-material/RouteOutlined' ;
15
- import DatasetLinkedOutlinedIcon from '@mui/icons-material/DatasetLinkedOutlined' ;
16
- import ShortTextOutlinedIcon from '@mui/icons-material/ShortTextOutlined' ;
17
- import MoreOutlinedIcon from '@mui/icons-material/MoreOutlined' ;
1
+ // import ImageIcon from '@mui/icons-material/Image';
2
+ // import NotesOutlinedIcon from '@mui/icons-material/NotesOutlined';
3
+ // import FormIcon from '@mui/icons-material/Description';
4
+ // import HeaderIcon from '@mui/icons-material/TextFormat';
5
+ // import CodeIcon from '@mui/icons-material/Code';
6
+ // import ButtonIcon from '@mui/icons-material/EditAttributes';
7
+ // import ToggleOffOutlinedIcon from '@mui/icons-material/ToggleOffOutlined';
8
+ // import LinkIcon from '@mui/icons-material/Link';
9
+ // import FormatListBulletedOutlinedIcon from '@mui/icons-material/FormatListBulletedOutlined';
10
+ // import EditOutlinedIcon from '@mui/icons-material/EditOutlined';
11
+ // import FormatListNumberedOutlinedIcon from '@mui/icons-material/FormatListNumberedOutlined';
12
+ // import FeaturedPlayListOutlinedIcon from '@mui/icons-material/FeaturedPlayListOutlined';
13
+ // import ListAltOutlinedIcon from '@mui/icons-material/ListAltOutlined';
14
+ // import RouteOutlinedIcon from '@mui/icons-material/RouteOutlined';
15
+ // import DatasetLinkedOutlinedIcon from '@mui/icons-material/DatasetLinkedOutlined';
16
+ // import ShortTextOutlinedIcon from '@mui/icons-material/ShortTextOutlined';
17
+ // import MoreOutlinedIcon from '@mui/icons-material/MoreOutlined';
18
18
19
19
import { HTMLType } from '../interfaces/Interfaces' ;
20
20
@@ -28,7 +28,7 @@ const HTMLTypes: HTMLType[] = [
28
28
style : { } ,
29
29
placeHolderShort : 'div' ,
30
30
placeHolderLong : '' ,
31
- icon : CodeIcon ,
31
+ icon : 'Code' ,
32
32
framework : 'reactClassic' ,
33
33
nestable : true
34
34
} ,
@@ -52,7 +52,7 @@ const HTMLTypes: HTMLType[] = [
52
52
style : { } ,
53
53
placeHolderShort : 'link' ,
54
54
placeHolderLong : '' ,
55
- icon : LinkIcon ,
55
+ icon : 'Link' ,
56
56
framework : 'reactClassic' ,
57
57
nestable : false
58
58
} ,
@@ -63,7 +63,7 @@ const HTMLTypes: HTMLType[] = [
63
63
style : { } ,
64
64
placeHolderShort : 'header 1' ,
65
65
placeHolderLong : '' ,
66
- icon : HeaderIcon ,
66
+ icon : 'TextFormat' ,
67
67
framework : 'reactClassic' ,
68
68
nestable : false
69
69
} ,
@@ -74,7 +74,7 @@ const HTMLTypes: HTMLType[] = [
74
74
style : { } ,
75
75
placeHolderShort : 'header 2' ,
76
76
placeHolderLong : '' ,
77
- icon : HeaderIcon ,
77
+ icon : 'TextFormat' ,
78
78
framework : 'reactClassic' ,
79
79
nestable : false
80
80
} ,
@@ -85,7 +85,7 @@ const HTMLTypes: HTMLType[] = [
85
85
style : { } ,
86
86
placeHolderShort : 'span' ,
87
87
placeHolderLong : '' ,
88
- icon : ShortTextOutlinedIcon ,
88
+ icon : 'ShortTextOutlined' ,
89
89
framework : 'reactClassic' ,
90
90
nestable : false
91
91
} ,
@@ -96,7 +96,7 @@ const HTMLTypes: HTMLType[] = [
96
96
style : { } ,
97
97
placeHolderShort : 'paragraph' ,
98
98
placeHolderLong : '' ,
99
- icon : NotesOutlinedIcon ,
99
+ icon : 'NotesOutlined' ,
100
100
framework : 'reactClassic' ,
101
101
nestable : false
102
102
} ,
@@ -107,7 +107,7 @@ const HTMLTypes: HTMLType[] = [
107
107
style : { } ,
108
108
placeHolderShort : 'form' ,
109
109
placeHolderLong : '' ,
110
- icon : FormIcon ,
110
+ icon : 'Description' ,
111
111
framework : 'reactClassic' ,
112
112
nestable : true
113
113
} ,
@@ -118,7 +118,7 @@ const HTMLTypes: HTMLType[] = [
118
118
style : { } ,
119
119
placeHolderShort : 'input' ,
120
120
placeHolderLong : '' ,
121
- icon : EditOutlinedIcon ,
121
+ icon : 'EditOutlined' ,
122
122
framework : 'reactClassic' ,
123
123
nestable : false
124
124
} ,
@@ -129,7 +129,7 @@ const HTMLTypes: HTMLType[] = [
129
129
style : { } ,
130
130
placeHolderShort : 'button' ,
131
131
placeHolderLong : '' ,
132
- icon : ButtonIcon ,
132
+ icon : 'EditAttributes' ,
133
133
framework : 'reactClassic' ,
134
134
nestable : false
135
135
} ,
@@ -141,7 +141,7 @@ const HTMLTypes: HTMLType[] = [
141
141
style : { } ,
142
142
placeHolderShort : 'image' ,
143
143
placeHolderLong : '' ,
144
- icon : ImageIcon ,
144
+ icon : 'Image' ,
145
145
framework : 'reactClassic' ,
146
146
nestable : false
147
147
} ,
@@ -152,7 +152,7 @@ const HTMLTypes: HTMLType[] = [
152
152
style : { } ,
153
153
placeHolderShort : 'label' ,
154
154
placeHolderLong : '' ,
155
- icon : MoreOutlinedIcon ,
155
+ icon : 'MoreOutlined' ,
156
156
framework : 'reactClassic' ,
157
157
nestable : false
158
158
} ,
@@ -163,7 +163,7 @@ const HTMLTypes: HTMLType[] = [
163
163
style : { } ,
164
164
placeHolderShort : 'menu' ,
165
165
placeHolderLong : '' ,
166
- icon : FeaturedPlayListOutlinedIcon ,
166
+ icon : 'FeaturedPlayListOutlined' ,
167
167
framework : 'reactClassic' ,
168
168
nestable : true
169
169
} ,
@@ -174,7 +174,7 @@ const HTMLTypes: HTMLType[] = [
174
174
style : { } ,
175
175
placeHolderShort : 'ordered list' ,
176
176
placeHolderLong : '' ,
177
- icon : FormatListNumberedOutlinedIcon ,
177
+ icon : 'FormatListNumberedOutlined' ,
178
178
framework : 'reactClassic' ,
179
179
nestable : true
180
180
} ,
@@ -185,7 +185,7 @@ const HTMLTypes: HTMLType[] = [
185
185
style : { } ,
186
186
placeHolderShort : 'unordered list' ,
187
187
placeHolderLong : '' ,
188
- icon : FormatListBulletedOutlinedIcon ,
188
+ icon : 'FormatListBulletedOutlined' ,
189
189
framework : 'reactClassic' ,
190
190
nestable : true
191
191
} ,
@@ -196,7 +196,7 @@ const HTMLTypes: HTMLType[] = [
196
196
style : { } ,
197
197
placeHolderShort : 'list item' ,
198
198
placeHolderLong : '' ,
199
- icon : ListAltOutlinedIcon ,
199
+ icon : 'ListAltOutlined' ,
200
200
framework : 'reactClassic' ,
201
201
nestable : true
202
202
} ,
@@ -207,7 +207,7 @@ const HTMLTypes: HTMLType[] = [
207
207
style : { } ,
208
208
placeHolderShort : 'Switch' ,
209
209
placeHolderLong : '' ,
210
- icon : ToggleOffOutlinedIcon ,
210
+ icon : 'ToggleOffOutlined' ,
211
211
framework : 'reactClassic' ,
212
212
nestable : true
213
213
} ,
@@ -218,7 +218,7 @@ const HTMLTypes: HTMLType[] = [
218
218
style : { } ,
219
219
placeHolderShort : 'Route' ,
220
220
placeHolderLong : '' ,
221
- icon : RouteOutlinedIcon ,
221
+ icon : 'RouteOutlined' ,
222
222
framework : 'reactClassic' ,
223
223
nestable : true
224
224
} ,
@@ -229,7 +229,7 @@ const HTMLTypes: HTMLType[] = [
229
229
style : { } ,
230
230
placeHolderShort : 'LinkTo' ,
231
231
placeHolderLong : '' ,
232
- icon : DatasetLinkedOutlinedIcon ,
232
+ icon : 'DatasetLinkedOutlined' ,
233
233
framework : 'reactClassic' ,
234
234
nestable : true
235
235
} ,
@@ -240,7 +240,7 @@ const HTMLTypes: HTMLType[] = [
240
240
style : { } ,
241
241
placeHolderShort : 'LinkHref' ,
242
242
placeHolderLong : '' ,
243
- icon : LinkIcon ,
243
+ icon : 'Link' ,
244
244
framework : 'nextjs' ,
245
245
nestable : true
246
246
} ,
@@ -251,7 +251,7 @@ const HTMLTypes: HTMLType[] = [
251
251
style : { } ,
252
252
placeHolderShort : 'Image' ,
253
253
placeHolderLong : '' ,
254
- icon : ImageIcon ,
254
+ icon : ' ImageIcon' ,
255
255
framework : 'nextjs' ,
256
256
nestable : false
257
257
}
0 commit comments