@cloud-ru/uikit-product-icons 17.8.1 → 17.10.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 (38) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/dist/cjs/components/logo-icons/AgentsSpaceLogo/AgentsSpaceLogoDark.d.ts +9 -0
  3. package/dist/cjs/components/logo-icons/AgentsSpaceLogo/AgentsSpaceLogoDark.js +67 -0
  4. package/dist/cjs/components/logo-icons/AgentsSpaceLogo/AgentsSpaceLogoLight.d.ts +9 -0
  5. package/dist/cjs/components/logo-icons/AgentsSpaceLogo/AgentsSpaceLogoLight.js +67 -0
  6. package/dist/cjs/components/logo-icons/AgentsSpaceLogo/index.d.ts +3 -0
  7. package/dist/cjs/components/logo-icons/AgentsSpaceLogo/index.js +16 -0
  8. package/dist/cjs/components/logo-icons/AgentsSpaceLogoFull/AgentsSpaceLogoFullDark.d.ts +9 -0
  9. package/dist/cjs/components/logo-icons/AgentsSpaceLogoFull/AgentsSpaceLogoFullDark.js +67 -0
  10. package/dist/cjs/components/logo-icons/AgentsSpaceLogoFull/AgentsSpaceLogoFullLight.d.ts +9 -0
  11. package/dist/cjs/components/logo-icons/AgentsSpaceLogoFull/AgentsSpaceLogoFullLight.js +67 -0
  12. package/dist/cjs/components/logo-icons/AgentsSpaceLogoFull/index.d.ts +3 -0
  13. package/dist/cjs/components/logo-icons/AgentsSpaceLogoFull/index.js +16 -0
  14. package/dist/cjs/components/logo-icons/index.d.ts +2 -0
  15. package/dist/cjs/components/logo-icons/index.js +7 -3
  16. package/dist/cjs/components/service-icons/AgentsSpace.d.ts +9 -0
  17. package/dist/cjs/components/service-icons/AgentsSpace.js +67 -0
  18. package/dist/cjs/components/service-icons/index.d.ts +1 -0
  19. package/dist/cjs/components/service-icons/index.js +9 -7
  20. package/dist/esm/components/logo-icons/AgentsSpaceLogo/AgentsSpaceLogoDark.d.ts +9 -0
  21. package/dist/esm/components/logo-icons/AgentsSpaceLogo/AgentsSpaceLogoDark.js +32 -0
  22. package/dist/esm/components/logo-icons/AgentsSpaceLogo/AgentsSpaceLogoLight.d.ts +9 -0
  23. package/dist/esm/components/logo-icons/AgentsSpaceLogo/AgentsSpaceLogoLight.js +32 -0
  24. package/dist/esm/components/logo-icons/AgentsSpaceLogo/index.d.ts +3 -0
  25. package/dist/esm/components/logo-icons/AgentsSpaceLogo/index.js +11 -0
  26. package/dist/esm/components/logo-icons/AgentsSpaceLogoFull/AgentsSpaceLogoFullDark.d.ts +9 -0
  27. package/dist/esm/components/logo-icons/AgentsSpaceLogoFull/AgentsSpaceLogoFullDark.js +32 -0
  28. package/dist/esm/components/logo-icons/AgentsSpaceLogoFull/AgentsSpaceLogoFullLight.d.ts +9 -0
  29. package/dist/esm/components/logo-icons/AgentsSpaceLogoFull/AgentsSpaceLogoFullLight.js +32 -0
  30. package/dist/esm/components/logo-icons/AgentsSpaceLogoFull/index.d.ts +3 -0
  31. package/dist/esm/components/logo-icons/AgentsSpaceLogoFull/index.js +11 -0
  32. package/dist/esm/components/logo-icons/index.d.ts +2 -0
  33. package/dist/esm/components/logo-icons/index.js +2 -0
  34. package/dist/esm/components/service-icons/AgentsSpace.d.ts +9 -0
  35. package/dist/esm/components/service-icons/AgentsSpace.js +32 -0
  36. package/dist/esm/components/service-icons/index.d.ts +1 -0
  37. package/dist/esm/components/service-icons/index.js +1 -0
  38. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -3,6 +3,28 @@
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.10.0 (2026-07-28)
7
+
8
+
9
+ ### Features
10
+
11
+ * **PDS-4188:** added Agents Space logos ([5d491c3](https://github.com/cloud-ru-tech/uikit-product/commit/5d491c358fc45a9ad429cf2c4cb098e0fd4dacfd))
12
+
13
+
14
+
15
+
16
+
17
+ # 17.9.0 (2026-07-27)
18
+
19
+
20
+ ### Features
21
+
22
+ * **PDS-4145:** added AgentsSpaceSVG service icon ([d34b6e9](https://github.com/cloud-ru-tech/uikit-product/commit/d34b6e9e8de6a7560331cef4038e69b07f3f50eb))
23
+
24
+
25
+
26
+
27
+
6
28
  ## 17.8.1 (2026-07-27)
7
29
 
8
30
 
@@ -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 SvgAgentsSpaceLogoDark: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgAgentsSpaceLogoDark;
@@ -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 SvgAgentsSpaceLogoDark = React.forwardRef((_a, ref) => {
51
+ var { size } = _a, props = __rest(_a, ["size"]);
52
+ props.width = undefined;
53
+ props.height = undefined;
54
+ const testId = 'icon-agents-space-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)("path", { fill: '#fff', d: 'M10.569 13.436v6.633H3.935v-6.633zm1.433-1.435h-9.5V21.5h9.5z' }), (0, jsx_runtime_1.jsx)("path", { fill: '#fff', d: 'm16.143 3.979 3.882 3.882v12.162h-4.172V8.15H3.98V3.98zm.61-1.477H2.5v7.125h11.875V21.5H21.5V7.248L16.751 2.5z' })] })));
66
+ });
67
+ exports.default = SvgAgentsSpaceLogoDark;
@@ -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 SvgAgentsSpaceLogoLight: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgAgentsSpaceLogoLight;
@@ -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 SvgAgentsSpaceLogoLight = React.forwardRef((_a, ref) => {
51
+ var { size } = _a, props = __rest(_a, ["size"]);
52
+ props.width = undefined;
53
+ props.height = undefined;
54
+ const testId = 'icon-agents-space-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)("path", { fill: '#000', d: 'M10.569 13.436v6.633H3.935v-6.633zm1.433-1.435h-9.5V21.5h9.5z' }), (0, jsx_runtime_1.jsx)("path", { fill: '#000', d: 'm16.143 3.979 3.882 3.882v12.162h-4.172V8.15H3.98V3.98zm.61-1.477H2.5v7.125h11.875V21.5H21.5V7.248L16.751 2.5z' })] })));
66
+ });
67
+ exports.default = SvgAgentsSpaceLogoLight;
@@ -0,0 +1,3 @@
1
+ import { ISvgIconProps } from './AgentsSpaceLogoLight';
2
+ declare const AgentsSpaceLogoSvg: import("react").ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default AgentsSpaceLogoSvg;
@@ -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 AgentsSpaceLogoLight_1 = __importDefault(require("./AgentsSpaceLogoLight"));
9
+ const AgentsSpaceLogoDark_1 = __importDefault(require("./AgentsSpaceLogoDark"));
10
+ const utils_1 = require("../../utils");
11
+ const AgentsSpaceLogoSvg = (0, react_1.forwardRef)(function AgentsSpaceLogoSvg(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)(AgentsSpaceLogoDark_1.default, Object.assign({}, props, { ref: ref }))) : ((0, jsx_runtime_1.jsx)(AgentsSpaceLogoLight_1.default, Object.assign({}, props, { ref: ref })));
15
+ });
16
+ exports.default = AgentsSpaceLogoSvg;
@@ -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 SvgAgentsSpaceLogoFullDark: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgAgentsSpaceLogoFullDark;
@@ -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 SvgAgentsSpaceLogoFullDark = React.forwardRef((_a, ref) => {
51
+ var { size } = _a, props = __rest(_a, ["size"]);
52
+ props.width = undefined;
53
+ props.height = undefined;
54
+ const testId = 'icon-agents-space-logo-full-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: 164, height: 24, fill: 'none', viewBox: '0 0 164 24', "data-test-id": testId, ref: ref }, props, { children: [(0, jsx_runtime_1.jsx)("path", { fill: '#fff', d: 'M10.064 12.93v6.63h-6.63v-6.63zm1.431-1.434H2.002v9.493h9.494z' }), (0, jsx_runtime_1.jsx)("path", { fill: '#fff', d: 'm15.634 3.478 3.88 3.88v12.155h-4.17V7.647H3.478v-4.17zm.61-1.476H2v7.12h11.866V20.99h7.121V6.746L16.241 2zM42.58 19.135h-2.958l-1.49-3.69h-7.137l-1.468 3.69h-2.825L33.019 3.57h3.157zm-5.47-6.247-2.558-6.381-2.558 6.381zM51.03 17.299a3.8 3.8 0 0 1-.522.774 3.4 3.4 0 0 1-.778.664q-.456.289-1.068.464-.611.178-1.39.177-1.067 0-1.947-.322a3.9 3.9 0 0 1-1.51-.989q-.635-.667-.99-1.713-.356-1.045-.356-2.512.001-1.646.356-2.792.357-1.146 1.012-1.867.656-.722 1.59-1.055a6.2 6.2 0 0 1 2.067-.333q1.446 0 2.369.656.922.656 1.3 1.523V8.018h2.447v10.005q0 1.558-.39 2.613t-1.122 1.713q-.733.654-1.78.945a8.8 8.8 0 0 1-2.335.289q-1.557 0-2.735-.39t-1.646-.811V19.49q.244.333.645.655.401.323.922.579.522.256 1.178.412a6 6 0 0 0 1.411.156q.822 0 1.435-.156.612-.157 1.022-.51.411-.355.612-.932.2-.577.2-1.42V17.3zm-2.957-7.214q-1.578 0-2.29.836-.712.837-.712 2.823 0 .915.21 1.55.213.637.6 1.037.389.402.935.58.545.18 1.211.18 1.424 0 2.156-.69.733-.688.846-1.933v-1.667q-.113-1.311-.902-2.013-.789-.7-2.056-.701zM64.987 18.023a2.3 2.3 0 0 1-.579.479q-.378.234-.912.433a6.6 6.6 0 0 1-1.188.312 8.4 8.4 0 0 1-1.411.11q-2.78.023-4.313-1.457-1.534-1.478-1.534-4.369 0-1.38.412-2.456a4.96 4.96 0 0 1 1.168-1.813 5 5 0 0 1 1.79-1.111q1.034-.378 2.302-.379 2.422.023 3.79 1.445t1.368 4.046v1.068h-8.25q.313 2.778 3.358 2.778 1.533 0 2.546-.512 1.011-.511 1.457-1.244v2.668zm-4.336-7.96q-1.268.001-2.023.617-.756.618-.956 1.806h5.604q-.045-1.123-.735-1.773t-1.89-.65M75 12.397q0-1.2-.511-1.746-.513-.544-1.668-.566h-.066q-2.847 0-2.846 2.868v6.182h-2.602V7.995h2.446v2.269q.357-1.023 1.39-1.747 1.035-.721 2.636-.722 1.8.023 2.812.989 1.011.967 1.011 2.924v7.427h-2.601zM83.102 4.238v3.78h3.98v2.29h-3.98v4.824q0 1.112.366 1.524t1.3.412q.712 0 1.368-.2a4.6 4.6 0 0 0 1.145-.512v2.246q-.179.155-.512.29a5.6 5.6 0 0 1-.735.232q-.402.1-.845.167a6 6 0 0 1-.868.066q-1.889 0-2.858-.788-.967-.79-.967-2.68v-5.58h-2.023V8.02h2.023V6.108l2.602-1.867zM94.804 10.626q-.879-.54-2.1-.562h-.044q-.89 0-1.39.264-.5.265-.5.793-.001.42.433.672.433.254 1.088.452.656.198 1.411.41a6 6 0 0 1 1.412.6q.656.39 1.088 1.011.434.623.433 1.6 0 1.668-1.134 2.58-1.135.913-3.224.934-.736.001-1.39-.133a9 9 0 0 1-1.202-.323 5.4 5.4 0 0 1-.945-.422 2.2 2.2 0 0 1-.6-.479v-2.695q.49.75 1.535 1.278 1.044.53 2.602.485.911-.022 1.334-.331a.96.96 0 0 0 .422-.816q.001-.441-.433-.693a5.5 5.5 0 0 0-1.088-.462q-.656-.21-1.411-.444a6.6 6.6 0 0 1-1.412-.622 3.5 3.5 0 0 1-1.088-1.012q-.434-.622-.433-1.6 0-1.469 1.122-2.402 1.122-.935 3.413-.935a7.4 7.4 0 0 1 2.067.312q.935.29 1.49.712v3.25a4.6 4.6 0 0 0-1.457-1.422M113.326 7.572a6.4 6.4 0 0 0-2.601-1.467 5.9 5.9 0 0 0-1.634-.223q-1.645.021-2.369.49-.723.467-.722 1.267 0 .6.389.978.39.379 1.011.622.622.246 1.424.433.8.19 1.647.412.845.224 1.646.546a5.4 5.4 0 0 1 1.424.835q.621.51 1.011 1.29.39.777.39 1.913 0 .978-.356 1.846a3.85 3.85 0 0 1-1.112 1.5q-.757.634-1.9 1.002-1.146.367-2.702.366a10.1 10.1 0 0 1-3.557-.632 7 7 0 0 1-1.278-.623 3.8 3.8 0 0 1-.856-.701v-3.424q.357.6.912 1.111.556.512 1.278.89.723.376 1.613.599.889.221 1.913.222 1.646 0 2.423-.533.778-.532.778-1.49 0-.822-.655-1.234t-1.657-.679a65 65 0 0 0-2.146-.533 9.3 9.3 0 0 1-2.146-.778 4.6 4.6 0 0 1-1.657-1.411q-.656-.901-.656-2.456 0-2.09 1.557-3.235t4.359-1.145q1.8.022 3.114.456 1.311.434 1.979.945v3.847a5.6 5.6 0 0 0-.855-1.002zM116.7 8.018h2.446v2.302a4 4 0 0 1 .456-.918q.3-.454.778-.808a4.1 4.1 0 0 1 1.145-.576q.668-.223 1.557-.223a5.6 5.6 0 0 1 1.946.323 3.9 3.9 0 0 1 1.511.988q.634.667.989 1.713.356 1.046.356 2.513 0 1.646-.356 2.79-.355 1.147-1.011 1.868a3.85 3.85 0 0 1-1.591 1.055q-.933.334-2.067.333-1.333 0-2.235-.578-.9-.577-1.324-1.358v5.983h-2.602V8.015zm2.602 5.936q0 1.511.802 2.323.799.812 2.179.812 1.579 0 2.289-.837.712-.837.712-2.822 0-1.83-.811-2.588-.814-.758-2.146-.757-1.534 0-2.257.8t-.768 2.203v.868zM129.562 8.796q.554-.42 1.544-.712.99-.29 2.435-.289 2.445 0 3.647.912 1.202.911 1.201 3.09v7.338h-2.446v-2q-.4.977-1.367 1.577-.966.6-2.302.6-1.69 0-2.635-.902-.946-.9-.945-2.545 0-.956.333-1.578a2.54 2.54 0 0 1 .934-.989q.601-.365 1.445-.522a10.3 10.3 0 0 1 1.867-.156h2.512v-.485q0-1.169-.566-1.61-.567-.44-1.68-.44-1.534 0-2.468.539a4.4 4.4 0 0 0-1.511 1.421v-3.25zm3.534 8.182q.667 0 1.145-.166.477-.166.812-.423.333-.256.512-.566.176-.312.222-.6v-.911h-2.202q-1.156.001-1.713.266-.556.266-.556 1.022 0 .647.456 1.012.456.367 1.324.366M147.958 18.933q-.977.445-2.336.445c-.905 0-1.698-.123-2.423-.366a5 5 0 0 1-1.867-1.101 4.9 4.9 0 0 1-1.201-1.824q-.422-1.088-.422-2.558c0-.98.143-1.781.433-2.502a4.9 4.9 0 0 1 1.211-1.8 5.1 5.1 0 0 1 1.867-1.089q1.09-.365 2.423-.366a7.4 7.4 0 0 1 2.067.312q.934.29 1.49.714v3.26a4.6 4.6 0 0 0-1.457-1.43q-.878-.544-2.1-.566-1.601 0-2.446.838-.845.84-.845 2.519v.331q0 1.724.879 2.529.878.805 2.456.805 1.4 0 2.302-.51.899-.508 1.324-1.242v2.68q-.377.47-1.358.917zM160.107 18.023a2.3 2.3 0 0 1-.579.479q-.377.234-.911.433a6.6 6.6 0 0 1-1.189.312q-.655.111-1.411.11-2.779.023-4.313-1.457-1.534-1.478-1.534-4.369 0-1.38.412-2.456.412-1.078 1.168-1.813a5 5 0 0 1 1.79-1.111q1.034-.378 2.302-.379 2.423.023 3.79 1.445Q161 10.64 161 13.263v1.068h-8.249q.311 2.778 3.358 2.778 1.534 0 2.545-.512 1.012-.511 1.457-1.244v2.668zm-4.336-7.96q-1.267.001-2.023.617-.755.618-.955 1.806h5.603q-.044-1.123-.735-1.773-.689-.65-1.89-.65' })] })));
66
+ });
67
+ exports.default = SvgAgentsSpaceLogoFullDark;
@@ -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 SvgAgentsSpaceLogoFullLight: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgAgentsSpaceLogoFullLight;
@@ -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 SvgAgentsSpaceLogoFullLight = React.forwardRef((_a, ref) => {
51
+ var { size } = _a, props = __rest(_a, ["size"]);
52
+ props.width = undefined;
53
+ props.height = undefined;
54
+ const testId = 'icon-agents-space-logo-full-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: 164, height: 24, fill: 'none', viewBox: '0 0 164 24', "data-test-id": testId, ref: ref }, props, { children: [(0, jsx_runtime_1.jsx)("path", { fill: '#000', d: 'M10.064 12.93v6.63h-6.63v-6.63zm1.431-1.434H2.002v9.493h9.494z' }), (0, jsx_runtime_1.jsx)("path", { fill: '#000', d: 'm15.634 3.478 3.88 3.88v12.155h-4.17V7.647H3.478v-4.17zm.61-1.476H2v7.12h11.866V20.99h7.121V6.746L16.241 2zM42.58 19.135h-2.958l-1.49-3.69h-7.137l-1.468 3.69h-2.825L33.019 3.57h3.157zm-5.47-6.247-2.558-6.381-2.558 6.381zM51.03 17.299a3.8 3.8 0 0 1-.522.774 3.4 3.4 0 0 1-.778.664q-.456.289-1.068.464-.611.178-1.39.177-1.067 0-1.947-.322a3.9 3.9 0 0 1-1.51-.989q-.635-.667-.99-1.713-.356-1.045-.356-2.512.001-1.646.356-2.792.357-1.146 1.012-1.867.656-.722 1.59-1.055a6.2 6.2 0 0 1 2.067-.333q1.446 0 2.369.656.922.656 1.3 1.523V8.018h2.447v10.005q0 1.558-.39 2.613t-1.122 1.713q-.733.654-1.78.945a8.8 8.8 0 0 1-2.335.289q-1.557 0-2.735-.39t-1.646-.811V19.49q.244.333.645.655.401.323.922.579.522.256 1.178.412a6 6 0 0 0 1.411.156q.822 0 1.435-.156.612-.157 1.022-.51.411-.355.612-.932.2-.577.2-1.42V17.3zm-2.957-7.214q-1.578 0-2.29.836-.712.837-.712 2.823 0 .915.21 1.55.213.637.6 1.037.389.402.935.58.545.18 1.211.18 1.424 0 2.156-.69.733-.688.846-1.933v-1.667q-.113-1.311-.902-2.013-.789-.7-2.056-.701zM64.987 18.023a2.3 2.3 0 0 1-.579.479q-.378.234-.912.433a6.6 6.6 0 0 1-1.188.312 8.4 8.4 0 0 1-1.411.11q-2.78.023-4.313-1.457-1.534-1.478-1.534-4.369 0-1.38.412-2.456a4.96 4.96 0 0 1 1.168-1.813 5 5 0 0 1 1.79-1.111q1.034-.378 2.302-.379 2.422.023 3.79 1.445t1.368 4.046v1.068h-8.25q.313 2.778 3.358 2.778 1.533 0 2.546-.512 1.011-.511 1.457-1.244v2.668zm-4.336-7.96q-1.268.001-2.023.617-.756.618-.956 1.806h5.604q-.045-1.123-.735-1.773t-1.89-.65M75 12.397q0-1.2-.511-1.746-.513-.544-1.668-.566h-.066q-2.847 0-2.846 2.868v6.182h-2.602V7.995h2.446v2.269q.357-1.023 1.39-1.747 1.035-.721 2.636-.722 1.8.023 2.812.989 1.011.967 1.011 2.924v7.427h-2.601zM83.102 4.238v3.78h3.98v2.29h-3.98v4.824q0 1.112.366 1.524t1.3.412q.712 0 1.368-.2a4.6 4.6 0 0 0 1.145-.512v2.246q-.179.155-.512.29a5.6 5.6 0 0 1-.735.232q-.402.1-.845.167a6 6 0 0 1-.868.066q-1.889 0-2.858-.788-.967-.79-.967-2.68v-5.58h-2.023V8.02h2.023V6.108l2.602-1.867zM94.804 10.626q-.879-.54-2.1-.562h-.044q-.89 0-1.39.264-.5.265-.5.793-.001.42.433.672.433.254 1.088.452.656.198 1.411.41a6 6 0 0 1 1.412.6q.656.39 1.088 1.011.434.623.433 1.6 0 1.668-1.134 2.58-1.135.913-3.224.934-.736.001-1.39-.133a9 9 0 0 1-1.202-.323 5.4 5.4 0 0 1-.945-.422 2.2 2.2 0 0 1-.6-.479v-2.695q.49.75 1.535 1.278 1.044.53 2.602.485.911-.022 1.334-.331a.96.96 0 0 0 .422-.816q.001-.441-.433-.693a5.5 5.5 0 0 0-1.088-.462q-.656-.21-1.411-.444a6.6 6.6 0 0 1-1.412-.622 3.5 3.5 0 0 1-1.088-1.012q-.434-.622-.433-1.6 0-1.469 1.122-2.402 1.122-.935 3.413-.935a7.4 7.4 0 0 1 2.067.312q.935.29 1.49.712v3.25a4.6 4.6 0 0 0-1.457-1.422M113.326 7.572a6.4 6.4 0 0 0-2.601-1.467 5.9 5.9 0 0 0-1.634-.223q-1.645.021-2.369.49-.723.467-.722 1.267 0 .6.389.978.39.379 1.011.622.622.246 1.424.433.8.19 1.647.412.845.224 1.646.546a5.4 5.4 0 0 1 1.424.835q.621.51 1.011 1.29.39.777.39 1.913 0 .978-.356 1.846a3.85 3.85 0 0 1-1.112 1.5q-.757.634-1.9 1.002-1.146.367-2.702.366a10.1 10.1 0 0 1-3.557-.632 7 7 0 0 1-1.278-.623 3.8 3.8 0 0 1-.856-.701v-3.424q.357.6.912 1.111.556.512 1.278.89.723.376 1.613.599.889.221 1.913.222 1.646 0 2.423-.533.778-.532.778-1.49 0-.822-.655-1.234t-1.657-.679a65 65 0 0 0-2.146-.533 9.3 9.3 0 0 1-2.146-.778 4.6 4.6 0 0 1-1.657-1.411q-.656-.901-.656-2.456 0-2.09 1.557-3.235t4.359-1.145q1.8.022 3.114.456 1.311.434 1.979.945v3.847a5.6 5.6 0 0 0-.855-1.002zM116.7 8.018h2.446v2.302a4 4 0 0 1 .456-.918q.3-.454.778-.808a4.1 4.1 0 0 1 1.145-.576q.668-.223 1.557-.223a5.6 5.6 0 0 1 1.946.323 3.9 3.9 0 0 1 1.511.988q.634.667.989 1.713.356 1.046.356 2.513 0 1.646-.356 2.79-.355 1.147-1.011 1.868a3.85 3.85 0 0 1-1.591 1.055q-.933.334-2.067.333-1.333 0-2.235-.578-.9-.577-1.324-1.358v5.983h-2.602V8.015zm2.602 5.936q0 1.511.802 2.323.799.812 2.179.812 1.579 0 2.289-.837.712-.837.712-2.822 0-1.83-.811-2.588-.814-.758-2.146-.757-1.534 0-2.257.8t-.768 2.203v.868zM129.562 8.796q.554-.42 1.544-.712.99-.29 2.435-.289 2.445 0 3.647.912 1.202.911 1.201 3.09v7.338h-2.446v-2q-.4.977-1.367 1.577-.966.6-2.302.6-1.69 0-2.635-.902-.946-.9-.945-2.545 0-.956.333-1.578a2.54 2.54 0 0 1 .934-.989q.601-.365 1.445-.522a10.3 10.3 0 0 1 1.867-.156h2.512v-.485q0-1.169-.566-1.61-.567-.44-1.68-.44-1.534 0-2.468.539a4.4 4.4 0 0 0-1.511 1.421v-3.25zm3.534 8.182q.667 0 1.145-.166.477-.166.812-.423.333-.256.512-.566.176-.312.222-.6v-.911h-2.202q-1.156.001-1.713.266-.556.266-.556 1.022 0 .647.456 1.012.456.367 1.324.366M147.958 18.933q-.977.445-2.336.445c-.905 0-1.698-.123-2.423-.366a5 5 0 0 1-1.867-1.101 4.9 4.9 0 0 1-1.201-1.824q-.422-1.088-.422-2.558c0-.98.143-1.781.433-2.502a4.9 4.9 0 0 1 1.211-1.8 5.1 5.1 0 0 1 1.867-1.089q1.09-.365 2.423-.366a7.4 7.4 0 0 1 2.067.312q.934.29 1.49.714v3.26a4.6 4.6 0 0 0-1.457-1.43q-.878-.544-2.1-.566-1.601 0-2.446.838-.845.84-.845 2.519v.331q0 1.724.879 2.529.878.805 2.456.805 1.4 0 2.302-.51.899-.508 1.324-1.242v2.68q-.377.47-1.358.917zM160.107 18.023a2.3 2.3 0 0 1-.579.479q-.377.234-.911.433a6.6 6.6 0 0 1-1.189.312q-.655.111-1.411.11-2.779.023-4.313-1.457-1.534-1.478-1.534-4.369 0-1.38.412-2.456.412-1.078 1.168-1.813a5 5 0 0 1 1.79-1.111q1.034-.378 2.302-.379 2.423.023 3.79 1.445Q161 10.64 161 13.263v1.068h-8.249q.311 2.778 3.358 2.778 1.534 0 2.545-.512 1.012-.511 1.457-1.244v2.668zm-4.336-7.96q-1.267.001-2.023.617-.755.618-.955 1.806h5.603q-.044-1.123-.735-1.773-.689-.65-1.89-.65' })] })));
66
+ });
67
+ exports.default = SvgAgentsSpaceLogoFullLight;
@@ -0,0 +1,3 @@
1
+ import { ISvgIconProps } from './AgentsSpaceLogoFullLight';
2
+ declare const AgentsSpaceLogoFullSvg: import("react").ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default AgentsSpaceLogoFullSvg;
@@ -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 AgentsSpaceLogoFullLight_1 = __importDefault(require("./AgentsSpaceLogoFullLight"));
9
+ const AgentsSpaceLogoFullDark_1 = __importDefault(require("./AgentsSpaceLogoFullDark"));
10
+ const utils_1 = require("../../utils");
11
+ const AgentsSpaceLogoFullSvg = (0, react_1.forwardRef)(function AgentsSpaceLogoFullSvg(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)(AgentsSpaceLogoFullDark_1.default, Object.assign({}, props, { ref: ref }))) : ((0, jsx_runtime_1.jsx)(AgentsSpaceLogoFullLight_1.default, Object.assign({}, props, { ref: ref })));
15
+ });
16
+ exports.default = AgentsSpaceLogoFullSvg;
@@ -1,4 +1,6 @@
1
1
  export { default as AgentSandboxLogoSVG } from './AgentSandboxLogo';
