@cloud-ru/uikit-product-icons 17.7.0 → 17.8.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 (42) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist/cjs/components/logo-icons/KimiLogo/KimiLogoDark.d.ts +9 -0
  3. package/dist/cjs/components/logo-icons/KimiLogo/KimiLogoDark.js +67 -0
  4. package/dist/cjs/components/logo-icons/KimiLogo/KimiLogoLight.d.ts +9 -0
  5. package/dist/cjs/components/logo-icons/KimiLogo/KimiLogoLight.js +67 -0
  6. package/dist/cjs/components/logo-icons/KimiLogo/index.d.ts +3 -0
  7. package/dist/cjs/components/logo-icons/KimiLogo/index.js +16 -0
  8. package/dist/cjs/components/logo-icons/MiniMaxLogo/MiniMaxLogoDark.d.ts +9 -0
  9. package/dist/cjs/components/logo-icons/MiniMaxLogo/MiniMaxLogoDark.js +67 -0
  10. package/dist/cjs/components/logo-icons/MiniMaxLogo/MiniMaxLogoLight.d.ts +9 -0
  11. package/dist/cjs/components/logo-icons/MiniMaxLogo/MiniMaxLogoLight.js +67 -0
  12. package/dist/cjs/components/logo-icons/MiniMaxLogo/index.d.ts +3 -0
  13. package/dist/cjs/components/logo-icons/MiniMaxLogo/index.js +16 -0
  14. package/dist/cjs/components/logo-icons/ZaiLogo/ZaiLogoDark.d.ts +9 -0
  15. package/dist/cjs/components/logo-icons/ZaiLogo/ZaiLogoDark.js +67 -0
  16. package/dist/cjs/components/logo-icons/ZaiLogo/ZaiLogoLight.d.ts +9 -0
  17. package/dist/cjs/components/logo-icons/ZaiLogo/ZaiLogoLight.js +67 -0
  18. package/dist/cjs/components/logo-icons/ZaiLogo/index.d.ts +3 -0
  19. package/dist/cjs/components/logo-icons/ZaiLogo/index.js +16 -0
  20. package/dist/cjs/components/logo-icons/index.d.ts +3 -0
  21. package/dist/cjs/components/logo-icons/index.js +8 -2
  22. package/dist/esm/components/logo-icons/KimiLogo/KimiLogoDark.d.ts +9 -0
  23. package/dist/esm/components/logo-icons/KimiLogo/KimiLogoDark.js +32 -0
  24. package/dist/esm/components/logo-icons/KimiLogo/KimiLogoLight.d.ts +9 -0
  25. package/dist/esm/components/logo-icons/KimiLogo/KimiLogoLight.js +32 -0
  26. package/dist/esm/components/logo-icons/KimiLogo/index.d.ts +3 -0
  27. package/dist/esm/components/logo-icons/KimiLogo/index.js +11 -0
  28. package/dist/esm/components/logo-icons/MiniMaxLogo/MiniMaxLogoDark.d.ts +9 -0
  29. package/dist/esm/components/logo-icons/MiniMaxLogo/MiniMaxLogoDark.js +32 -0
  30. package/dist/esm/components/logo-icons/MiniMaxLogo/MiniMaxLogoLight.d.ts +9 -0
  31. package/dist/esm/components/logo-icons/MiniMaxLogo/MiniMaxLogoLight.js +32 -0
  32. package/dist/esm/components/logo-icons/MiniMaxLogo/index.d.ts +3 -0
  33. package/dist/esm/components/logo-icons/MiniMaxLogo/index.js +11 -0
  34. package/dist/esm/components/logo-icons/ZaiLogo/ZaiLogoDark.d.ts +9 -0
  35. package/dist/esm/components/logo-icons/ZaiLogo/ZaiLogoDark.js +32 -0
  36. package/dist/esm/components/logo-icons/ZaiLogo/ZaiLogoLight.d.ts +9 -0
  37. package/dist/esm/components/logo-icons/ZaiLogo/ZaiLogoLight.js +32 -0
  38. package/dist/esm/components/logo-icons/ZaiLogo/index.d.ts +3 -0
  39. package/dist/esm/components/logo-icons/ZaiLogo/index.js +11 -0
  40. package/dist/esm/components/logo-icons/index.d.ts +3 -0
  41. package/dist/esm/components/logo-icons/index.js +3 -0
  42. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # 17.8.0 (2026-07-25)
