@lobehub/icons 2.41.0 → 2.43.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.
Files changed (51) hide show
  1. package/README.md +96 -93
  2. package/es/GoogleCloud/components/Avatar.d.ts +5 -0
  3. package/es/GoogleCloud/components/Avatar.js +25 -0
  4. package/es/GoogleCloud/components/BrandColor.d.ts +3 -0
  5. package/es/GoogleCloud/components/BrandColor.js +57 -0
  6. package/es/GoogleCloud/components/BrandMono.d.ts +3 -0
  7. package/es/GoogleCloud/components/BrandMono.js +51 -0
  8. package/es/GoogleCloud/components/Color.d.ts +3 -0
  9. package/es/GoogleCloud/components/Color.js +48 -0
  10. package/es/GoogleCloud/components/Mono.d.ts +3 -0
  11. package/es/GoogleCloud/components/Mono.js +41 -0
  12. package/es/GoogleCloud/index.d.ts +15 -0
  13. package/es/GoogleCloud/index.js +14 -0
  14. package/es/GoogleCloud/style.d.ts +5 -0
  15. package/es/GoogleCloud/style.js +7 -0
  16. package/es/Huawei/components/Avatar.d.ts +5 -0
  17. package/es/Huawei/components/Avatar.js +25 -0
  18. package/es/Huawei/components/Color.d.ts +3 -0
  19. package/es/Huawei/components/Color.js +39 -0
  20. package/es/Huawei/components/Combine.d.ts +7 -0
  21. package/es/Huawei/components/Combine.js +32 -0
  22. package/es/Huawei/components/Mono.d.ts +3 -0
  23. package/es/Huawei/components/Mono.js +40 -0
  24. package/es/Huawei/components/Text.d.ts +3 -0
  25. package/es/Huawei/components/Text.js +39 -0
  26. package/es/Huawei/components/TextCn.d.ts +3 -0
  27. package/es/Huawei/components/TextCn.js +39 -0
  28. package/es/Huawei/index.d.ts +17 -0
  29. package/es/Huawei/index.js +16 -0
  30. package/es/Huawei/style.d.ts +7 -0
  31. package/es/Huawei/style.js +9 -0
  32. package/es/HuaweiCloud/components/Avatar.d.ts +5 -0
  33. package/es/HuaweiCloud/components/Avatar.js +25 -0
  34. package/es/HuaweiCloud/components/Color.d.ts +3 -0
  35. package/es/HuaweiCloud/components/Color.js +39 -0
  36. package/es/HuaweiCloud/components/Combine.d.ts +7 -0
  37. package/es/HuaweiCloud/components/Combine.js +32 -0
  38. package/es/HuaweiCloud/components/Mono.d.ts +3 -0
  39. package/es/HuaweiCloud/components/Mono.js +40 -0
  40. package/es/HuaweiCloud/components/Text.d.ts +3 -0
  41. package/es/HuaweiCloud/components/Text.js +39 -0
  42. package/es/HuaweiCloud/components/TextCn.d.ts +3 -0
  43. package/es/HuaweiCloud/components/TextCn.js +39 -0
  44. package/es/HuaweiCloud/index.d.ts +17 -0
  45. package/es/HuaweiCloud/index.js +16 -0
  46. package/es/HuaweiCloud/style.d.ts +7 -0
  47. package/es/HuaweiCloud/style.js +9 -0
  48. package/es/icons.d.ts +3 -0
  49. package/es/icons.js +3 -0
  50. package/es/toc.js +54 -0
  51. package/package.json +1 -1