2
+ export { default as AgentsSpaceLogoSVG } from './AgentsSpaceLogo';
3
+ export { default as AgentsSpaceLogoFullSVG } from './AgentsSpaceLogoFull';
2
4
  export { default as AiCloudLogoSVG } from './AiCloudLogo';
3
5
  export { default as AlmaLinuxLogoSVG } from './AlmaLinuxLogo';
4
6
  export { default as AmazonLogoSVG } from './AmazonLogo';
@@ -3,11 +3,15 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
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.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;
6
+ 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.AgentsSpaceLogoFullSVG = exports.AgentsSpaceLogoSVG = exports.AgentSandboxLogoSVG = void 0;
7
+ 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 = exports.GoLogoSVG = exports.GitlabLogoSVG = 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 = exports.NvidiaLogoSVG = exports.NpmLogoSVG = 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
+ var AgentsSpaceLogo_1 = require("./AgentsSpaceLogo");
12
+ Object.defineProperty(exports, "AgentsSpaceLogoSVG", { enumerable: true, get: function () { return __importDefault(AgentsSpaceLogo_1).default; } });
13
+ var AgentsSpaceLogoFull_1 = require("./AgentsSpaceLogoFull");
14
+ Object.defineProperty(exports, "AgentsSpaceLogoFullSVG", { enumerable: true, get: function () { return __importDefault(AgentsSpaceLogoFull_1).default; } });
11
15
  var AiCloudLogo_1 = require("./AiCloudLogo");
