@lobehub/icons 1.92.0 → 1.93.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 (43) hide show
  1. package/README.md +46 -41
  2. package/es/DreamMachine/components/Avatar.d.ts +5 -0
  3. package/es/DreamMachine/components/Avatar.js +25 -0
  4. package/es/DreamMachine/components/Combine.d.ts +5 -0
  5. package/es/DreamMachine/components/Combine.js +29 -0
  6. package/es/DreamMachine/components/Mono.d.ts +3 -0
  7. package/es/DreamMachine/components/Mono.js +45 -0
  8. package/es/DreamMachine/components/Text.d.ts +3 -0
  9. package/es/DreamMachine/components/Text.js +40 -0
  10. package/es/DreamMachine/index.d.ts +13 -0
  11. package/es/DreamMachine/index.js +14 -0
  12. package/es/DreamMachine/style.d.ts +4 -0
  13. package/es/DreamMachine/style.js +4 -0
  14. package/es/TopazLabs/components/Avatar.d.ts +5 -0
  15. package/es/TopazLabs/components/Avatar.js +25 -0
  16. package/es/TopazLabs/components/Combine.d.ts +5 -0
  17. package/es/TopazLabs/components/Combine.js +29 -0
  18. package/es/TopazLabs/components/Mono.d.ts +3 -0
  19. package/es/TopazLabs/components/Mono.js +41 -0
  20. package/es/TopazLabs/components/Text.d.ts +3 -0
  21. package/es/TopazLabs/components/Text.js +58 -0
  22. package/es/TopazLabs/index.d.ts +13 -0
  23. package/es/TopazLabs/index.js +14 -0
  24. package/es/TopazLabs/style.d.ts +4 -0
  25. package/es/TopazLabs/style.js +4 -0
  26. package/es/Yuanbao/components/Avatar.d.ts +5 -0
  27. package/es/Yuanbao/components/Avatar.js +26 -0
  28. package/es/Yuanbao/components/Color.d.ts +3 -0
  29. package/es/Yuanbao/components/Color.js +134 -0
  30. package/es/Yuanbao/components/Combine.d.ts +7 -0
  31. package/es/Yuanbao/components/Combine.js +32 -0
  32. package/es/Yuanbao/components/Mono.d.ts +3 -0
  33. package/es/Yuanbao/components/Mono.js +41 -0
  34. package/es/Yuanbao/components/Text.d.ts +3 -0
  35. package/es/Yuanbao/components/Text.js +40 -0
  36. package/es/Yuanbao/index.d.ts +15 -0
  37. package/es/Yuanbao/index.js +16 -0
  38. package/es/Yuanbao/style.d.ts +4 -0
  39. package/es/Yuanbao/style.js +4 -0
  40. package/es/icons.d.ts +3 -0
  41. package/es/icons.js +3 -0
  42. package/es/toc.js +54 -0
  43. package/package.json +1 -1