7
+
8
+
9
+ ### Features
10
+
11
+ * **PDS-4139:** added new logos ([24c84df](https://github.com/cloud-ru-tech/uikit-product/commit/24c84df8f08aa9454d10cb31e5cb2840faec125f))
12
+
13
+
14
+
15
+
16
+
6
17
  # 17.7.0 (2026-07-21)
7
18
 
8
19
 
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface ISvgIconProps extends SVGProps<SVGSVGElement> {
4
+ className?: string;
5
+ size?: number;
6
+ style?: React.CSSProperties;
7
+ }
8
+ declare const SvgKimiLogoDark: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgKimiLogoDark;
@@ -0,0 +1,67 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ var __rest = (this && this.__rest) || function (s, e) {
36
+ var t = {};
37
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
38
+ t[p] = s[p];
39
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
40
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
41
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
42
+ t[p[i]] = s[p[i]];
43
+ }
44
+ return t;
45
+ };
46
+ Object.defineProperty(exports, "__esModule", { value: true });
47
+ const jsx_runtime_1 = require("react/jsx-runtime");
48
+ // DO NOT EDIT IT MANUALLY
49
+ const React = __importStar(require("react"));
50
+ const SvgKimiLogoDark = React.forwardRef((_a, ref) => {
51
+ var { size } = _a, props = __rest(_a, ["size"]);
52
+ props.width = undefined;
53
+ props.height = undefined;
54
+ const testId = 'icon-kimi-logo-dark';
55
+ const style = {};
56
+ const isCustomSize = typeof size === 'number';
57
+ if (isCustomSize) {
58
+ style.width = size + 'px';
59
+ style.height = size + 'px';
60
+ if (!props.style)
61
+ props.style = {};
62
+ props.style.width = size + 'px';
63
+ props.style.height = size + 'px';
64
+ }
65
+ return ((0, jsx_runtime_1.jsx)("svg", Object.assign({ xmlns: 'http://www.w3.org/2000/svg', width: 24, height: 24, fill: 'none', viewBox: '0 0 24 24', "data-test-id": testId, ref: ref }, props, { children: (0, jsx_runtime_1.jsx)("path", { fill: '#fff', fillRule: 'evenodd', d: 'M20.846 1a1.923 1.923 0 1 1 0 3.846H19.15a.226.226 0 0 1-.227-.226V2.923c0-1.062.86-1.923 1.923-1.923M10.065 12.199l7.257-7.2c.137-.136.06-.41-.116-.41H13.3a.16.16 0 0 0-.117.05l-7.82 7.757c-.122.12-.302.013-.302-.18V4.82c0-.127-.083-.23-.185-.23h-2.69c-.103 0-.186.103-.186.23v15.95c0 .128.083.23.186.23h2.69c.103 0 .186-.102.186-.23v-3.25a.25.25 0 0 1 .069-.178l2.424-2.406a.16.16 0 0 1 .205-.023l6.484 4.772a7.7 7.7 0 0 0 3.453 1.283c.108.012.2-.095.2-.23v-3.06c0-.117-.07-.212-.164-.227a5 5 0 0 1-2.027-.807l-5.613-4.064c-.117-.078-.132-.28-.028-.381', clipRule: 'evenodd' }) })));
66
+ });
67
+ exports.default = SvgKimiLogoDark;
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface ISvgIconProps extends SVGProps<SVGSVGElement> {
4
+ className?: string;
5
+ size?: number;
6
+ style?: React.CSSProperties;
7
+ }
8
+ declare const SvgKimiLogoLight: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgKimiLogoLight;
@@ -0,0 +1,67 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ var __rest = (this && this.__rest) || function (s, e) {
36
+ var t = {};
37
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
38
+ t[p] = s[p];
39
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
40
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
41
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
42
+ t[p[i]] = s[p[i]];
43
+ }
44
+ return t;
45
+ };
46
+ Object.defineProperty(exports, "__esModule", { value: true });
47
+ const jsx_runtime_1 = require("react/jsx-runtime");
48
+ // DO NOT EDIT IT MANUALLY
49
+ const React = __importStar(require("react"));
50
+ const SvgKimiLogoLight = React.forwardRef((_a, ref) => {
51
+ var { size } = _a, props = __rest(_a, ["size"]);
52
+ props.width = undefined;
53
+ props.height = undefined;
54
+ const testId = 'icon-kimi-logo-light';
55
+ const style = {};
56
+ const isCustomSize = typeof size === 'number';
57
+ if (isCustomSize) {
58
+ style.width = size + 'px';
59
+ style.height = size + 'px';
60
+ if (!props.style)
61
+ props.style = {};
62
+ props.style.width = size + 'px';
63
+ props.style.height = size + 'px';
64
+ }
65
+ return ((0, jsx_runtime_1.jsx)("svg", Object.assign({ xmlns: 'http://www.w3.org/2000/svg', width: 24, height: 24, fill: 'none', viewBox: '0 0 24 24', "data-test-id": testId, ref: ref }, props, { children: (0, jsx_runtime_1.jsx)("path", { fill: '#000', fillRule: 'evenodd', d: 'M20.846 1a1.923 1.923 0 1 1 0 3.846H19.15a.226.226 0 0 1-.227-.226V2.923c0-1.062.86-1.923 1.923-1.923M10.065 12.199l7.257-7.2c.137-.136.06-.41-.116-.41H13.3a.16.16 0 0 0-.117.05l-7.82 7.757c-.122.12-.302.013-.302-.18V4.82c0-.127-.083-.23-.185-.23h-2.69c-.103 0-.186.103-.186.23v15.95c0 .128.083.23.186.23h2.69c.103 0 .186-.102.186-.23v-3.25a.25.25 0 0 1 .069-.178l2.424-2.406a.16.16 0 0 1 .205-.023l6.484 4.772a7.7 7.7 0 0 0 3.453 1.283c.108.012.2-.095.2-.23v-3.06c0-.117-.07-.212-.164-.227a5 5 0 0 1-2.027-.807l-5.613-4.064c-.117-.078-.132-.28-.028-.381', clipRule: 'evenodd' }) })));
66
+ });
67
+ exports.default = SvgKimiLogoLight;
@@ -0,0 +1,3 @@
1
+ import { ISvgIconProps } from './KimiLogoLight';
2
+ declare const KimiLogoSvg: import("react").ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default KimiLogoSvg;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const jsx_runtime_1 = require("react/jsx-runtime");
7
+ const react_1 = require("react");
8
+ const KimiLogoLight_1 = __importDefault(require("./KimiLogoLight"));
9
+ const KimiLogoDark_1 = __importDefault(require("./KimiLogoDark"));
10
+ const utils_1 = require("../../utils");
11
+ const KimiLogoSvg = (0, react_1.forwardRef)(function KimiLogoSvg(props, ref) {
12
+ const { isDarkTheme } = (0, utils_1.useThemeModification)();
13
+ const { isDarkBrand } = (0, utils_1.useBrandModification)();
14
+ return isDarkTheme || isDarkBrand ? (0, jsx_runtime_1.jsx)(KimiLogoDark_1.default, Object.assign({}, props, { ref: ref })) : (0, jsx_runtime_1.jsx)(KimiLogoLight_1.default, Object.assign({}, props, { ref: ref }));
15
+ });
16
+ exports.default = KimiLogoSvg;
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface ISvgIconProps extends SVGProps<SVGSVGElement> {
4
+ className?: string;
5
+ size?: number;
6
+ style?: React.CSSProperties;
7
+ }
8
+ declare const SvgMiniMaxLogoDark: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgMiniMaxLogoDark;
@@ -0,0 +1,67 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ var __rest = (this && this.__rest) || function (s, e) {
36
+ var t = {};
37
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
38
+ t[p] = s[p];
39
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
40
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
41
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
42
+ t[p[i]] = s[p[i]];
43
+ }
44
+ return t;
45
+ };
46
+ Object.defineProperty(exports, "__esModule", { value: true });
47
+ const jsx_runtime_1 = require("react/jsx-runtime");
48
+ // DO NOT EDIT IT MANUALLY
49
+ const React = __importStar(require("react"));
50
+ const SvgMiniMaxLogoDark = React.forwardRef((_a, ref) => {
51
+ var { size } = _a, props = __rest(_a, ["size"]);
52
+ props.width = undefined;
53
+ props.height = undefined;
54
+ const testId = 'icon-mini-max-logo-dark';
55
+ const style = {};
56
+ const isCustomSize = typeof size === 'number';
57
+ if (isCustomSize) {
58
+ style.width = size + 'px';
59
+ style.height = size + 'px';
60
+ if (!props.style)
61
+ props.style = {};
62
+ props.style.width = size + 'px';
63
+ props.style.height = size + 'px';
64
+ }
65
+ return ((0, jsx_runtime_1.jsxs)("svg", Object.assign({ xmlns: 'http://www.w3.org/2000/svg', width: 24, height: 24, fill: 'none', viewBox: '0 0 24 24', "data-test-id": testId, ref: ref }, props, { children: [(0, jsx_runtime_1.jsx)("g", { clipPath: 'url(#MiniMaxLogoDark_svg__a)', children: (0, jsx_runtime_1.jsx)("path", { fill: 'url(#MiniMaxLogoDark_svg__b)', d: 'M16.278 2c1.156 0 2.093.927 2.093 2.07v12.501a.74.74 0 0 0 .744.709.74.74 0 0 0 .743-.709V9.099a2.06 2.06 0 0 1 2.071-2.049A2.06 2.06 0 0 1 24 9.1v6.561a.65.65 0 0 1-.652.645.65.65 0 0 1-.653-.645V9.1a.763.763 0 0 0-1.058-.702.76.76 0 0 0-.474.702v7.472a2.036 2.036 0 0 1-2.048 2.026 2.04 2.04 0 0 1-2.048-2.026v-12.5a.785.785 0 0 0-.788-.753.785.785 0 0 0-.789.752l-.001 15.904A2.037 2.037 0 0 1 13.441 22a2.04 2.04 0 0 1-2.048-2.026V18.04c0-.356.292-.645.652-.645s.652.289.652.645v1.934c0 .263.142.506.372.638a.753.753 0 0 0 1.016-.269c.065-.112.1-.24.1-.369V4.07c0-1.143.937-2.07 2.093-2.07m-5.674 0c1.156 0 2.093.927 2.093 2.07v11.523a.65.65 0 0 1-.652.645.647.647 0 0 1-.652-.645V4.07a.785.785 0 0 0-.789-.78.785.785 0 0 0-.789.78v14.013a2.06 2.06 0 0 1-2.07 2.048 2.06 2.06 0 0 1-2.071-2.048V9.1a.76.76 0 0 0-.766-.758.76.76 0 0 0-.766.758v3.8a2.06 2.06 0 0 1-2.071 2.049A2.06 2.06 0 0 1 0 12.9v-1.378c0-.357.292-.646.652-.646s.653.29.653.646V12.9c0 .418.343.757.766.757a.76.76 0 0 0 .766-.757V9.099a2.06 2.06 0 0 1 2.07-2.048 2.06 2.06 0 0 1 2.071 2.048v8.984c0 .419.343.758.767.758a.76.76 0 0 0 .766-.758V4.07c0-1.143.937-2.07 2.093-2.07' }) }), (0, jsx_runtime_1.jsxs)("defs", { children: [(0, jsx_runtime_1.jsxs)("linearGradient", { id: 'MiniMaxLogoDark_svg__b', x1: 0, x2: 24.044, y1: 12.011, y2: 12.011, gradientUnits: 'userSpaceOnUse', children: [(0, jsx_runtime_1.jsx)("stop", { stopColor: '#E2167E' }), (0, jsx_runtime_1.jsx)("stop", { offset: 1, stopColor: '#FE603C' })] }), (0, jsx_runtime_1.jsx)("clipPath", { id: 'MiniMaxLogoDark_svg__a', children: (0, jsx_runtime_1.jsx)("path", { fill: '#fff', d: 'M0 0h24v24H0z' }) })] })] })));
66
+ });
67
+ exports.default = SvgMiniMaxLogoDark;
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface ISvgIconProps extends SVGProps<SVGSVGElement> {
4
+ className?: string;
5
+ size?: number;
6
+ style?: React.CSSProperties;
7
+ }
8
+ declare const SvgMiniMaxLogoLight: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgMiniMaxLogoLight;
@@ -0,0 +1,67 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ var __rest = (this && this.__rest) || function (s, e) {
36
+ var t = {};
37
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
38
+ t[p] = s[p];
39
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
40
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
41
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
42
+ t[p[i]] = s[p[i]];
43
+ }
44
+ return t;
45
+ };
46
+ Object.defineProperty(exports, "__esModule", { value: true });
47
+ const jsx_runtime_1 = require("react/jsx-runtime");
48
+ // DO NOT EDIT IT MANUALLY
49
+ const React = __importStar(require("react"));
50
+ const SvgMiniMaxLogoLight = React.forwardRef((_a, ref) => {
51
+ var { size } = _a, props = __rest(_a, ["size"]);
52
+ props.width = undefined;
53
+ props.height = undefined;
54
+ const testId = 'icon-mini-max-logo-light';
55
+ const style = {};
56
+ const isCustomSize = typeof size === 'number';
57
+ if (isCustomSize) {
58
+ style.width = size + 'px';
59
+ style.height = size + 'px';
60
+ if (!props.style)
61
+ props.style = {};
62
+ props.style.width = size + 'px';
63
+ props.style.height = size + 'px';
64
+ }
65
+ return ((0, jsx_runtime_1.jsxs)("svg", Object.assign({ xmlns: 'http://www.w3.org/2000/svg', width: 24, height: 24, fill: 'none', viewBox: '0 0 24 24', "data-test-id": testId, ref: ref }, props, { children: [(0, jsx_runtime_1.jsx)("g", { clipPath: 'url(#MiniMaxLogoLight_svg__a)', children: (0, jsx_runtime_1.jsx)("path", { fill: 'url(#MiniMaxLogoLight_svg__b)', d: 'M16.278 2c1.156 0 2.093.927 2.093 2.07v12.501a.74.74 0 0 0 .744.709.74.74 0 0 0 .743-.709V9.099a2.06 2.06 0 0 1 2.071-2.049A2.06 2.06 0 0 1 24 9.1v6.561a.65.65 0 0 1-.652.645.65.65 0 0 1-.653-.645V9.1a.763.763 0 0 0-1.058-.702.76.76 0 0 0-.474.702v7.472a2.036 2.036 0 0 1-2.048 2.026 2.04 2.04 0 0 1-2.048-2.026v-12.5a.785.785 0 0 0-.788-.753.785.785 0 0 0-.789.752l-.001 15.904A2.037 2.037 0 0 1 13.441 22a2.04 2.04 0 0 1-2.048-2.026V18.04c0-.356.292-.645.652-.645s.652.289.652.645v1.934c0 .263.142.506.372.638a.753.753 0 0 0 1.016-.269c.065-.112.1-.24.1-.369V4.07c0-1.143.937-2.07 2.093-2.07m-5.674 0c1.156 0 2.093.927 2.093 2.07v11.523a.65.65 0 0 1-.652.645.647.647 0 0 1-.652-.645V4.07a.785.785 0 0 0-.789-.78.785.785 0 0 0-.789.78v14.013a2.06 2.06 0 0 1-2.07 2.048 2.06 2.06 0 0 1-2.071-2.048V9.1a.76.76 0 0 0-.766-.758.76.76 0 0 0-.766.758v3.8a2.06 2.06 0 0 1-2.071 2.049A2.06 2.06 0 0 1 0 12.9v-1.378c0-.357.292-.646.652-.646s.653.29.653.646V12.9c0 .418.343.757.766.757a.76.76 0 0 0 .766-.757V9.099a2.06 2.06 0 0 1 2.07-2.048 2.06 2.06 0 0 1 2.071 2.048v8.984c0 .419.343.758.767.758a.76.76 0 0 0 .766-.758V4.07c0-1.143.937-2.07 2.093-2.07' }) }), (0, jsx_runtime_1.jsxs)("defs", { children: [(0, jsx_runtime_1.jsxs)("linearGradient", { id: 'MiniMaxLogoLight_svg__b', x1: 0, x2: 24.044, y1: 12.011, y2: 12.011, gradientUnits: 'userSpaceOnUse', children: [(0, jsx_runtime_1.jsx)("stop", { stopColor: '#E2167E' }), (0, jsx_runtime_1.jsx)("stop", { offset: 1, stopColor: '#FE603C' })] }), (0, jsx_runtime_1.jsx)("clipPath", { id: 'MiniMaxLogoLight_svg__a', children: (0, jsx_runtime_1.jsx)("path", { fill: '#fff', d: 'M0 0h24v24H0z' }) })] })] })));
66
+ });
67
+ exports.default = SvgMiniMaxLogoLight;
@@ -0,0 +1,3 @@
1
+ import { ISvgIconProps } from './MiniMaxLogoLight';
2
+ declare const MiniMaxLogoSvg: import("react").ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default MiniMaxLogoSvg;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const jsx_runtime_1 = require("react/jsx-runtime");
7
+ const react_1 = require("react");
8
+ const MiniMaxLogoLight_1 = __importDefault(require("./MiniMaxLogoLight"));
9
+ const MiniMaxLogoDark_1 = __importDefault(require("./MiniMaxLogoDark"));
10
+ const utils_1 = require("../../utils");
11
+ const MiniMaxLogoSvg = (0, react_1.forwardRef)(function MiniMaxLogoSvg(props, ref) {
12
+ const { isDarkTheme } = (0, utils_1.useThemeModification)();
13
+ const { isDarkBrand } = (0, utils_1.useBrandModification)();
14
+ return isDarkTheme || isDarkBrand ? ((0, jsx_runtime_1.jsx)(MiniMaxLogoDark_1.default, Object.assign({}, props, { ref: ref }))) : ((0, jsx_runtime_1.jsx)(MiniMaxLogoLight_1.default, Object.assign({}, props, { ref: ref })));
15
+ });
16
+ exports.default = MiniMaxLogoSvg;
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface ISvgIconProps extends SVGProps<SVGSVGElement> {
4
+ className?: string;
5
+ size?: number;
6
+ style?: React.CSSProperties;
7
+ }
8
+ declare const SvgZaiLogoDark: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgZaiLogoDark;
@@ -0,0 +1,67 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ var __rest = (this && this.__rest) || function (s, e) {
36
+ var t = {};
37
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
38
+ t[p] = s[p];
39
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
40
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
41
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
42
+ t[p[i]] = s[p[i]];
43
+ }
44
+ return t;
45
+ };
46
+ Object.defineProperty(exports, "__esModule", { value: true });
47
+ const jsx_runtime_1 = require("react/jsx-runtime");
48
+ // DO NOT EDIT IT MANUALLY
49
+ const React = __importStar(require("react"));
50
+ const SvgZaiLogoDark = React.forwardRef((_a, ref) => {
51
+ var { size } = _a, props = __rest(_a, ["size"]);
52
+ props.width = undefined;
53
+ props.height = undefined;
54
+ const testId = 'icon-zai-logo-dark';
55
+ const style = {};
56
+ const isCustomSize = typeof size === 'number';
57
+ if (isCustomSize) {
58
+ style.width = size + 'px';
59
+ style.height = size + 'px';
60
+ if (!props.style)
61
+ props.style = {};
62
+ props.style.width = size + 'px';
63
+ props.style.height = size + 'px';
64
+ }
65
+ return ((0, jsx_runtime_1.jsxs)("svg", Object.assign({ xmlns: 'http://www.w3.org/2000/svg', width: 24, height: 24, fill: 'none', viewBox: '0 0 24 24', "data-test-id": testId, ref: ref }, props, { children: [(0, jsx_runtime_1.jsx)("g", { clipPath: 'url(#ZaiLogoDark_svg__a)', children: (0, jsx_runtime_1.jsx)("path", { fill: '#fff', fillRule: 'evenodd', d: 'M12.105 2 9.927 4.953H.653L2.83 2zm11.149 17.048L21.078 22h-9.242l2.174-2.952zM24 2 9.264 22H0L14.736 2z', clipRule: 'evenodd' }) }), (0, jsx_runtime_1.jsx)("defs", { children: (0, jsx_runtime_1.jsx)("clipPath", { id: 'ZaiLogoDark_svg__a', children: (0, jsx_runtime_1.jsx)("path", { fill: '#fff', d: 'M0 0h24v24H0z' }) }) })] })));
66
+ });
67
+ exports.default = SvgZaiLogoDark;
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface ISvgIconProps extends SVGProps<SVGSVGElement> {
4
+ className?: string;
5
+ size?: number;
6
+ style?: React.CSSProperties;
7
+ }
8
+ declare const SvgZaiLogoLight: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgZaiLogoLight;
@@ -0,0 +1,67 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ var __rest = (this && this.__rest) || function (s, e) {
36
+ var t = {};
37
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
38
+ t[p] = s[p];
39
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
40
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
41
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
42
+ t[p[i]] = s[p[i]];
43
+ }
44
+ return t;
45
+ };
46
+ Object.defineProperty(exports, "__esModule", { value: true });
47
+ const jsx_runtime_1 = require("react/jsx-runtime");
48
+ // DO NOT EDIT IT MANUALLY
49
+ const React = __importStar(require("react"));
50
+ const SvgZaiLogoLight = React.forwardRef((_a, ref) => {
51
+ var { size } = _a, props = __rest(_a, ["size"]);
52
+ props.width = undefined;
53
+ props.height = undefined;
54
+ const testId = 'icon-zai-logo-light';
55
+ const style = {};
56
+ const isCustomSize = typeof size === 'number';
57
+ if (isCustomSize) {
58
+ style.width = size + 'px';
59
+ style.height = size + 'px';
60
+ if (!props.style)
61
+ props.style = {};
62
+ props.style.width = size + 'px';
63
+ props.style.height = size + 'px';
64
+ }
65
+ return ((0, jsx_runtime_1.jsxs)("svg", Object.assign({ xmlns: 'http://www.w3.org/2000/svg', width: 24, height: 24, fill: 'none', viewBox: '0 0 24 24', "data-test-id": testId, ref: ref }, props, { children: [(0, jsx_runtime_1.jsx)("g", { clipPath: 'url(#ZaiLogoLight_svg__a)', children: (0, jsx_runtime_1.jsx)("path", { fill: '#000', fillRule: 'evenodd', d: 'M12.105 2 9.927 4.953H.653L2.83 2zm11.149 17.048L21.078 22h-9.242l2.174-2.952zM24 2 9.264 22H0L14.736 2z', clipRule: 'evenodd' }) }), (0, jsx_runtime_1.jsx)("defs", { children: (0, jsx_runtime_1.jsx)("clipPath", { id: 'ZaiLogoLight_svg__a', children: (0, jsx_runtime_1.jsx)("path", { fill: '#fff', d: 'M0 0h24v24H0z' }) }) })] })));
66
+ });
67
+ exports.default = SvgZaiLogoLight;
@@ -0,0 +1,3 @@
1
+ import { ISvgIconProps } from './ZaiLogoLight';
2
+ declare const ZaiLogoSvg: import("react").ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default ZaiLogoSvg;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const jsx_runtime_1 = require("react/jsx-runtime");
7
+ const react_1 = require("react");
8
+ const ZaiLogoLight_1 = __importDefault(require("./ZaiLogoLight"));
9
+ const ZaiLogoDark_1 = __importDefault(require("./ZaiLogoDark"));
10
+ const utils_1 = require("../../utils");
11
+ const ZaiLogoSvg = (0, react_1.forwardRef)(function ZaiLogoSvg(props, ref) {
12
+ const { isDarkTheme } = (0, utils_1.useThemeModification)();
13
+ const { isDarkBrand } = (0, utils_1.useBrandModification)();
14
+ return isDarkTheme || isDarkBrand ? (0, jsx_runtime_1.jsx)(ZaiLogoDark_1.default, Object.assign({}, props, { ref: ref })) : (0, jsx_runtime_1.jsx)(ZaiLogoLight_1.default, Object.assign({}, props, { ref: ref }));
15
+ });
16
+ exports.default = ZaiLogoSvg;
@@ -73,6 +73,7 @@ export { default as K8sgptLogoSVG } from './K8sgptLogo';
73
73
  export { default as KaggleLogoSVG } from './KaggleLogo';