12
16
  Object.defineProperty(exports, "AiCloudLogoSVG", { enumerable: true, get: function () { return __importDefault(AiCloudLogo_1).default; } });
13
17
  var AlmaLinuxLogo_1 = require("./AlmaLinuxLogo");
@@ -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 SvgAgentsSpace: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgAgentsSpace;
@@ -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 SvgAgentsSpace = React.forwardRef((_a, ref) => {
51
+ var { size = 24 } = _a, props = __rest(_a, ["size"]);
52
+ props.width = undefined;
53
+ props.height = undefined;
54
+ const testId = 'icon-agents-space';
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: 'currentColor', viewBox: '0 0 24 24', "data-test-id": testId, ref: ref }, props, { children: (0, jsx_runtime_1.jsx)("path", { fill: 'inherit', fillRule: 'evenodd', d: 'M3.24 6.74v3.5h10.52v10.52h7V7.7l-2.23-2.23-2.23-2.23H3.24zm14.23-.21 1.77 1.77v10.94h-4V8.76H4.76v-4H15.7zM3.24 16.5v4.26h8.52v-8.52H3.24zm7 0v2.74H4.76v-5.48h5.48z' }) })));
66
+ });
67
+ exports.default = SvgAgentsSpace;
@@ -3,6 +3,7 @@ export { default as AccidentsSVG } from './Accidents';
3
3
  export { default as ActveDirectorySVG } from './ActveDirectory';
4
4
  export { default as AdvancedSVG } from './Advanced';
5
5
  export { default as AgentBackupSVG } from './AgentBackup';
6
+ export { default as AgentsSpaceSVG } from './AgentsSpace';
6
7
  export { default as AiServicesSVG } from './AiServices';
7
8
  export { default as AirflowSVG } from './Airflow';
8
9
  export { default as AlertsSVG } from './Alerts';