@@ -0,0 +1,17 @@
1
+ import Avatar from './components/Avatar';
2
+ import Color from './components/Color';
3
+ import Combine from './components/Combine';
4
+ import Mono from './components/Mono';
5
+ import Text from './components/Text';
6
+ import TextCn from './components/TextCn';
7
+ export type CompoundedIcon = typeof Mono & {
8
+ Avatar: typeof Avatar;
9
+ Color: typeof Color;
10
+ Combine: typeof Combine;
11
+ Text: typeof Text;
12
+ TextCn: typeof TextCn;
13
+ colorPrimary: string;
14
+ title: string;
15
+ };
16
+ declare const Icons: CompoundedIcon;
17
+ export default Icons;
@@ -0,0 +1,16 @@
1
+ import Avatar from "./components/Avatar";
2
+ import Color from "./components/Color";
3
+ import Combine from "./components/Combine";
4
+ import Mono from "./components/Mono";
5
+ import Text from "./components/Text";
6
+ import TextCn from "./components/TextCn";
7
+ import { COLOR_PRIMARY, TITLE } from "./style";
8
+ var Icons = Mono;
9
+ Icons.Color = Color;
10
+ Icons.Text = Text;
11
+ Icons.TextCn = TextCn;
12
+ Icons.Avatar = Avatar;
13
+ Icons.Combine = Combine;
14
+ Icons.colorPrimary = COLOR_PRIMARY;
15
+ Icons.title = TITLE;
16
+ export default Icons;
@@ -0,0 +1,7 @@
1
+ export declare const TITLE = "Huawei";
2
+ export declare const COMBINE_TEXT_MULTIPLE = 0.75;
3
+ export declare const COMBINE_SPACE_MULTIPLE = 0.3;
4
+ export declare const COLOR_PRIMARY = "#C7000B";
5
+ export declare const AVATAR_BACKGROUND = "#C7000B";
6
+ export declare const AVATAR_COLOR = "#fff";
7
+ export declare const AVATAR_ICON_MULTIPLE = 0.75;
@@ -0,0 +1,9 @@
1
+ export var TITLE = 'Huawei';
2
+ export var COMBINE_TEXT_MULTIPLE = 0.75;
3
+ export var COMBINE_SPACE_MULTIPLE = 0.3;
4
+ export var COLOR_PRIMARY = '#C7000B';
5
+
6
+ // Avatar constants
7
+ export var AVATAR_BACKGROUND = COLOR_PRIMARY;
8
+ export var AVATAR_COLOR = '#fff';
9
+ export var AVATAR_ICON_MULTIPLE = 0.75;
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ import { type IconAvatarProps } from "../../features/IconAvatar";
3
+ export type AvatarProps = Omit<IconAvatarProps, 'Icon'>;
4
+ declare const Avatar: import("react").NamedExoticComponent<AvatarProps>;
5
+ export default Avatar;
@@ -0,0 +1,25 @@
1
+ 'use client';
2
+
3
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
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
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
7
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
8
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
9
+ function _objectDestructuringEmpty(obj) { if (obj == null) throw new TypeError("Cannot destructure " + obj); }
10
+ import { memo } from 'react';
11
+ import IconAvatar from "../../features/IconAvatar";
12
+ import { AVATAR_BACKGROUND, AVATAR_COLOR, AVATAR_ICON_MULTIPLE, TITLE } from "../style";
13
+ import Mono from "./Mono";
14
+ import { jsx as _jsx } from "react/jsx-runtime";
15
+ var Avatar = /*#__PURE__*/memo(function (_ref) {
16
+ var rest = Object.assign({}, (_objectDestructuringEmpty(_ref), _ref));
17
+ return /*#__PURE__*/_jsx(IconAvatar, _objectSpread({
18
+ Icon: Mono,
19
+ "aria-label": TITLE,
20
+ background: AVATAR_BACKGROUND,
21
+ color: AVATAR_COLOR,
22
+ iconMultiple: AVATAR_ICON_MULTIPLE
23
+ }, rest));
24
+ });
25
+ export default Avatar;
@@ -0,0 +1,3 @@
1
+ import type { IconType } from "../../types";
2
+ declare const Icon: IconType;
3
+ export default Icon;
@@ -0,0 +1,39 @@
1
+ 'use client';
2
+
3
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
4
+ var _excluded = ["size", "style"];
5
+ 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; }
6
+ 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; }
7
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
8
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
9
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
10
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
11
+ 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; }
12
+ import { memo } from 'react';
13
+ import { TITLE } from "../style";
14
+ import { jsx as _jsx } from "react/jsx-runtime";
15
+ import { jsxs as _jsxs } from "react/jsx-runtime";
16
+ var Icon = /*#__PURE__*/memo(function (_ref) {
17
+ var _ref$size = _ref.size,
18
+ size = _ref$size === void 0 ? '1em' : _ref$size,
19
+ style = _ref.style,
20
+ rest = _objectWithoutProperties(_ref, _excluded);
21
+ return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
22
+ height: size,
23
+ style: _objectSpread({
24
+ flex: 'none',
25
+ lineHeight: 1
26
+ }, style),
27
+ viewBox: "0 0 24 24",
28
+ width: size,
29
+ xmlns: "http://www.w3.org/2000/svg"
30
+ }, rest), {}, {
31
+ children: [/*#__PURE__*/_jsx("title", {
32
+ children: TITLE
33
+ }), /*#__PURE__*/_jsx("path", {
34
+ d: "M10.341 17.042s.062-.061 0-.061C7.516 10.902 3.646 6.22 3.646 6.22S1.557 8.168 1.68 10.174c.061 1.52 1.228 2.37 1.228 2.37 1.843 1.763 6.266 4.012 7.31 4.499h.123zm-.737 1.52c0-.061-.123-.061-.123-.061l-7.371.243c.798 1.398 2.15 2.492 3.563 2.188.983-.243 3.194-1.763 3.87-2.25.123-.12.061-.12.061-.12zm.123-.67c.062-.06 0-.12 0-.12C6.471 15.581.206 12.3.206 12.3c-.553 1.763.184 3.161.184 3.161.798 1.702 2.334 2.189 2.334 2.189.676.303 1.413.303 1.413.303h5.529c.061 0 .061-.06.061-.06zm.492-14.831c-.308 0-1.168.243-1.168.243-1.965.486-2.395 2.249-2.395 2.249-.369 1.094 0 2.31 0 2.31.675 2.857 3.87 7.598 4.545 8.57l.062.062c.061 0 .061-.061.061-.061C12.43 5.796 10.22 3.06 10.22 3.06zm2.457 13.373c.061 0 .123-.061.123-.061.737-1.033 3.87-5.714 4.545-8.57 0 0 .369-1.399 0-2.31 0 0-.491-1.764-2.457-2.25 0 0-.553-.121-1.167-.243 0 0-2.211 2.796-1.106 13.312 0 .122.062.122.062.122zm1.72 2.067s-.062 0-.062.06v.122c.738.486 2.826 2.006 3.87 2.249 0 0 1.905.669 3.563-2.188l-7.371-.243zm9.398-6.261s-6.265 3.343-9.521 5.531c0 0-.062.06-.062.122 0 0 0 .06.062.06h5.651s.553 0 1.29-.303c0 0 1.536-.487 2.396-2.25 0-.06.737-1.458.184-3.16zM13.66 17.042s.061.06.122 0c1.045-.547 5.468-2.736 7.31-4.499 0 0 1.168-.911 1.23-2.37.122-2.067-1.967-3.951-1.967-3.951s-3.87 4.559-6.695 10.698c0 0-.062.06 0 .122z",
35
+ fill: "#C7000B"
36
+ })]
37
+ }));
38
+ });
39
+ export default Icon;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { type IconCombineProps } from "../../features/IconCombine";
3
+ export interface CombineProps extends Omit<IconCombineProps, 'Icon' | 'Text'> {
4
+ type?: 'color' | 'mono';
5
+ }
6
+ declare const Combine: import("react").NamedExoticComponent<CombineProps>;
7
+ export default Combine;
@@ -0,0 +1,32 @@
1
+ 'use client';
2
+
3
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
4
+ var _excluded = ["type"];
5
+ 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; }
6
+ 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; }
7
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
8
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
9
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
10
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
11
+ 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; }
12
+ import { memo } from 'react';
13
+ import IconCombine from "../../features/IconCombine";
14
+ import { COMBINE_SPACE_MULTIPLE, COMBINE_TEXT_MULTIPLE, TITLE } from "../style";
15
+ import Color from "./Color";
16
+ import Mono from "./Mono";
17
+ import Text from "./Text";
18
+ import { jsx as _jsx } from "react/jsx-runtime";
19
+ var Combine = /*#__PURE__*/memo(function (_ref) {
20
+ var _ref$type = _ref.type,
21
+ type = _ref$type === void 0 ? 'mono' : _ref$type,
22
+ rest = _objectWithoutProperties(_ref, _excluded);
23
+ var Icon = type === 'color' ? Color : Mono;
24
+ return /*#__PURE__*/_jsx(IconCombine, _objectSpread({
25
+ Icon: Icon,
26
+ Text: Text,
27
+ "aria-label": TITLE,
28
+ spaceMultiple: COMBINE_SPACE_MULTIPLE,
29
+ textMultiple: COMBINE_TEXT_MULTIPLE
30
+ }, rest));
31
+ });
32
+ export default Combine;
@@ -0,0 +1,3 @@
1
+ import type { IconType } from "../../types";
2
+ declare const Icon: IconType;
3
+ export default Icon;
@@ -0,0 +1,40 @@
1
+ 'use client';
2
+
3
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
4
+ var _excluded = ["size", "style"];
5
+ 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; }
6
+ 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; }
7
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
8
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
9
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
10
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
11
+ 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; }
12
+ import { memo } from 'react';
13
+ import { TITLE } from "../style";
14
+ import { jsx as _jsx } from "react/jsx-runtime";
15
+ import { jsxs as _jsxs } from "react/jsx-runtime";
16
+ var Icon = /*#__PURE__*/memo(function (_ref) {
17
+ var _ref$size = _ref.size,
18
+ size = _ref$size === void 0 ? '1em' : _ref$size,
19
+ style = _ref.style,
20
+ rest = _objectWithoutProperties(_ref, _excluded);
21
+ return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
22
+ fill: "currentColor",
23
+ fillRule: "evenodd",
24
+ height: size,
25
+ style: _objectSpread({
26
+ flex: 'none',
27
+ lineHeight: 1
28
+ }, style),
29
+ viewBox: "0 0 24 24",
30
+ width: size,
31
+ xmlns: "http://www.w3.org/2000/svg"
32
+ }, rest), {}, {
33
+ children: [/*#__PURE__*/_jsx("title", {
34
+ children: TITLE
35
+ }), /*#__PURE__*/_jsx("path", {
36
+ d: "M10.341 17.042s.062-.061 0-.061C7.516 10.902 3.646 6.22 3.646 6.22S1.557 8.168 1.68 10.174c.061 1.52 1.228 2.37 1.228 2.37 1.843 1.763 6.266 4.012 7.31 4.499h.123zm-.737 1.52c0-.061-.123-.061-.123-.061l-7.371.243c.798 1.398 2.15 2.492 3.563 2.188.983-.243 3.194-1.763 3.87-2.25.123-.12.061-.12.061-.12zm.123-.67c.062-.06 0-.12 0-.12C6.471 15.581.206 12.3.206 12.3c-.553 1.763.184 3.161.184 3.161.798 1.702 2.334 2.189 2.334 2.189.676.303 1.413.303 1.413.303h5.529c.061 0 .061-.06.061-.06zm.492-14.831c-.308 0-1.168.243-1.168.243-1.965.486-2.395 2.249-2.395 2.249-.369 1.094 0 2.31 0 2.31.675 2.857 3.87 7.598 4.545 8.57l.062.062c.061 0 .061-.061.061-.061C12.43 5.796 10.22 3.06 10.22 3.06zm2.457 13.373c.061 0 .123-.061.123-.061.737-1.033 3.87-5.714 4.545-8.57 0 0 .369-1.399 0-2.31 0 0-.491-1.764-2.457-2.25 0 0-.553-.121-1.167-.243 0 0-2.211 2.796-1.106 13.312 0 .122.062.122.062.122zm1.72 2.067s-.062 0-.062.06v.122c.738.486 2.826 2.006 3.87 2.249 0 0 1.905.669 3.563-2.188l-7.371-.243zm9.398-6.261s-6.265 3.343-9.521 5.531c0 0-.062.06-.062.122 0 0 0 .06.062.06h5.651s.553 0 1.29-.303c0 0 1.536-.487 2.396-2.25 0-.06.737-1.458.184-3.16zM13.66 17.042s.061.06.122 0c1.045-.547 5.468-2.736 7.31-4.499 0 0 1.168-.911 1.23-2.37.122-2.067-1.967-3.951-1.967-3.951s-3.87 4.559-6.695 10.698c0 0-.062.06 0 .122z"
37
+ })]
38
+ }));
39
+ });
40
+ export default Icon;
@@ -0,0 +1,3 @@
1
+ import type { IconType } from "../../types";
2
+ declare const Icon: IconType;
3
+ export default Icon;
@@ -0,0 +1,39 @@
1
+ 'use client';
2
+
3
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
4
+ var _excluded = ["size", "style"];
5
+ 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; }
6
+ 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; }
7
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
8
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
9
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
10
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
11
+ 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; }
12
+ import { memo } from 'react';
13
+ import { TITLE } from "../style";
14
+ import { jsx as _jsx } from "react/jsx-runtime";
15
+ import { jsxs as _jsxs } from "react/jsx-runtime";
16
+ var Icon = /*#__PURE__*/memo(function (_ref) {
17
+ var _ref$size = _ref.size,
18
+ size = _ref$size === void 0 ? '1em' : _ref$size,
19
+ style = _ref.style,
20
+ rest = _objectWithoutProperties(_ref, _excluded);
21
+ return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
22
+ fill: "currentColor",
23
+ fillRule: "evenodd",
24
+ height: size,
25
+ style: _objectSpread({
26
+ flex: 'none',
27
+ lineHeight: 1
28
+ }, style),
29
+ viewBox: "0 0 209 24",
30
+ xmlns: "http://www.w3.org/2000/svg"
31
+ }, rest), {}, {
32
+ children: [/*#__PURE__*/_jsx("title", {
33
+ children: TITLE
34
+ }), /*#__PURE__*/_jsx("path", {
35
+ d: "M5.831 9.952h8.72V2.343h3.857v19.34h-3.857v-8.322H5.83v8.322H2V2.343h3.831v7.61zM34.853 2.343h3.832v11.52c0 1.655-.326 3.1-.978 4.332a6.835 6.835 0 01-2.827 2.828c-1.233.651-2.695.977-4.386.977-1.709 0-3.18-.326-4.413-.977a6.835 6.835 0 01-2.827-2.828c-.652-1.232-.978-2.677-.978-4.332V2.343h3.832v10.595c0 1.867.378 3.258 1.136 4.174.775.916 1.858 1.374 3.25 1.374 1.374 0 2.44-.458 3.197-1.374.775-.916 1.162-2.307 1.162-4.174V2.343zM51.006 2.343l7.822 19.34h-4.07l-1.69-4.412h-7.531l-1.638 4.412h-3.831l7.583-19.34h3.355zm.82 11.652l-2.59-6.79-2.51 6.79h5.1zM71.817 2.343l4.017 13 3.699-13h3.699l-6.024 19.34h-2.96L70.18 9.054l-3.937 12.629H63.31l-6.288-19.34h3.963l3.964 13 3.804-13h3.066zM97.126 13.52H89.28v4.808h9.063v3.355H85.448V2.343H98.05v3.33H89.28v4.544h7.847v3.302zM105.354 21.683h-3.831V2.343h3.831v19.34zM124.785 18.486c.934 0 1.735-.247 2.405-.74.687-.493 1.233-1.18 1.638-2.06l3.197 1.849c-.476 1.303-1.348 2.378-2.616 3.223-1.268.828-2.783 1.242-4.545 1.242-1.708 0-3.267-.414-4.676-1.242-1.41-.828-2.528-1.999-3.356-3.514-.828-1.532-1.242-3.284-1.242-5.257 0-1.973.405-3.717 1.216-5.231.827-1.515 1.946-2.686 3.355-3.514C121.588 2.414 123.156 2 124.864 2c1.762 0 3.277.423 4.545 1.268 1.268.828 2.14 1.894 2.616 3.197l-3.197 1.85c-.405-.881-.951-1.568-1.638-2.061-.67-.494-1.471-.74-2.405-.74-.986 0-1.867.264-2.642.792-.775.529-1.392 1.286-1.85 2.273-.44.968-.66 2.104-.66 3.408 0 1.303.22 2.448.66 3.434.458.987 1.075 1.744 1.85 2.273.775.528 1.656.792 2.642.792zM134.5 2.343h3.831v15.905h8.799v3.435H134.5V2.343zM147.844 11.987c0-2.026.405-3.796 1.216-5.31.81-1.515 1.911-2.67 3.302-3.462 1.41-.81 2.977-1.215 4.704-1.215 1.726 0 3.285.405 4.676 1.215 1.41.793 2.519 1.947 3.33 3.461.828 1.515 1.242 3.285 1.242 5.31 0 2.044-.414 3.823-1.242 5.338-.811 1.514-1.92 2.677-3.33 3.487-1.391.793-2.95 1.189-4.676 1.189-1.727 0-3.294-.396-4.704-1.189-1.391-.81-2.492-1.973-3.302-3.487-.811-1.515-1.216-3.294-1.216-5.337zm4.043 0c0 1.286.211 2.422.634 3.408.44.986 1.048 1.753 1.823 2.299.793.528 1.7.792 2.722.792 1.021 0 1.92-.264 2.695-.793.792-.546 1.4-1.312 1.823-2.298.44-.986.66-2.122.66-3.408s-.22-2.413-.66-3.382c-.423-.986-1.031-1.744-1.823-2.272-.775-.546-1.674-.82-2.695-.82-1.022 0-1.929.274-2.722.82-.775.528-1.383 1.286-1.823 2.272-.423.969-.634 2.096-.634 3.382zM181.829 2.343h3.831v11.52c0 1.655-.326 3.1-.977 4.332a6.838 6.838 0 01-2.828 2.828c-1.233.651-2.695.977-4.386.977-1.708 0-3.179-.326-4.412-.977a6.838 6.838 0 01-2.828-2.828c-.651-1.232-.977-2.677-.977-4.332V2.343h3.831v10.595c0 1.867.379 3.258 1.136 4.174.775.916 1.859 1.374 3.25 1.374 1.374 0 2.44-.458 3.197-1.374.775-.916 1.163-2.307 1.163-4.174V2.343zM195.959 2.343c1.885 0 3.585.38 5.1 1.137a8.579 8.579 0 013.62 3.328c.881 1.445 1.321 3.17 1.321 5.179 0 2.008-.44 3.743-1.321 5.205a8.796 8.796 0 01-3.594 3.355c-1.514.757-3.223 1.136-5.126 1.136h-6.447V2.343h6.447zm-.449 16.064c2.079 0 3.673-.555 4.783-1.665 1.109-1.11 1.664-2.694 1.664-4.755 0-2.026-.563-3.593-1.691-4.703-1.109-1.127-2.695-1.69-4.756-1.69h-2.166v12.813h2.166z"
36
+ })]
37
+ }));
38
+ });
39
+ export default Icon;
@@ -0,0 +1,3 @@
1
+ import type { IconType } from "../../types";
2
+ declare const Icon: IconType;
3
+ export default Icon;
@@ -0,0 +1,39 @@
1
+ 'use client';
2
+
3
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
4
+ var _excluded = ["size", "style"];
5
+ 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; }
6
+ 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; }
7
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
8
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
9
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
10
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
11
+ 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; }
12
+ import { memo } from 'react';
13
+ import { TITLE } from "../style";
14
+ import { jsx as _jsx } from "react/jsx-runtime";
15
+ import { jsxs as _jsxs } from "react/jsx-runtime";
16
+ var Icon = /*#__PURE__*/memo(function (_ref) {
17
+ var _ref$size = _ref.size,
18
+ size = _ref$size === void 0 ? '1em' : _ref$size,
19
+ style = _ref.style,
20
+ rest = _objectWithoutProperties(_ref, _excluded);
21
+ return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
22
+ fill: "currentColor",
23
+ fillRule: "evenodd",
24
+ height: size,
25
+ style: _objectSpread({
26
+ flex: 'none',
27
+ lineHeight: 1
28
+ }, style),
29
+ viewBox: "0 0 66 24",
30
+ xmlns: "http://www.w3.org/2000/svg"
31
+ }, rest), {}, {
32
+ children: [/*#__PURE__*/_jsx("title", {
33
+ children: TITLE
34
+ }), /*#__PURE__*/_jsx("path", {
35
+ d: "M5.12 9.182a39.768 39.768 0 01-1.924 1.695L2 8.695a23.043 23.043 0 003.077-3.136C6.045 4.387 6.843 3.201 7.469 2l2.286.975a32.886 32.886 0 01-2.05 3.262v7.521H5.118V9.183zm3.482-1.186c.925-.24 1.965-.544 3.119-.911V2.487h2.606v3.58a37.323 37.323 0 005.299-2.86l1.196 2.14a32.806 32.806 0 01-6.495 3.39v.911c0 .438.079.735.235.89.171.155.47.247.898.276.213.014.534.02.961.02.527 0 .926-.013 1.197-.042.512-.042.847-.134 1.004-.275.17-.141.285-.43.341-.869.072-.678.107-1.3.107-1.864l2.372.678c-.043.763-.093 1.44-.15 2.034-.114.72-.277 1.257-.491 1.61-.2.353-.506.607-.919.763-.399.14-.997.24-1.795.296a27.91 27.91 0 01-3.76 0c-.64-.056-1.146-.162-1.517-.317a1.703 1.703 0 01-.833-.806c-.17-.381-.256-.91-.256-1.589v-.762c-.655.226-1.431.466-2.329.72l-.79-2.415zm4.572 6.991h8.29v2.543h-8.29v4.428h-2.65V17.53H2.278v-2.543h8.246v-1.695h2.65v1.695zM41.995 6.83v.636c0 2.048-.05 4.047-.15 5.996-.1 1.935-.264 3.602-.492 5-.128.763-.327 1.356-.598 1.78-.27.437-.662.755-1.175.953-.498.198-1.182.296-2.05.296-1.268 0-2.465-.077-3.59-.232l-.534-2.564c.527.07 1.09.134 1.688.19.612.057 1.225.092 1.837.106.442 0 .776-.042 1.004-.127.228-.099.406-.268.534-.508s.242-.615.342-1.123c.128-.72.235-1.758.32-3.114.1-1.37.15-2.613.15-3.73 0-.465-.007-.797-.021-.995h-6.068c-.285 1.85-.719 3.482-1.303 4.894-.57 1.398-1.389 2.72-2.457 3.962-1.054 1.243-2.45 2.493-4.187 3.75l-1.86-2.076c1.51-1.031 2.728-2.062 3.654-3.093.94-1.032 1.667-2.133 2.18-3.306.526-1.186.925-2.563 1.196-4.13h-6.217V6.83h3.653a45.037 45.037 0 00-1.431-1.59 27.68 27.68 0 00-1.282-1.334l1.901-1.59c.356.326.805.77 1.346 1.336a39.291 39.291 0 011.517 1.673l-1.73 1.505h2.585c.07-.763.135-1.597.192-2.5.071-.919.114-1.575.128-1.97h2.692c0 .832-.1 2.323-.299 4.47h8.525zm-5.812 9.45c-.356-.523-.861-1.18-1.517-1.97a31.758 31.758 0 00-1.602-1.823l1.901-1.61c.442.438.976 1.017 1.603 1.737.64.707 1.175 1.356 1.602 1.95l-1.987 1.716zM46.78 3.208h15.532V5.75H46.78V3.208zm8.012 8.284a49.782 49.782 0 01-2.329 3.707c-.883 1.286-1.666 2.31-2.35 3.072 3.49-.325 6.395-.614 8.717-.869a128.143 128.143 0 00-2.308-3.326l2.18-1.313c.712.932 1.573 2.14 2.585 3.623a99.573 99.573 0 012.606 3.94l-2.222 1.526-1.26-2.034-11.089.974-2.756.233-.769-2.648c.413-.155.734-.304.962-.445.228-.155.477-.381.748-.678a32.379 32.379 0 002.093-2.648 37.28 37.28 0 002.03-3.114h-6.538V8.948H64v2.543h-9.208z"
36
+ })]
37
+ }));
38
+ });
39
+ export default Icon;
@@ -0,0 +1,17 @@
1
+ import Avatar from './components/Avatar';
2
+ import Color from './components/Color';
3
+ import Combine from './components/Combine';
4
+ import Mono from './components/Mono';
5
+ import Text from './components/Text';
6
+ import TextCn from './components/TextCn';
7
+ export type CompoundedIcon = typeof Mono & {
8
+ Avatar: typeof Avatar;
9
+ Color: typeof Color;
10
+ Combine: typeof Combine;
11
+ Text: typeof Text;
12
+ TextCn: typeof TextCn;
13
+ colorPrimary: string;
14
+ title: string;
15
+ };
16
+ declare const Icons: CompoundedIcon;
17
+ export default Icons;
@@ -0,0 +1,16 @@
1
+ import Avatar from "./components/Avatar";
2
+ import Color from "./components/Color";
3
+ import Combine from "./components/Combine";
4
+ import Mono from "./components/Mono";
5
+ import Text from "./components/Text";
6
+ import TextCn from "./components/TextCn";
7
+ import { COLOR_PRIMARY, TITLE } from "./style";
8
+ var Icons = Mono;
9
+ Icons.Color = Color;
10
+ Icons.Text = Text;
11
+ Icons.TextCn = TextCn;
12
+ Icons.Avatar = Avatar;
13
+ Icons.Combine = Combine;
14
+ Icons.colorPrimary = COLOR_PRIMARY;
15
+ Icons.title = TITLE;
16
+ export default Icons;
@@ -0,0 +1,7 @@
1
+ export declare const TITLE = "HuaweiCloud";
2
+ export declare const COMBINE_TEXT_MULTIPLE = 0.75;
3
+ export declare const COMBINE_SPACE_MULTIPLE = 0.3;
4
+ export declare const COLOR_PRIMARY = "#C7000B";
5
+ export declare const AVATAR_BACKGROUND = "#C7000B";
6
+ export declare const AVATAR_COLOR = "#fff";
7
+ export declare const AVATAR_ICON_MULTIPLE = 0.75;
@@ -0,0 +1,9 @@
1
+ export var TITLE = 'HuaweiCloud';
2
+ export var COMBINE_TEXT_MULTIPLE = 0.75;
3
+ export var COMBINE_SPACE_MULTIPLE = 0.3;
4
+ export var COLOR_PRIMARY = '#C7000B';
5
+
6
+ // Avatar constants
7
+ export var AVATAR_BACKGROUND = COLOR_PRIMARY;
8
+ export var AVATAR_COLOR = '#fff';
9
+ export var AVATAR_ICON_MULTIPLE = 0.75;
package/es/icons.d.ts CHANGED
@@ -93,6 +93,7 @@ export { default as Glama, type CompoundedIcon as GlamaProps } from './Glama';
93
93
  export { default as Glif, type CompoundedIcon as GlifProps } from './Glif';