74
74
  export { default as KatadeployLogoSVG } from './KatadeployLogo';
75
75
  export { default as KedaLogoSVG } from './KedaLogo';
76
+ export { default as KimiLogoSVG } from './KimiLogo';
76
77
  export { default as KotlinLogoSVG } from './KotlinLogo';
77
78
  export { default as KuberLogoSVG } from './KuberLogo';
78
79
  export { default as KubestatemetricsLogoSVG } from './KubestatemetricsLogo';
@@ -81,6 +82,7 @@ export { default as LempLogoSVG } from './LempLogo';
81
82
  export { default as ManagedServiceForRedisLogoSVG } from './ManagedServiceForRedisLogo';
82
83
  export { default as MattermostLogoSVG } from './MattermostLogo';
83
84
  export { default as MaxLogoSVG } from './MaxLogo';
85
+ export { default as MiniMaxLogoSVG } from './MiniMaxLogo';
84
86
  export { default as MistralAiLogoSVG } from './MistralAiLogo';
85
87
  export { default as MlSpaceFullLogoSVG } from './MlSpaceFullLogo';
86
88
  export { default as MlSpaceLogoSVG } from './MlSpaceLogo';
@@ -143,3 +145,4 @@ export { default as WhatsAppLogoSVG } from './WhatsAppLogo';
143
145
  export { default as WindowsServerLogoSVG } from './WindowsServerLogo';
