@lobehub/icons 1.36.0 → 1.37.1
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.
@@ -9,7 +9,7 @@ function _objectWithoutProperties(source, excluded) { if (source == null) return
|
|
9
9
|
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
10
10
|
import { Icon } from '@lobehub/ui';
|
11
11
|
import { useTheme } from 'antd-style';
|
12
|
-
import {
|
12
|
+
import { Radar } from 'lucide-react';
|
13
13
|
import { forwardRef } from 'react';
|
14
14
|
import { jsx as _jsx } from "react/jsx-runtime";
|
15
15
|
var DefaultIcon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
@@ -20,7 +20,7 @@ var DefaultIcon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
20
20
|
var theme = useTheme();
|
21
21
|
return /*#__PURE__*/_jsx(Icon, _objectSpread({
|
22
22
|
color: color || theme.colorTextDescription,
|
23
|
-
icon:
|
23
|
+
icon: Radar,
|
24
24
|
ref: ref,
|
25
25
|
size: {
|
26
26
|
fontSize: size
|
@@ -31,6 +31,7 @@ import Google from "../Google";
|
|
31
31
|
import Groq from "../Groq";
|
32
32
|
import HuggingFace from "../HuggingFace";
|
33
33
|
import Hunyuan from "../Hunyuan";
|
34
|
+
import LmStudio from "../LmStudio";
|
34
35
|
import LobeHub from "../LobeHub";
|
35
36
|
import Minimax from "../Minimax";
|
36
37
|
import Mistral from "../Mistral";
|
@@ -269,4 +270,7 @@ export var providerMappings = [{
|
|
269
270
|
Icon: HuggingFace,
|
270
271
|
combineMultiple: 1.16,
|
271
272
|
keywords: [ModelProvider.HuggingFace]
|
273
|
+
}, {
|
274
|
+
Icon: LmStudio,
|
275
|
+
keywords: [ModelProvider.LmStudio]
|
272
276
|
}];
|
@@ -13,6 +13,7 @@ export var ModelProvider = /*#__PURE__*/function (ModelProvider) {
|
|
13
13
|
ModelProvider["Groq"] = "groq";
|
14
14
|
ModelProvider["HuggingFace"] = "huggingface";
|
15
15
|
ModelProvider["Hunyuan"] = "hunyuan";
|
16
|
+
ModelProvider["LmStudio"] = "lmstudio";
|
16
17
|
ModelProvider["LobeHub"] = "lobehub";
|
17
18
|
ModelProvider["Minimax"] = "minimax";
|
18
19
|
ModelProvider["Mistral"] = "mistral";
|