94
94
  export { default as GLMV, type CompoundedIcon as GLMVProps } from './GLMV';
95
95
  export { default as Google, type CompoundedIcon as GoogleProps } from './Google';
96
+ export { default as GoogleCloud, type CompoundedIcon as GoogleCloudProps } from './GoogleCloud';
96
97
  export { default as Goose, type CompoundedIcon as GooseProps } from './Goose';
97
98
  export { default as Gradio, type CompoundedIcon as GradioProps } from './Gradio';
98
99
  export { default as Greptile, type CompoundedIcon as GreptileProps } from './Greptile';
@@ -102,6 +103,8 @@ export { default as Hailuo, type CompoundedIcon as HailuoProps } from './Hailuo'
102
103
  export { default as Haiper, type CompoundedIcon as HaiperProps } from './Haiper';
103
104
  export { default as Hedra, type CompoundedIcon as HedraProps } from './Hedra';
104
105
  export { default as Higress, type CompoundedIcon as HigressProps } from './Higress';
106
+ export { default as Huawei, type CompoundedIcon as HuaweiProps } from './Huawei';
107
+ export { default as HuaweiCloud, type CompoundedIcon as HuaweiCloudProps } from './HuaweiCloud';
105
108
  export { default as HuggingFace, type CompoundedIcon as HuggingFaceProps } from './HuggingFace';