144
146
  export { default as WordPressLogoSVG } from './WordPressLogo';
145
147
  export { default as YandexBrowserLogoSVG } from './YandexBrowserLogo';
148
+ export { default as ZaiLogoSVG } from './ZaiLogo';
@@ -4,8 +4,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.GoLogoSVG = exports.GitlabLogoSVG = exports.GitVerseLogoSVG = exports.GitHubLogoSVG = exports.GigaStudioLogoSVG = exports.GigaIDELogoSVG = exports.GigaChatLogoSVG = exports.GigaAgentLogoSVG = exports.GeminiLogoSVG = exports.GatekeeperLogoSVG = exports.FluentbitLogoSVG = exports.FirefoxBrowserLogoSVG = exports.FedoraLogoSVG = exports.ExternaldnsLogoSVG = exports.EsoLogoSVG = exports.DrupalLogoSVG = exports.DockerLogoSVG = exports.DjangoLogoSVG = exports.DisplayvideoLogoSVG = exports.DeepseekLogoSVG = exports.DebianLogoSVG = exports.CsharpLogoSVG = exports.CplusLogoSVG = exports.CorednsLogoSVG = exports.ConnaisseuerLogoSVG = exports.CloudSqlLogoSVG = exports.CloudSpannerLogoSVG = exports.CloudLogoStageSVG = exports.CloudLogoHybridSVG = exports.CloudLogoDevSVG = exports.CloudLogoSVG = exports.CloudFullLogoSVG = exports.ClickhouseLogoSVG = exports.ClaudeSonnetLogoSVG = exports.CiliumLogoSVG = exports.ChromiumBrowserLogoSVG = exports.CertmanagerLogoSVG = exports.CampaignManagerLogoSVG = exports.CalicoLogoSVG = exports.CSIS3LogoSVG = exports.CSIDriverLogoSVG = exports.BootcampLogoSVG = exports.BigQueryLogoSVG = exports.BaaiLogoSVG = exports.AzureLogoSVG = exports.ApacheLogoSVG = exports.AmazonLogoSVG = exports.AlmaLinuxLogoSVG = exports.AiCloudLogoSVG = exports.AgentSandboxLogoSVG = void 0;
7
- exports.OpenAiChatGptLogoSVG = exports.NvidiaNemoLogoSVG = exports.NvidiaLogoSVG = exports.NpmLogoSVG = exports.NodejsLogoSVG = exports.NodeexporterLogoSVG = exports.NginxLogoSVG = exports.NginxIngressLogoSVG = exports.NemoClawLogoSVG = exports.N8nLogoSVG = exports.MysqlLogoSVG = exports.MsSqlLogoSVG = exports.ModxLogoSVG = exports.MlflowLogoSVG = exports.MlSpaceLogoSVG = exports.MlSpaceFullLogoSVG = exports.MistralAiLogoSVG = exports.MaxLogoSVG = exports.MattermostLogoSVG = exports.ManagedServiceForRedisLogoSVG = exports.LempLogoSVG = exports.KyvernoLogoSVG = exports.KubestatemetricsLogoSVG = exports.KuberLogoSVG = exports.KotlinLogoSVG = exports.KedaLogoSVG = exports.KatadeployLogoSVG = exports.KaggleLogoSVG = exports.K8sgptLogoSVG = exports.K8scleanerLogoSVG = exports.JupiterLogoSVG = exports.JoomlaLogoSVG = exports.JenkinsLogoSVG = exports.JazzLogoSVG = exports.JavaLogoSVG = exports.IstioLogoSVG = exports.IndextsLogoSVG = exports.HuggingfaceLogoSVG = exports.HorovodLogoSVG = exports.HiveLogoSVG = exports.HelmLogoSVG = exports.HdfsLogoSVG = exports.GoogleadManagerLogoSVG = exports.GoogleSheetsLogoSVG = exports.GoogleCloudStorageLogoSVG = exports.GoogleCloudPlatformLogoSVG = exports.GoogleChromeBrowserLogoSVG = exports.GoogleAnalyticsLogoSVG = exports.GoogleAdsLogoSVG = exports.GolosLogoSVG = void 0;
8
- exports.YandexBrowserLogoSVG = exports.WordPressLogoSVG = exports.WindowsServerLogoSVG = exports.WhatsAppLogoSVG = exports.VmwareLogoSVG = exports.VmagentLogoSVG = exports.UbuntuLogoSVG = exports.TtechLogoSVG = exports.TrivyLogoSVG = exports.TelegramLogoSVG = exports.T5LogoSVG = exports.SynapseservicemeshLogoSVG = exports.StrongSwanLogoSVG = exports.SpegelLogoSVG = exports.SparkLogoSVG = exports.SentosLogoSVG = exports.SberLogoSVG = exports.SberBusinessLogoSVG = exports.SafariBrowserLogoSVG = exports.RustLogoSVG = exports.RubyStackLogoSVG = exports.RuDalleLogoSVG = exports.RockyLinuxLogoSVG = exports.ReloaderLogoSVG = exports.RedshiftLogoSVG = exports.RedmineLogoSVG = exports.ReactLogoSVG = exports.RPMLogoSVG = exports.QwenLogoSVG = exports.PytorchLogoSVG = exports.PythonLogoSVG = exports.ProxmoxLogoSVG = exports.PostgreLogoSVG = exports.PlatformvLogoSVG = exports.PerplexityLogoSVG = exports.OvirtLogoSVG = exports.OuroborosLogoSVG = exports.OrasLogoSVG = exports.OracleLogoSVG = exports.OracleLinuxLogoSVG = exports.OpencartLogoSVG = exports.OpenSuseLogoSVG = exports.OpenStackLogoSVG = exports.OpenContainerInitiativeLogoSVG = exports.OpenClawLogoSVG = void 0;
7
+ exports.NvidiaLogoSVG = exports.NpmLogoSVG = exports.NodejsLogoSVG = exports.NodeexporterLogoSVG = exports.NginxLogoSVG = exports.NginxIngressLogoSVG = exports.NemoClawLogoSVG = exports.N8nLogoSVG = exports.MysqlLogoSVG = exports.MsSqlLogoSVG = exports.ModxLogoSVG = exports.MlflowLogoSVG = exports.MlSpaceLogoSVG = exports.MlSpaceFullLogoSVG = exports.MistralAiLogoSVG = exports.MiniMaxLogoSVG = exports.MaxLogoSVG = exports.MattermostLogoSVG = exports.ManagedServiceForRedisLogoSVG = exports.LempLogoSVG = exports.KyvernoLogoSVG = exports.KubestatemetricsLogoSVG = exports.KuberLogoSVG = exports.KotlinLogoSVG = exports.KimiLogoSVG = exports.KedaLogoSVG = exports.KatadeployLogoSVG = exports.KaggleLogoSVG = exports.K8sgptLogoSVG = exports.K8scleanerLogoSVG = exports.JupiterLogoSVG = exports.JoomlaLogoSVG = exports.JenkinsLogoSVG = exports.JazzLogoSVG = exports.JavaLogoSVG = exports.IstioLogoSVG = exports.IndextsLogoSVG = exports.HuggingfaceLogoSVG = exports.HorovodLogoSVG = exports.HiveLogoSVG = exports.HelmLogoSVG = exports.HdfsLogoSVG = exports.GoogleadManagerLogoSVG = exports.GoogleSheetsLogoSVG = exports.GoogleCloudStorageLogoSVG = exports.GoogleCloudPlatformLogoSVG = exports.GoogleChromeBrowserLogoSVG = exports.GoogleAnalyticsLogoSVG = exports.GoogleAdsLogoSVG = exports.GolosLogoSVG = void 0;
8
+ exports.ZaiLogoSVG = exports.YandexBrowserLogoSVG = exports.WordPressLogoSVG = exports.WindowsServerLogoSVG = exports.WhatsAppLogoSVG = exports.VmwareLogoSVG = exports.VmagentLogoSVG = exports.UbuntuLogoSVG = exports.TtechLogoSVG = exports.TrivyLogoSVG = exports.TelegramLogoSVG = exports.T5LogoSVG = exports.SynapseservicemeshLogoSVG = exports.StrongSwanLogoSVG = exports.SpegelLogoSVG = exports.SparkLogoSVG = exports.SentosLogoSVG = exports.SberLogoSVG = exports.SberBusinessLogoSVG = exports.SafariBrowserLogoSVG = exports.RustLogoSVG = exports.RubyStackLogoSVG = exports.RuDalleLogoSVG = exports.RockyLinuxLogoSVG = exports.ReloaderLogoSVG = exports.RedshiftLogoSVG = exports.RedmineLogoSVG = exports.ReactLogoSVG = exports.RPMLogoSVG = exports.QwenLogoSVG = exports.PytorchLogoSVG = exports.PythonLogoSVG = exports.ProxmoxLogoSVG = exports.PostgreLogoSVG = exports.PlatformvLogoSVG = exports.PerplexityLogoSVG = exports.OvirtLogoSVG = exports.OuroborosLogoSVG = exports.OrasLogoSVG = exports.OracleLogoSVG = exports.OracleLinuxLogoSVG = exports.OpencartLogoSVG = exports.OpenSuseLogoSVG = exports.OpenStackLogoSVG = exports.OpenContainerInitiativeLogoSVG = exports.OpenClawLogoSVG = exports.OpenAiChatGptLogoSVG = exports.NvidiaNemoLogoSVG = void 0;
9
9
  var AgentSandboxLogo_1 = require("./AgentSandboxLogo");