@@ -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 { SPACE_MULTIPLE, 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: SPACE_MULTIPLE,
29
+ textMultiple: 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,41 @@
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 { forwardRef } 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__*/forwardRef(function (_ref, 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
+ ref: ref,
26
+ style: _objectSpread({
27
+ flex: 'none',
28
+ lineHeight: 1
29
+ }, style),
30
+ viewBox: "0 0 24 24",
31
+ width: size,
32
+ xmlns: "http://www.w3.org/2000/svg"
33
+ }, rest), {}, {
34
+ children: [/*#__PURE__*/_jsx("title", {
35
+ children: TITLE
36
+ }), /*#__PURE__*/_jsx("path", {
37
+ d: "M12 0c6.627 0 12 5.373 12 12s-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0zm1.652 1.123l-.01-.001c.533.097 1.023.233 1.41.404 6.084 2.683 7.396 9.214 1.601 14.338a3.781 3.781 0 01-5.337-.328 3.654 3.654 0 01-.884-3.044c-1.934.6-3.295 2.305-3.524 4.45-.204 1.912.324 4.044 2.056 5.634l.245.067C10.1 22.876 11.036 23 12 23c6.075 0 11-4.925 11-11 0-5.513-4.056-10.08-9.348-10.877zM2.748 6.21c-.178.269-.348.536-.51.803l-.235.394.078-.167A10.957 10.957 0 001 12c0 4.919 3.228 9.083 7.682 10.49l.214.065C3.523 18.528 2.84 14.149 6.47 8.68A2.234 2.234 0 102.748 6.21zm10.157-5.172c4.408 1.33 3.61 5.41 2.447 6.924-.86 1.117-2.922 1.46-3.708 2.238-.666.657-1.077 1.462-1.212 2.291A5.303 5.303 0 0112 12.258a5.672 5.672 0 001.404-11.169 10.51 10.51 0 00-.5-.052z"
38
+ })]
39
+ }));
40
+ });
41
+ 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,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 { forwardRef } 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__*/forwardRef(function (_ref, 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
+ ref: ref,
26
+ style: _objectSpread({
27
+ flex: 'none',
28
+ lineHeight: 1
29
+ }, style),
30
+ viewBox: "0 0 92 24",
31
+ xmlns: "http://www.w3.org/2000/svg"
32
+ }, rest), {}, {
33
+ children: [/*#__PURE__*/_jsx("title", {
34
+ children: TITLE
35
+ }), /*#__PURE__*/_jsx("path", {
36
+ d: "M89.215 4.058c.354 0 .62.051.796.154.177.089.28.236.31.443.03.206.03.428 0 .664l-.487 3.85h-2.588l.398-2.921c.015-.074 0-.133-.044-.177a.21.21 0 00-.177-.089H74.237l-.465 3.186h-2.589l.775-5.11h7.81A32.07 32.07 0 0179.325 2h2.633l.487 2.058h6.77zm-8.297 10.885l-.641 4.823h8.296l-.265 1.925h-19.05l.244-1.925h8.208l.642-4.823H72.09l.287-1.903h6.24l.42-3.142h-4.801l.243-1.902h12.346l-.266 1.902h-4.956l-.42 3.142h6.239l-.288 1.903h-6.217zm2.832 4.27c-.118-.34-.273-.797-.464-1.372a39.816 39.816 0 01-.62-2.345h2.456c.103.354.236.804.398 1.35.177.53.48 1.32.907 2.367H83.75zM66.891 3.15l-.332 2.036H51.47l.332-2.036h15.09zm.288 8.01h-4.89l-1.194 8.628h5.907l-.774 2.124h-8.164l1.593-10.752H56.58a21.26 21.26 0 01-1.15 4.026 15.79 15.79 0 01-1.925 3.451c-.767 1.063-1.807 2.154-3.12 3.275h-3.783c1.21-.93 2.183-1.763 2.92-2.5a15.07 15.07 0 001.97-2.301c.575-.811 1.069-1.711 1.482-2.7.413-.987.73-2.072.951-3.252h-4.978l.31-2.035h18.23l-.31 2.035zM32.134 6.822h-2.412l-.819-4.646h2.301l.93 4.646zM43.86 2.375c.649 0 1.062.111 1.239.332.191.222.236.612.132 1.173l-2.81 15.797h2.744l-.797 2.057H39.59c.324-1.8.693-3.901 1.106-6.305.428-2.42.649-3.688.663-3.806h-3.54l-1.77 10.111h-2.433l1.77-10.11h-3.031l.376-1.881h2.987l.84-4.735 2.147 1.593-.553 3.142h3.54c.339-2.006.626-3.6.862-4.779.044-.207.03-.361-.044-.465-.059-.118-.258-.177-.597-.177h-8.164l-.443-1.947H43.86zm-12.434 5.62l-1.682 9.447c.457-.34 1.43-1.099 2.92-2.279l-.53 2.877a46.925 46.925 0 01-2.766 2.035A65.854 65.854 0 0126.403 22l2.235-12.058h-2.279l.332-1.947h4.735zM20.142 9.566c.266.472.767.922 1.505 1.35.752.412 1.467.7 2.146.862l-.576 1.947a8.994 8.994 0 01-1.283-.376 9.385 9.385 0 01-1.504-.796l-.531 2.345h1.084c.546 0 .885.096 1.017.288.148.191.192.45.133.774-.133.87-.302 1.858-.509 2.965a661.593 661.593 0 01-.53 2.986h-5.996l-.399-1.792h4.293l.62-3.03c.058-.296-.067-.443-.377-.443h-7.544l.707-3.629a16.62 16.62 0 01-.796.31c-.383.148-.833.28-1.35.398l.465-2.212a9.915 9.915 0 002.058-.797c.663-.354 1.216-.737 1.659-1.15h-3.34l.353-1.726h4.16c.162-.28.317-.62.464-1.018h-4.447l.354-1.77h1.527l-.531-2.654h2.323c.088.486.265 1.371.53 2.655h.797c.192-.885.325-1.896.399-3.032h2.345c-.074 1.195-.207 2.206-.398 3.032h.862c.354-.738.701-1.623 1.04-2.655h2.323c-.162.457-.339.914-.53 1.371-.192.443-.392.87-.598 1.284h1.637l-.42 1.77h-4.845c-.015.073-.148.412-.399 1.017h5.93l-.42 1.726h-3.408zm-9.978-6.97c.442 0 .774.045.995.133.222.089.354.236.399.443a1.9 1.9 0 010 .708L8.35 21.91H6.093l1.305-6.925H5.894c-.089.472-.28 1.343-.575 2.611a82.428 82.428 0 01-1.107 4.314H2a71.505 71.505 0 001.77-7.057L5.96 2.597h4.204zm-.885 2.302c.03-.163.007-.273-.066-.332-.06-.06-.17-.089-.332-.089H7.774L7.177 7.84h1.549l.553-2.942zm8.562 4.668h-.819a8.087 8.087 0 01-1.57 1.615h3.429a7.028 7.028 0 01-.575-.774 6.109 6.109 0 01-.465-.841zm-10.11 3.606l.663-3.54H6.845l-.62 3.54H7.73zm6.614 1.726h3.275l.442-2.035H13.55l1.04.707-.244 1.328zm3.939 2.633l-.399 1.726h-7.633l-.31-1.726h8.342z"
37
+ })]
38
+ }));
39
+ });
40
+ export default Icon;
@@ -0,0 +1,15 @@
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
+ export type CompoundedIcon = typeof Mono & {
7
+ Avatar: typeof Avatar;
8
+ Color: typeof Color;
9
+ Combine: typeof Combine;
10
+ Text: typeof Text;
11
+ colorPrimary: string;
12
+ title: string;
13
+ };
14
+ declare const Icons: CompoundedIcon;
15
+ export default Icons;
@@ -0,0 +1,16 @@
1
+ 'use client';
2
+
3
+ import Avatar from "./components/Avatar";
4
+ import Color from "./components/Color";
5
+ import Combine from "./components/Combine";
6
+ import Mono from "./components/Mono";
7
+ import Text from "./components/Text";
8
+ import { COLOR_PRIMARY, TITLE } from "./style";
9
+ var Icons = Mono;
10
+ Icons.Color = Color;
11
+ Icons.Text = Text;
12
+ Icons.Combine = Combine;
13
+ Icons.Avatar = Avatar;
14
+ Icons.colorPrimary = COLOR_PRIMARY;
15
+ Icons.title = TITLE;
16
+ export default Icons;
@@ -0,0 +1,4 @@
1
+ export declare const TITLE = "Yuanbao";
2
+ export declare const TEXT_MULTIPLE = 0.75;
3
+ export declare const SPACE_MULTIPLE = 0.2;
4
+ export declare const COLOR_PRIMARY = "#fff";
@@ -0,0 +1,4 @@
1
+ export var TITLE = 'Yuanbao';
2
+ export var TEXT_MULTIPLE = 0.75;
3
+ export var SPACE_MULTIPLE = 0.2;
4
+ export var COLOR_PRIMARY = '#fff';
package/es/icons.d.ts CHANGED
@@ -48,6 +48,7 @@ export { default as Dify, type CompoundedIcon as DifyProps } from './Dify';
48
48
  export { default as Doc2X, type CompoundedIcon as Doc2XProps } from './Doc2X';
