@lobehub/icons 1.10.2 → 1.10.3
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 +43 -0
- package/es/Bedrock/components/Color.js +6 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -54,6 +54,49 @@ Popular AI / LLM Model Brand SVG Logo and Icon Collection
|
|
|
54
54
|
- 🌳 **Tree Shakable**: The collection is tree-shakable, ensuring that you only import the icons that you use, which helps in reducing the overall bundle size of your project.
|
|
55
55
|
- 👥 **Active Community**: Lobe Icons boasts an active community of designers and developers. Engage with us on platforms like GitHub and Discord to contribute or get support.
|
|
56
56
|
|
|
57
|
+
**Supported brands:**
|
|
58
|
+
|
|
59
|
+
- [x] Anthropic (Claude)
|
|
60
|
+
- [x] Automatic1111 (SD Webui)
|
|
61
|
+
- [x] AWS
|
|
62
|
+
- [x] AWS (Bedrock)
|
|
63
|
+
- [x] Baichuan (百川)
|
|
64
|
+
- [x] Cloudflare
|
|
65
|
+
- [x] Cloudflare (WorkersAI)
|
|
66
|
+
- [x] Cohere (Command)
|
|
67
|
+
- [x] Fireworks
|
|
68
|
+
- [x] Github
|
|
69
|
+
- [x] Github (Copilot)
|
|
70
|
+
- [x] Google
|
|
71
|
+
- [x] Google (DeepMind)
|
|
72
|
+
- [x] Google (Gemini)
|
|
73
|
+
- [x] HuggingFace
|
|
74
|
+
- [x] Hunyuan (腾讯混元)
|
|
75
|
+
- [x] Meta (Llama)
|
|
76
|
+
- [x] Microsoft (Azure)
|
|
77
|
+
- [x] Microsoft (Bing)
|
|
78
|
+
- [x] Microsoft (Copilot)
|
|
79
|
+
- [x] Midjourney
|
|
80
|
+
- [x] Minimax
|
|
81
|
+
- [x] Mistral
|
|
82
|
+
- [x] Moonshot (月之暗面)
|
|
83
|
+
- [x] Ollama
|
|
84
|
+
- [x] OpenAI (ChatGPT)
|
|
85
|
+
- [x] OpenAI (DALL·E)
|
|
86
|
+
- [x] Perplexity
|
|
87
|
+
- [x] Pollinations
|
|
88
|
+
- [x] Replicate
|
|
89
|
+
- [x] Spark (讯飞星火)
|
|
90
|
+
- [x] Stability (StableDiffusion)
|
|
91
|
+
- [x] Tongyi (通义)
|
|
92
|
+
- [x] Wenxin (文心)
|
|
93
|
+
- [x] Zhipu (ChatGLM)
|
|
94
|
+
- [x] Zhipu (智谱)
|
|
95
|
+
- [x] Zhipu (智谱清言)
|
|
96
|
+
|
|
97
|
+
> \[!TIP]\
|
|
98
|
+
> More brands are being added, and `PR` is welcome at the same time.
|
|
99
|
+
|
|
57
100
|
<div align="right">
|
|
58
101
|
|
|
59
102
|
[![][back-to-top]](#readme-top)
|
|
@@ -4,6 +4,7 @@ var _excluded = ["size", "style"];
|
|
|
4
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
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
6
|
import { forwardRef } from 'react';
|
|
7
|
+
import { useFillId } from "../../hooks/useFillId";
|
|
7
8
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
8
9
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
9
10
|
var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
@@ -11,6 +12,9 @@ var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
11
12
|
size = _ref$size === void 0 ? '1em' : _ref$size,
|
|
12
13
|
style = _ref.style,
|
|
13
14
|
rest = _objectWithoutProperties(_ref, _excluded);
|
|
15
|
+
var _useFillId = useFillId('bedrock'),
|
|
16
|
+
id = _useFillId.id,
|
|
17
|
+
fill = _useFillId.fill;
|
|
14
18
|
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
|
15
19
|
height: size,
|
|
16
20
|
ref: ref,
|
|
@@ -24,7 +28,7 @@ var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
24
28
|
}, rest), {}, {
|
|
25
29
|
children: [/*#__PURE__*/_jsx("defs", {
|
|
26
30
|
children: /*#__PURE__*/_jsxs("linearGradient", {
|
|
27
|
-
id:
|
|
31
|
+
id: id,
|
|
28
32
|
x1: "80%",
|
|
29
33
|
x2: "20%",
|
|
30
34
|
y1: "20%",
|
|
@@ -42,7 +46,7 @@ var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
42
46
|
})
|
|
43
47
|
}), /*#__PURE__*/_jsx("path", {
|
|
44
48
|
d: "M13.05 15.513h3.08c.214 0 .389.177.389.394v1.82a1.704 1.704 0 011.296 1.661c0 .943-.755 1.708-1.685 1.708-.931 0-1.686-.765-1.686-1.708 0-.807.554-1.484 1.297-1.662v-1.425h-2.69v4.663a.395.395 0 01-.188.338l-2.69 1.641a.385.385 0 01-.405-.002l-4.926-3.086a.395.395 0 01-.185-.336V16.3L2.196 14.87A.395.395 0 012 14.555L2 14.528V9.406c0-.14.073-.27.192-.34l2.465-1.462V4.448c0-.129.062-.249.165-.322l.021-.014L9.77 1.058a.385.385 0 01.407 0l2.69 1.675a.395.395 0 01.185.336V7.6h3.856V5.683a1.704 1.704 0 01-1.296-1.662c0-.943.755-1.708 1.685-1.708.931 0 1.685.765 1.685 1.708 0 .807-.553 1.484-1.296 1.662v2.311a.391.391 0 01-.389.394h-4.245v1.806h6.624a1.69 1.69 0 011.64-1.313c.93 0 1.685.764 1.685 1.707 0 .943-.754 1.708-1.685 1.708a1.69 1.69 0 01-1.64-1.314H13.05v1.937h4.953l.915 1.18a1.66 1.66 0 01.84-.227c.931 0 1.685.764 1.685 1.707 0 .943-.754 1.708-1.685 1.708-.93 0-1.685-.765-1.685-1.708 0-.346.102-.668.276-.937l-.724-.935H13.05v1.806zM9.973 1.856L7.93 3.122V6.09h-.778V3.604L5.435 4.669v2.945l2.11 1.36L9.712 7.61V5.334h.778V7.83c0 .136-.07.263-.184.335L7.963 9.638v2.081l1.422 1.009-.446.646-1.406-.998-1.53 1.005-.423-.66 1.605-1.055v-1.99L5.038 8.29l-2.26 1.34v1.676l1.972-1.189.398.677-2.37 1.429V14.3l2.166 1.258 2.27-1.368.397.677-2.176 1.311V19.3l1.876 1.175 2.365-1.426.398.678-2.017 1.216 1.918 1.201 2.298-1.403v-5.78l-4.758 2.893-.4-.675 5.158-3.136V3.289L9.972 1.856zM16.13 18.47a.913.913 0 00-.908.92c0 .507.406.918.908.918a.913.913 0 00.907-.919.913.913 0 00-.907-.92zm3.63-3.81a.913.913 0 00-.908.92c0 .508.406.92.907.92a.913.913 0 00.908-.92.913.913 0 00-.908-.92zm1.555-4.99a.913.913 0 00-.908.92c0 .507.407.918.908.918a.913.913 0 00.907-.919.913.913 0 00-.907-.92zM17.296 3.1a.913.913 0 00-.907.92c0 .508.406.92.907.92a.913.913 0 00.908-.92.913.913 0 00-.908-.92z",
|
|
45
|
-
fill:
|
|
49
|
+
fill: fill,
|
|
46
50
|
fillRule: "nonzero"
|
|
47
51
|
})]
|
|
48
52
|
}));
|