10
10
  Object.defineProperty(exports, "AgentSandboxLogoSVG", { enumerable: true, get: function () { return __importDefault(AgentSandboxLogo_1).default; } });
11
11
  var AiCloudLogo_1 = require("./AiCloudLogo");
@@ -156,6 +156,8 @@ var KatadeployLogo_1 = require("./KatadeployLogo");
156
156
  Object.defineProperty(exports, "KatadeployLogoSVG", { enumerable: true, get: function () { return __importDefault(KatadeployLogo_1).default; } });
157
157
  var KedaLogo_1 = require("./KedaLogo");
158
158
  Object.defineProperty(exports, "KedaLogoSVG", { enumerable: true, get: function () { return __importDefault(KedaLogo_1).default; } });
159
+ var KimiLogo_1 = require("./KimiLogo");
160
+ Object.defineProperty(exports, "KimiLogoSVG", { enumerable: true, get: function () { return __importDefault(KimiLogo_1).default; } });
159
161
  var KotlinLogo_1 = require("./KotlinLogo");
160
162
  Object.defineProperty(exports, "KotlinLogoSVG", { enumerable: true, get: function () { return __importDefault(KotlinLogo_1).default; } });
161
163
  var KuberLogo_1 = require("./KuberLogo");
@@ -172,6 +174,8 @@ var MattermostLogo_1 = require("./MattermostLogo");
172
174
  Object.defineProperty(exports, "MattermostLogoSVG", { enumerable: true, get: function () { return __importDefault(MattermostLogo_1).default; } });
173
175
  var MaxLogo_1 = require("./MaxLogo");
174
176
  Object.defineProperty(exports, "MaxLogoSVG", { enumerable: true, get: function () { return __importDefault(MaxLogo_1).default; } });
177
+ var MiniMaxLogo_1 = require("./MiniMaxLogo");
178
+ Object.defineProperty(exports, "MiniMaxLogoSVG", { enumerable: true, get: function () { return __importDefault(MiniMaxLogo_1).default; } });
175
179
  var MistralAiLogo_1 = require("./MistralAiLogo");
176
180
  Object.defineProperty(exports, "MistralAiLogoSVG", { enumerable: true, get: function () { return __importDefault(MistralAiLogo_1).default; } });
177
181
  var MlSpaceFullLogo_1 = require("./MlSpaceFullLogo");
@@ -296,3 +300,5 @@ var WordPressLogo_1 = require("./WordPressLogo");
296
300
  Object.defineProperty(exports, "WordPressLogoSVG", { enumerable: true, get: function () { return __importDefault(WordPressLogo_1).default; } });
297
301
  var YandexBrowserLogo_1 = require("./YandexBrowserLogo");
298
302
  Object.defineProperty(exports, "YandexBrowserLogoSVG", { enumerable: true, get: function () { return __importDefault(YandexBrowserLogo_1).default; } });
