@lobehub/icons 1.11.0 → 1.11.2
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/README.md +1 -1
- package/es/Bedrock/components/Combine.js +1 -0
- package/es/Gemma/components/Simple.d.ts +3 -0
- package/es/Gemma/components/Simple.js +30 -0
- package/es/Gemma/index.d.ts +1 -0
- package/es/Gemma/index.js +2 -0
- package/es/GithubCopilot/components/Avatar.js +1 -1
- package/es/Google/components/BrandColor.js +1 -0
- package/es/IconCombine/index.js +1 -0
- package/es/Moonshot/components/Combine.js +1 -0
- package/es/Ollama/components/Combine.js +1 -0
- package/es/OpenAI/components/Combine.js +1 -0
- package/es/Perplexity/components/Combine.js +1 -0
- package/es/Zhipu/components/Combine.js +1 -0
- package/package.json +3 -5
package/README.md
CHANGED
|
@@ -70,8 +70,8 @@ Popular AI / LLM Model Brand SVG Logo and Icon Collection
|
|
|
70
70
|
- [x] Google
|
|
71
71
|
- [x] Google (Colab)
|
|
72
72
|
- [x] Google (DeepMind)
|
|
73
|
-
- [x] Google (Gemina)
|
|
74
73
|
- [x] Google (Gemini)
|
|
74
|
+
- [x] Google (Gemma)
|
|
75
75
|
- [x] HuggingFace
|
|
76
76
|
- [x] Hunyuan (腾讯混元)
|
|
77
77
|
- [x] Meta (Llama)
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
|
+
var _excluded = ["size", "style"];
|
|
4
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
5
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
6
|
+
import { forwardRef } from 'react';
|
|
7
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
8
|
+
var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
9
|
+
var _ref$size = _ref.size,
|
|
10
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
|
11
|
+
style = _ref.style,
|
|
12
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
13
|
+
return /*#__PURE__*/_jsx("svg", _objectSpread(_objectSpread({
|
|
14
|
+
fill: "currentColor",
|
|
15
|
+
height: size,
|
|
16
|
+
ref: ref,
|
|
17
|
+
style: _objectSpread({
|
|
18
|
+
flex: 'none',
|
|
19
|
+
lineHeight: 1
|
|
20
|
+
}, style),
|
|
21
|
+
viewBox: "0 0 24 24",
|
|
22
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
23
|
+
}, rest), {}, {
|
|
24
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
25
|
+
d: "M12 0a14.305 14.305 0 0 0 12 12 14.305 14.305 0 0 0-12 12A14.304 14.304 0 0 0 0 12 14.304 14.304 0 0 0 12 0Zm.031 4.5A14.281 14.281 0 0 1 9 9a14.742 14.742 0 0 1-4.5 3.063 14.281 14.281 0 0 1 4.5 3.03 14.281 14.281 0 0 1 3.031 4.5 14.742 14.742 0 0 1 3.063-4.5 14.281 14.281 0 0 1 4.5-3.03A14.742 14.742 0 0 1 15.094 9a14.74 14.74 0 0 1-3.063-4.5Z",
|
|
26
|
+
fillRule: "evenodd"
|
|
27
|
+
})
|
|
28
|
+
}));
|
|
29
|
+
});
|
|
30
|
+
export default Icon;
|
package/es/Gemma/index.d.ts
CHANGED
package/es/Gemma/index.js
CHANGED
|
@@ -2,11 +2,13 @@ import Avatar from "./components/Avatar";
|
|
|
2
2
|
import Color from "./components/Color";
|
|
3
3
|
import Combine from "./components/Combine";
|
|
4
4
|
import Mono from "./components/Mono";
|
|
5
|
+
import Simple from "./components/Simple";
|
|
5
6
|
import Text from "./components/Text";
|
|
6
7
|
import { COLOR_GRADIENT, COLOR_PRIMARY } from "./style";
|
|
7
8
|
var Icons = Mono;
|
|
8
9
|
Icons.Color = Color;
|
|
9
10
|
Icons.Text = Text;
|
|
11
|
+
Icons.Simple = Simple;
|
|
10
12
|
Icons.Combine = Combine;
|
|
11
13
|
Icons.Avatar = Avatar;
|
|
12
14
|
Icons.colorPrimary = COLOR_PRIMARY;
|
|
@@ -12,6 +12,7 @@ var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
12
12
|
style = _ref.style,
|
|
13
13
|
rest = _objectWithoutProperties(_ref, _excluded);
|
|
14
14
|
return /*#__PURE__*/_jsx("svg", _objectSpread(_objectSpread({
|
|
15
|
+
"aria-label": 'Google',
|
|
15
16
|
height: size,
|
|
16
17
|
ref: ref,
|
|
17
18
|
style: _objectSpread({
|
package/es/IconCombine/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobehub/icons",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.2",
|
|
4
4
|
"description": "Popular AI / LLM Model Brand SVG Logo and Icon Collection",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lobehub",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"@types/react": "18.2.40",
|
|
84
84
|
"@types/react-dom": "^18",
|
|
85
85
|
"@vitest/coverage-v8": "latest",
|
|
86
|
-
"antd": "^5.
|
|
86
|
+
"antd": "^5.14.1",
|
|
87
87
|
"antd-style": "^3",
|
|
88
88
|
"babel-plugin-antd-style": "latest",
|
|
89
89
|
"commitlint": "^18",
|
|
@@ -109,10 +109,8 @@
|
|
|
109
109
|
"vitest": "latest"
|
|
110
110
|
},
|
|
111
111
|
"peerDependencies": {
|
|
112
|
-
"polished": ">=4",
|
|
113
112
|
"react": ">=18",
|
|
114
|
-
"react-dom": ">=18"
|
|
115
|
-
"react-layout-kit": ">=1"
|
|
113
|
+
"react-dom": ">=18"
|
|
116
114
|
},
|
|
117
115
|
"publishConfig": {
|
|
118
116
|
"access": "public",
|