@@ -3,13 +3,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.CloudEyeSVG = exports.CloudDnsSVG = exports.CloudContainerInstanceSVG = exports.CloudContainerEngineSVG = exports.CloudCommandLineInterfaceSVG = exports.CloudCertificateManagerSVG = exports.CloudBastionHostSVG = exports.CloudBackupAndRecoverySVG = exports.CloudAdvisorSVG = exports.ClientsSVG = exports.ClientDataBusSVG = exports.CertificationSVG = exports.CertificateManagerSVG = exports.CerebroSVG = exports.CdnSVG = exports.CalculatorSVG = exports.BillingSVG = exports.BiZoneTdrSVG = exports.BaseAltSVG = exports.BareMetalSVG = exports.BackupSVG = exports.AvabilityGroupsSVG = exports.AutoScalingSVG = exports.ArtifactRegistrySVG = exports.ArenadataStreamingSVG = exports.ArenadataQuickMartsSVG = exports.ArenadataHadoopSVG = exports.ArenadataDbSVG = exports.ArenadataAnalyticalDbSVG = exports.ApplicationsForPlacementSVG = exports.ApplicationPerformanceManagementSVG = exports.ApplicationOrchestrationServiceSVG = exports.ApplicationOperationManagementSVG = exports.ApplicationSVG = exports.AppStageSVG = exports.ApiGatewaySVG = exports.ApacheIgnitSVG = exports.ApacheFlinkSVG = exports.AntiDdosWafSVG = exports.AntiDdosFromQratorLabsSVG = exports.AnthropicSVG = exports.AllocatonsSVG = exports.AlertsSVG = exports.AirflowSVG = exports.AiServicesSVG = exports.AgentBackupSVG = exports.AdvancedSVG = exports.ActveDirectorySVG = exports.AccidentsSVG = exports.Svg1CSVG = void 0;
7
- exports.ElasticCloudServerSVG = exports.DocumentDatabaseServiceSVG = exports.DockerRegistrySVG = exports.DistributedMessageServiceForRocketMqSVG = exports.DistributedMessageServiceForRabbitMqSVG = exports.DistributedMessageServiceForKafkaSVG = exports.DistributedDatabaseMiddlewareSVG = exports.DistributedCacheServiceForRedisSVG = exports.DistributedCacheServiceForMemcachedSVG = exports.DisksSVG = exports.DirectConnectSVG = exports.DeploysSVG = exports.DeployImagesSVG = exports.DeepSeekSVG = exports.DatbriksSVG = exports.DatasetRegistrySVG = exports.DatabaseSecurityServiceSVG = exports.DataWarehouseServiceSVG = exports.DataTransferServiceSVG = exports.DataReplicationServiceSVG = exports.DataLakeInsightSVG = exports.DataHubSVG = exports.DataEncryptionWorkshopSVG = exports.DataArtsStudioSVG = exports.DataArtsInsightSVG = exports.DataAdminServiceSVG = exports.DashboardsSVG = exports.CrossPlatformConnectionSVG = exports.CouchDbSVG = exports.ContainerSecurityPlatformSVG = exports.ContainerGuardServiceSVG = exports.ContainerAppsSVG = exports.ConnectionHubSVG = exports.ConnectedServicesSVG = exports.CodeArtsTestPlanSVG = exports.CodeArtsReqSVG = exports.CodeArtsRepoSVG = exports.CodeArtsPipelineSVG = exports.CodeArtsDeploySVG = exports.CodeArtsCheckSVG = exports.CodeArtsBuildSVG = exports.CodeArtsArtifactSVG = exports.CodeArtsSVG = exports.CloudTraceServiceSVG = exports.CloudTableSVG = exports.CloudServiceEngineSVG = exports.CloudSearchServiceSVG = exports.CloudPerformanceTestServiceSVG = exports.CloudLoggingSVG = exports.CloudFirewallSVG = void 0;
8
- exports.ImagesSVG = exports.ImageManagementServiceSVG = exports.IdentityAndAccessManagementSVG = exports.HuggingFaceSVG = exports.HostSecurityServiceSVG = exports.HistoryOfPipelineLaunchesSVG = exports.HadoopMapReduceSVG = exports.HaProxySVG = exports.GreenplumDatbaseSVG = exports.GraphEngineServiceSVG = exports.GrafanaSVG = exports.GpuResourcesSVG = exports.GoSVG = exports.GitlabCiSVG = exports.GitabSVG = exports.GitSVG = exports.GigaIdSVG = exports.GeminiDbSVG = exports.FunctionGraphSVG = exports.FirewallSVG = exports.ExperimentsSVG = exports.ExchangeSVG = exports.EvolutionStackSVG = exports.EvolutionRepoSVG = exports.EvolutionProtectionPlatformSVG = exports.EvolutionPromptRegistrySVG = exports.EvolutionPipelineSVG = exports.EvolutionMlFinetuningSVG = exports.EvolutionMagicBridgeSVG = exports.EvolutionIdentityAccessManagementSVG = exports.EvolutionHybridUsergateSVG = exports.EvolutionFoundationModelsSVG = exports.EvolutionDistributedTrainSVG = exports.EvolutionDisasterRecoverySVG = exports.EvolutionDataPlatfromSVG = exports.EvolutionComputeSVG = exports.EvolutionCloudMonitoringSVG = exports.EvolutionBiSVG = exports.EvolutionBareMetalEnterpriseSVG = exports.EvolutionAiAssistantSVG = exports.EvolutionAiAgentsSVG = exports.EvolutionSVG = exports.EvoDnsSVG = exports.EnterpriseRouterSVG = exports.EnterpriseProjectManagementServiceSVG = exports.ElasticVolumeServiceSVG = exports.ElasticSearchSVG = exports.ElasticLoadBalanceSVG = exports.ElasticIpSVG = exports.ElasticCloudServerWithGpuSVG = void 0;
9
- exports.LoadBalancerSVG = exports.LinuxSVG = exports.LicensesOfBasaltSpoProductsSVG = exports.KubernetesUserSVG = exports.KubernetesSvcSVG = exports.KubernetesStsSVG = exports.KubernetesSecretSVG = exports.KubernetesSchedTitleSVG = exports.KubernetesSchedSVG = exports.KubernetesScSVG = exports.KubernetesSaSVG = exports.KubernetesRsSVG = exports.KubernetesRoleSVG = exports.KubernetesRbSVG = exports.KubernetesQuotaSVG = exports.KubernetesPvcSVG = exports.KubernetesPvSVG = exports.KubernetesPspSVG = exports.KubernetesPodSVG = exports.KubernetesNsSVG = exports.KubernetesNodeTitleSVG = exports.KubernetesNodeSVG = exports.KubernetesNetpolSVG = exports.KubernetesLimitsSVG = exports.KubernetesKubeletSVG = exports.KubernetesKproxySVG = exports.KubernetesJobSVG = exports.KubernetesIngSVG = exports.KubernetesHpaSVG = exports.KubernetesGroupSVG = exports.KubernetesEtcdSVG = exports.KubernetesEpSVG = exports.KubernetesDsSVG = exports.KubernetesDeploySVG = exports.KubernetesCronJobSVG = exports.KubernetesCrdSVG = exports.KubernetesCrbSVG = exports.KubernetesCmListSVG = exports.KubernetesCmSVG = exports.KubernetesCcmSVG = exports.KubernetesCRoleSVG = exports.KubernetesApiSVG = exports.KubernetesSVG = exports.KibanaSVG = exports.KeyManagementSVG = exports.KafkaSVG = exports.JupyterServersSVG = exports.IstioSVG = exports.IotDeviceAccessSVG = exports.IntegrationWithSiemSVG = void 0;
10
- exports.NsxVMwareSVG = exports.NotificationSVG = exports.NodeJsSVG = exports.NatGatewaySVG = exports.N8NSVG = exports.MyOfficeSVG = exports.MyCompanyProfileSVG = exports.MssqlSVG = exports.MongoDbSVG = exports.ModelRegistrySVG = exports.ModelMonitoringSVG = exports.MlsCliSVG = exports.MlSpaceSVG = exports.MlFlowSVG = exports.MistralSVG = exports.MindContollerSVG = exports.MilvusDbSVG = exports.MigrationToAdvancedSVG = exports.MigrationInTheCloudVMwareSVG = exports.MigrationSVG = exports.MicrosoftNetSVG = exports.MetastoreSVG = exports.McpServerSVG = exports.MarketplaceSVG = exports.MariaDbSVG = exports.MapReduceServiceSVG = exports.ManagedTimescaleDbSVG = exports.ManagedServicesSVG = exports.ManagedSearchSVG = exports.ManagedRedisSVG = exports.ManagedRagSVG = exports.ManagedRabbitMqSVG = exports.ManagedPostgreSqlSVG = exports.ManagedPangolinSVG = exports.ManagedMySqlSVG = exports.ManagedKubernetesSVG = exports.ManagedKafkaSVG = exports.ManagedIdentitiesSVG = exports.ManagedDocumentDbSVG = exports.ManagedDataGridSVG = exports.ManagedCoraxSVG = exports.ManagedCloudberrySVG = exports.ManagedClickHouseSVG = exports.MagicRouterSVG = exports.MlInferenceSVG = exports.LoggingAuditSVG = exports.LogTankServiceSVG = exports.LogStashSVG = exports.LogGroupsSVG = exports.LoadBalancerGeneralSVG = void 0;
11
- exports.TermideskSVG = exports.TechnologyConsultingSVG = exports.TasksAndEnvironmentsSVG = exports.TaskHistorySVG = exports.TagsSVG = exports.SystemObjectsSVG = exports.SupersetSVG = exports.SubnetsSVG = exports.SshSVG = exports.SparkSVG = exports.SoftwareRepositoryForContainersSVG = exports.SnatSVG = exports.SimpleMessageNotificationSVG = exports.SharedStorageNfsSVG = exports.ServicesSVG = exports.ServiceStageSVG = exports.ServerlessFunctionSVG = exports.ServerlessSVG = exports.ServerMigrationServiceSVG = exports.SecurityGroupsSVG = exports.SecretManagementSVG = exports.ScalableFileServiceSVG = exports.SapInTheCloudSVG = exports.SapSVG = exports.S3StorageSVG = exports.S3SVG = exports.RosaOperationSystemSVG = exports.ResourceManagerSVG = exports.RentUsbPortsSVG = exports.RelationalDatabaseServiceSVG = exports.ReferralsSVG = exports.ReferralLinksSVG = exports.RedisSVG = exports.QwenSVG = exports.QuotasSVG = exports.PytonSVG = exports.PublicIpSVG = exports.PrometeusSVG = exports.PowerBiSVG = exports.PipelinesSVG = exports.PartnerMaterialsSVG = exports.PartnerAccountSVG = exports.OracleSVG = exports.OpenSearchSVG = exports.OpenApiSVG = exports.OpenAiSVG = exports.OllamaSVG = exports.ObjectStorageServiceSVG = exports.ObjectContainerSVG = exports.NutnixSVG = void 0;
12
- exports.ZabbixSVG = exports.WebhookSVG = exports.WebApplicationFirewallSVG = exports.VpnSVG = exports.VpcEndpointSVG = exports.VpcSVG = exports.VmwareDisasterRecoverySVG = exports.VmwareSVG = exports.VmVirtualizationPlatformsSVG = exports.VmManagerSVG = exports.VmIaasBasisSVG = exports.VmEncryptionSVG = exports.VmBackupSVG = exports.VllmSVG = exports.VirtualizationPlatformsSVG = exports.VirtualPrivateCloudSVG = exports.VirtualIpSVG = exports.VirtualDesktopInfrastructureSVG = exports.VirtualDataCenterWithGpuSVG = exports.VirtualDataCenterSVG = exports.VictriaMetricsSVG = exports.VcenterManagerSVG = exports.VMwareVSphereClientSVG = exports.VMwareVSphereSVG = exports.VMwareVShpereHypervisorSVG = exports.VMwareVCentrServerSVG = exports.VMwareNsxAdvancedLoadBalancerSVG = exports.VMwareEsxiSVG = exports.VMwareCloudDirectrAvailabilitySVG = exports.VMwareCloudDirectrAppLaunchpadSVG = exports.VMwareCloudDirectorServiceSVG = exports.VMwareCloudDirectorSVG = exports.VMwareBackupServerSVG = exports.VMwareAriaOperatonsforLogsSVG = exports.VMwareAriaOperatonsSVG = exports.VAppSVG = exports.UserGateVirtualNgfw1SVG = exports.UserGateVirtualNgfwSVG = exports.UserGateProfServiceSVG = exports.TrinoSVG = exports.TransactionsSVG = void 0;
6
+ exports.CloudDnsSVG = exports.CloudContainerInstanceSVG = exports.CloudContainerEngineSVG = exports.CloudCommandLineInterfaceSVG = exports.CloudCertificateManagerSVG = exports.CloudBastionHostSVG = exports.CloudBackupAndRecoverySVG = exports.CloudAdvisorSVG = exports.ClientsSVG = exports.ClientDataBusSVG = exports.CertificationSVG = exports.CertificateManagerSVG = exports.CerebroSVG = exports.CdnSVG = exports.CalculatorSVG = exports.BillingSVG = exports.BiZoneTdrSVG = exports.BaseAltSVG = exports.BareMetalSVG = exports.BackupSVG = exports.AvabilityGroupsSVG = exports.AutoScalingSVG = exports.ArtifactRegistrySVG = exports.ArenadataStreamingSVG = exports.ArenadataQuickMartsSVG = exports.ArenadataHadoopSVG = exports.ArenadataDbSVG = exports.ArenadataAnalyticalDbSVG = exports.ApplicationsForPlacementSVG = exports.ApplicationPerformanceManagementSVG = exports.ApplicationOrchestrationServiceSVG = exports.ApplicationOperationManagementSVG = exports.ApplicationSVG = exports.AppStageSVG = exports.ApiGatewaySVG = exports.ApacheIgnitSVG = exports.ApacheFlinkSVG = exports.AntiDdosWafSVG = exports.AntiDdosFromQratorLabsSVG = exports.AnthropicSVG = exports.AllocatonsSVG = exports.AlertsSVG = exports.AirflowSVG = exports.AiServicesSVG = exports.AgentsSpaceSVG = exports.AgentBackupSVG = exports.AdvancedSVG = exports.ActveDirectorySVG = exports.AccidentsSVG = exports.Svg1CSVG = void 0;
7
+ exports.DocumentDatabaseServiceSVG = exports.DockerRegistrySVG = exports.DistributedMessageServiceForRocketMqSVG = exports.DistributedMessageServiceForRabbitMqSVG = exports.DistributedMessageServiceForKafkaSVG = exports.DistributedDatabaseMiddlewareSVG = exports.DistributedCacheServiceForRedisSVG = exports.DistributedCacheServiceForMemcachedSVG = exports.DisksSVG = exports.DirectConnectSVG = exports.DeploysSVG = exports.DeployImagesSVG = exports.DeepSeekSVG = exports.DatbriksSVG = exports.DatasetRegistrySVG = exports.DatabaseSecurityServiceSVG = exports.DataWarehouseServiceSVG = exports.DataTransferServiceSVG = exports.DataReplicationServiceSVG = exports.DataLakeInsightSVG = exports.DataHubSVG = exports.DataEncryptionWorkshopSVG = exports.DataArtsStudioSVG = exports.DataArtsInsightSVG = exports.DataAdminServiceSVG = exports.DashboardsSVG = exports.CrossPlatformConnectionSVG = exports.CouchDbSVG = exports.ContainerSecurityPlatformSVG = exports.ContainerGuardServiceSVG = exports.ContainerAppsSVG = exports.ConnectionHubSVG = exports.ConnectedServicesSVG = exports.CodeArtsTestPlanSVG = exports.CodeArtsReqSVG = exports.CodeArtsRepoSVG = exports.CodeArtsPipelineSVG = exports.CodeArtsDeploySVG = exports.CodeArtsCheckSVG = exports.CodeArtsBuildSVG = exports.CodeArtsArtifactSVG = exports.CodeArtsSVG = exports.CloudTraceServiceSVG = exports.CloudTableSVG = exports.CloudServiceEngineSVG = exports.CloudSearchServiceSVG = exports.CloudPerformanceTestServiceSVG = exports.CloudLoggingSVG = exports.CloudFirewallSVG = exports.CloudEyeSVG = void 0;
8
+ exports.ImageManagementServiceSVG = exports.IdentityAndAccessManagementSVG = exports.HuggingFaceSVG = exports.HostSecurityServiceSVG = exports.HistoryOfPipelineLaunchesSVG = exports.HadoopMapReduceSVG = exports.HaProxySVG = exports.GreenplumDatbaseSVG = exports.GraphEngineServiceSVG = exports.GrafanaSVG = exports.GpuResourcesSVG = exports.GoSVG = exports.GitlabCiSVG = exports.GitabSVG = exports.GitSVG = exports.GigaIdSVG = exports.GeminiDbSVG = exports.FunctionGraphSVG = exports.FirewallSVG = exports.ExperimentsSVG = exports.ExchangeSVG = exports.EvolutionStackSVG = exports.EvolutionRepoSVG = exports.EvolutionProtectionPlatformSVG = exports.EvolutionPromptRegistrySVG = exports.EvolutionPipelineSVG = exports.EvolutionMlFinetuningSVG = exports.EvolutionMagicBridgeSVG = exports.EvolutionIdentityAccessManagementSVG = exports.EvolutionHybridUsergateSVG = exports.EvolutionFoundationModelsSVG = exports.EvolutionDistributedTrainSVG = exports.EvolutionDisasterRecoverySVG = exports.EvolutionDataPlatfromSVG = exports.EvolutionComputeSVG = exports.EvolutionCloudMonitoringSVG = exports.EvolutionBiSVG = exports.EvolutionBareMetalEnterpriseSVG = exports.EvolutionAiAssistantSVG = exports.EvolutionAiAgentsSVG = exports.EvolutionSVG = exports.EvoDnsSVG = exports.EnterpriseRouterSVG = exports.EnterpriseProjectManagementServiceSVG = exports.ElasticVolumeServiceSVG = exports.ElasticSearchSVG = exports.ElasticLoadBalanceSVG = exports.ElasticIpSVG = exports.ElasticCloudServerWithGpuSVG = exports.ElasticCloudServerSVG = void 0;
9
+ exports.LinuxSVG = exports.LicensesOfBasaltSpoProductsSVG = exports.KubernetesUserSVG = exports.KubernetesSvcSVG = exports.KubernetesStsSVG = exports.KubernetesSecretSVG = exports.KubernetesSchedTitleSVG = exports.KubernetesSchedSVG = exports.KubernetesScSVG = exports.KubernetesSaSVG = exports.KubernetesRsSVG = exports.KubernetesRoleSVG = exports.KubernetesRbSVG = exports.KubernetesQuotaSVG = exports.KubernetesPvcSVG = exports.KubernetesPvSVG = exports.KubernetesPspSVG = exports.KubernetesPodSVG = exports.KubernetesNsSVG = exports.KubernetesNodeTitleSVG = exports.KubernetesNodeSVG = exports.KubernetesNetpolSVG = exports.KubernetesLimitsSVG = exports.KubernetesKubeletSVG = exports.KubernetesKproxySVG = exports.KubernetesJobSVG = exports.KubernetesIngSVG = exports.KubernetesHpaSVG = exports.KubernetesGroupSVG = exports.KubernetesEtcdSVG = exports.KubernetesEpSVG = exports.KubernetesDsSVG = exports.KubernetesDeploySVG = exports.KubernetesCronJobSVG = exports.KubernetesCrdSVG = exports.KubernetesCrbSVG = exports.KubernetesCmListSVG = exports.KubernetesCmSVG = exports.KubernetesCcmSVG = exports.KubernetesCRoleSVG = exports.KubernetesApiSVG = exports.KubernetesSVG = exports.KibanaSVG = exports.KeyManagementSVG = exports.KafkaSVG = exports.JupyterServersSVG = exports.IstioSVG = exports.IotDeviceAccessSVG = exports.IntegrationWithSiemSVG = exports.ImagesSVG = void 0;
10
+ exports.NotificationSVG = exports.NodeJsSVG = exports.NatGatewaySVG = exports.N8NSVG = exports.MyOfficeSVG = exports.MyCompanyProfileSVG = exports.MssqlSVG = exports.MongoDbSVG = exports.ModelRegistrySVG = exports.ModelMonitoringSVG = exports.MlsCliSVG = exports.MlSpaceSVG = exports.MlFlowSVG = exports.MistralSVG = exports.MindContollerSVG = exports.MilvusDbSVG = exports.MigrationToAdvancedSVG = exports.MigrationInTheCloudVMwareSVG = exports.MigrationSVG = exports.MicrosoftNetSVG = exports.MetastoreSVG = exports.McpServerSVG = exports.MarketplaceSVG = exports.MariaDbSVG = exports.MapReduceServiceSVG = exports.ManagedTimescaleDbSVG = exports.ManagedServicesSVG = exports.ManagedSearchSVG = exports.ManagedRedisSVG = exports.ManagedRagSVG = exports.ManagedRabbitMqSVG = exports.ManagedPostgreSqlSVG = exports.ManagedPangolinSVG = exports.ManagedMySqlSVG = exports.ManagedKubernetesSVG = exports.ManagedKafkaSVG = exports.ManagedIdentitiesSVG = exports.ManagedDocumentDbSVG = exports.ManagedDataGridSVG = exports.ManagedCoraxSVG = exports.ManagedCloudberrySVG = exports.ManagedClickHouseSVG = exports.MagicRouterSVG = exports.MlInferenceSVG = exports.LoggingAuditSVG = exports.LogTankServiceSVG = exports.LogStashSVG = exports.LogGroupsSVG = exports.LoadBalancerGeneralSVG = exports.LoadBalancerSVG = void 0;
11
+ exports.TechnologyConsultingSVG = exports.TasksAndEnvironmentsSVG = exports.TaskHistorySVG = exports.TagsSVG = exports.SystemObjectsSVG = exports.SupersetSVG = exports.SubnetsSVG = exports.SshSVG = exports.SparkSVG = exports.SoftwareRepositoryForContainersSVG = exports.SnatSVG = exports.SimpleMessageNotificationSVG = exports.SharedStorageNfsSVG = exports.ServicesSVG = exports.ServiceStageSVG = exports.ServerlessFunctionSVG = exports.ServerlessSVG = exports.ServerMigrationServiceSVG = exports.SecurityGroupsSVG = exports.SecretManagementSVG = exports.ScalableFileServiceSVG = exports.SapInTheCloudSVG = exports.SapSVG = exports.S3StorageSVG = exports.S3SVG = exports.RosaOperationSystemSVG = exports.ResourceManagerSVG = exports.RentUsbPortsSVG = exports.RelationalDatabaseServiceSVG = exports.ReferralsSVG = exports.ReferralLinksSVG = exports.RedisSVG = exports.QwenSVG = exports.QuotasSVG = exports.PytonSVG = exports.PublicIpSVG = exports.PrometeusSVG = exports.PowerBiSVG = exports.PipelinesSVG = exports.PartnerMaterialsSVG = exports.PartnerAccountSVG = exports.OracleSVG = exports.OpenSearchSVG = exports.OpenApiSVG = exports.OpenAiSVG = exports.OllamaSVG = exports.ObjectStorageServiceSVG = exports.ObjectContainerSVG = exports.NutnixSVG = exports.NsxVMwareSVG = void 0;
12
+ exports.ZabbixSVG = exports.WebhookSVG = exports.WebApplicationFirewallSVG = exports.VpnSVG = exports.VpcEndpointSVG = exports.VpcSVG = exports.VmwareDisasterRecoverySVG = exports.VmwareSVG = exports.VmVirtualizationPlatformsSVG = exports.VmManagerSVG = exports.VmIaasBasisSVG = exports.VmEncryptionSVG = exports.VmBackupSVG = exports.VllmSVG = exports.VirtualizationPlatformsSVG = exports.VirtualPrivateCloudSVG = exports.VirtualIpSVG = exports.VirtualDesktopInfrastructureSVG = exports.VirtualDataCenterWithGpuSVG = exports.VirtualDataCenterSVG = exports.VictriaMetricsSVG = exports.VcenterManagerSVG = exports.VMwareVSphereClientSVG = exports.VMwareVSphereSVG = exports.VMwareVShpereHypervisorSVG = exports.VMwareVCentrServerSVG = exports.VMwareNsxAdvancedLoadBalancerSVG = exports.VMwareEsxiSVG = exports.VMwareCloudDirectrAvailabilitySVG = exports.VMwareCloudDirectrAppLaunchpadSVG = exports.VMwareCloudDirectorServiceSVG = exports.VMwareCloudDirectorSVG = exports.VMwareBackupServerSVG = exports.VMwareAriaOperatonsforLogsSVG = exports.VMwareAriaOperatonsSVG = exports.VAppSVG = exports.UserGateVirtualNgfw1SVG = exports.UserGateVirtualNgfwSVG = exports.UserGateProfServiceSVG = exports.TrinoSVG = exports.TransactionsSVG = exports.TermideskSVG = void 0;
13
13
  var _1C_1 = require("./1C");