303
+ var ZaiLogo_1 = require("./ZaiLogo");
304
+ Object.defineProperty(exports, "ZaiLogoSVG", { enumerable: true, get: function () { return __importDefault(ZaiLogo_1).default; } });
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface ISvgIconProps extends SVGProps<SVGSVGElement> {
4
+ className?: string;
5
+ size?: number;
6
+ style?: React.CSSProperties;
7
+ }
8
+ declare const SvgKimiLogoDark: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgKimiLogoDark;
@@ -0,0 +1,32 @@
1
+ var __rest = (this && this.__rest) || function (s, e) {
2
+ var t = {};
3
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
4
+ t[p] = s[p];
5
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
6
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
7
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
8
+ t[p[i]] = s[p[i]];
9
+ }
10
+ return t;
11
+ };
12
+ import { jsx as _jsx } from "react/jsx-runtime";
13
+ // DO NOT EDIT IT MANUALLY
14
+ import * as React from 'react';
15
+ const SvgKimiLogoDark = React.forwardRef((_a, ref) => {
16
+ var { size } = _a, props = __rest(_a, ["size"]);
17
+ props.width = undefined;
18
+ props.height = undefined;
19
+ const testId = 'icon-kimi-logo-dark';
20
+ const style = {};
21
+ const isCustomSize = typeof size === 'number';
22
+ if (isCustomSize) {
23
+ style.width = size + 'px';
24
+ style.height = size + 'px';
25
+ if (!props.style)
26
+ props.style = {};
27
+ props.style.width = size + 'px';
28
+ props.style.height = size + 'px';
29
+ }
30
+ return (_jsx("svg", Object.assign({ xmlns: 'http://www.w3.org/2000/svg', width: 24, height: 24, fill: 'none', viewBox: '0 0 24 24', "data-test-id": testId, ref: ref }, props, { children: _jsx("path", { fill: '#fff', fillRule: 'evenodd', d: 'M20.846 1a1.923 1.923 0 1 1 0 3.846H19.15a.226.226 0 0 1-.227-.226V2.923c0-1.062.86-1.923 1.923-1.923M10.065 12.199l7.257-7.2c.137-.136.06-.41-.116-.41H13.3a.16.16 0 0 0-.117.05l-7.82 7.757c-.122.12-.302.013-.302-.18V4.82c0-.127-.083-.23-.185-.23h-2.69c-.103 0-.186.103-.186.23v15.95c0 .128.083.23.186.23h2.69c.103 0 .186-.102.186-.23v-3.25a.25.25 0 0 1 .069-.178l2.424-2.406a.16.16 0 0 1 .205-.023l6.484 4.772a7.7 7.7 0 0 0 3.453 1.283c.108.012.2-.095.2-.23v-3.06c0-.117-.07-.212-.164-.227a5 5 0 0 1-2.027-.807l-5.613-4.064c-.117-.078-.132-.28-.028-.381', clipRule: 'evenodd' }) })));
31
+ });
32
+ export default SvgKimiLogoDark;
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface ISvgIconProps extends SVGProps<SVGSVGElement> {
4
+ className?: string;
5
+ size?: number;
6
+ style?: React.CSSProperties;
7
+ }
8
+ declare const SvgKimiLogoLight: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgKimiLogoLight;
@@ -0,0 +1,32 @@
1
+ var __rest = (this && this.__rest) || function (s, e) {
2
+ var t = {};
3
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
4
+ t[p] = s[p];
5
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
6
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
7
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
8
+ t[p[i]] = s[p[i]];
9
+ }
10
+ return t;
11
+ };
12
+ import { jsx as _jsx } from "react/jsx-runtime";
13
+ // DO NOT EDIT IT MANUALLY
14
+ import * as React from 'react';
15
+ const SvgKimiLogoLight = React.forwardRef((_a, ref) => {
16
+ var { size } = _a, props = __rest(_a, ["size"]);
17
+ props.width = undefined;
18
+ props.height = undefined;
19
+ const testId = 'icon-kimi-logo-light';
20
+ const style = {};
21
+ const isCustomSize = typeof size === 'number';
22
+ if (isCustomSize) {
23
+ style.width = size + 'px';
24
+ style.height = size + 'px';
25
+ if (!props.style)
26
+ props.style = {};
27
+ props.style.width = size + 'px';
28
+ props.style.height = size + 'px';
29
+ }
30
+ return (_jsx("svg", Object.assign({ xmlns: 'http://www.w3.org/2000/svg', width: 24, height: 24, fill: 'none', viewBox: '0 0 24 24', "data-test-id": testId, ref: ref }, props, { children: _jsx("path", { fill: '#000', fillRule: 'evenodd', d: 'M20.846 1a1.923 1.923 0 1 1 0 3.846H19.15a.226.226 0 0 1-.227-.226V2.923c0-1.062.86-1.923 1.923-1.923M10.065 12.199l7.257-7.2c.137-.136.06-.41-.116-.41H13.3a.16.16 0 0 0-.117.05l-7.82 7.757c-.122.12-.302.013-.302-.18V4.82c0-.127-.083-.23-.185-.23h-2.69c-.103 0-.186.103-.186.23v15.95c0 .128.083.23.186.23h2.69c.103 0 .186-.102.186-.23v-3.25a.25.25 0 0 1 .069-.178l2.424-2.406a.16.16 0 0 1 .205-.023l6.484 4.772a7.7 7.7 0 0 0 3.453 1.283c.108.012.2-.095.2-.23v-3.06c0-.117-.07-.212-.164-.227a5 5 0 0 1-2.027-.807l-5.613-4.064c-.117-.078-.132-.28-.028-.381', clipRule: 'evenodd' }) })));
31
+ });
32
+ export default SvgKimiLogoLight;
@@ -0,0 +1,3 @@
1
+ import { ISvgIconProps } from './KimiLogoLight';
2
+ declare const KimiLogoSvg: import("react").ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default KimiLogoSvg;
@@ -0,0 +1,11 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ import KimiLogoLight from './KimiLogoLight';
4
+ import KimiLogoDark from './KimiLogoDark';
5
+ import { useThemeModification, useBrandModification } from '../../utils';
6
+ const KimiLogoSvg = forwardRef(function KimiLogoSvg(props, ref) {
7
+ const { isDarkTheme } = useThemeModification();
8
+ const { isDarkBrand } = useBrandModification();
9
+ return isDarkTheme || isDarkBrand ? _jsx(KimiLogoDark, Object.assign({}, props, { ref: ref })) : _jsx(KimiLogoLight, Object.assign({}, props, { ref: ref }));
10
+ });
11
+ export default KimiLogoSvg;
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface ISvgIconProps extends SVGProps<SVGSVGElement> {
4
+ className?: string;
5
+ size?: number;
6
+ style?: React.CSSProperties;
7
+ }
8
+ declare const SvgMiniMaxLogoDark: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgMiniMaxLogoDark;
@@ -0,0 +1,32 @@
1
+ var __rest = (this && this.__rest) || function (s, e) {
2
+ var t = {};
3
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
4
+ t[p] = s[p];
5
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
6
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
7
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
8
+ t[p[i]] = s[p[i]];
9
+ }
10
+ return t;
11
+ };
12
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
+ // DO NOT EDIT IT MANUALLY
14
+ import * as React from 'react';
15
+ const SvgMiniMaxLogoDark = React.forwardRef((_a, ref) => {
16
+ var { size } = _a, props = __rest(_a, ["size"]);
17
+ props.width = undefined;
18
+ props.height = undefined;
19
+ const testId = 'icon-mini-max-logo-dark';
20
+ const style = {};
21
+ const isCustomSize = typeof size === 'number';
22
+ if (isCustomSize) {
23
+ style.width = size + 'px';
24
+ style.height = size + 'px';
25
+ if (!props.style)
26
+ props.style = {};
27
+ props.style.width = size + 'px';
28
+ props.style.height = size + 'px';
29
+ }
30
+ return (_jsxs("svg", Object.assign({ xmlns: 'http://www.w3.org/2000/svg', width: 24, height: 24, fill: 'none', viewBox: '0 0 24 24', "data-test-id": testId, ref: ref }, props, { children: [_jsx("g", { clipPath: 'url(#MiniMaxLogoDark_svg__a)', children: _jsx("path", { fill: 'url(#MiniMaxLogoDark_svg__b)', d: 'M16.278 2c1.156 0 2.093.927 2.093 2.07v12.501a.74.74 0 0 0 .744.709.74.74 0 0 0 .743-.709V9.099a2.06 2.06 0 0 1 2.071-2.049A2.06 2.06 0 0 1 24 9.1v6.561a.65.65 0 0 1-.652.645.65.65 0 0 1-.653-.645V9.1a.763.763 0 0 0-1.058-.702.76.76 0 0 0-.474.702v7.472a2.036 2.036 0 0 1-2.048 2.026 2.04 2.04 0 0 1-2.048-2.026v-12.5a.785.785 0 0 0-.788-.753.785.785 0 0 0-.789.752l-.001 15.904A2.037 2.037 0 0 1 13.441 22a2.04 2.04 0 0 1-2.048-2.026V18.04c0-.356.292-.645.652-.645s.652.289.652.645v1.934c0 .263.142.506.372.638a.753.753 0 0 0 1.016-.269c.065-.112.1-.24.1-.369V4.07c0-1.143.937-2.07 2.093-2.07m-5.674 0c1.156 0 2.093.927 2.093 2.07v11.523a.65.65 0 0 1-.652.645.647.647 0 0 1-.652-.645V4.07a.785.785 0 0 0-.789-.78.785.785 0 0 0-.789.78v14.013a2.06 2.06 0 0 1-2.07 2.048 2.06 2.06 0 0 1-2.071-2.048V9.1a.76.76 0 0 0-.766-.758.76.76 0 0 0-.766.758v3.8a2.06 2.06 0 0 1-2.071 2.049A2.06 2.06 0 0 1 0 12.9v-1.378c0-.357.292-.646.652-.646s.653.29.653.646V12.9c0 .418.343.757.766.757a.76.76 0 0 0 .766-.757V9.099a2.06 2.06 0 0 1 2.07-2.048 2.06 2.06 0 0 1 2.071 2.048v8.984c0 .419.343.758.767.758a.76.76 0 0 0 .766-.758V4.07c0-1.143.937-2.07 2.093-2.07' }) }), _jsxs("defs", { children: [_jsxs("linearGradient", { id: 'MiniMaxLogoDark_svg__b', x1: 0, x2: 24.044, y1: 12.011, y2: 12.011, gradientUnits: 'userSpaceOnUse', children: [_jsx("stop", { stopColor: '#E2167E' }), _jsx("stop", { offset: 1, stopColor: '#FE603C' })] }), _jsx("clipPath", { id: 'MiniMaxLogoDark_svg__a', children: _jsx("path", { fill: '#fff', d: 'M0 0h24v24H0z' }) })] })] })));
31
+ });
32
+ export default SvgMiniMaxLogoDark;
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface ISvgIconProps extends SVGProps<SVGSVGElement> {
4
+ className?: string;
5
+ size?: number;
6
+ style?: React.CSSProperties;
7
+ }
8
+ declare const SvgMiniMaxLogoLight: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgMiniMaxLogoLight;
@@ -0,0 +1,32 @@
1
+ var __rest = (this && this.__rest) || function (s, e) {
2
+ var t = {};
3
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
4
+ t[p] = s[p];
5
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
6
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
7
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
8
+ t[p[i]] = s[p[i]];
9
+ }
10
+ return t;
11
+ };
12
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
+ // DO NOT EDIT IT MANUALLY
14
+ import * as React from 'react';
15
+ const SvgMiniMaxLogoLight = React.forwardRef((_a, ref) => {
16
+ var { size } = _a, props = __rest(_a, ["size"]);
17
+ props.width = undefined;
18
+ props.height = undefined;
19
+ const testId = 'icon-mini-max-logo-light';
20
+ const style = {};
21
+ const isCustomSize = typeof size === 'number';
22
+ if (isCustomSize) {
23
+ style.width = size + 'px';
24
+ style.height = size + 'px';
25
+ if (!props.style)
26
+ props.style = {};
27
+ props.style.width = size + 'px';
28
+ props.style.height = size + 'px';
29
+ }
30
+ return (_jsxs("svg", Object.assign({ xmlns: 'http://www.w3.org/2000/svg', width: 24, height: 24, fill: 'none', viewBox: '0 0 24 24', "data-test-id": testId, ref: ref }, props, { children: [_jsx("g", { clipPath: 'url(#MiniMaxLogoLight_svg__a)', children: _jsx("path", { fill: 'url(#MiniMaxLogoLight_svg__b)', d: 'M16.278 2c1.156 0 2.093.927 2.093 2.07v12.501a.74.74 0 0 0 .744.709.74.74 0 0 0 .743-.709V9.099a2.06 2.06 0 0 1 2.071-2.049A2.06 2.06 0 0 1 24 9.1v6.561a.65.65 0 0 1-.652.645.65.65 0 0 1-.653-.645V9.1a.763.763 0 0 0-1.058-.702.76.76 0 0 0-.474.702v7.472a2.036 2.036 0 0 1-2.048 2.026 2.04 2.04 0 0 1-2.048-2.026v-12.5a.785.785 0 0 0-.788-.753.785.785 0 0 0-.789.752l-.001 15.904A2.037 2.037 0 0 1 13.441 22a2.04 2.04 0 0 1-2.048-2.026V18.04c0-.356.292-.645.652-.645s.652.289.652.645v1.934c0 .263.142.506.372.638a.753.753 0 0 0 1.016-.269c.065-.112.1-.24.1-.369V4.07c0-1.143.937-2.07 2.093-2.07m-5.674 0c1.156 0 2.093.927 2.093 2.07v11.523a.65.65 0 0 1-.652.645.647.647 0 0 1-.652-.645V4.07a.785.785 0 0 0-.789-.78.785.785 0 0 0-.789.78v14.013a2.06 2.06 0 0 1-2.07 2.048 2.06 2.06 0 0 1-2.071-2.048V9.1a.76.76 0 0 0-.766-.758.76.76 0 0 0-.766.758v3.8a2.06 2.06 0 0 1-2.071 2.049A2.06 2.06 0 0 1 0 12.9v-1.378c0-.357.292-.646.652-.646s.653.29.653.646V12.9c0 .418.343.757.766.757a.76.76 0 0 0 .766-.757V9.099a2.06 2.06 0 0 1 2.07-2.048 2.06 2.06 0 0 1 2.071 2.048v8.984c0 .419.343.758.767.758a.76.76 0 0 0 .766-.758V4.07c0-1.143.937-2.07 2.093-2.07' }) }), _jsxs("defs", { children: [_jsxs("linearGradient", { id: 'MiniMaxLogoLight_svg__b', x1: 0, x2: 24.044, y1: 12.011, y2: 12.011, gradientUnits: 'userSpaceOnUse', children: [_jsx("stop", { stopColor: '#E2167E' }), _jsx("stop", { offset: 1, stopColor: '#FE603C' })] }), _jsx("clipPath", { id: 'MiniMaxLogoLight_svg__a', children: _jsx("path", { fill: '#fff', d: 'M0 0h24v24H0z' }) })] })] })));
31
+ });
32
+ export default SvgMiniMaxLogoLight;
@@ -0,0 +1,3 @@
1
+ import { ISvgIconProps } from './MiniMaxLogoLight';
2
+ declare const MiniMaxLogoSvg: import("react").ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default MiniMaxLogoSvg;
@@ -0,0 +1,11 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ import MiniMaxLogoLight from './MiniMaxLogoLight';
4
+ import MiniMaxLogoDark from './MiniMaxLogoDark';
5
+ import { useThemeModification, useBrandModification } from '../../utils';
6
+ const MiniMaxLogoSvg = forwardRef(function MiniMaxLogoSvg(props, ref) {
7
+ const { isDarkTheme } = useThemeModification();
8
+ const { isDarkBrand } = useBrandModification();
9
+ return isDarkTheme || isDarkBrand ? (_jsx(MiniMaxLogoDark, Object.assign({}, props, { ref: ref }))) : (_jsx(MiniMaxLogoLight, Object.assign({}, props, { ref: ref })));
10
+ });
11
+ export default MiniMaxLogoSvg;
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface ISvgIconProps extends SVGProps<SVGSVGElement> {
4
+ className?: string;
5
+ size?: number;
6
+ style?: React.CSSProperties;
7
+ }
8
+ declare const SvgZaiLogoDark: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgZaiLogoDark;
@@ -0,0 +1,32 @@
1
+ var __rest = (this && this.__rest) || function (s, e) {
2
+ var t = {};
3
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
4
+ t[p] = s[p];
5
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
6
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
7
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
8
+ t[p[i]] = s[p[i]];
9
+ }
10
+ return t;
11
+ };
12
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
+ // DO NOT EDIT IT MANUALLY
14
+ import * as React from 'react';
15
+ const SvgZaiLogoDark = React.forwardRef((_a, ref) => {
16
+ var { size } = _a, props = __rest(_a, ["size"]);
17
+ props.width = undefined;
18
+ props.height = undefined;
19
+ const testId = 'icon-zai-logo-dark';
20
+ const style = {};
21
+ const isCustomSize = typeof size === 'number';
22
+ if (isCustomSize) {
23
+ style.width = size + 'px';
24
+ style.height = size + 'px';
25
+ if (!props.style)
26
+ props.style = {};
27
+ props.style.width = size + 'px';
28
+ props.style.height = size + 'px';
29
+ }
30
+ return (_jsxs("svg", Object.assign({ xmlns: 'http://www.w3.org/2000/svg', width: 24, height: 24, fill: 'none', viewBox: '0 0 24 24', "data-test-id": testId, ref: ref }, props, { children: [_jsx("g", { clipPath: 'url(#ZaiLogoDark_svg__a)', children: _jsx("path", { fill: '#fff', fillRule: 'evenodd', d: 'M12.105 2 9.927 4.953H.653L2.83 2zm11.149 17.048L21.078 22h-9.242l2.174-2.952zM24 2 9.264 22H0L14.736 2z', clipRule: 'evenodd' }) }), _jsx("defs", { children: _jsx("clipPath", { id: 'ZaiLogoDark_svg__a', children: _jsx("path", { fill: '#fff', d: 'M0 0h24v24H0z' }) }) })] })));
31
+ });
32
+ export default SvgZaiLogoDark;
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface ISvgIconProps extends SVGProps<SVGSVGElement> {
4
+ className?: string;
5
+ size?: number;
6
+ style?: React.CSSProperties;
7
+ }
8
+ declare const SvgZaiLogoLight: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgZaiLogoLight;
@@ -0,0 +1,32 @@
1
+ var __rest = (this && this.__rest) || function (s, e) {
2
+ var t = {};
3
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
4
+ t[p] = s[p];
5
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
6
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
7
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
8
+ t[p[i]] = s[p[i]];
9
+ }
10
+ return t;
11
+ };
12
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
+ // DO NOT EDIT IT MANUALLY
14
+ import * as React from 'react';
15
+ const SvgZaiLogoLight = React.forwardRef((_a, ref) => {
16
+ var { size } = _a, props = __rest(_a, ["size"]);
17
+ props.width = undefined;
18
+ props.height = undefined;
19
+ const testId = 'icon-zai-logo-light';
20
+ const style = {};
21
+ const isCustomSize = typeof size === 'number';
22
+ if (isCustomSize) {
23
+ style.width = size + 'px';
24
+ style.height = size + 'px';
25
+ if (!props.style)
26
+ props.style = {};
27
+ props.style.width = size + 'px';
28
+ props.style.height = size + 'px';
29
+ }
30
+ return (_jsxs("svg", Object.assign({ xmlns: 'http://www.w3.org/2000/svg', width: 24, height: 24, fill: 'none', viewBox: '0 0 24 24', "data-test-id": testId, ref: ref }, props, { children: [_jsx("g", { clipPath: 'url(#ZaiLogoLight_svg__a)', children: _jsx("path", { fill: '#000', fillRule: 'evenodd', d: 'M12.105 2 9.927 4.953H.653L2.83 2zm11.149 17.048L21.078 22h-9.242l2.174-2.952zM24 2 9.264 22H0L14.736 2z', clipRule: 'evenodd' }) }), _jsx("defs", { children: _jsx("clipPath", { id: 'ZaiLogoLight_svg__a', children: _jsx("path", { fill: '#fff', d: 'M0 0h24v24H0z' }) }) })] })));
31
+ });
32
+ export default SvgZaiLogoLight;
@@ -0,0 +1,3 @@
1
+ import { ISvgIconProps } from './ZaiLogoLight';
2
+ declare const ZaiLogoSvg: import("react").ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default ZaiLogoSvg;
@@ -0,0 +1,11 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ import ZaiLogoLight from './ZaiLogoLight';
4
+ import ZaiLogoDark from './ZaiLogoDark';
5
+ import { useThemeModification, useBrandModification } from '../../utils';
6
+ const ZaiLogoSvg = forwardRef(function ZaiLogoSvg(props, ref) {
7
+ const { isDarkTheme } = useThemeModification();
8
+ const { isDarkBrand } = useBrandModification();
9
+ return isDarkTheme || isDarkBrand ? _jsx(ZaiLogoDark, Object.assign({}, props, { ref: ref })) : _jsx(ZaiLogoLight, Object.assign({}, props, { ref: ref }));
10
+ });
11
+ export default ZaiLogoSvg;
@@ -73,6 +73,7 @@ export { default as K8sgptLogoSVG } from './K8sgptLogo';
73
73
  export { default as KaggleLogoSVG } from './KaggleLogo';
