@gisce/react-ooui 1.2.0-rc.7 → 1.2.0-rc.71

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (133) hide show
  1. package/dist/actionbar/FormActionBar.d.ts.map +1 -1
  2. package/dist/actionbar/TreeActionBar.d.ts.map +1 -1
  3. package/dist/common/DatePicker.d.ts +12 -0
  4. package/dist/common/DatePicker.d.ts.map +1 -1
  5. package/dist/context/ActionViewContext.d.ts +5 -1
  6. package/dist/context/ActionViewContext.d.ts.map +1 -1
  7. package/dist/context/ContentRootContext.d.ts.map +1 -1
  8. package/dist/context/FormContext.d.ts +4 -2
  9. package/dist/context/FormContext.d.ts.map +1 -1
  10. package/dist/helpers/formHelper.d.ts +5 -3
  11. package/dist/helpers/formHelper.d.ts.map +1 -1
  12. package/dist/helpers/iconMapper.d.ts +5 -1
  13. package/dist/helpers/iconMapper.d.ts.map +1 -1
  14. package/dist/helpers/one2manyHelper.d.ts +12 -4
  15. package/dist/helpers/one2manyHelper.d.ts.map +1 -1
  16. package/dist/helpers/searchHelper.d.ts +1 -1
  17. package/dist/helpers/searchHelper.d.ts.map +1 -1
  18. package/dist/helpers/treeHelper.d.ts +1 -1
  19. package/dist/helpers/treeHelper.d.ts.map +1 -1
  20. package/dist/hooks/useExport.d.ts +44 -0
  21. package/dist/hooks/useExport.d.ts.map +1 -0
  22. package/dist/index.d.ts +2 -1
  23. package/dist/index.d.ts.map +1 -1
  24. package/dist/locales/ca_ES.d.ts +2 -0
  25. package/dist/locales/ca_ES.d.ts.map +1 -1
  26. package/dist/locales/en_US.d.ts +2 -0
  27. package/dist/locales/en_US.d.ts.map +1 -1
  28. package/dist/locales/es_ES.d.ts +2 -0
  29. package/dist/locales/es_ES.d.ts.map +1 -1
  30. package/dist/react-ooui.es.js +25403 -27411
  31. package/dist/react-ooui.es.js.map +1 -1
  32. package/dist/react-ooui.umd.js +46 -184
  33. package/dist/react-ooui.umd.js.map +1 -1
  34. package/dist/types/index.d.ts +1 -0
  35. package/dist/types/index.d.ts.map +1 -1
  36. package/dist/views/RootView.d.ts.map +1 -1
  37. package/dist/views/actionViews/GraphActionView.d.ts.map +1 -1
  38. package/dist/views/actionViews/TreeActionView.d.ts.map +1 -1
  39. package/dist/widgets/WidgetFactory.d.ts.map +1 -1
  40. package/dist/widgets/base/Integer.d.ts.map +1 -1
  41. package/dist/widgets/base/Label.d.ts.map +1 -1
  42. package/dist/widgets/base/Reference.d.ts.map +1 -1
  43. package/dist/widgets/base/ReferenceTree.d.ts +8 -0
  44. package/dist/widgets/base/ReferenceTree.d.ts.map +1 -0
  45. package/dist/widgets/base/Separator.d.ts.map +1 -1
  46. package/dist/widgets/base/many2one/Many2one.d.ts.map +1 -1
  47. package/dist/widgets/base/many2one/Many2oneTree.d.ts +6 -0
  48. package/dist/widgets/base/many2one/Many2oneTree.d.ts.map +1 -0
  49. package/dist/widgets/base/one2many/One2manyInput.d.ts.map +1 -1
  50. package/dist/widgets/containers/Group.d.ts.map +1 -1
  51. package/dist/widgets/custom/MultiCheckbox.d.ts.map +1 -1
  52. package/dist/widgets/custom/Tag.d.ts +5 -0
  53. package/dist/widgets/custom/Tag.d.ts.map +1 -0
  54. package/dist/widgets/custom/Tags.d.ts.map +1 -1
  55. package/dist/widgets/custom/Timeline.d.ts.map +1 -1
  56. package/dist/widgets/modals/ExportModal.d.ts +2 -1
  57. package/dist/widgets/modals/ExportModal.d.ts.map +1 -1
  58. package/dist/widgets/views/Dashboard/Dashboard.d.ts.map +1 -1
  59. package/dist/widgets/views/Dashboard/DashboardTree.d.ts.map +1 -1
  60. package/dist/widgets/views/Form.d.ts.map +1 -1
  61. package/dist/widgets/views/Graph/GraphChart.d.ts.map +1 -1
  62. package/dist/widgets/views/Graph/GraphDefaults.d.ts +36 -0
  63. package/dist/widgets/views/Graph/GraphDefaults.d.ts.map +1 -1
  64. package/dist/widgets/views/SearchTree.d.ts.map +1 -1
  65. package/dist/widgets/views/Tree.d.ts +2 -0
  66. package/dist/widgets/views/Tree.d.ts.map +1 -1
  67. package/dist/widgets/views/searchFilter/SearchFilter.d.ts +1 -0
  68. package/dist/widgets/views/searchFilter/SearchFilter.d.ts.map +1 -1
  69. package/package.json +8 -7
  70. package/src/__tests__/iconMapper.test.ts +20 -5
  71. package/src/actionbar/ChangeViewButton.tsx +2 -2
  72. package/src/actionbar/FormActionBar.tsx +82 -11
  73. package/src/actionbar/TreeActionBar.tsx +23 -28
  74. package/src/common/DatePicker.tsx +4 -3
  75. package/src/context/ActionViewContext.tsx +7 -4
  76. package/src/context/ContentRootContext.tsx +15 -7
  77. package/src/context/FormContext.tsx +1 -4
  78. package/src/helpers/formHelper.ts +26 -5
  79. package/src/helpers/iconMapper.ts +134 -107
  80. package/src/helpers/one2manyHelper.ts +94 -39
  81. package/src/helpers/searchHelper.ts +8 -7
  82. package/src/helpers/treeHelper.ts +17 -5
  83. package/src/hooks/useExport.ts +439 -0
  84. package/src/index.ts +2 -0
  85. package/src/locales/ca_ES.tsx +2 -0
  86. package/src/locales/en_US.tsx +2 -0
  87. package/src/locales/es_ES.tsx +2 -0
  88. package/src/stories/Label.stories.tsx +7 -8
  89. package/src/stories/Separator.stories.tsx +33 -0
  90. package/src/stories/containers/Group.stories.tsx +24 -0
  91. package/src/stories/containers/Notebook.stories.tsx +27 -0
  92. package/src/stories/custom/Tag.stories.tsx +57 -0
  93. package/src/stories/mocks/models/crm_case.ts +7 -10
  94. package/src/stories/views/Tree.stories.jsx +5 -5
  95. package/src/types/index.ts +1 -0
  96. package/src/ui/FavouriteButton.tsx +4 -4
  97. package/src/views/RootView.tsx +7 -1
  98. package/src/views/actionViews/GraphActionView.tsx +1 -0
  99. package/src/views/actionViews/TreeActionView.tsx +10 -1
  100. package/src/widgets/WidgetFactory.tsx +3 -0
  101. package/src/widgets/base/Integer.tsx +1 -0
  102. package/src/widgets/base/Label.tsx +5 -9
  103. package/src/widgets/base/Reference.tsx +13 -3
  104. package/src/widgets/base/ReferenceTree.tsx +62 -0
  105. package/src/widgets/base/Separator.tsx +11 -3
  106. package/src/widgets/base/many2one/Many2one.tsx +10 -19
  107. package/src/widgets/base/many2one/Many2oneTree.tsx +18 -0
  108. package/src/widgets/base/one2many/One2manyInput.tsx +79 -23
  109. package/src/widgets/containers/Group.tsx +7 -4
  110. package/src/widgets/custom/ButtonGroup.tsx +1 -1
  111. package/src/widgets/custom/MultiCheckbox.tsx +1 -0
  112. package/src/widgets/custom/Tag.tsx +24 -0
  113. package/src/widgets/custom/Tags.tsx +27 -28
  114. package/src/widgets/custom/Timeline.tsx +9 -3
  115. package/src/widgets/modals/ExportModal.tsx +33 -134
  116. package/src/widgets/views/Dashboard/Dashboard.tsx +15 -4
  117. package/src/widgets/views/Dashboard/DashboardTree.tsx +1 -0
  118. package/src/widgets/views/Form.tsx +38 -31
  119. package/src/widgets/views/Graph/GraphChart.tsx +6 -1
  120. package/src/widgets/views/Graph/GraphDefaults.ts +113 -0
  121. package/src/widgets/views/Graph/GraphIndicator.tsx +17 -3
  122. package/src/widgets/views/SearchTree.tsx +3 -0
  123. package/src/widgets/views/Tree.tsx +111 -25
  124. package/src/widgets/views/searchFilter/SearchFilter.tsx +12 -6
  125. package/dist/helpers/icons/antd_icons.d.ts +0 -4
  126. package/dist/helpers/icons/antd_icons.d.ts.map +0 -1
  127. package/dist/helpers/icons/tabler_icons.d.ts +0 -4
  128. package/dist/helpers/icons/tabler_icons.d.ts.map +0 -1
  129. package/dist/ui/Fieldset.d.ts +0 -8
  130. package/dist/ui/Fieldset.d.ts.map +0 -1
  131. package/src/helpers/icons/antd_icons.ts +0 -1583
  132. package/src/helpers/icons/tabler_icons.ts +0 -5367
  133. package/src/ui/Fieldset.tsx +0 -31