14
14
  Object.defineProperty(exports, "Svg1CSVG", { enumerable: true, get: function () { return __importDefault(_1C_1).default; } });
15
15
  var Accidents_1 = require("./Accidents");
@@ -20,6 +20,8 @@ var Advanced_1 = require("./Advanced");
20
20
  Object.defineProperty(exports, "AdvancedSVG", { enumerable: true, get: function () { return __importDefault(Advanced_1).default; } });
21
21
  var AgentBackup_1 = require("./AgentBackup");
22
22
  Object.defineProperty(exports, "AgentBackupSVG", { enumerable: true, get: function () { return __importDefault(AgentBackup_1).default; } });
23
+ var AgentsSpace_1 = require("./AgentsSpace");
24
+ Object.defineProperty(exports, "AgentsSpaceSVG", { enumerable: true, get: function () { return __importDefault(AgentsSpace_1).default; } });
23
25
  var AiServices_1 = require("./AiServices");
24
26
  Object.defineProperty(exports, "AiServicesSVG", { enumerable: true, get: function () { return __importDefault(AiServices_1).default; } });
25
27
  var Airflow_1 = require("./Airflow");
@@ -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 SvgAgentsSpaceLogoDark: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgAgentsSpaceLogoDark;
@@ -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 SvgAgentsSpaceLogoDark = React.forwardRef((_a, ref) => {
16
+ var { size } = _a, props = __rest(_a, ["size"]);
17
+ props.width = undefined;
18
+ props.height = undefined;
19
+ const testId = 'icon-agents-space-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("path", { fill: '#fff', d: 'M10.569 13.436v6.633H3.935v-6.633zm1.433-1.435h-9.5V21.5h9.5z' }), _jsx("path", { fill: '#fff', d: 'm16.143 3.979 3.882 3.882v12.162h-4.172V8.15H3.98V3.98zm.61-1.477H2.5v7.125h11.875V21.5H21.5V7.248L16.751 2.5z' })] })));
31
+ });
32
+ export default SvgAgentsSpaceLogoDark;
@@ -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 SvgAgentsSpaceLogoLight: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgAgentsSpaceLogoLight;
@@ -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 SvgAgentsSpaceLogoLight = React.forwardRef((_a, ref) => {
16
+ var { size } = _a, props = __rest(_a, ["size"]);
17
+ props.width = undefined;
18
+ props.height = undefined;
19
+ const testId = 'icon-agents-space-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("path", { fill: '#000', d: 'M10.569 13.436v6.633H3.935v-6.633zm1.433-1.435h-9.5V21.5h9.5z' }), _jsx("path", { fill: '#000', d: 'm16.143 3.979 3.882 3.882v12.162h-4.172V8.15H3.98V3.98zm.61-1.477H2.5v7.125h11.875V21.5H21.5V7.248L16.751 2.5z' })] })));
31
+ });
32
+ export default SvgAgentsSpaceLogoLight;
@@ -0,0 +1,3 @@
1
+ import { ISvgIconProps } from './AgentsSpaceLogoLight';
2
+ declare const AgentsSpaceLogoSvg: import("react").ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default AgentsSpaceLogoSvg;
@@ -0,0 +1,11 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ import AgentsSpaceLogoLight from './AgentsSpaceLogoLight';
4
+ import AgentsSpaceLogoDark from './AgentsSpaceLogoDark';
5
+ import { useThemeModification, useBrandModification } from '../../utils';
6
+ const AgentsSpaceLogoSvg = forwardRef(function AgentsSpaceLogoSvg(props, ref) {
7
+ const { isDarkTheme } = useThemeModification();
8
+ const { isDarkBrand } = useBrandModification();
9
+ return isDarkTheme || isDarkBrand ? (_jsx(AgentsSpaceLogoDark, Object.assign({}, props, { ref: ref }))) : (_jsx(AgentsSpaceLogoLight, Object.assign({}, props, { ref: ref })));
10
+ });
11
+ export default AgentsSpaceLogoSvg;
@@ -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 SvgAgentsSpaceLogoFullDark: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgAgentsSpaceLogoFullDark;
@@ -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 SvgAgentsSpaceLogoFullDark = React.forwardRef((_a, ref) => {
16
+ var { size } = _a, props = __rest(_a, ["size"]);
17
+ props.width = undefined;
18
+ props.height = undefined;
19
+ const testId = 'icon-agents-space-logo-full-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: 164, height: 24, fill: 'none', viewBox: '0 0 164 24', "data-test-id": testId, ref: ref }, props, { children: [_jsx("path", { fill: '#fff', d: 'M10.064 12.93v6.63h-6.63v-6.63zm1.431-1.434H2.002v9.493h9.494z' }), _jsx("path", { fill: '#fff', d: 'm15.634 3.478 3.88 3.88v12.155h-4.17V7.647H3.478v-4.17zm.61-1.476H2v7.12h11.866V20.99h7.121V6.746L16.241 2zM42.58 19.135h-2.958l-1.49-3.69h-7.137l-1.468 3.69h-2.825L33.019 3.57h3.157zm-5.47-6.247-2.558-6.381-2.558 6.381zM51.03 17.299a3.8 3.8 0 0 1-.522.774 3.4 3.4 0 0 1-.778.664q-.456.289-1.068.464-.611.178-1.39.177-1.067 0-1.947-.322a3.9 3.9 0 0 1-1.51-.989q-.635-.667-.99-1.713-.356-1.045-.356-2.512.001-1.646.356-2.792.357-1.146 1.012-1.867.656-.722 1.59-1.055a6.2 6.2 0 0 1 2.067-.333q1.446 0 2.369.656.922.656 1.3 1.523V8.018h2.447v10.005q0 1.558-.39 2.613t-1.122 1.713q-.733.654-1.78.945a8.8 8.8 0 0 1-2.335.289q-1.557 0-2.735-.39t-1.646-.811V19.49q.244.333.645.655.401.323.922.579.522.256 1.178.412a6 6 0 0 0 1.411.156q.822 0 1.435-.156.612-.157 1.022-.51.411-.355.612-.932.2-.577.2-1.42V17.3zm-2.957-7.214q-1.578 0-2.29.836-.712.837-.712 2.823 0 .915.21 1.55.213.637.6 1.037.389.402.935.58.545.18 1.211.18 1.424 0 2.156-.69.733-.688.846-1.933v-1.667q-.113-1.311-.902-2.013-.789-.7-2.056-.701zM64.987 18.023a2.3 2.3 0 0 1-.579.479q-.378.234-.912.433a6.6 6.6 0 0 1-1.188.312 8.4 8.4 0 0 1-1.411.11q-2.78.023-4.313-1.457-1.534-1.478-1.534-4.369 0-1.38.412-2.456a4.96 4.96 0 0 1 1.168-1.813 5 5 0 0 1 1.79-1.111q1.034-.378 2.302-.379 2.422.023 3.79 1.445t1.368 4.046v1.068h-8.25q.313 2.778 3.358 2.778 1.533 0 2.546-.512 1.011-.511 1.457-1.244v2.668zm-4.336-7.96q-1.268.001-2.023.617-.756.618-.956 1.806h5.604q-.045-1.123-.735-1.773t-1.89-.65M75 12.397q0-1.2-.511-1.746-.513-.544-1.668-.566h-.066q-2.847 0-2.846 2.868v6.182h-2.602V7.995h2.446v2.269q.357-1.023 1.39-1.747 1.035-.721 2.636-.722 1.8.023 2.812.989 1.011.967 1.011 2.924v7.427h-2.601zM83.102 4.238v3.78h3.98v2.29h-3.98v4.824q0 1.112.366 1.524t1.3.412q.712 0 1.368-.2a4.6 4.6 0 0 0 1.145-.512v2.246q-.179.155-.512.29a5.6 5.6 0 0 1-.735.232q-.402.1-.845.167a6 6 0 0 1-.868.066q-1.889 0-2.858-.788-.967-.79-.967-2.68v-5.58h-2.023V8.02h2.023V6.108l2.602-1.867zM94.804 10.626q-.879-.54-2.1-.562h-.044q-.89 0-1.39.264-.5.265-.5.793-.001.42.433.672.433.254 1.088.452.656.198 1.411.41a6 6 0 0 1 1.412.6q.656.39 1.088 1.011.434.623.433 1.6 0 1.668-1.134 2.58-1.135.913-3.224.934-.736.001-1.39-.133a9 9 0 0 1-1.202-.323 5.4 5.4 0 0 1-.945-.422 2.2 2.2 0 0 1-.6-.479v-2.695q.49.75 1.535 1.278 1.044.53 2.602.485.911-.022 1.334-.331a.96.96 0 0 0 .422-.816q.001-.441-.433-.693a5.5 5.5 0 0 0-1.088-.462q-.656-.21-1.411-.444a6.6 6.6 0 0 1-1.412-.622 3.5 3.5 0 0 1-1.088-1.012q-.434-.622-.433-1.6 0-1.469 1.122-2.402 1.122-.935 3.413-.935a7.4 7.4 0 0 1 2.067.312q.935.29 1.49.712v3.25a4.6 4.6 0 0 0-1.457-1.422M113.326 7.572a6.4 6.4 0 0 0-2.601-1.467 5.9 5.9 0 0 0-1.634-.223q-1.645.021-2.369.49-.723.467-.722 1.267 0 .6.389.978.39.379 1.011.622.622.246 1.424.433.8.19 1.647.412.845.224 1.646.546a5.4 5.4 0 0 1 1.424.835q.621.51 1.011 1.29.39.777.39 1.913 0 .978-.356 1.846a3.85 3.85 0 0 1-1.112 1.5q-.757.634-1.9 1.002-1.146.367-2.702.366a10.1 10.1 0 0 1-3.557-.632 7 7 0 0 1-1.278-.623 3.8 3.8 0 0 1-.856-.701v-3.424q.357.6.912 1.111.556.512 1.278.89.723.376 1.613.599.889.221 1.913.222 1.646 0 2.423-.533.778-.532.778-1.49 0-.822-.655-1.234t-1.657-.679a65 65 0 0 0-2.146-.533 9.3 9.3 0 0 1-2.146-.778 4.6 4.6 0 0 1-1.657-1.411q-.656-.901-.656-2.456 0-2.09 1.557-3.235t4.359-1.145q1.8.022 3.114.456 1.311.434 1.979.945v3.847a5.6 5.6 0 0 0-.855-1.002zM116.7 8.018h2.446v2.302a4 4 0 0 1 .456-.918q.3-.454.778-.808a4.1 4.1 0 0 1 1.145-.576q.668-.223 1.557-.223a5.6 5.6 0 0 1 1.946.323 3.9 3.9 0 0 1 1.511.988q.634.667.989 1.713.356 1.046.356 2.513 0 1.646-.356 2.79-.355 1.147-1.011 1.868a3.85 3.85 0 0 1-1.591 1.055q-.933.334-2.067.333-1.333 0-2.235-.578-.9-.577-1.324-1.358v5.983h-2.602V8.015zm2.602 5.936q0 1.511.802 2.323.799.812 2.179.812 1.579 0 2.289-.837.712-.837.712-2.822 0-1.83-.811-2.588-.814-.758-2.146-.757-1.534 0-2.257.8t-.768 2.203v.868zM129.562 8.796q.554-.42 1.544-.712.99-.29 2.435-.289 2.445 0 3.647.912 1.202.911 1.201 3.09v7.338h-2.446v-2q-.4.977-1.367 1.577-.966.6-2.302.6-1.69 0-2.635-.902-.946-.9-.945-2.545 0-.956.333-1.578a2.54 2.54 0 0 1 .934-.989q.601-.365 1.445-.522a10.3 10.3 0 0 1 1.867-.156h2.512v-.485q0-1.169-.566-1.61-.567-.44-1.68-.44-1.534 0-2.468.539a4.4 4.4 0 0 0-1.511 1.421v-3.25zm3.534 8.182q.667 0 1.145-.166.477-.166.812-.423.333-.256.512-.566.176-.312.222-.6v-.911h-2.202q-1.156.001-1.713.266-.556.266-.556 1.022 0 .647.456 1.012.456.367 1.324.366M147.958 18.933q-.977.445-2.336.445c-.905 0-1.698-.123-2.423-.366a5 5 0 0 1-1.867-1.101 4.9 4.9 0 0 1-1.201-1.824q-.422-1.088-.422-2.558c0-.98.143-1.781.433-2.502a4.9 4.9 0 0 1 1.211-1.8 5.1 5.1 0 0 1 1.867-1.089q1.09-.365 2.423-.366a7.4 7.4 0 0 1 2.067.312q.934.29 1.49.714v3.26a4.6 4.6 0 0 0-1.457-1.43q-.878-.544-2.1-.566-1.601 0-2.446.838-.845.84-.845 2.519v.331q0 1.724.879 2.529.878.805 2.456.805 1.4 0 2.302-.51.899-.508 1.324-1.242v2.68q-.377.47-1.358.917zM160.107 18.023a2.3 2.3 0 0 1-.579.479q-.377.234-.911.433a6.6 6.6 0 0 1-1.189.312q-.655.111-1.411.11-2.779.023-4.313-1.457-1.534-1.478-1.534-4.369 0-1.38.412-2.456.412-1.078 1.168-1.813a5 5 0 0 1 1.79-1.111q1.034-.378 2.302-.379 2.423.023 3.79 1.445Q161 10.64 161 13.263v1.068h-8.249q.311 2.778 3.358 2.778 1.534 0 2.545-.512 1.012-.511 1.457-1.244v2.668zm-4.336-7.96q-1.267.001-2.023.617-.755.618-.955 1.806h5.603q-.044-1.123-.735-1.773-.689-.65-1.89-.65' })] })));
31
+ });
32
+ export default SvgAgentsSpaceLogoFullDark;
@@ -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 SvgAgentsSpaceLogoFullLight: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgAgentsSpaceLogoFullLight;
@@ -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 SvgAgentsSpaceLogoFullLight = React.forwardRef((_a, ref) => {
16
+ var { size } = _a, props = __rest(_a, ["size"]);
17
+ props.width = undefined;
18
+ props.height = undefined;
19
+ const testId = 'icon-agents-space-logo-full-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: 164, height: 24, fill: 'none', viewBox: '0 0 164 24', "data-test-id": testId, ref: ref }, props, { children: [_jsx("path", { fill: '#000', d: 'M10.064 12.93v6.63h-6.63v-6.63zm1.431-1.434H2.002v9.493h9.494z' }), _jsx("path", { fill: '#000', d: 'm15.634 3.478 3.88 3.88v12.155h-4.17V7.647H3.478v-4.17zm.61-1.476H2v7.12h11.866V20.99h7.121V6.746L16.241 2zM42.58 19.135h-2.958l-1.49-3.69h-7.137l-1.468 3.69h-2.825L33.019 3.57h3.157zm-5.47-6.247-2.558-6.381-2.558 6.381zM51.03 17.299a3.8 3.8 0 0 1-.522.774 3.4 3.4 0 0 1-.778.664q-.456.289-1.068.464-.611.178-1.39.177-1.067 0-1.947-.322a3.9 3.9 0 0 1-1.51-.989q-.635-.667-.99-1.713-.356-1.045-.356-2.512.001-1.646.356-2.792.357-1.146 1.012-1.867.656-.722 1.59-1.055a6.2 6.2 0 0 1 2.067-.333q1.446 0 2.369.656.922.656 1.3 1.523V8.018h2.447v10.005q0 1.558-.39 2.613t-1.122 1.713q-.733.654-1.78.945a8.8 8.8 0 0 1-2.335.289q-1.557 0-2.735-.39t-1.646-.811V19.49q.244.333.645.655.401.323.922.579.522.256 1.178.412a6 6 0 0 0 1.411.156q.822 0 1.435-.156.612-.157 1.022-.51.411-.355.612-.932.2-.577.2-1.42V17.3zm-2.957-7.214q-1.578 0-2.29.836-.712.837-.712 2.823 0 .915.21 1.55.213.637.6 1.037.389.402.935.58.545.18 1.211.18 1.424 0 2.156-.69.733-.688.846-1.933v-1.667q-.113-1.311-.902-2.013-.789-.7-2.056-.701zM64.987 18.023a2.3 2.3 0 0 1-.579.479q-.378.234-.912.433a6.6 6.6 0 0 1-1.188.312 8.4 8.4 0 0 1-1.411.11q-2.78.023-4.313-1.457-1.534-1.478-1.534-4.369 0-1.38.412-2.456a4.96 4.96 0 0 1 1.168-1.813 5 5 0 0 1 1.79-1.111q1.034-.378 2.302-.379 2.422.023 3.79 1.445t1.368 4.046v1.068h-8.25q.313 2.778 3.358 2.778 1.533 0 2.546-.512 1.011-.511 1.457-1.244v2.668zm-4.336-7.96q-1.268.001-2.023.617-.756.618-.956 1.806h5.604q-.045-1.123-.735-1.773t-1.89-.65M75 12.397q0-1.2-.511-1.746-.513-.544-1.668-.566h-.066q-2.847 0-2.846 2.868v6.182h-2.602V7.995h2.446v2.269q.357-1.023 1.39-1.747 1.035-.721 2.636-.722 1.8.023 2.812.989 1.011.967 1.011 2.924v7.427h-2.601zM83.102 4.238v3.78h3.98v2.29h-3.98v4.824q0 1.112.366 1.524t1.3.412q.712 0 1.368-.2a4.6 4.6 0 0 0 1.145-.512v2.246q-.179.155-.512.29a5.6 5.6 0 0 1-.735.232q-.402.1-.845.167a6 6 0 0 1-.868.066q-1.889 0-2.858-.788-.967-.79-.967-2.68v-5.58h-2.023V8.02h2.023V6.108l2.602-1.867zM94.804 10.626q-.879-.54-2.1-.562h-.044q-.89 0-1.39.264-.5.265-.5.793-.001.42.433.672.433.254 1.088.452.656.198 1.411.41a6 6 0 0 1 1.412.6q.656.39 1.088 1.011.434.623.433 1.6 0 1.668-1.134 2.58-1.135.913-3.224.934-.736.001-1.39-.133a9 9 0 0 1-1.202-.323 5.4 5.4 0 0 1-.945-.422 2.2 2.2 0 0 1-.6-.479v-2.695q.49.75 1.535 1.278 1.044.53 2.602.485.911-.022 1.334-.331a.96.96 0 0 0 .422-.816q.001-.441-.433-.693a5.5 5.5 0 0 0-1.088-.462q-.656-.21-1.411-.444a6.6 6.6 0 0 1-1.412-.622 3.5 3.5 0 0 1-1.088-1.012q-.434-.622-.433-1.6 0-1.469 1.122-2.402 1.122-.935 3.413-.935a7.4 7.4 0 0 1 2.067.312q.935.29 1.49.712v3.25a4.6 4.6 0 0 0-1.457-1.422M113.326 7.572a6.4 6.4 0 0 0-2.601-1.467 5.9 5.9 0 0 0-1.634-.223q-1.645.021-2.369.49-.723.467-.722 1.267 0 .6.389.978.39.379 1.011.622.622.246 1.424.433.8.19 1.647.412.845.224 1.646.546a5.4 5.4 0 0 1 1.424.835q.621.51 1.011 1.29.39.777.39 1.913 0 .978-.356 1.846a3.85 3.85 0 0 1-1.112 1.5q-.757.634-1.9 1.002-1.146.367-2.702.366a10.1 10.1 0 0 1-3.557-.632 7 7 0 0 1-1.278-.623 3.8 3.8 0 0 1-.856-.701v-3.424q.357.6.912 1.111.556.512 1.278.89.723.376 1.613.599.889.221 1.913.222 1.646 0 2.423-.533.778-.532.778-1.49 0-.822-.655-1.234t-1.657-.679a65 65 0 0 0-2.146-.533 9.3 9.3 0 0 1-2.146-.778 4.6 4.6 0 0 1-1.657-1.411q-.656-.901-.656-2.456 0-2.09 1.557-3.235t4.359-1.145q1.8.022 3.114.456 1.311.434 1.979.945v3.847a5.6 5.6 0 0 0-.855-1.002zM116.7 8.018h2.446v2.302a4 4 0 0 1 .456-.918q.3-.454.778-.808a4.1 4.1 0 0 1 1.145-.576q.668-.223 1.557-.223a5.6 5.6 0 0 1 1.946.323 3.9 3.9 0 0 1 1.511.988q.634.667.989 1.713.356 1.046.356 2.513 0 1.646-.356 2.79-.355 1.147-1.011 1.868a3.85 3.85 0 0 1-1.591 1.055q-.933.334-2.067.333-1.333 0-2.235-.578-.9-.577-1.324-1.358v5.983h-2.602V8.015zm2.602 5.936q0 1.511.802 2.323.799.812 2.179.812 1.579 0 2.289-.837.712-.837.712-2.822 0-1.83-.811-2.588-.814-.758-2.146-.757-1.534 0-2.257.8t-.768 2.203v.868zM129.562 8.796q.554-.42 1.544-.712.99-.29 2.435-.289 2.445 0 3.647.912 1.202.911 1.201 3.09v7.338h-2.446v-2q-.4.977-1.367 1.577-.966.6-2.302.6-1.69 0-2.635-.902-.946-.9-.945-2.545 0-.956.333-1.578a2.54 2.54 0 0 1 .934-.989q.601-.365 1.445-.522a10.3 10.3 0 0 1 1.867-.156h2.512v-.485q0-1.169-.566-1.61-.567-.44-1.68-.44-1.534 0-2.468.539a4.4 4.4 0 0 0-1.511 1.421v-3.25zm3.534 8.182q.667 0 1.145-.166.477-.166.812-.423.333-.256.512-.566.176-.312.222-.6v-.911h-2.202q-1.156.001-1.713.266-.556.266-.556 1.022 0 .647.456 1.012.456.367 1.324.366M147.958 18.933q-.977.445-2.336.445c-.905 0-1.698-.123-2.423-.366a5 5 0 0 1-1.867-1.101 4.9 4.9 0 0 1-1.201-1.824q-.422-1.088-.422-2.558c0-.98.143-1.781.433-2.502a4.9 4.9 0 0 1 1.211-1.8 5.1 5.1 0 0 1 1.867-1.089q1.09-.365 2.423-.366a7.4 7.4 0 0 1 2.067.312q.934.29 1.49.714v3.26a4.6 4.6 0 0 0-1.457-1.43q-.878-.544-2.1-.566-1.601 0-2.446.838-.845.84-.845 2.519v.331q0 1.724.879 2.529.878.805 2.456.805 1.4 0 2.302-.51.899-.508 1.324-1.242v2.68q-.377.47-1.358.917zM160.107 18.023a2.3 2.3 0 0 1-.579.479q-.377.234-.911.433a6.6 6.6 0 0 1-1.189.312q-.655.111-1.411.11-2.779.023-4.313-1.457-1.534-1.478-1.534-4.369 0-1.38.412-2.456.412-1.078 1.168-1.813a5 5 0 0 1 1.79-1.111q1.034-.378 2.302-.379 2.423.023 3.79 1.445Q161 10.64 161 13.263v1.068h-8.249q.311 2.778 3.358 2.778 1.534 0 2.545-.512 1.012-.511 1.457-1.244v2.668zm-4.336-7.96q-1.267.001-2.023.617-.755.618-.955 1.806h5.603q-.044-1.123-.735-1.773-.689-.65-1.89-.65' })] })));
31
+ });
32
+ export default SvgAgentsSpaceLogoFullLight;
@@ -0,0 +1,3 @@
1
+ import { ISvgIconProps } from './AgentsSpaceLogoFullLight';
2
+ declare const AgentsSpaceLogoFullSvg: import("react").ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default AgentsSpaceLogoFullSvg;
@@ -0,0 +1,11 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ import AgentsSpaceLogoFullLight from './AgentsSpaceLogoFullLight';
4
+ import AgentsSpaceLogoFullDark from './AgentsSpaceLogoFullDark';
5
+ import { useThemeModification, useBrandModification } from '../../utils';
6
+ const AgentsSpaceLogoFullSvg = forwardRef(function AgentsSpaceLogoFullSvg(props, ref) {
7
+ const { isDarkTheme } = useThemeModification();
8
+ const { isDarkBrand } = useBrandModification();
9
+ return isDarkTheme || isDarkBrand ? (_jsx(AgentsSpaceLogoFullDark, Object.assign({}, props, { ref: ref }))) : (_jsx(AgentsSpaceLogoFullLight, Object.assign({}, props, { ref: ref })));
10
+ });
11
+ export default AgentsSpaceLogoFullSvg;
@@ -1,4 +1,6 @@
1
1
  export { default as AgentSandboxLogoSVG } from './AgentSandboxLogo';