74
74
  export { default as KatadeployLogoSVG } from './KatadeployLogo';
75
75
  export { default as KedaLogoSVG } from './KedaLogo';
76
+ export { default as KimiLogoSVG } from './KimiLogo';
76
77
  export { default as KotlinLogoSVG } from './KotlinLogo';
77
78
  export { default as KuberLogoSVG } from './KuberLogo';
78
79
  export { default as KubestatemetricsLogoSVG } from './KubestatemetricsLogo';
@@ -81,6 +82,7 @@ export { default as LempLogoSVG } from './LempLogo';
81
82
  export { default as ManagedServiceForRedisLogoSVG } from './ManagedServiceForRedisLogo';
82
83
  export { default as MattermostLogoSVG } from './MattermostLogo';
83
84
  export { default as MaxLogoSVG } from './MaxLogo';
85
+ export { default as MiniMaxLogoSVG } from './MiniMaxLogo';
84
86
  export { default as MistralAiLogoSVG } from './MistralAiLogo';
85
87
  export { default as MlSpaceFullLogoSVG } from './MlSpaceFullLogo';
86
88
  export { default as MlSpaceLogoSVG } from './MlSpaceLogo';
@@ -143,3 +145,4 @@ export { default as WhatsAppLogoSVG } from './WhatsAppLogo';
143
145
  export { default as WindowsServerLogoSVG } from './WindowsServerLogo';