106
109
  export { default as Hunyuan, type CompoundedIcon as HunyuanProps } from './Hunyuan';
107
110
  export { default as Hyperbolic, type CompoundedIcon as HyperbolicProps } from './Hyperbolic';
package/es/icons.js CHANGED
@@ -93,6 +93,7 @@ export { default as Glama } from "./Glama";
93
93
  export { default as Glif } from "./Glif";
94
94
  export { default as GLMV } from "./GLMV";
95
95
  export { default as Google } from "./Google";
96
+ export { default as GoogleCloud } from "./GoogleCloud";
96
97
  export { default as Goose } from "./Goose";
97
98
  export { default as Gradio } from "./Gradio";
98
99
  export { default as Greptile } from "./Greptile";
@@ -102,6 +103,8 @@ export { default as Hailuo } from "./Hailuo";
102
103
  export { default as Haiper } from "./Haiper";
103
104
  export { default as Hedra } from "./Hedra";
104
105
  export { default as Higress } from "./Higress";
106
+ export { default as Huawei } from "./Huawei";
107
+ export { default as HuaweiCloud } from "./HuaweiCloud";
105
108
  export { default as HuggingFace } from "./HuggingFace";
106
109
  export { default as Hunyuan } from "./Hunyuan";
107
110
  export { default as Hyperbolic } from "./Hyperbolic";