2
+ export { default as AgentsSpaceLogoSVG } from './AgentsSpaceLogo';
3
+ export { default as AgentsSpaceLogoFullSVG } from './AgentsSpaceLogoFull';
2
4
  export { default as AiCloudLogoSVG } from './AiCloudLogo';
3
5
  export { default as AlmaLinuxLogoSVG } from './AlmaLinuxLogo';
4
6
  export { default as AmazonLogoSVG } from './AmazonLogo';
@@ -1,4 +1,6 @@
1
1
  export { default as AgentSandboxLogoSVG } from './AgentSandboxLogo';
2
+ export { default as AgentsSpaceLogoSVG } from './AgentsSpaceLogo';
3
+ export { default as AgentsSpaceLogoFullSVG } from './AgentsSpaceLogoFull';
2
4
  export { default as AiCloudLogoSVG } from './AiCloudLogo';
3
5
  export { default as AlmaLinuxLogoSVG } from './AlmaLinuxLogo';
4
6
  export { default as AmazonLogoSVG } from './AmazonLogo';
@@ -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 SvgAgentsSpace: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgAgentsSpace;
@@ -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 SvgAgentsSpace = React.forwardRef((_a, ref) => {
16
+ var { size = 24 } = _a, props = __rest(_a, ["size"]);
17
+ props.width = undefined;
18
+ props.height = undefined;
19
+ const testId = 'icon-agents-space';
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: 'currentColor', viewBox: '0 0 24 24', "data-test-id": testId, ref: ref }, props, { children: _jsx("path", { fill: 'inherit', fillRule: 'evenodd', d: 'M3.24 6.74v3.5h10.52v10.52h7V7.7l-2.23-2.23-2.23-2.23H3.24zm14.23-.21 1.77 1.77v10.94h-4V8.76H4.76v-4H15.7zM3.24 16.5v4.26h8.52v-8.52H3.24zm7 0v2.74H4.76v-5.48h5.48z' }) })));
31
+ });
32
+ export default SvgAgentsSpace;
@@ -3,6 +3,7 @@ export { default as AccidentsSVG } from './Accidents';
3
3
  export { default as ActveDirectorySVG } from './ActveDirectory';