144
146
  export { default as WordPressLogoSVG } from './WordPressLogo';
145
147
  export { default as YandexBrowserLogoSVG } from './YandexBrowserLogo';
148
+ export { default as ZaiLogoSVG } from './ZaiLogo';
@@ -73,6 +73,7 @@ export { default as K8sgptLogoSVG } from './K8sgptLogo';
73
73
  export { default as KaggleLogoSVG } from './KaggleLogo';
74
74
  export { default as KatadeployLogoSVG } from './KatadeployLogo';
75
75
  export { default as KedaLogoSVG } from './KedaLogo';
76
+ export { default as KimiLogoSVG } from './KimiLogo';
76
77
  export { default as KotlinLogoSVG } from './KotlinLogo';
77
78
  export { default as KuberLogoSVG } from './KuberLogo';
78
79
  export { default as KubestatemetricsLogoSVG } from './KubestatemetricsLogo';
@@ -81,6 +82,7 @@ export { default as LempLogoSVG } from './LempLogo';
81
82
  export { default as ManagedServiceForRedisLogoSVG } from './ManagedServiceForRedisLogo';
82
83
  export { default as MattermostLogoSVG } from './MattermostLogo';
83
84
  export { default as MaxLogoSVG } from './MaxLogo';
85
+ export { default as MiniMaxLogoSVG } from './MiniMaxLogo';
84
86
  export { default as MistralAiLogoSVG } from './MistralAiLogo';
85
87
  export { default as MlSpaceFullLogoSVG } from './MlSpaceFullLogo';
86
88
  export { default as MlSpaceLogoSVG } from './MlSpaceLogo';
@@ -143,3 +145,4 @@ export { default as WhatsAppLogoSVG } from './WhatsAppLogo';
143
145
  export { default as WindowsServerLogoSVG } from './WindowsServerLogo';
144
146
  export { default as WordPressLogoSVG } from './WordPressLogo';
145
147
  export { default as YandexBrowserLogoSVG } from './YandexBrowserLogo';
148
+ export { default as ZaiLogoSVG } from './ZaiLogo';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cloud-ru/uikit-product-icons",
3
3
  "title": "React Icons package",
4
- "version": "17.7.0",
4
+ "version": "17.8.0",
5
5
  "sideEffects": [
6
6
  "*.svg",
7
7
  "*.css",
@@ -79,5 +79,5 @@
79
79
  "svgo": "3.3.2",
80
80
  "yargs": "17.7.2"
81
81
  },
82
- "gitHead": "0ba8fab8e570a50b497bfcf5dfc83ddf9eef91ac"
82
+ "gitHead": "afdf1a34c4380b444d8d85aae085a5731887b418"
83
83
  }