@@ -1,1583 +0,0 @@
1
- import {
2
- AccountBookFilled,
3
- AccountBookOutlined,
4
- AccountBookTwoTone,
5
- AimOutlined,
6
- AlertFilled,
7
- AlertOutlined,
8
- AlertTwoTone,
9
- AlibabaOutlined,
10
- AlignCenterOutlined,
11
- AlignLeftOutlined,
12
- AlignRightOutlined,
13
- AlipayCircleFilled,
14
- AlipayCircleOutlined,
15
- AlipayOutlined,
16
- AlipaySquareFilled,
17
- AliwangwangFilled,
18
- AliwangwangOutlined,
19
- AliyunOutlined,
20
- AmazonCircleFilled,
21
- AmazonOutlined,
22
- AmazonSquareFilled,
23
- AndroidFilled,
24
- AndroidOutlined,
25
- AntCloudOutlined,
26
- AntDesignOutlined,
27
- ApartmentOutlined,
28
- ApiFilled,
29
- ApiOutlined,
30
- ApiTwoTone,
31
- AppleFilled,
32
- AppleOutlined,
33
- AppstoreAddOutlined,
34
- AppstoreFilled,
35
- AppstoreOutlined,
36
- AppstoreTwoTone,
37
- AreaChartOutlined,
38
- ArrowDownOutlined,
39
- ArrowLeftOutlined,
40
- ArrowRightOutlined,
41
- ArrowUpOutlined,
42
- ArrowsAltOutlined,
43
- AudioFilled,
44
- AudioMutedOutlined,
45
- AudioOutlined,
46
- AudioTwoTone,
47
- AuditOutlined,
48
- BackwardFilled,
49
- BackwardOutlined,
50
- BankFilled,
51
- BankOutlined,
52
- BankTwoTone,
53
- BarChartOutlined,
54
- BarcodeOutlined,
55
- BarsOutlined,
56
- BehanceCircleFilled,
57
- BehanceOutlined,
58
- BehanceSquareFilled,
59
- BehanceSquareOutlined,
60
- BellFilled,
61
- BellOutlined,
62
- BellTwoTone,
63
- BgColorsOutlined,
64
- BlockOutlined,
65
- BoldOutlined,
66
- BookFilled,
67
- BookOutlined,
68
- BookTwoTone,
69
- BorderBottomOutlined,
70
- BorderHorizontalOutlined,
71
- BorderInnerOutlined,
72
- BorderLeftOutlined,
73
- BorderOuterOutlined,
74
- BorderOutlined,
75
- BorderRightOutlined,
76
- BorderTopOutlined,
77
- BorderVerticleOutlined,
78
- BorderlessTableOutlined,
79
- BoxPlotFilled,
80
- BoxPlotOutlined,
81
- BoxPlotTwoTone,
82
- BranchesOutlined,
83
- BugFilled,
84
- BugOutlined,
85
- BugTwoTone,
86
- BuildFilled,
87
- BuildOutlined,
88
- BuildTwoTone,
89
- BulbFilled,
90
- BulbOutlined,
91
- BulbTwoTone,
92
- CalculatorFilled,
93
- CalculatorOutlined,
94
- CalculatorTwoTone,
95
- CalendarFilled,
96
- CalendarOutlined,
97
- CalendarTwoTone,
98
- CameraFilled,
99
- CameraOutlined,
100
- CameraTwoTone,
101
- CarFilled,
102
- CarOutlined,
103
- CarTwoTone,
104
- CaretDownFilled,
105
- CaretDownOutlined,
106
- CaretLeftFilled,
107
- CaretLeftOutlined,
108
- CaretRightFilled,
109
- CaretRightOutlined,
110
- CaretUpFilled,
111
- CaretUpOutlined,
112
- CarryOutFilled,
113
- CarryOutOutlined,
114
- CarryOutTwoTone,
115
- CheckCircleFilled,
116
- CheckCircleOutlined,
117
- CheckCircleTwoTone,
118
- CheckOutlined,
119
- CheckSquareFilled,
120
- CheckSquareOutlined,
121
- CheckSquareTwoTone,
122
- ChromeFilled,
123
- ChromeOutlined,
124
- CiCircleFilled,
125
- CiCircleOutlined,
126
- CiCircleTwoTone,
127
- CiOutlined,
128
- CiTwoTone,
129
- ClearOutlined,
130
- ClockCircleFilled,
131
- ClockCircleOutlined,
132
- ClockCircleTwoTone,
133
- CloseCircleFilled,
134
- CloseCircleOutlined,
135
- CloseCircleTwoTone,
136
- CloseOutlined,
137
- CloseSquareFilled,
138
- CloseSquareOutlined,
139
- CloseSquareTwoTone,
140
- CloudDownloadOutlined,
141
- CloudFilled,
142
- CloudOutlined,
143
- CloudServerOutlined,
144
- CloudSyncOutlined,
145
- CloudTwoTone,
146
- CloudUploadOutlined,
147
- ClusterOutlined,
148
- CodeFilled,
149
- CodeOutlined,
150
- CodeSandboxCircleFilled,
151
- CodeSandboxOutlined,
152
- CodeSandboxSquareFilled,
153
- CodeTwoTone,
154
- CodepenCircleFilled,
155
- CodepenCircleOutlined,
156
- CodepenOutlined,
157
- CodepenSquareFilled,
158
- CoffeeOutlined,
159
- ColumnHeightOutlined,
160
- ColumnWidthOutlined,
161
- CommentOutlined,
162
- CompassFilled,
163
- CompassOutlined,
164
- CompassTwoTone,
165
- CompressOutlined,
166
- ConsoleSqlOutlined,
167
- ContactsFilled,
168
- ContactsOutlined,
169
- ContactsTwoTone,
170
- ContainerFilled,
171
- ContainerOutlined,
172
- ContainerTwoTone,
173
- ControlFilled,
174
- ControlOutlined,
175
- ControlTwoTone,
176
- CopyFilled,
177
- CopyOutlined,
178
- CopyTwoTone,
179
- CopyrightCircleFilled,
180
- CopyrightCircleOutlined,
181
- CopyrightCircleTwoTone,
182
- CopyrightOutlined,
183
- CopyrightTwoTone,
184
- CreditCardFilled,
185
- CreditCardOutlined,
186
- CreditCardTwoTone,
187
- CrownFilled,
188
- CrownOutlined,
189
- CrownTwoTone,
190
- CustomerServiceFilled,
191
- CustomerServiceOutlined,
192
- CustomerServiceTwoTone,
193
- DashOutlined,
194
- DashboardFilled,
195
- DashboardOutlined,
196
- DashboardTwoTone,
197
- DatabaseFilled,
198
- DatabaseOutlined,
199
- DatabaseTwoTone,
200
- DeleteColumnOutlined,
201
- DeleteFilled,
202
- DeleteOutlined,
203
- DeleteRowOutlined,
204
- DeleteTwoTone,
205
- DeliveredProcedureOutlined,
206
- DeploymentUnitOutlined,
207
- DesktopOutlined,
208
- DiffFilled,
209
- DiffOutlined,
210
- DiffTwoTone,
211
- DingdingOutlined,
212
- DingtalkCircleFilled,
213
- DingtalkOutlined,
214
- DingtalkSquareFilled,
215
- DisconnectOutlined,
216
- DislikeFilled,
217
- DislikeOutlined,
218
- DislikeTwoTone,
219
- DollarCircleFilled,
220
- DollarCircleOutlined,
221
- DollarCircleTwoTone,
222
- DollarOutlined,
223
- DollarTwoTone,
224
- DotChartOutlined,
225
- DoubleLeftOutlined,
226
- DoubleRightOutlined,
227
- DownCircleFilled,
228
- DownCircleOutlined,
229
- DownCircleTwoTone,
230
- DownOutlined,
231
- DownSquareFilled,
232
- DownSquareOutlined,
233
- DownSquareTwoTone,
234
- DownloadOutlined,
235
- DragOutlined,
236
- DribbbleCircleFilled,
237
- DribbbleOutlined,
238
- DribbbleSquareFilled,
239
- DribbbleSquareOutlined,
240
- DropboxCircleFilled,
241
- DropboxOutlined,
242
- DropboxSquareFilled,
243
- EditFilled,
244
- EditOutlined,
245
- EditTwoTone,
246
- EllipsisOutlined,
247
- EnterOutlined,
248
- EnvironmentFilled,
249
- EnvironmentOutlined,
250
- EnvironmentTwoTone,
251
- EuroCircleFilled,
252
- EuroCircleOutlined,
253
- EuroCircleTwoTone,
254
- EuroOutlined,
255
- EuroTwoTone,
256
- ExceptionOutlined,
257
- ExclamationCircleFilled,
258
- ExclamationCircleOutlined,
259
- ExclamationCircleTwoTone,
260
- ExclamationOutlined,
261
- ExpandAltOutlined,
262
- ExpandOutlined,
263
- ExperimentFilled,
264
- ExperimentOutlined,
265
- ExperimentTwoTone,
266
- ExportOutlined,
267
- EyeFilled,
268
- EyeInvisibleFilled,
269
- EyeInvisibleOutlined,
270
- EyeInvisibleTwoTone,
271
- EyeOutlined,
272
- EyeTwoTone,
273
- FacebookFilled,
274
- FacebookOutlined,
275
- FallOutlined,
276
- FastBackwardFilled,
277
- FastBackwardOutlined,
278
- FastForwardFilled,
279
- FastForwardOutlined,
280
- FieldBinaryOutlined,
281
- FieldNumberOutlined,
282
- FieldStringOutlined,
283
- FieldTimeOutlined,
284
- FileAddFilled,
285
- FileAddOutlined,
286
- FileAddTwoTone,
287
- FileDoneOutlined,
288
- FileExcelFilled,
289
- FileExcelOutlined,
290
- FileExcelTwoTone,
291
- FileExclamationFilled,
292
- FileExclamationOutlined,
293
- FileExclamationTwoTone,
294
- FileFilled,
295
- FileGifOutlined,
296
- FileImageFilled,
297
- FileImageOutlined,
298
- FileImageTwoTone,
299
- FileJpgOutlined,
300
- FileMarkdownFilled,
301
- FileMarkdownOutlined,
302
- FileMarkdownTwoTone,
303
- FileOutlined,
304
- FilePdfFilled,
305
- FilePdfOutlined,
306
- FilePdfTwoTone,
307
- FilePptFilled,
308
- FilePptOutlined,
309
- FilePptTwoTone,
310
- FileProtectOutlined,
311
- FileSearchOutlined,
312
- FileSyncOutlined,
313
- FileTextFilled,
314
- FileTextOutlined,
315
- FileTextTwoTone,
316
- FileTwoTone,
317
- FileUnknownFilled,
318
- FileUnknownOutlined,
319
- FileUnknownTwoTone,
320
- FileWordFilled,
321
- FileWordOutlined,
322
- FileWordTwoTone,
323
- FileZipFilled,
324
- FileZipOutlined,
325
- FileZipTwoTone,
326
- FilterFilled,
327
- FilterOutlined,
328
- FilterTwoTone,
329
- FireFilled,
330
- FireOutlined,
331
- FireTwoTone,
332
- FlagFilled,
333
- FlagOutlined,
334
- FlagTwoTone,
335
- FolderAddFilled,
336
- FolderAddOutlined,
337
- FolderAddTwoTone,
338
- FolderFilled,
339
- FolderOpenFilled,
340
- FolderOpenOutlined,
341
- FolderOpenTwoTone,
342
- FolderOutlined,
343
- FolderTwoTone,
344
- FolderViewOutlined,
345
- FontColorsOutlined,
346
- FontSizeOutlined,
347
- ForkOutlined,
348
- FormOutlined,
349
- FormatPainterFilled,
350
- FormatPainterOutlined,
351
- ForwardFilled,
352
- ForwardOutlined,
353
- FrownFilled,
354
- FrownOutlined,
355
- FrownTwoTone,
356
- FullscreenExitOutlined,
357
- FullscreenOutlined,
358
- FunctionOutlined,
359
- FundFilled,
360
- FundOutlined,
361
- FundProjectionScreenOutlined,
362
- FundTwoTone,
363
- FundViewOutlined,
364
- FunnelPlotFilled,
365
- FunnelPlotOutlined,
366
- FunnelPlotTwoTone,
367
- GatewayOutlined,
368
- GifOutlined,
369
- GiftFilled,
370
- GiftOutlined,
371
- GiftTwoTone,
372
- GithubFilled,
373
- GithubOutlined,
374
- GitlabFilled,
375
- GitlabOutlined,
376
- GlobalOutlined,
377
- GoldFilled,
378
- GoldOutlined,
379
- GoldTwoTone,
380
- GoldenFilled,
381
- GoogleCircleFilled,
382
- GoogleOutlined,
383
- GooglePlusCircleFilled,
384
- GooglePlusOutlined,
385
- GooglePlusSquareFilled,
386
- GoogleSquareFilled,
387
- GroupOutlined,
388
- HddFilled,
389
- HddOutlined,
390
- HddTwoTone,
391
- HeartFilled,
392
- HeartOutlined,
393
- HeartTwoTone,
394
- HeatMapOutlined,
395
- HighlightFilled,
396
- HighlightOutlined,
397
- HighlightTwoTone,
398
- HistoryOutlined,
399
- HolderOutlined,
400
- HomeFilled,
401
- HomeOutlined,
402
- HomeTwoTone,
403
- HourglassFilled,
404
- HourglassOutlined,
405
- HourglassTwoTone,
406
- Html5Filled,
407
- Html5Outlined,
408
- Html5TwoTone,
409
- IdcardFilled,
410
- IdcardOutlined,
411
- IdcardTwoTone,
412
- IeCircleFilled,
413
- IeOutlined,
414
- IeSquareFilled,
415
- ImportOutlined,
416
- InboxOutlined,
417
- InfoCircleFilled,
418
- InfoCircleOutlined,
419
- InfoCircleTwoTone,
420
- InfoOutlined,
421
- InsertRowAboveOutlined,
422
- InsertRowBelowOutlined,
423
- InsertRowLeftOutlined,
424
- InsertRowRightOutlined,
425
- InstagramFilled,
426
- InstagramOutlined,
427
- InsuranceFilled,
428
- InsuranceOutlined,
429
- InsuranceTwoTone,
430
- InteractionFilled,
431
- InteractionOutlined,
432
- InteractionTwoTone,
433
- IssuesCloseOutlined,
434
- ItalicOutlined,
435
- KeyOutlined,
436
- LaptopOutlined,
437
- LayoutFilled,
438
- LayoutOutlined,
439
- LayoutTwoTone,
440
- LeftCircleFilled,
441
- LeftCircleOutlined,
442
- LeftCircleTwoTone,
443
- LeftOutlined,
444
- LeftSquareFilled,
445
- LeftSquareOutlined,
446
- LeftSquareTwoTone,
447
- LikeFilled,
448
- LikeOutlined,
449
- LikeTwoTone,
450
- LineChartOutlined,
451
- LineHeightOutlined,
452
- LineOutlined,
453
- LinkOutlined,
454
- LinkedinFilled,
455
- LinkedinOutlined,
456
- Loading3QuartersOutlined,
457
- LoadingOutlined,
458
- LockFilled,
459
- LockOutlined,
460
- LockTwoTone,
461
- LoginOutlined,
462
- LogoutOutlined,
463
- MacCommandFilled,
464
- MacCommandOutlined,
465
- MailFilled,
466
- MailOutlined,
467
- MailTwoTone,
468
- ManOutlined,
469
- MedicineBoxFilled,
470
- MedicineBoxOutlined,
471
- MedicineBoxTwoTone,
472
- MediumCircleFilled,
473
- MediumOutlined,
474
- MediumSquareFilled,
475
- MediumWorkmarkOutlined,
476
- MehFilled,
477
- MehOutlined,
478
- MehTwoTone,
479
- MenuFoldOutlined,
480
- MenuOutlined,
481
- MenuUnfoldOutlined,
482
- MergeCellsOutlined,
483
- MessageFilled,
484
- MessageOutlined,
485
- MessageTwoTone,
486
- MinusCircleFilled,
487
- MinusCircleOutlined,
488
- MinusCircleTwoTone,
489
- MinusOutlined,
490
- MinusSquareFilled,
491
- MinusSquareOutlined,
492
- MinusSquareTwoTone,
493
- MobileFilled,
494
- MobileOutlined,
495
- MobileTwoTone,
496
- MoneyCollectFilled,
497
- MoneyCollectOutlined,
498
- MoneyCollectTwoTone,
499
- MonitorOutlined,
500
- MoreOutlined,
501
- NodeCollapseOutlined,
502
- NodeExpandOutlined,
503
- NodeIndexOutlined,
504
- NotificationFilled,
505
- NotificationOutlined,
506
- NotificationTwoTone,
507
- NumberOutlined,
508
- OneToOneOutlined,
509
- OrderedListOutlined,
510
- PaperClipOutlined,
511
- PartitionOutlined,
512
- PauseCircleFilled,
513
- PauseCircleOutlined,
514
- PauseCircleTwoTone,
515
- PauseOutlined,
516
- PayCircleFilled,
517
- PayCircleOutlined,
518
- PercentageOutlined,
519
- PhoneFilled,
520
- PhoneOutlined,
521
- PhoneTwoTone,
522
- PicCenterOutlined,
523
- PicLeftOutlined,
524
- PicRightOutlined,
525
- PictureFilled,
526
- PictureOutlined,
527
- PictureTwoTone,
528
- PieChartFilled,
529
- PieChartOutlined,
530
- PieChartTwoTone,
531
- PlayCircleFilled,
532
- PlayCircleOutlined,
533
- PlayCircleTwoTone,
534
- PlaySquareFilled,
535
- PlaySquareOutlined,
536
- PlaySquareTwoTone,
537
- PlusCircleFilled,
538
- PlusCircleOutlined,
539
- PlusCircleTwoTone,
540
- PlusOutlined,
541
- PlusSquareFilled,
542
- PlusSquareOutlined,
543
- PlusSquareTwoTone,
544
- PoundCircleFilled,
545
- PoundCircleOutlined,
546
- PoundCircleTwoTone,
547
- PoundOutlined,
548
- PoweroffOutlined,
549
- PrinterFilled,
550
- PrinterOutlined,
551
- PrinterTwoTone,
552
- ProfileFilled,
553
- ProfileOutlined,
554
- ProfileTwoTone,
555
- ProjectFilled,
556
- ProjectOutlined,
557
- ProjectTwoTone,
558
- PropertySafetyFilled,
559
- PropertySafetyOutlined,
560
- PropertySafetyTwoTone,
561
- PullRequestOutlined,
562
- PushpinFilled,
563
- PushpinOutlined,
564
- PushpinTwoTone,
565
- QqCircleFilled,
566
- QqOutlined,
567
- QqSquareFilled,
568
- QrcodeOutlined,
569
- QuestionCircleFilled,
570
- QuestionCircleOutlined,
571
- QuestionCircleTwoTone,
572
- QuestionOutlined,
573
- RadarChartOutlined,
574
- RadiusBottomleftOutlined,
575
- RadiusBottomrightOutlined,
576
- RadiusSettingOutlined,
577
- RadiusUpleftOutlined,
578
- RadiusUprightOutlined,
579
- ReadFilled,
580
- ReadOutlined,
581
- ReconciliationFilled,
582
- ReconciliationOutlined,
583
- ReconciliationTwoTone,
584
- RedEnvelopeFilled,
585
- RedEnvelopeOutlined,
586
- RedEnvelopeTwoTone,
587
- RedditCircleFilled,
588
- RedditOutlined,
589
- RedditSquareFilled,
590
- RedoOutlined,
591
- ReloadOutlined,
592
- RestFilled,
593
- RestOutlined,
594
- RestTwoTone,
595
- RetweetOutlined,
596
- RightCircleFilled,
597
- RightCircleOutlined,
598
- RightCircleTwoTone,
599
- RightOutlined,
600
- RightSquareFilled,
601
- RightSquareOutlined,
602
- RightSquareTwoTone,
603
- RiseOutlined,
604
- RobotFilled,
605
- RobotOutlined,
606
- RocketFilled,
607
- RocketOutlined,
608
- RocketTwoTone,
609
- RollbackOutlined,
610
- RotateLeftOutlined,
611
- RotateRightOutlined,
612
- SafetyCertificateFilled,
613
- SafetyCertificateOutlined,
614
- SafetyCertificateTwoTone,
615
- SafetyOutlined,
616
- SaveFilled,
617
- SaveOutlined,
618
- SaveTwoTone,
619
- ScanOutlined,
620
- ScheduleFilled,
621
- ScheduleOutlined,
622
- ScheduleTwoTone,
623
- ScissorOutlined,
624
- SearchOutlined,
625
- SecurityScanFilled,
626
- SecurityScanOutlined,
627
- SecurityScanTwoTone,
628
- SelectOutlined,
629
- SendOutlined,
630
- SettingFilled,
631
- SettingOutlined,
632
- SettingTwoTone,
633
- ShakeOutlined,
634
- ShareAltOutlined,
635
- ShopFilled,
636
- ShopOutlined,
637
- ShopTwoTone,
638
- ShoppingCartOutlined,
639
- ShoppingFilled,
640
- ShoppingOutlined,
641
- ShoppingTwoTone,
642
- ShrinkOutlined,
643
- SignalFilled,
644
- SisternodeOutlined,
645
- SketchCircleFilled,
646
- SketchOutlined,
647
- SketchSquareFilled,
648
- SkinFilled,
649
- SkinOutlined,
650
- SkinTwoTone,
651
- SkypeFilled,
652
- SkypeOutlined,
653
- SlackCircleFilled,
654
- SlackOutlined,
655
- SlackSquareFilled,
656
- SlackSquareOutlined,
657
- SlidersFilled,
658
- SlidersOutlined,
659
- SlidersTwoTone,
660
- SmallDashOutlined,
661
- SmileFilled,
662
- SmileOutlined,
663
- SmileTwoTone,
664
- SnippetsFilled,
665
- SnippetsOutlined,
666
- SnippetsTwoTone,
667
- SolutionOutlined,
668
- SortAscendingOutlined,
669
- SortDescendingOutlined,
670
- SoundFilled,
671
- SoundOutlined,
672
- SoundTwoTone,
673
- SplitCellsOutlined,
674
- StarFilled,
675
- StarOutlined,
676
- StarTwoTone,
677
- StepBackwardFilled,
678
- StepBackwardOutlined,
679
- StepForwardFilled,
680
- StepForwardOutlined,
681
- StockOutlined,
682
- StopFilled,
683
- StopOutlined,
684
- StopTwoTone,
685
- StrikethroughOutlined,
686
- SubnodeOutlined,
687
- SwapLeftOutlined,
688
- SwapOutlined,
689
- SwapRightOutlined,
690
- SwitcherFilled,
691
- SwitcherOutlined,
692
- SwitcherTwoTone,
693
- SyncOutlined,
694
- TableOutlined,
695
- TabletFilled,
696
- TabletOutlined,
697
- TabletTwoTone,
698
- TagFilled,
699
- TagOutlined,
700
- TagTwoTone,
701
- TagsFilled,
702
- TagsOutlined,
703
- TagsTwoTone,
704
- TaobaoCircleFilled,
705
- TaobaoCircleOutlined,
706
- TaobaoOutlined,
707
- TaobaoSquareFilled,
708
- TeamOutlined,
709
- ThunderboltFilled,
710
- ThunderboltOutlined,
711
- ThunderboltTwoTone,
712
- ToTopOutlined,
713
- ToolFilled,
714
- ToolOutlined,
715
- ToolTwoTone,
716
- TrademarkCircleFilled,
717
- TrademarkCircleOutlined,
718
- TrademarkCircleTwoTone,
719
- TrademarkOutlined,
720
- TransactionOutlined,
721
- TranslationOutlined,
722
- TrophyFilled,
723
- TrophyOutlined,
724
- TrophyTwoTone,
725
- TwitterCircleFilled,
726
- TwitterOutlined,
727
- TwitterSquareFilled,
728
- UnderlineOutlined,
729
- UndoOutlined,
730
- UngroupOutlined,
731
- UnlockFilled,
732
- UnlockOutlined,
733
- UnlockTwoTone,
734
- UnorderedListOutlined,
735
- UpCircleFilled,
736
- UpCircleOutlined,
737
- UpCircleTwoTone,
738
- UpOutlined,
739
- UpSquareFilled,
740
- UpSquareOutlined,
741
- UpSquareTwoTone,
742
- UploadOutlined,
743
- UsbFilled,
744
- UsbOutlined,
745
- UsbTwoTone,
746
- UserAddOutlined,
747
- UserDeleteOutlined,
748
- UserOutlined,
749
- UserSwitchOutlined,
750
- UsergroupAddOutlined,
751
- UsergroupDeleteOutlined,
752
- VerifiedOutlined,
753
- VerticalAlignBottomOutlined,
754
- VerticalAlignMiddleOutlined,
755
- VerticalAlignTopOutlined,
756
- VerticalLeftOutlined,
757
- VerticalRightOutlined,
758
- VideoCameraAddOutlined,
759
- VideoCameraFilled,
760
- VideoCameraOutlined,
761
- VideoCameraTwoTone,
762
- WalletFilled,
763
- WalletOutlined,
764
- WalletTwoTone,
765
- WarningFilled,
766
- WarningOutlined,
767
- WarningTwoTone,
768
- WechatFilled,
769
- WechatOutlined,
770
- WeiboCircleFilled,
771
- WeiboCircleOutlined,
772
- WeiboOutlined,
773
- WeiboSquareFilled,
774
- WeiboSquareOutlined,
775
- WhatsAppOutlined,
776
- WifiOutlined,
777
- WindowsFilled,
778
- WindowsOutlined,
779
- WomanOutlined,
780
- YahooFilled,
781
- YahooOutlined,
782
- YoutubeFilled,
783
- YoutubeOutlined,
784
- YuqueFilled,
785
- YuqueOutlined,
786
- ZhihuCircleFilled,
787
- ZhihuOutlined,
788
- ZhihuSquareFilled,
789
- ZoomInOutlined,
790
- ZoomOutOutlined,
791
- } from "@ant-design/icons";
792
-
793
- export const AntIcons: { [key: string]: any } = {
794
- AccountBookFilled: AccountBookFilled,
795
- AccountBookOutlined: AccountBookOutlined,
796
- AccountBookTwoTone: AccountBookTwoTone,
797
- AimOutlined: AimOutlined,
798
- AlertFilled: AlertFilled,
799
- AlertOutlined: AlertOutlined,
800
- AlertTwoTone: AlertTwoTone,
801
- AlibabaOutlined: AlibabaOutlined,
802
- AlignCenterOutlined: AlignCenterOutlined,
803
- AlignLeftOutlined: AlignLeftOutlined,
804
- AlignRightOutlined: AlignRightOutlined,
805
- AlipayCircleFilled: AlipayCircleFilled,
806
- AlipayCircleOutlined: AlipayCircleOutlined,
807
- AlipayOutlined: AlipayOutlined,
808
- AlipaySquareFilled: AlipaySquareFilled,
809
- AliwangwangFilled: AliwangwangFilled,
810
- AliwangwangOutlined: AliwangwangOutlined,
811
- AliyunOutlined: AliyunOutlined,
812
- AmazonCircleFilled: AmazonCircleFilled,
813
- AmazonOutlined: AmazonOutlined,
814
- AmazonSquareFilled: AmazonSquareFilled,
815
- AndroidFilled: AndroidFilled,
816
- AndroidOutlined: AndroidOutlined,
817
- AntCloudOutlined: AntCloudOutlined,
818
- AntDesignOutlined: AntDesignOutlined,
819
- ApartmentOutlined: ApartmentOutlined,
820
- ApiFilled: ApiFilled,
821
- ApiOutlined: ApiOutlined,
822
- ApiTwoTone: ApiTwoTone,
823
- AppleFilled: AppleFilled,
824
- AppleOutlined: AppleOutlined,
825
- AppstoreAddOutlined: AppstoreAddOutlined,
826
- AppstoreFilled: AppstoreFilled,
827
- AppstoreOutlined: AppstoreOutlined,
828
- AppstoreTwoTone: AppstoreTwoTone,
829
- AreaChartOutlined: AreaChartOutlined,
830
- ArrowDownOutlined: ArrowDownOutlined,
831
- ArrowLeftOutlined: ArrowLeftOutlined,
832
- ArrowRightOutlined: ArrowRightOutlined,
833
- ArrowUpOutlined: ArrowUpOutlined,
834
- ArrowsAltOutlined: ArrowsAltOutlined,
835
- AudioFilled: AudioFilled,
836
- AudioMutedOutlined: AudioMutedOutlined,
837
- AudioOutlined: AudioOutlined,
838
- AudioTwoTone: AudioTwoTone,
839
- AuditOutlined: AuditOutlined,
840
- BackwardFilled: BackwardFilled,
841
- BackwardOutlined: BackwardOutlined,
842
- BankFilled: BankFilled,
843
- BankOutlined: BankOutlined,
844
- BankTwoTone: BankTwoTone,
845
- BarChartOutlined: BarChartOutlined,
846
- BarcodeOutlined: BarcodeOutlined,
847
- BarsOutlined: BarsOutlined,
848
- BehanceCircleFilled: BehanceCircleFilled,
849
- BehanceOutlined: BehanceOutlined,
850
- BehanceSquareFilled: BehanceSquareFilled,
851
- BehanceSquareOutlined: BehanceSquareOutlined,
852
- BellFilled: BellFilled,
853
- BellOutlined: BellOutlined,
854
- BellTwoTone: BellTwoTone,
855
- BgColorsOutlined: BgColorsOutlined,
856
- BlockOutlined: BlockOutlined,
857
- BoldOutlined: BoldOutlined,
858
- BookFilled: BookFilled,
859
- BookOutlined: BookOutlined,
860
- BookTwoTone: BookTwoTone,
861
- BorderBottomOutlined: BorderBottomOutlined,
862
- BorderHorizontalOutlined: BorderHorizontalOutlined,
863
- BorderInnerOutlined: BorderInnerOutlined,
864
- BorderLeftOutlined: BorderLeftOutlined,
865
- BorderOuterOutlined: BorderOuterOutlined,
866
- BorderOutlined: BorderOutlined,
867
- BorderRightOutlined: BorderRightOutlined,
868
- BorderTopOutlined: BorderTopOutlined,
869
- BorderVerticleOutlined: BorderVerticleOutlined,
870
- BorderlessTableOutlined: BorderlessTableOutlined,
871
- BoxPlotFilled: BoxPlotFilled,
872
- BoxPlotOutlined: BoxPlotOutlined,
873
- BoxPlotTwoTone: BoxPlotTwoTone,
874
- BranchesOutlined: BranchesOutlined,
875
- BugFilled: BugFilled,
876
- BugOutlined: BugOutlined,
877
- BugTwoTone: BugTwoTone,
878
- BuildFilled: BuildFilled,
879
- BuildOutlined: BuildOutlined,
880
- BuildTwoTone: BuildTwoTone,
881
- BulbFilled: BulbFilled,
882
- BulbOutlined: BulbOutlined,
883
- BulbTwoTone: BulbTwoTone,
884
- CalculatorFilled: CalculatorFilled,
885
- CalculatorOutlined: CalculatorOutlined,
886
- CalculatorTwoTone: CalculatorTwoTone,
887
- CalendarFilled: CalendarFilled,
888
- CalendarOutlined: CalendarOutlined,
889
- CalendarTwoTone: CalendarTwoTone,
890
- CameraFilled: CameraFilled,
891
- CameraOutlined: CameraOutlined,
892
- CameraTwoTone: CameraTwoTone,
893
- CarFilled: CarFilled,
894
- CarOutlined: CarOutlined,
895
- CarTwoTone: CarTwoTone,
896
- CaretDownFilled: CaretDownFilled,
897
- CaretDownOutlined: CaretDownOutlined,
898
- CaretLeftFilled: CaretLeftFilled,
899
- CaretLeftOutlined: CaretLeftOutlined,
900
- CaretRightFilled: CaretRightFilled,
901
- CaretRightOutlined: CaretRightOutlined,
902
- CaretUpFilled: CaretUpFilled,
903
- CaretUpOutlined: CaretUpOutlined,
904
- CarryOutFilled: CarryOutFilled,
905
- CarryOutOutlined: CarryOutOutlined,
906
- CarryOutTwoTone: CarryOutTwoTone,
907
- CheckCircleFilled: CheckCircleFilled,
908
- CheckCircleOutlined: CheckCircleOutlined,
909
- CheckCircleTwoTone: CheckCircleTwoTone,
910
- CheckOutlined: CheckOutlined,
911
- CheckSquareFilled: CheckSquareFilled,
912
- CheckSquareOutlined: CheckSquareOutlined,
913
- CheckSquareTwoTone: CheckSquareTwoTone,
914
- ChromeFilled: ChromeFilled,
915
- ChromeOutlined: ChromeOutlined,
916
- CiCircleFilled: CiCircleFilled,
917
- CiCircleOutlined: CiCircleOutlined,
918
- CiCircleTwoTone: CiCircleTwoTone,
919
- CiOutlined: CiOutlined,
920
- CiTwoTone: CiTwoTone,
921
- ClearOutlined: ClearOutlined,
922
- ClockCircleFilled: ClockCircleFilled,
923
- ClockCircleOutlined: ClockCircleOutlined,
924
- ClockCircleTwoTone: ClockCircleTwoTone,
925
- CloseCircleFilled: CloseCircleFilled,
926
- CloseCircleOutlined: CloseCircleOutlined,
927
- CloseCircleTwoTone: CloseCircleTwoTone,
928
- CloseOutlined: CloseOutlined,
929
- CloseSquareFilled: CloseSquareFilled,
930
- CloseSquareOutlined: CloseSquareOutlined,
931
- CloseSquareTwoTone: CloseSquareTwoTone,
932
- CloudDownloadOutlined: CloudDownloadOutlined,
933
- CloudFilled: CloudFilled,
934
- CloudOutlined: CloudOutlined,
935
- CloudServerOutlined: CloudServerOutlined,
936
- CloudSyncOutlined: CloudSyncOutlined,
937
- CloudTwoTone: CloudTwoTone,
938
- CloudUploadOutlined: CloudUploadOutlined,
939
- ClusterOutlined: ClusterOutlined,
940
- CodeFilled: CodeFilled,
941
- CodeOutlined: CodeOutlined,
942
- CodeSandboxCircleFilled: CodeSandboxCircleFilled,
943
- CodeSandboxOutlined: CodeSandboxOutlined,
944
- CodeSandboxSquareFilled: CodeSandboxSquareFilled,
945
- CodeTwoTone: CodeTwoTone,
946
- CodepenCircleFilled: CodepenCircleFilled,
947
- CodepenCircleOutlined: CodepenCircleOutlined,
948
- CodepenOutlined: CodepenOutlined,
949
- CodepenSquareFilled: CodepenSquareFilled,
950
- CoffeeOutlined: CoffeeOutlined,
951
- ColumnHeightOutlined: ColumnHeightOutlined,
952
- ColumnWidthOutlined: ColumnWidthOutlined,
953
- CommentOutlined: CommentOutlined,
954
- CompassFilled: CompassFilled,
955
- CompassOutlined: CompassOutlined,
956
- CompassTwoTone: CompassTwoTone,
957
- CompressOutlined: CompressOutlined,
958
- ConsoleSqlOutlined: ConsoleSqlOutlined,
959
- ContactsFilled: ContactsFilled,
960
- ContactsOutlined: ContactsOutlined,
961
- ContactsTwoTone: ContactsTwoTone,
962
- ContainerFilled: ContainerFilled,
963
- ContainerOutlined: ContainerOutlined,
964
- ContainerTwoTone: ContainerTwoTone,
965
- ControlFilled: ControlFilled,
966
- ControlOutlined: ControlOutlined,
967
- ControlTwoTone: ControlTwoTone,
968
- CopyFilled: CopyFilled,
969
- CopyOutlined: CopyOutlined,
970
- CopyTwoTone: CopyTwoTone,
971
- CopyrightCircleFilled: CopyrightCircleFilled,
972
- CopyrightCircleOutlined: CopyrightCircleOutlined,
973
- CopyrightCircleTwoTone: CopyrightCircleTwoTone,
974
- CopyrightOutlined: CopyrightOutlined,
975
- CopyrightTwoTone: CopyrightTwoTone,
976
- CreditCardFilled: CreditCardFilled,
977
- CreditCardOutlined: CreditCardOutlined,
978
- CreditCardTwoTone: CreditCardTwoTone,
979
- CrownFilled: CrownFilled,
980
- CrownOutlined: CrownOutlined,
981
- CrownTwoTone: CrownTwoTone,
982
- CustomerServiceFilled: CustomerServiceFilled,
983
- CustomerServiceOutlined: CustomerServiceOutlined,
984
- CustomerServiceTwoTone: CustomerServiceTwoTone,
985
- DashOutlined: DashOutlined,
986
- DashboardFilled: DashboardFilled,
987
- DashboardOutlined: DashboardOutlined,
988
- DashboardTwoTone: DashboardTwoTone,
989
- DatabaseFilled: DatabaseFilled,
990
- DatabaseOutlined: DatabaseOutlined,
991
- DatabaseTwoTone: DatabaseTwoTone,
992
- DeleteColumnOutlined: DeleteColumnOutlined,
993
- DeleteFilled: DeleteFilled,
994
- DeleteOutlined: DeleteOutlined,
995
- DeleteRowOutlined: DeleteRowOutlined,
996
- DeleteTwoTone: DeleteTwoTone,
997
- DeliveredProcedureOutlined: DeliveredProcedureOutlined,
998
- DeploymentUnitOutlined: DeploymentUnitOutlined,
999
- DesktopOutlined: DesktopOutlined,
1000
- DiffFilled: DiffFilled,
1001
- DiffOutlined: DiffOutlined,
1002
- DiffTwoTone: DiffTwoTone,
1003
- DingdingOutlined: DingdingOutlined,
1004
- DingtalkCircleFilled: DingtalkCircleFilled,
1005
- DingtalkOutlined: DingtalkOutlined,
1006
- DingtalkSquareFilled: DingtalkSquareFilled,
1007
- DisconnectOutlined: DisconnectOutlined,
1008
- DislikeFilled: DislikeFilled,
1009
- DislikeOutlined: DislikeOutlined,
1010
- DislikeTwoTone: DislikeTwoTone,
1011
- DollarCircleFilled: DollarCircleFilled,
1012
- DollarCircleOutlined: DollarCircleOutlined,
1013
- DollarCircleTwoTone: DollarCircleTwoTone,
1014
- DollarOutlined: DollarOutlined,
1015
- DollarTwoTone: DollarTwoTone,
1016
- DotChartOutlined: DotChartOutlined,
1017
- DoubleLeftOutlined: DoubleLeftOutlined,
1018
- DoubleRightOutlined: DoubleRightOutlined,
1019
- DownCircleFilled: DownCircleFilled,
1020
- DownCircleOutlined: DownCircleOutlined,
1021
- DownCircleTwoTone: DownCircleTwoTone,
1022
- DownOutlined: DownOutlined,
1023
- DownSquareFilled: DownSquareFilled,
1024
- DownSquareOutlined: DownSquareOutlined,
1025
- DownSquareTwoTone: DownSquareTwoTone,
1026
- DownloadOutlined: DownloadOutlined,
1027
- DragOutlined: DragOutlined,
1028
- DribbbleCircleFilled: DribbbleCircleFilled,
1029
- DribbbleOutlined: DribbbleOutlined,
1030
- DribbbleSquareFilled: DribbbleSquareFilled,
1031
- DribbbleSquareOutlined: DribbbleSquareOutlined,
1032
- DropboxCircleFilled: DropboxCircleFilled,
1033
- DropboxOutlined: DropboxOutlined,
1034
- DropboxSquareFilled: DropboxSquareFilled,
1035
- EditFilled: EditFilled,
1036
- EditOutlined: EditOutlined,
1037
- EditTwoTone: EditTwoTone,
1038
- EllipsisOutlined: EllipsisOutlined,
1039
- EnterOutlined: EnterOutlined,
1040
- EnvironmentFilled: EnvironmentFilled,
1041
- EnvironmentOutlined: EnvironmentOutlined,
1042
- EnvironmentTwoTone: EnvironmentTwoTone,
1043
- EuroCircleFilled: EuroCircleFilled,
1044
- EuroCircleOutlined: EuroCircleOutlined,
1045
- EuroCircleTwoTone: EuroCircleTwoTone,
1046
- EuroOutlined: EuroOutlined,
1047
- EuroTwoTone: EuroTwoTone,
1048
- ExceptionOutlined: ExceptionOutlined,
1049
- ExclamationCircleFilled: ExclamationCircleFilled,
1050
- ExclamationCircleOutlined: ExclamationCircleOutlined,
1051
- ExclamationCircleTwoTone: ExclamationCircleTwoTone,
1052
- ExclamationOutlined: ExclamationOutlined,
1053
- ExpandAltOutlined: ExpandAltOutlined,
1054
- ExpandOutlined: ExpandOutlined,
1055
- ExperimentFilled: ExperimentFilled,
1056
- ExperimentOutlined: ExperimentOutlined,
1057
- ExperimentTwoTone: ExperimentTwoTone,
1058
- ExportOutlined: ExportOutlined,
1059
- EyeFilled: EyeFilled,
1060
- EyeInvisibleFilled: EyeInvisibleFilled,
1061
- EyeInvisibleOutlined: EyeInvisibleOutlined,
1062
- EyeInvisibleTwoTone: EyeInvisibleTwoTone,
1063
- EyeOutlined: EyeOutlined,
1064
- EyeTwoTone: EyeTwoTone,
1065
- FacebookFilled: FacebookFilled,
1066
- FacebookOutlined: FacebookOutlined,
1067
- FallOutlined: FallOutlined,
1068
- FastBackwardFilled: FastBackwardFilled,
1069
- FastBackwardOutlined: FastBackwardOutlined,
1070
- FastForwardFilled: FastForwardFilled,
1071
- FastForwardOutlined: FastForwardOutlined,
1072
- FieldBinaryOutlined: FieldBinaryOutlined,
1073
- FieldNumberOutlined: FieldNumberOutlined,
1074
- FieldStringOutlined: FieldStringOutlined,
1075
- FieldTimeOutlined: FieldTimeOutlined,
1076
- FileAddFilled: FileAddFilled,
1077
- FileAddOutlined: FileAddOutlined,
1078
- FileAddTwoTone: FileAddTwoTone,
1079
- FileDoneOutlined: FileDoneOutlined,
1080
- FileExcelFilled: FileExcelFilled,
1081
- FileExcelOutlined: FileExcelOutlined,
1082
- FileExcelTwoTone: FileExcelTwoTone,
1083
- FileExclamationFilled: FileExclamationFilled,
1084
- FileExclamationOutlined: FileExclamationOutlined,
1085
- FileExclamationTwoTone: FileExclamationTwoTone,
1086
- FileFilled: FileFilled,
1087
- FileGifOutlined: FileGifOutlined,
1088
- FileImageFilled: FileImageFilled,
1089
- FileImageOutlined: FileImageOutlined,
1090
- FileImageTwoTone: FileImageTwoTone,
1091
- FileJpgOutlined: FileJpgOutlined,
1092
- FileMarkdownFilled: FileMarkdownFilled,
1093
- FileMarkdownOutlined: FileMarkdownOutlined,
1094
- FileMarkdownTwoTone: FileMarkdownTwoTone,
1095
- FileOutlined: FileOutlined,
1096
- FilePdfFilled: FilePdfFilled,
1097
- FilePdfOutlined: FilePdfOutlined,
1098
- FilePdfTwoTone: FilePdfTwoTone,
1099
- FilePptFilled: FilePptFilled,
1100
- FilePptOutlined: FilePptOutlined,
1101
- FilePptTwoTone: FilePptTwoTone,
1102
- FileProtectOutlined: FileProtectOutlined,
1103
- FileSearchOutlined: FileSearchOutlined,
1104
- FileSyncOutlined: FileSyncOutlined,
1105
- FileTextFilled: FileTextFilled,
1106
- FileTextOutlined: FileTextOutlined,
1107
- FileTextTwoTone: FileTextTwoTone,
1108
- FileTwoTone: FileTwoTone,
1109
- FileUnknownFilled: FileUnknownFilled,
1110
- FileUnknownOutlined: FileUnknownOutlined,
1111
- FileUnknownTwoTone: FileUnknownTwoTone,
1112
- FileWordFilled: FileWordFilled,
1113
- FileWordOutlined: FileWordOutlined,
1114
- FileWordTwoTone: FileWordTwoTone,
1115
- FileZipFilled: FileZipFilled,
1116
- FileZipOutlined: FileZipOutlined,
1117
- FileZipTwoTone: FileZipTwoTone,
1118
- FilterFilled: FilterFilled,
1119
- FilterOutlined: FilterOutlined,
1120
- FilterTwoTone: FilterTwoTone,
1121
- FireFilled: FireFilled,
1122
- FireOutlined: FireOutlined,
1123
- FireTwoTone: FireTwoTone,
1124
- FlagFilled: FlagFilled,
1125
- FlagOutlined: FlagOutlined,
1126
- FlagTwoTone: FlagTwoTone,
1127
- FolderAddFilled: FolderAddFilled,
1128
- FolderAddOutlined: FolderAddOutlined,
1129
- FolderAddTwoTone: FolderAddTwoTone,
1130
- FolderFilled: FolderFilled,
1131
- FolderOpenFilled: FolderOpenFilled,
1132
- FolderOpenOutlined: FolderOpenOutlined,
1133
- FolderOpenTwoTone: FolderOpenTwoTone,
1134
- FolderOutlined: FolderOutlined,
1135
- FolderTwoTone: FolderTwoTone,
1136
- FolderViewOutlined: FolderViewOutlined,
1137
- FontColorsOutlined: FontColorsOutlined,
1138
- FontSizeOutlined: FontSizeOutlined,
1139
- ForkOutlined: ForkOutlined,
1140
- FormOutlined: FormOutlined,
1141
- FormatPainterFilled: FormatPainterFilled,
1142
- FormatPainterOutlined: FormatPainterOutlined,
1143
- ForwardFilled: ForwardFilled,
1144
- ForwardOutlined: ForwardOutlined,
1145
- FrownFilled: FrownFilled,
1146
- FrownOutlined: FrownOutlined,
1147
- FrownTwoTone: FrownTwoTone,
1148
- FullscreenExitOutlined: FullscreenExitOutlined,
1149
- FullscreenOutlined: FullscreenOutlined,
1150
- FunctionOutlined: FunctionOutlined,
1151
- FundFilled: FundFilled,
1152
- FundOutlined: FundOutlined,
1153
- FundProjectionScreenOutlined: FundProjectionScreenOutlined,
1154
- FundTwoTone: FundTwoTone,
1155
- FundViewOutlined: FundViewOutlined,
1156
- FunnelPlotFilled: FunnelPlotFilled,
1157
- FunnelPlotOutlined: FunnelPlotOutlined,
1158
- FunnelPlotTwoTone: FunnelPlotTwoTone,
1159
- GatewayOutlined: GatewayOutlined,
1160
- GifOutlined: GifOutlined,
1161
- GiftFilled: GiftFilled,
1162
- GiftOutlined: GiftOutlined,
1163
- GiftTwoTone: GiftTwoTone,
1164
- GithubFilled: GithubFilled,
1165
- GithubOutlined: GithubOutlined,
1166
- GitlabFilled: GitlabFilled,
1167
- GitlabOutlined: GitlabOutlined,
1168
- GlobalOutlined: GlobalOutlined,
1169
- GoldFilled: GoldFilled,
1170
- GoldOutlined: GoldOutlined,
1171
- GoldTwoTone: GoldTwoTone,
1172
- GoldenFilled: GoldenFilled,
1173
- GoogleCircleFilled: GoogleCircleFilled,
1174
- GoogleOutlined: GoogleOutlined,
1175
- GooglePlusCircleFilled: GooglePlusCircleFilled,
1176
- GooglePlusOutlined: GooglePlusOutlined,
1177
- GooglePlusSquareFilled: GooglePlusSquareFilled,
1178
- GoogleSquareFilled: GoogleSquareFilled,
1179
- GroupOutlined: GroupOutlined,
1180
- HddFilled: HddFilled,
1181
- HddOutlined: HddOutlined,
1182
- HddTwoTone: HddTwoTone,
1183
- HeartFilled: HeartFilled,
1184
- HeartOutlined: HeartOutlined,
1185
- HeartTwoTone: HeartTwoTone,
1186
- HeatMapOutlined: HeatMapOutlined,
1187
- HighlightFilled: HighlightFilled,
1188
- HighlightOutlined: HighlightOutlined,
1189
- HighlightTwoTone: HighlightTwoTone,
1190
- HistoryOutlined: HistoryOutlined,
1191
- HolderOutlined: HolderOutlined,
1192
- HomeFilled: HomeFilled,
1193
- HomeOutlined: HomeOutlined,
1194
- HomeTwoTone: HomeTwoTone,
1195
- HourglassFilled: HourglassFilled,
1196
- HourglassOutlined: HourglassOutlined,
1197
- HourglassTwoTone: HourglassTwoTone,
1198
- Html5Filled: Html5Filled,
1199
- Html5Outlined: Html5Outlined,
1200
- Html5TwoTone: Html5TwoTone,
1201
- IdcardFilled: IdcardFilled,
1202
- IdcardOutlined: IdcardOutlined,
1203
- IdcardTwoTone: IdcardTwoTone,
1204
- IeCircleFilled: IeCircleFilled,
1205
- IeOutlined: IeOutlined,
1206
- IeSquareFilled: IeSquareFilled,
1207
- ImportOutlined: ImportOutlined,
1208
- InboxOutlined: InboxOutlined,
1209
- InfoCircleFilled: InfoCircleFilled,
1210
- InfoCircleOutlined: InfoCircleOutlined,
1211
- InfoCircleTwoTone: InfoCircleTwoTone,
1212
- InfoOutlined: InfoOutlined,
1213
- InsertRowAboveOutlined: InsertRowAboveOutlined,
1214
- InsertRowBelowOutlined: InsertRowBelowOutlined,
1215
- InsertRowLeftOutlined: InsertRowLeftOutlined,
1216
- InsertRowRightOutlined: InsertRowRightOutlined,
1217
- InstagramFilled: InstagramFilled,
1218
- InstagramOutlined: InstagramOutlined,
1219
- InsuranceFilled: InsuranceFilled,
1220
- InsuranceOutlined: InsuranceOutlined,
1221
- InsuranceTwoTone: InsuranceTwoTone,
1222
- InteractionFilled: InteractionFilled,
1223
- InteractionOutlined: InteractionOutlined,
1224
- InteractionTwoTone: InteractionTwoTone,
1225
- IssuesCloseOutlined: IssuesCloseOutlined,
1226
- ItalicOutlined: ItalicOutlined,
1227
- KeyOutlined: KeyOutlined,
1228
- LaptopOutlined: LaptopOutlined,
1229
- LayoutFilled: LayoutFilled,
1230
- LayoutOutlined: LayoutOutlined,
1231
- LayoutTwoTone: LayoutTwoTone,
1232
- LeftCircleFilled: LeftCircleFilled,
1233
- LeftCircleOutlined: LeftCircleOutlined,
1234
- LeftCircleTwoTone: LeftCircleTwoTone,
1235
- LeftOutlined: LeftOutlined,
1236
- LeftSquareFilled: LeftSquareFilled,
1237
- LeftSquareOutlined: LeftSquareOutlined,
1238
- LeftSquareTwoTone: LeftSquareTwoTone,
1239
- LikeFilled: LikeFilled,
1240
- LikeOutlined: LikeOutlined,
1241
- LikeTwoTone: LikeTwoTone,
1242
- LineChartOutlined: LineChartOutlined,
1243
- LineHeightOutlined: LineHeightOutlined,
1244
- LineOutlined: LineOutlined,
1245
- LinkOutlined: LinkOutlined,
1246
- LinkedinFilled: LinkedinFilled,
1247
- LinkedinOutlined: LinkedinOutlined,
1248
- Loading3QuartersOutlined: Loading3QuartersOutlined,
1249
- LoadingOutlined: LoadingOutlined,
1250
- LockFilled: LockFilled,
1251
- LockOutlined: LockOutlined,
1252
- LockTwoTone: LockTwoTone,
1253
- LoginOutlined: LoginOutlined,
1254
- LogoutOutlined: LogoutOutlined,
1255
- MacCommandFilled: MacCommandFilled,
1256
- MacCommandOutlined: MacCommandOutlined,
1257
- MailFilled: MailFilled,
1258
- MailOutlined: MailOutlined,
1259
- MailTwoTone: MailTwoTone,
1260
- ManOutlined: ManOutlined,
1261
- MedicineBoxFilled: MedicineBoxFilled,
1262
- MedicineBoxOutlined: MedicineBoxOutlined,
1263
- MedicineBoxTwoTone: MedicineBoxTwoTone,
1264
- MediumCircleFilled: MediumCircleFilled,
1265
- MediumOutlined: MediumOutlined,
1266
- MediumSquareFilled: MediumSquareFilled,
1267
- MediumWorkmarkOutlined: MediumWorkmarkOutlined,
1268
- MehFilled: MehFilled,
1269
- MehOutlined: MehOutlined,
1270
- MehTwoTone: MehTwoTone,
1271
- MenuFoldOutlined: MenuFoldOutlined,
1272
- MenuOutlined: MenuOutlined,
1273
- MenuUnfoldOutlined: MenuUnfoldOutlined,
1274
- MergeCellsOutlined: MergeCellsOutlined,
1275
- MessageFilled: MessageFilled,
1276
- MessageOutlined: MessageOutlined,
1277
- MessageTwoTone: MessageTwoTone,
1278
- MinusCircleFilled: MinusCircleFilled,
1279
- MinusCircleOutlined: MinusCircleOutlined,
1280
- MinusCircleTwoTone: MinusCircleTwoTone,
1281
- MinusOutlined: MinusOutlined,
1282
- MinusSquareFilled: MinusSquareFilled,
1283
- MinusSquareOutlined: MinusSquareOutlined,
1284
- MinusSquareTwoTone: MinusSquareTwoTone,
1285
- MobileFilled: MobileFilled,
1286
- MobileOutlined: MobileOutlined,
1287
- MobileTwoTone: MobileTwoTone,
1288
- MoneyCollectFilled: MoneyCollectFilled,
1289
- MoneyCollectOutlined: MoneyCollectOutlined,
1290
- MoneyCollectTwoTone: MoneyCollectTwoTone,
1291
- MonitorOutlined: MonitorOutlined,
1292
- MoreOutlined: MoreOutlined,
1293
- NodeCollapseOutlined: NodeCollapseOutlined,
1294
- NodeExpandOutlined: NodeExpandOutlined,
1295
- NodeIndexOutlined: NodeIndexOutlined,
1296
- NotificationFilled: NotificationFilled,
1297
- NotificationOutlined: NotificationOutlined,
1298
- NotificationTwoTone: NotificationTwoTone,
1299
- NumberOutlined: NumberOutlined,
1300
- OneToOneOutlined: OneToOneOutlined,
1301
- OrderedListOutlined: OrderedListOutlined,
1302
- PaperClipOutlined: PaperClipOutlined,
1303
- PartitionOutlined: PartitionOutlined,
1304
- PauseCircleFilled: PauseCircleFilled,
1305
- PauseCircleOutlined: PauseCircleOutlined,
1306
- PauseCircleTwoTone: PauseCircleTwoTone,
1307
- PauseOutlined: PauseOutlined,
1308
- PayCircleFilled: PayCircleFilled,
1309
- PayCircleOutlined: PayCircleOutlined,
1310
- PercentageOutlined: PercentageOutlined,
1311
- PhoneFilled: PhoneFilled,
1312
- PhoneOutlined: PhoneOutlined,
1313
- PhoneTwoTone: PhoneTwoTone,
1314
- PicCenterOutlined: PicCenterOutlined,
1315
- PicLeftOutlined: PicLeftOutlined,
1316
- PicRightOutlined: PicRightOutlined,
1317
- PictureFilled: PictureFilled,
1318
- PictureOutlined: PictureOutlined,
1319
- PictureTwoTone: PictureTwoTone,
1320
- PieChartFilled: PieChartFilled,
1321
- PieChartOutlined: PieChartOutlined,
1322
- PieChartTwoTone: PieChartTwoTone,
1323
- PlayCircleFilled: PlayCircleFilled,
1324
- PlayCircleOutlined: PlayCircleOutlined,
1325
- PlayCircleTwoTone: PlayCircleTwoTone,
1326
- PlaySquareFilled: PlaySquareFilled,
1327
- PlaySquareOutlined: PlaySquareOutlined,
1328
- PlaySquareTwoTone: PlaySquareTwoTone,
1329
- PlusCircleFilled: PlusCircleFilled,
1330
- PlusCircleOutlined: PlusCircleOutlined,
1331
- PlusCircleTwoTone: PlusCircleTwoTone,
1332
- PlusOutlined: PlusOutlined,
1333
- PlusSquareFilled: PlusSquareFilled,
1334
- PlusSquareOutlined: PlusSquareOutlined,
1335
- PlusSquareTwoTone: PlusSquareTwoTone,
1336
- PoundCircleFilled: PoundCircleFilled,
1337
- PoundCircleOutlined: PoundCircleOutlined,
1338
- PoundCircleTwoTone: PoundCircleTwoTone,
1339
- PoundOutlined: PoundOutlined,
1340
- PoweroffOutlined: PoweroffOutlined,
1341
- PrinterFilled: PrinterFilled,
1342
- PrinterOutlined: PrinterOutlined,
1343
- PrinterTwoTone: PrinterTwoTone,
1344
- ProfileFilled: ProfileFilled,
1345
- ProfileOutlined: ProfileOutlined,
1346
- ProfileTwoTone: ProfileTwoTone,
1347
- ProjectFilled: ProjectFilled,
1348
- ProjectOutlined: ProjectOutlined,
1349
- ProjectTwoTone: ProjectTwoTone,
1350
- PropertySafetyFilled: PropertySafetyFilled,
1351
- PropertySafetyOutlined: PropertySafetyOutlined,
1352
- PropertySafetyTwoTone: PropertySafetyTwoTone,
1353
- PullRequestOutlined: PullRequestOutlined,
1354
- PushpinFilled: PushpinFilled,
1355
- PushpinOutlined: PushpinOutlined,
1356
- PushpinTwoTone: PushpinTwoTone,
1357
- QqCircleFilled: QqCircleFilled,
1358
- QqOutlined: QqOutlined,
1359
- QqSquareFilled: QqSquareFilled,
1360
- QrcodeOutlined: QrcodeOutlined,
1361
- QuestionCircleFilled: QuestionCircleFilled,
1362
- QuestionCircleOutlined: QuestionCircleOutlined,
1363
- QuestionCircleTwoTone: QuestionCircleTwoTone,
1364
- QuestionOutlined: QuestionOutlined,
1365
- RadarChartOutlined: RadarChartOutlined,
1366
- RadiusBottomleftOutlined: RadiusBottomleftOutlined,
1367
- RadiusBottomrightOutlined: RadiusBottomrightOutlined,
1368
- RadiusSettingOutlined: RadiusSettingOutlined,
1369
- RadiusUpleftOutlined: RadiusUpleftOutlined,
1370
- RadiusUprightOutlined: RadiusUprightOutlined,
1371
- ReadFilled: ReadFilled,
1372
- ReadOutlined: ReadOutlined,
1373
- ReconciliationFilled: ReconciliationFilled,
1374
- ReconciliationOutlined: ReconciliationOutlined,
1375
- ReconciliationTwoTone: ReconciliationTwoTone,
1376
- RedEnvelopeFilled: RedEnvelopeFilled,
1377
- RedEnvelopeOutlined: RedEnvelopeOutlined,
1378
- RedEnvelopeTwoTone: RedEnvelopeTwoTone,
1379
- RedditCircleFilled: RedditCircleFilled,
1380
- RedditOutlined: RedditOutlined,
1381
- RedditSquareFilled: RedditSquareFilled,
1382
- RedoOutlined: RedoOutlined,
1383
- ReloadOutlined: ReloadOutlined,
1384
- RestFilled: RestFilled,
1385
- RestOutlined: RestOutlined,
1386
- RestTwoTone: RestTwoTone,
1387
- RetweetOutlined: RetweetOutlined,
1388
- RightCircleFilled: RightCircleFilled,
1389
- RightCircleOutlined: RightCircleOutlined,
1390
- RightCircleTwoTone: RightCircleTwoTone,
1391
- RightOutlined: RightOutlined,
1392
- RightSquareFilled: RightSquareFilled,
1393
- RightSquareOutlined: RightSquareOutlined,
1394
- RightSquareTwoTone: RightSquareTwoTone,
1395
- RiseOutlined: RiseOutlined,
1396
- RobotFilled: RobotFilled,
1397
- RobotOutlined: RobotOutlined,
1398
- RocketFilled: RocketFilled,
1399
- RocketOutlined: RocketOutlined,
1400
- RocketTwoTone: RocketTwoTone,
1401
- RollbackOutlined: RollbackOutlined,
1402
- RotateLeftOutlined: RotateLeftOutlined,
1403
- RotateRightOutlined: RotateRightOutlined,
1404
- SafetyCertificateFilled: SafetyCertificateFilled,
1405
- SafetyCertificateOutlined: SafetyCertificateOutlined,
1406
- SafetyCertificateTwoTone: SafetyCertificateTwoTone,
1407
- SafetyOutlined: SafetyOutlined,
1408
- SaveFilled: SaveFilled,
1409
- SaveOutlined: SaveOutlined,
1410
- SaveTwoTone: SaveTwoTone,
1411
- ScanOutlined: ScanOutlined,
1412
- ScheduleFilled: ScheduleFilled,
1413
- ScheduleOutlined: ScheduleOutlined,
1414
- ScheduleTwoTone: ScheduleTwoTone,
1415
- ScissorOutlined: ScissorOutlined,
1416
- SearchOutlined: SearchOutlined,
1417
- SecurityScanFilled: SecurityScanFilled,
1418
- SecurityScanOutlined: SecurityScanOutlined,
1419
- SecurityScanTwoTone: SecurityScanTwoTone,
1420
- SelectOutlined: SelectOutlined,
1421
- SendOutlined: SendOutlined,
1422
- SettingFilled: SettingFilled,
1423
- SettingOutlined: SettingOutlined,
1424
- SettingTwoTone: SettingTwoTone,
1425
- ShakeOutlined: ShakeOutlined,
1426
- ShareAltOutlined: ShareAltOutlined,
1427
- ShopFilled: ShopFilled,
1428
- ShopOutlined: ShopOutlined,
1429
- ShopTwoTone: ShopTwoTone,
1430
- ShoppingCartOutlined: ShoppingCartOutlined,
1431
- ShoppingFilled: ShoppingFilled,
1432
- ShoppingOutlined: ShoppingOutlined,
1433
- ShoppingTwoTone: ShoppingTwoTone,
1434
- ShrinkOutlined: ShrinkOutlined,
1435
- SignalFilled: SignalFilled,
1436
- SisternodeOutlined: SisternodeOutlined,
1437
- SketchCircleFilled: SketchCircleFilled,
1438
- SketchOutlined: SketchOutlined,
1439
- SketchSquareFilled: SketchSquareFilled,
1440
- SkinFilled: SkinFilled,
1441
- SkinOutlined: SkinOutlined,
1442
- SkinTwoTone: SkinTwoTone,
1443
- SkypeFilled: SkypeFilled,
1444
- SkypeOutlined: SkypeOutlined,
1445
- SlackCircleFilled: SlackCircleFilled,
1446
- SlackOutlined: SlackOutlined,
1447
- SlackSquareFilled: SlackSquareFilled,
1448
- SlackSquareOutlined: SlackSquareOutlined,
1449
- SlidersFilled: SlidersFilled,
1450
- SlidersOutlined: SlidersOutlined,
1451
- SlidersTwoTone: SlidersTwoTone,
1452
- SmallDashOutlined: SmallDashOutlined,
1453
- SmileFilled: SmileFilled,
1454
- SmileOutlined: SmileOutlined,
1455
- SmileTwoTone: SmileTwoTone,
1456
- SnippetsFilled: SnippetsFilled,
1457
- SnippetsOutlined: SnippetsOutlined,
1458
- SnippetsTwoTone: SnippetsTwoTone,
1459
- SolutionOutlined: SolutionOutlined,
1460
- SortAscendingOutlined: SortAscendingOutlined,
1461
- SortDescendingOutlined: SortDescendingOutlined,
1462
- SoundFilled: SoundFilled,
1463
- SoundOutlined: SoundOutlined,
1464
- SoundTwoTone: SoundTwoTone,
1465
- SplitCellsOutlined: SplitCellsOutlined,
1466
- StarFilled: StarFilled,
1467
- StarOutlined: StarOutlined,
1468
- StarTwoTone: StarTwoTone,
1469
- StepBackwardFilled: StepBackwardFilled,
1470
- StepBackwardOutlined: StepBackwardOutlined,
1471
- StepForwardFilled: StepForwardFilled,
1472
- StepForwardOutlined: StepForwardOutlined,
1473
- StockOutlined: StockOutlined,
1474
- StopFilled: StopFilled,
1475
- StopOutlined: StopOutlined,
1476
- StopTwoTone: StopTwoTone,
1477
- StrikethroughOutlined: StrikethroughOutlined,
1478
- SubnodeOutlined: SubnodeOutlined,
1479
- SwapLeftOutlined: SwapLeftOutlined,
1480
- SwapOutlined: SwapOutlined,
1481
- SwapRightOutlined: SwapRightOutlined,
1482
- SwitcherFilled: SwitcherFilled,
1483
- SwitcherOutlined: SwitcherOutlined,
1484
- SwitcherTwoTone: SwitcherTwoTone,
1485
- SyncOutlined: SyncOutlined,
1486
- TableOutlined: TableOutlined,
1487
- TabletFilled: TabletFilled,
1488
- TabletOutlined: TabletOutlined,
1489
- TabletTwoTone: TabletTwoTone,
1490
- TagFilled: TagFilled,
1491
- TagOutlined: TagOutlined,
1492
- TagTwoTone: TagTwoTone,
1493
- TagsFilled: TagsFilled,
1494
- TagsOutlined: TagsOutlined,
1495
- TagsTwoTone: TagsTwoTone,
1496
- TaobaoCircleFilled: TaobaoCircleFilled,
1497
- TaobaoCircleOutlined: TaobaoCircleOutlined,
1498
- TaobaoOutlined: TaobaoOutlined,
1499
- TaobaoSquareFilled: TaobaoSquareFilled,
1500
- TeamOutlined: TeamOutlined,
1501
- ThunderboltFilled: ThunderboltFilled,
1502
- ThunderboltOutlined: ThunderboltOutlined,
1503
- ThunderboltTwoTone: ThunderboltTwoTone,
1504
- ToTopOutlined: ToTopOutlined,
1505
- ToolFilled: ToolFilled,
1506
- ToolOutlined: ToolOutlined,
1507
- ToolTwoTone: ToolTwoTone,
1508
- TrademarkCircleFilled: TrademarkCircleFilled,
1509
- TrademarkCircleOutlined: TrademarkCircleOutlined,
1510
- TrademarkCircleTwoTone: TrademarkCircleTwoTone,
1511
- TrademarkOutlined: TrademarkOutlined,
1512
- TransactionOutlined: TransactionOutlined,
1513
- TranslationOutlined: TranslationOutlined,
1514
- TrophyFilled: TrophyFilled,
1515
- TrophyOutlined: TrophyOutlined,
1516
- TrophyTwoTone: TrophyTwoTone,
1517
- TwitterCircleFilled: TwitterCircleFilled,
1518
- TwitterOutlined: TwitterOutlined,
1519
- TwitterSquareFilled: TwitterSquareFilled,
1520
- UnderlineOutlined: UnderlineOutlined,
1521
- UndoOutlined: UndoOutlined,
1522
- UngroupOutlined: UngroupOutlined,
1523
- UnlockFilled: UnlockFilled,
1524
- UnlockOutlined: UnlockOutlined,
1525
- UnlockTwoTone: UnlockTwoTone,
1526
- UnorderedListOutlined: UnorderedListOutlined,
1527
- UpCircleFilled: UpCircleFilled,
1528
- UpCircleOutlined: UpCircleOutlined,
1529
- UpCircleTwoTone: UpCircleTwoTone,
1530
- UpOutlined: UpOutlined,
1531
- UpSquareFilled: UpSquareFilled,
1532
- UpSquareOutlined: UpSquareOutlined,
1533
- UpSquareTwoTone: UpSquareTwoTone,
1534
- UploadOutlined: UploadOutlined,
1535
- UsbFilled: UsbFilled,
1536
- UsbOutlined: UsbOutlined,
1537
- UsbTwoTone: UsbTwoTone,
1538
- UserAddOutlined: UserAddOutlined,
1539
- UserDeleteOutlined: UserDeleteOutlined,
1540
- UserOutlined: UserOutlined,
1541
- UserSwitchOutlined: UserSwitchOutlined,
1542
- UsergroupAddOutlined: UsergroupAddOutlined,
1543
- UsergroupDeleteOutlined: UsergroupDeleteOutlined,
1544
- VerifiedOutlined: VerifiedOutlined,
1545
- VerticalAlignBottomOutlined: VerticalAlignBottomOutlined,
1546
- VerticalAlignMiddleOutlined: VerticalAlignMiddleOutlined,
1547
- VerticalAlignTopOutlined: VerticalAlignTopOutlined,
1548
- VerticalLeftOutlined: VerticalLeftOutlined,
1549
- VerticalRightOutlined: VerticalRightOutlined,
1550
- VideoCameraAddOutlined: VideoCameraAddOutlined,
1551
- VideoCameraFilled: VideoCameraFilled,
1552
- VideoCameraOutlined: VideoCameraOutlined,
1553
- VideoCameraTwoTone: VideoCameraTwoTone,
1554
- WalletFilled: WalletFilled,
1555
- WalletOutlined: WalletOutlined,
1556
- WalletTwoTone: WalletTwoTone,
1557
- WarningFilled: WarningFilled,
1558
- WarningOutlined: WarningOutlined,
1559
- WarningTwoTone: WarningTwoTone,
1560
- WechatFilled: WechatFilled,
1561
- WechatOutlined: WechatOutlined,
1562
- WeiboCircleFilled: WeiboCircleFilled,
1563
- WeiboCircleOutlined: WeiboCircleOutlined,
1564
- WeiboOutlined: WeiboOutlined,
1565
- WeiboSquareFilled: WeiboSquareFilled,
1566
- WeiboSquareOutlined: WeiboSquareOutlined,
1567
- WhatsAppOutlined: WhatsAppOutlined,
1568
- WifiOutlined: WifiOutlined,
1569
- WindowsFilled: WindowsFilled,
1570
- WindowsOutlined: WindowsOutlined,
1571
- WomanOutlined: WomanOutlined,
1572
- YahooFilled: YahooFilled,
1573
- YahooOutlined: YahooOutlined,
1574
- YoutubeFilled: YoutubeFilled,
1575
- YoutubeOutlined: YoutubeOutlined,
1576
- YuqueFilled: YuqueFilled,
1577
- YuqueOutlined: YuqueOutlined,
1578
- ZhihuCircleFilled: ZhihuCircleFilled,
1579
- ZhihuOutlined: ZhihuOutlined,
1580
- ZhihuSquareFilled: ZhihuSquareFilled,
1581
- ZoomInOutlined: ZoomInOutlined,
1582
- ZoomOutOutlined: ZoomOutOutlined,
1583
- };