@dtinsight/react-icons 1.48.0 → 1.50.0
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.
- package/dist/aiworks/index.d.ts +16 -1
- package/dist/aiworks/index.mjs +1 -1
- package/dist/index.d.ts +16 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/aiworks/index.d.ts
CHANGED
|
@@ -104,6 +104,11 @@ declare const DownOutlined: {
|
|
|
104
104
|
displayName: string;
|
|
105
105
|
};
|
|
106
106
|
|
|
107
|
+
declare const ENVOutlined: {
|
|
108
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
109
|
+
displayName: string;
|
|
110
|
+
};
|
|
111
|
+
|
|
107
112
|
declare const EditOutlined: {
|
|
108
113
|
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
109
114
|
displayName: string;
|
|
@@ -229,6 +234,11 @@ declare const OrchestrationOutlined: {
|
|
|
229
234
|
displayName: string;
|
|
230
235
|
};
|
|
231
236
|
|
|
237
|
+
declare const PlayOutlined: {
|
|
238
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
239
|
+
displayName: string;
|
|
240
|
+
};
|
|
241
|
+
|
|
232
242
|
declare const PlusOutlined: {
|
|
233
243
|
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
234
244
|
displayName: string;
|
|
@@ -339,9 +349,14 @@ declare const YuqueColored: {
|
|
|
339
349
|
displayName: string;
|
|
340
350
|
};
|
|
341
351
|
|
|
352
|
+
declare const YuqueIconColored: {
|
|
353
|
+
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
354
|
+
displayName: string;
|
|
355
|
+
};
|
|
356
|
+
|
|
342
357
|
declare const YuqueSelectedColored: {
|
|
343
358
|
({ disabled, hoverable, active, size, color, className, style, spin, ...restProps }: IconProps): React.JSX.Element;
|
|
344
359
|
displayName: string;
|
|
345
360
|
};
|
|
346
361
|
|
|
347
|
-
export { AddNodeOutlined, AgentFilled, AllCategoriesFilled, AppManagerFilled, AppManagerOutlined, AttachmentOutlined, BookOutlined, BoxFilled, CatalogOutlined, ClockCircleOutlined, CloseOutlined, CommonknowledgebaseFilled, ConversationConfigurationOutlined, CopyOutlined, DataIntegrationFilled, DeleteOutlined, DocumentMedicineOutlined, DocumentOutlined, DownOutlined, EditOutlined, EraserOutlined, ExpandFilled, FileListFilled, FileListOutlined, FolderAddOutlined, FolderMoveOutlined, FolderOutlined, HashtagSquareOutlined, IconProps, ImportOutlined, InterfaceFilled, KnowledgeBaseFilled, KnowledgeBaseOutlined, LeftOutlined, LockOutlined, LogFilled, LogOutlined, LoginFilled, MenuCollapseOutlined, MenuExpandOutlined, ModelVendorFilled, ModelVendorOutlined, MoreOutlined, OrchestrationFilled, OrchestrationOutlined, PlusOutlined, PublishFilled, PublishOutlined, QuestionOutlined, RecallTestFilled, RecallTestOutlined, RefreshOutlined, RetrievalFailureOutlined, RightOutlined, RunFilled, SchedulingInfoOutlined, SearchOutlined, SetUpFilled, SetUpOutlined, SlideBarCollapseOutlined, TextOutlined, ToolManagementFilled, ToolManagementOutlined, UpOutlined, WorkflowFilled, YuqueCardColored, YuqueColored, YuqueSelectedColored };
|
|
362
|
+
export { AddNodeOutlined, AgentFilled, AllCategoriesFilled, AppManagerFilled, AppManagerOutlined, AttachmentOutlined, BookOutlined, BoxFilled, CatalogOutlined, ClockCircleOutlined, CloseOutlined, CommonknowledgebaseFilled, ConversationConfigurationOutlined, CopyOutlined, DataIntegrationFilled, DeleteOutlined, DocumentMedicineOutlined, DocumentOutlined, DownOutlined, ENVOutlined, EditOutlined, EraserOutlined, ExpandFilled, FileListFilled, FileListOutlined, FolderAddOutlined, FolderMoveOutlined, FolderOutlined, HashtagSquareOutlined, IconProps, ImportOutlined, InterfaceFilled, KnowledgeBaseFilled, KnowledgeBaseOutlined, LeftOutlined, LockOutlined, LogFilled, LogOutlined, LoginFilled, MenuCollapseOutlined, MenuExpandOutlined, ModelVendorFilled, ModelVendorOutlined, MoreOutlined, OrchestrationFilled, OrchestrationOutlined, PlayOutlined, PlusOutlined, PublishFilled, PublishOutlined, QuestionOutlined, RecallTestFilled, RecallTestOutlined, RefreshOutlined, RetrievalFailureOutlined, RightOutlined, RunFilled, SchedulingInfoOutlined, SearchOutlined, SetUpFilled, SetUpOutlined, SlideBarCollapseOutlined, TextOutlined, ToolManagementFilled, ToolManagementOutlined, UpOutlined, WorkflowFilled, YuqueCardColored, YuqueColored, YuqueIconColored, YuqueSelectedColored };
|