4
4
  export { default as AdvancedSVG } from './Advanced';
5
5
  export { default as AgentBackupSVG } from './AgentBackup';
6
+ export { default as AgentsSpaceSVG } from './AgentsSpace';
6
7
  export { default as AiServicesSVG } from './AiServices';
7
8
  export { default as AirflowSVG } from './Airflow';
8
9
  export { default as AlertsSVG } from './Alerts';
@@ -3,6 +3,7 @@ export { default as AccidentsSVG } from './Accidents';
3
3
  export { default as ActveDirectorySVG } from './ActveDirectory';
4
4
  export { default as AdvancedSVG } from './Advanced';
5
5
  export { default as AgentBackupSVG } from './AgentBackup';
6
+ export { default as AgentsSpaceSVG } from './AgentsSpace';
6
7
  export { default as AiServicesSVG } from './AiServices';
7
8
  export { default as AirflowSVG } from './Airflow';
8
9
  export { default as AlertsSVG } from './Alerts';
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.8.1",
4
+ "version": "17.10.0",
5
5
  "sideEffects": [
6
6
  "*.svg",
7
7
  "*.css",
@@ -79,5 +79,5 @@
79
79
  "svgo": "3.3.4",
80
80
  "yargs": "17.7.2"
81
81
  },
82
- "gitHead": "1a03e39e2f2b52e36765da40bbe57bc1f01a4548"
82
+ "gitHead": "91c4347d414c436e5307ed0586b878b21199a97f"
83
83
  }