49
49
  export { default as DocSearch, type CompoundedIcon as DocSearchProps } from './DocSearch';
50
50
  export { default as Doubao, type CompoundedIcon as DoubaoProps } from './Doubao';
51
+ export { default as DreamMachine, type CompoundedIcon as DreamMachineProps } from './DreamMachine';
51
52
  export { default as Exa, type CompoundedIcon as ExaProps } from './Exa';
52
53
  export { default as Fal, type CompoundedIcon as FalProps } from './Fal';
53
54
  export { default as Fireworks, type CompoundedIcon as FireworksProps } from './Fireworks';
@@ -150,6 +151,7 @@ export { default as TencentCloud, type CompoundedIcon as TencentCloudProps } fro
150
151
  export { default as Tiangong, type CompoundedIcon as TiangongProps } from './Tiangong';
151
152
  export { default as TII, type CompoundedIcon as TIIProps } from './TII';
152
153
  export { default as Together, type CompoundedIcon as TogetherProps } from './Together';
154
+ export { default as TopazLabs, type CompoundedIcon as TopazLabsProps } from './TopazLabs';
153
155
  export { default as Tripo, type CompoundedIcon as TripoProps } from './Tripo';
154
156
  export { default as Udio, type CompoundedIcon as UdioProps } from './Udio';
155
157
  export { default as Unstructured, type CompoundedIcon as UnstructuredProps } from './Unstructured';
@@ -168,6 +170,7 @@ export { default as XAI, type CompoundedIcon as XAIProps } from './XAI';
168
170
  export { default as Xuanyuan, type CompoundedIcon as XuanyuanProps } from './Xuanyuan';
169
171
  export { default as Yandex, type CompoundedIcon as YandexProps } from './Yandex';
170
172
  export { default as Yi, type CompoundedIcon as YiProps } from './Yi';
173
+ export { default as Yuanbao, type CompoundedIcon as YuanbaoProps } from './Yuanbao';
171
174
  export { default as Zeabur, type CompoundedIcon as ZeaburProps } from './Zeabur';
172
175
  export { default as ZeroOne, type CompoundedIcon as ZeroOneProps } from './ZeroOne';