package/es/toc.js CHANGED
@@ -1717,6 +1717,24 @@ var toc = [{
1717
1717
  "hasTextColor": false
1718
1718
  },
1719
1719
  "title": "Google"
1720
+ }, {
1721
+ "color": "#fff",
1722
+ "desc": "https://cloud.google.com",
1723
+ "docsUrl": "google-cloud",
1724
+ "fullTitle": "GoogleCloud",
1725
+ "group": "provider",
1726
+ "id": "GoogleCloud",
1727
+ "param": {
1728
+ "hasAvatar": true,
1729
+ "hasBrand": true,
1730
+ "hasBrandColor": true,
1731
+ "hasColor": true,
1732
+ "hasCombine": false,
1733
+ "hasText": false,
1734
+ "hasTextCn": false,
1735
+ "hasTextColor": false
1736
+ },
1737
+ "title": "GoogleCloud"
1720
1738
  }, {
1721
1739
  "color": "#fff",
1722
1740
  "desc": "https://block.github.io/goose",
@@ -1881,6 +1899,42 @@ var toc = [{
1881
1899
  "hasTextColor": false
1882
1900
  },
1883
1901
  "title": "Higress"
1902
+ }, {
1903
+ "color": "#C7000B",
1904
+ "desc": "https://huawei.com",
1905
+ "docsUrl": "huawei",
1906
+ "fullTitle": "Huawei",
1907
+ "group": "provider",
1908
+ "id": "Huawei",
1909
+ "param": {
1910
+ "hasAvatar": true,
1911
+ "hasBrand": false,
1912
+ "hasBrandColor": false,
1913
+ "hasColor": true,
1914
+ "hasCombine": true,
1915
+ "hasText": true,
1916
+ "hasTextCn": true,
1917
+ "hasTextColor": false
1918
+ },
1919
+ "title": "Huawei"
1920
+ }, {
1921
+ "color": "#C7000B",
1922
+ "desc": "https://huaweicloud.com",
1923
+ "docsUrl": "huawei-cloud",
1924
+ "fullTitle": "HuaweiCloud (华为云)",
1925
+ "group": "provider",
1926
+ "id": "HuaweiCloud",
1927
+ "param": {
1928
+ "hasAvatar": true,
1929
+ "hasBrand": false,
1930
+ "hasBrandColor": false,
1931
+ "hasColor": true,
1932
+ "hasCombine": true,
1933
+ "hasText": true,
1934
+ "hasTextCn": true,
1935
+ "hasTextColor": false
1936
+ },
1937
+ "title": "HuaweiCloud"
1884
1938
  }, {
1885
1939
  "color": "#fff",
1886
1940
  "desc": "https://huggingface.co",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/icons",
3
- "version": "2.41.0",
3
+ "version": "2.43.0",
4
4
  "description": "Popular AI / LLM Model Brand SVG Logo and Icon Collection",
5
5
  "keywords": [
6
6
  "lobehub",