173
176
  export { default as Zhipu, type CompoundedIcon as ZhipuProps } from './Zhipu';
package/es/icons.js CHANGED
@@ -48,6 +48,7 @@ export { default as Dify } from "./Dify";
48
48
  export { default as Doc2X } from "./Doc2X";
49
49
  export { default as DocSearch } from "./DocSearch";
50
50
  export { default as Doubao } from "./Doubao";
51
+ export { default as DreamMachine } from "./DreamMachine";
51
52
  export { default as Exa } from "./Exa";
52
53
  export { default as Fal } from "./Fal";
53
54
  export { default as Fireworks } from "./Fireworks";
@@ -150,6 +151,7 @@ export { default as TencentCloud } from "./TencentCloud";
150
151
  export { default as Tiangong } from "./Tiangong";
151
152
  export { default as TII } from "./TII";
152
153
  export { default as Together } from "./Together";
154
+ export { default as TopazLabs } from "./TopazLabs";
153
155
  export { default as Tripo } from "./Tripo";
154
156
  export { default as Udio } from "./Udio";
155
157
  export { default as Unstructured } from "./Unstructured";
@@ -168,6 +170,7 @@ export { default as XAI } from "./XAI";
168
170
  export { default as Xuanyuan } from "./Xuanyuan";
169
171
  export { default as Yandex } from "./Yandex";
170
172
  export { default as Yi } from "./Yi";
173
+ export { default as Yuanbao } from "./Yuanbao";
171
174
  export { default as Zeabur } from "./Zeabur";
172
175
  export { default as ZeroOne } from "./ZeroOne";
173
176
  export { default as Zhipu } from "./Zhipu";
package/es/toc.js CHANGED
@@ -908,6 +908,24 @@ var toc = [{
908
908
  "hasTextColor": false
909
909
  },
910
910
  "title": "Doubao"
911
+ }, {
912
+ "color": "#000",
913
+ "desc": "https://lumalabs.ai/dream-machine",
914
+ "docsUrl": "dream-machine",
915
+ "fullTitle": "DreamMachine (Luma)",
916
+ "group": "application",
917
+ "id": "DreamMachine",
918
+ "param": {
919
+ "hasAvatar": true,
920
+ "hasBrand": false,
921
+ "hasBrandColor": false,
922
+ "hasColor": false,
923
+ "hasCombine": true,
924
+ "hasText": true,
925
+ "hasTextCn": false,
926
+ "hasTextColor": false
927
+ },
928
+ "title": "DreamMachine"
911
929
  }, {
912
930
  "color": "#1f40ed",
913
931
  "desc": "https://exa.ai",
@@ -2760,6 +2778,24 @@ var toc = [{
2760
2778
  "hasTextColor": false
2761
2779
  },
2762
2780
  "title": "together.ai"
2781
+ }, {
2782
+ "color": "#000",
2783
+ "desc": "https://topazlabs.com",
2784
+ "docsUrl": "topaz-labs",
2785
+ "fullTitle": "TopazLabs",
2786
+ "group": "application",
2787
+ "id": "TopazLabs",
2788
+ "param": {
2789
+ "hasAvatar": true,
2790
+ "hasBrand": false,
2791
+ "hasBrandColor": false,
2792
+ "hasColor": false,
2793
+ "hasCombine": true,
2794
+ "hasText": true,
2795
+ "hasTextCn": false,
2796
+ "hasTextColor": false
2797
+ },
2798
+ "title": "TopazLabs"
2763
2799
  }, {
2764
2800
  "color": "#000",
2765
2801
  "desc": "https://tripo3d.ai",
@@ -3087,6 +3123,24 @@ var toc = [{
3087
3123
  "hasTextColor": false
3088
3124
  },
3089
3125
  "title": "Yi"
3126
+ }, {
3127
+ "color": "#fff",
3128
+ "desc": "https://yuanbao.tencent.com",
3129
+ "docsUrl": "yuanbao",
3130
+ "fullTitle": "Yuanbao (腾讯元宝)",
3131
+ "group": "application",
3132
+ "id": "Yuanbao",
3133
+ "param": {
3134
+ "hasAvatar": true,
3135
+ "hasBrand": false,
3136
+ "hasBrandColor": false,
3137
+ "hasColor": true,
3138
+ "hasCombine": true,
3139
+ "hasText": true,
3140
+ "hasTextCn": false,
3141
+ "hasTextColor": false
3142
+ },
3143
+ "title": "Yuanbao"
3090
3144
  }, {
3091
3145
  "color": "#6300FF",
3092
3146
  "desc": "https://zeabur.com",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/icons",
3
- "version": "1.92.0",
3
+ "version": "1.93.0",
4
4
  "description": "Popular AI / LLM Model Brand SVG Logo and Icon Collection",
5
5
  "keywords": [
6
6
  "lobehub",