@cloud-ru/uikit-product-icons 17.9.0 → 17.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/dist/cjs/components/logo-icons/AgentsSpaceLogo/AgentsSpaceLogoDark.d.ts +9 -0
- package/dist/cjs/components/logo-icons/AgentsSpaceLogo/AgentsSpaceLogoDark.js +67 -0
- package/dist/cjs/components/logo-icons/AgentsSpaceLogo/AgentsSpaceLogoLight.d.ts +9 -0
- package/dist/cjs/components/logo-icons/AgentsSpaceLogo/AgentsSpaceLogoLight.js +67 -0
- package/dist/cjs/components/logo-icons/AgentsSpaceLogo/index.d.ts +3 -0
- package/dist/cjs/components/logo-icons/AgentsSpaceLogo/index.js +16 -0
- package/dist/cjs/components/logo-icons/AgentsSpaceLogoFull/AgentsSpaceLogoFullDark.d.ts +9 -0
- package/dist/cjs/components/logo-icons/AgentsSpaceLogoFull/AgentsSpaceLogoFullDark.js +67 -0
- package/dist/cjs/components/logo-icons/AgentsSpaceLogoFull/AgentsSpaceLogoFullLight.d.ts +9 -0
- package/dist/cjs/components/logo-icons/AgentsSpaceLogoFull/AgentsSpaceLogoFullLight.js +67 -0
- package/dist/cjs/components/logo-icons/AgentsSpaceLogoFull/index.d.ts +3 -0
- package/dist/cjs/components/logo-icons/AgentsSpaceLogoFull/index.js +16 -0
- package/dist/cjs/components/logo-icons/index.d.ts +2 -0
- package/dist/cjs/components/logo-icons/index.js +7 -3
- package/dist/esm/components/logo-icons/AgentsSpaceLogo/AgentsSpaceLogoDark.d.ts +9 -0
- package/dist/esm/components/logo-icons/AgentsSpaceLogo/AgentsSpaceLogoDark.js +32 -0
- package/dist/esm/components/logo-icons/AgentsSpaceLogo/AgentsSpaceLogoLight.d.ts +9 -0
- package/dist/esm/components/logo-icons/AgentsSpaceLogo/AgentsSpaceLogoLight.js +32 -0
- package/dist/esm/components/logo-icons/AgentsSpaceLogo/index.d.ts +3 -0
- package/dist/esm/components/logo-icons/AgentsSpaceLogo/index.js +11 -0
- package/dist/esm/components/logo-icons/AgentsSpaceLogoFull/AgentsSpaceLogoFullDark.d.ts +9 -0
- package/dist/esm/components/logo-icons/AgentsSpaceLogoFull/AgentsSpaceLogoFullDark.js +32 -0
- package/dist/esm/components/logo-icons/AgentsSpaceLogoFull/AgentsSpaceLogoFullLight.d.ts +9 -0
- package/dist/esm/components/logo-icons/AgentsSpaceLogoFull/AgentsSpaceLogoFullLight.js +32 -0
- package/dist/esm/components/logo-icons/AgentsSpaceLogoFull/index.d.ts +3 -0
- package/dist/esm/components/logo-icons/AgentsSpaceLogoFull/index.js +11 -0
- package/dist/esm/components/logo-icons/index.d.ts +2 -0
- package/dist/esm/components/logo-icons/index.js +2 -0
- 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.1 (2026-07-29)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **PDS-4188:** update agents space logos ([dab26b1](https://github.com/cloud-ru-tech/uikit-product/commit/dab26b11df0cb9c25027d3a89dbea481f5c1e475))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# 17.10.0 (2026-07-28)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **PDS-4188:** added Agents Space logos ([5d491c3](https://github.com/cloud-ru-tech/uikit-product/commit/5d491c358fc45a9ad429cf2c4cb098e0fd4dacfd))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
# 17.9.0 (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.632 13.346v6.275H4.357v-6.275zm1.356-1.358H3.002v8.986h8.986z' }), (0, jsx_runtime_1.jsx)("path", { fill: '#fff', d: 'm15.905 4.399 3.672 3.672v11.506h-3.946V8.345H4.399V4.4zm.577-1.397H3v6.74h11.232v11.232h6.74V7.492L16.48 3z' })] })));
|
|
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.632 13.346v6.275H4.357v-6.275zm1.356-1.358H3.002v8.986h8.986z' }), (0, jsx_runtime_1.jsx)("path", { fill: '#000', d: 'm15.905 4.399 3.672 3.672v11.506h-3.946V8.345H4.399V4.4zm.577-1.397H3v6.74h11.232v11.232h6.74V7.492L16.48 3z' })] })));
|
|
66
|
+
});
|
|
67
|
+
exports.default = SvgAgentsSpaceLogoLight;
|
|
@@ -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.632 13.828v6.275H4.357v-6.276zm1.356-1.358H3.002v8.986h8.986z' }), (0, jsx_runtime_1.jsx)("path", { fill: '#fff', d: 'm15.905 4.88 3.672 3.673V20.06h-3.946V8.827H4.399V4.881zm.577-1.396H3v6.74h11.232v11.232h6.74V7.974L16.48 3.482zM41.41 19.7h-2.8l-1.41-3.492h-6.756L29.056 19.7h-2.673l5.977-14.733h2.99zm-5.177-5.912-2.421-6.04-2.422 6.04zM49.41 17.963a3.6 3.6 0 0 1-.495.733q-.306.357-.737.628a3.9 3.9 0 0 1-1.01.44 4.7 4.7 0 0 1-1.317.167 5.3 5.3 0 0 1-1.842-.305 3.7 3.7 0 0 1-1.43-.936q-.6-.633-.936-1.622t-.337-2.378q0-1.557.337-2.641.337-1.086.957-1.768.622-.684 1.506-.999a5.8 5.8 0 0 1 1.956-.315q1.368 0 2.242.62.873.622 1.231 1.443V9.178h2.316v9.47q0 1.475-.369 2.473-.368.999-1.062 1.622-.694.619-1.684.894a8.3 8.3 0 0 1-2.21.274q-1.476 0-2.59-.369-1.117-.369-1.558-.768v-2.736q.231.315.61.62.38.305.873.548.495.242 1.116.39.62.148 1.335.148.779 0 1.358-.148.58-.149.967-.483.39-.336.58-.882.189-.547.189-1.344v-.924zm-2.8-6.829q-1.494 0-2.167.792-.674.792-.674 2.672 0 .865.199 1.468.201.603.567.98.369.382.885.55.516.17 1.146.17 1.348 0 2.042-.652t.8-1.83v-1.579q-.106-1.24-.854-1.905-.746-.663-1.946-.664zM62.62 18.649a2.2 2.2 0 0 1-.548.453 5 5 0 0 1-.863.41 6.2 6.2 0 0 1-1.125.295q-.621.104-1.336.104-2.63.021-4.082-1.379t-1.452-4.135q0-1.305.39-2.325a4.7 4.7 0 0 1 1.105-1.716 4.7 4.7 0 0 1 1.695-1.052q.978-.358 2.179-.359 2.293.022 3.587 1.368t1.295 3.83v1.01h-7.808q.294 2.63 3.178 2.63 1.451.001 2.41-.484.957-.484 1.378-1.178v2.526zm-4.104-7.534q-1.2 0-1.915.583-.716.585-.905 1.71H61q-.042-1.065-.696-1.679-.652-.614-1.788-.614M72.098 13.323q0-1.136-.485-1.653-.484-.515-1.578-.536h-.063q-2.693 0-2.693 2.715v5.852h-2.463V9.156h2.315v2.148q.338-.968 1.316-1.653.979-.683 2.495-.684 1.704.022 2.661.936.958.915.958 2.768v7.03h-2.463zM79.766 5.6v3.578h3.767v2.167h-3.767v4.567q0 1.052.347 1.442.346.39 1.231.39.674 0 1.295-.189a4.4 4.4 0 0 0 1.083-.485v2.126a1.7 1.7 0 0 1-.484.274q-.316.127-.696.22-.38.096-.8.158a6 6 0 0 1-.821.063q-1.789 0-2.706-.746-.916-.748-.916-2.536v-5.282h-1.915V9.18H77.3V7.37l2.463-1.768zM90.842 11.647q-.83-.512-1.987-.532h-.042q-.841-.001-1.316.25-.473.251-.473.75 0 .396.41.637.41.24 1.03.427.622.187 1.336.389.715.2 1.336.567a3.3 3.3 0 0 1 1.03.957q.41.59.41 1.516 0 1.578-1.074 2.44-1.073.864-3.051.885-.695 0-1.316-.126a9 9 0 0 1-1.137-.305 5 5 0 0 1-.895-.4 2.1 2.1 0 0 1-.567-.453v-2.552q.464.71 1.452 1.21.99.502 2.463.459.864-.02 1.262-.313a.91.91 0 0 0 .4-.773q.001-.416-.41-.656a5.2 5.2 0 0 0-1.03-.437q-.62-.198-1.336-.42a6.3 6.3 0 0 1-1.335-.589 3.3 3.3 0 0 1-1.03-.957q-.411-.59-.41-1.515 0-1.39 1.061-2.274 1.063-.885 3.231-.885a7 7 0 0 1 1.957.296q.884.275 1.41.674v3.075a4.4 4.4 0 0 0-1.379-1.345M108.375 8.756a6.06 6.06 0 0 0-2.463-1.389 5.5 5.5 0 0 0-1.546-.21q-1.557.02-2.242.462-.685.444-.684 1.2 0 .569.368.926.37.359.958.59a10 10 0 0 0 1.348.41c.504.12 1.024.247 1.558.39a13 13 0 0 1 1.558.515 5.1 5.1 0 0 1 1.348.79q.588.485.958 1.222.368.735.368 1.81 0 .926-.337 1.748a3.64 3.64 0 0 1-1.052 1.42q-.717.6-1.799.948-1.085.348-2.557.347a9.5 9.5 0 0 1-3.367-.599 6.7 6.7 0 0 1-1.21-.589 3.6 3.6 0 0 1-.81-.664v-3.24q.338.566.863 1.051.527.484 1.21.841.683.358 1.527.568.841.21 1.811.21 1.557 0 2.293-.504t.737-1.41q0-.778-.621-1.169-.62-.388-1.568-.642a62 62 0 0 0-2.031-.504 8.8 8.8 0 0 1-2.032-.737 4.4 4.4 0 0 1-1.568-1.336q-.62-.852-.62-2.325 0-1.978 1.473-3.061 1.471-1.084 4.126-1.084 1.704.021 2.947.432 1.242.409 1.874.894v3.64a5.3 5.3 0 0 0-.81-.947zM111.569 9.178h2.315v2.179q.147-.44.431-.869.285-.43.737-.764a3.9 3.9 0 0 1 1.084-.546q.632-.21 1.473-.21 1.01 0 1.842.305a3.7 3.7 0 0 1 1.431.935q.6.631.936 1.622.337.99.337 2.378 0 1.557-.337 2.642t-.958 1.767a3.64 3.64 0 0 1-1.505.999 5.8 5.8 0 0 1-1.957.315q-1.262 0-2.115-.547-.852-.547-1.254-1.285v5.662h-2.462V9.176zm2.462 5.619q0 1.43.759 2.199.756.768 2.063.768 1.494 0 2.167-.792.674-.792.674-2.672 0-1.73-.769-2.449-.769-.717-2.031-.717-1.451 0-2.136.759-.684.757-.727 2.084v.822zM123.742 9.915q.526-.399 1.462-.674.937-.274 2.305-.274 2.315 0 3.452.863 1.138.862 1.137 2.926V19.7h-2.315v-1.894q-.379.926-1.294 1.494-.916.567-2.179.567-1.6 0-2.495-.853-.895-.851-.894-2.41 0-.903.315-1.493.315-.589.885-.936.568-.346 1.367-.494a10 10 0 0 1 1.767-.148h2.378v-.459q0-1.106-.536-1.523-.535-.418-1.59-.418-1.451.002-2.336.51-.883.512-1.431 1.346V9.913zm3.346 7.745q.631-.001 1.083-.158.453-.156.769-.4.316-.242.484-.536t.211-.567v-.863h-2.084q-1.094 0-1.622.252-.525.251-.526.967 0 .612.432.958.43.348 1.253.347M141.155 19.51q-.925.421-2.211.421c-.857 0-1.607-.116-2.293-.347a4.7 4.7 0 0 1-1.767-1.042 4.6 4.6 0 0 1-1.137-1.726q-.4-1.03-.4-2.421c0-.928.136-1.687.41-2.368a4.7 4.7 0 0 1 1.147-1.704 4.8 4.8 0 0 1 1.767-1.03q1.031-.347 2.293-.348a7 7 0 0 1 1.956.296q.885.274 1.411.676v3.085a4.36 4.36 0 0 0-1.379-1.354q-.832-.514-1.988-.535-1.515.001-2.315.794-.8.794-.8 2.383v.314q0 1.63.832 2.393.83.763 2.324.763 1.327 0 2.179-.483.852-.48 1.254-1.176v2.538q-.357.443-1.285.867zM152.655 18.649a2.2 2.2 0 0 1-.548.453 5 5 0 0 1-.863.41 6.2 6.2 0 0 1-1.125.295q-.62.104-1.335.104-2.631.021-4.083-1.379-1.451-1.4-1.452-4.135 0-1.305.39-2.325t1.106-1.716a4.7 4.7 0 0 1 1.694-1.052q.978-.358 2.179-.359 2.293.022 3.588 1.368t1.294 3.83v1.01h-7.808q.294 2.63 3.178 2.63 1.452.001 2.41-.484.957-.484 1.379-1.178v2.526zm-4.104-7.534q-1.2 0-1.915.583-.715.585-.904 1.71h5.303q-.041-1.065-.695-1.679-.651-.614-1.789-.614' })] })));
|
|
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: 157, height: 24, fill: 'none', viewBox: '0 0 157 24', "data-test-id": testId, ref: ref }, props, { children: [(0, jsx_runtime_1.jsx)("path", { fill: '#000', d: 'M10.632 13.346v6.275H4.357v-6.275zm1.356-1.358H3.002v8.986h8.986z' }), (0, jsx_runtime_1.jsx)("path", { fill: '#000', d: 'm15.905 4.399 3.672 3.672v11.506h-3.946V8.345H4.399V4.4zm.577-1.397H3v6.74h11.232v11.232h6.74V7.492L16.48 3zM41.41 19.219h-2.8l-1.41-3.493h-6.756l-1.389 3.493h-2.673l5.977-14.733h2.99zm-5.177-5.913-2.421-6.04-2.422 6.04zM49.41 17.481a3.6 3.6 0 0 1-.495.733q-.306.357-.737.628-.432.274-1.01.44a4.7 4.7 0 0 1-1.317.167 5.3 5.3 0 0 1-1.842-.305 3.7 3.7 0 0 1-1.43-.936q-.6-.632-.936-1.621-.337-.99-.337-2.378 0-1.559.337-2.642.337-1.085.957-1.768.622-.684 1.506-.999a5.8 5.8 0 0 1 1.956-.315q1.368 0 2.242.62.873.622 1.231 1.443V8.696h2.316v9.47q0 1.475-.369 2.473-.368.998-1.062 1.622-.694.619-1.684.894a8.3 8.3 0 0 1-2.21.274q-1.476 0-2.59-.368-1.117-.37-1.558-.769v-2.736q.231.315.61.62.38.305.873.548a5.3 5.3 0 0 0 1.116.39q.62.148 1.335.148.779 0 1.358-.148t.967-.483q.39-.336.58-.882.189-.547.189-1.344v-.924zm-2.8-6.829q-1.494 0-2.167.792-.674.792-.674 2.672 0 .865.199 1.468.201.603.567.98.369.382.885.55.516.17 1.146.17 1.348 0 2.042-.652.694-.653.8-1.83v-1.578q-.106-1.241-.854-1.906-.746-.663-1.946-.664zM62.62 18.167q-.19.23-.548.453a5 5 0 0 1-.863.41 6.2 6.2 0 0 1-1.125.295q-.621.106-1.336.105-2.63.02-4.082-1.38t-1.452-4.135q0-1.305.39-2.325a4.7 4.7 0 0 1 1.105-1.716 4.7 4.7 0 0 1 1.695-1.052q.978-.358 2.179-.359 2.293.022 3.587 1.368t1.295 3.83v1.01h-7.808q.294 2.63 3.178 2.63 1.451.001 2.41-.484.957-.484 1.378-1.178v2.526zm-4.104-7.534q-1.2 0-1.915.583-.716.585-.905 1.71H61q-.042-1.065-.696-1.679-.652-.614-1.788-.614M72.098 12.841q0-1.136-.485-1.653-.484-.515-1.578-.536h-.063q-2.693 0-2.693 2.715v5.852h-2.463V8.674h2.315v2.148q.338-.968 1.316-1.653.979-.683 2.495-.684 1.704.022 2.661.936.958.915.958 2.768v7.03h-2.463zM79.766 5.118v3.578h3.767v2.167h-3.767v4.567q0 1.052.347 1.442.346.39 1.231.39.674 0 1.295-.189a4.4 4.4 0 0 0 1.083-.485v2.126a1.7 1.7 0 0 1-.484.274q-.316.127-.696.22-.38.096-.8.159a6 6 0 0 1-.821.063q-1.789 0-2.706-.747-.916-.748-.916-2.536v-5.282h-1.915V8.698H77.3v-1.81l2.463-1.768zM90.842 11.165q-.83-.511-1.987-.532h-.042q-.841-.001-1.316.25-.473.251-.473.75 0 .397.41.637t1.03.427q.622.188 1.336.389.715.2 1.336.567a3.3 3.3 0 0 1 1.03.957q.41.59.41 1.515 0 1.579-1.074 2.442-1.073.863-3.051.884-.695 0-1.316-.126a9 9 0 0 1-1.137-.305 5 5 0 0 1-.895-.4 2.1 2.1 0 0 1-.567-.453v-2.552q.464.71 1.452 1.21.99.502 2.463.459.864-.02 1.262-.313a.91.91 0 0 0 .4-.773q.001-.416-.41-.656a5.2 5.2 0 0 0-1.03-.437q-.62-.198-1.336-.42a6.3 6.3 0 0 1-1.335-.589 3.3 3.3 0 0 1-1.03-.957q-.411-.59-.41-1.515 0-1.39 1.061-2.274 1.063-.884 3.231-.885a7 7 0 0 1 1.957.296q.884.275 1.41.674v3.075a4.4 4.4 0 0 0-1.379-1.345M108.375 8.274a6.05 6.05 0 0 0-2.463-1.389 5.5 5.5 0 0 0-1.546-.21q-1.557.02-2.242.463-.685.442-.684 1.2 0 .567.368.925.37.359.958.59a10 10 0 0 0 1.348.41q.756.178 1.558.39.8.211 1.558.515.757.306 1.348.79.588.485.958 1.222.368.736.368 1.81 0 .926-.337 1.748a3.64 3.64 0 0 1-1.052 1.42q-.717.6-1.799.948-1.085.348-2.557.347a9.5 9.5 0 0 1-3.367-.599 6.7 6.7 0 0 1-1.21-.589 3.6 3.6 0 0 1-.81-.664v-3.24q.338.566.863 1.051.527.484 1.21.842.683.357 1.527.567.841.21 1.811.21 1.557 0 2.293-.504t.737-1.41q0-.778-.621-1.169-.62-.389-1.568-.642a62 62 0 0 0-2.031-.504 8.8 8.8 0 0 1-2.032-.737 4.4 4.4 0 0 1-1.568-1.336q-.62-.851-.62-2.325 0-1.978 1.473-3.061 1.471-1.084 4.126-1.084 1.704.021 2.947.432 1.242.409 1.874.894v3.64a5.3 5.3 0 0 0-.81-.947zM111.569 8.696h2.315v2.179q.147-.44.431-.869.285-.43.737-.764a3.9 3.9 0 0 1 1.084-.546q.632-.21 1.473-.21 1.01 0 1.842.305a3.7 3.7 0 0 1 1.431.935q.6.631.936 1.622.337.99.337 2.378 0 1.557-.337 2.642t-.958 1.767a3.64 3.64 0 0 1-1.505.999 5.8 5.8 0 0 1-1.957.315q-1.262 0-2.115-.547-.852-.547-1.254-1.285v5.662h-2.462V8.694zm2.462 5.619q0 1.43.759 2.199.756.768 2.063.768 1.494 0 2.167-.792.674-.792.674-2.671 0-1.731-.769-2.45-.769-.717-2.031-.717-1.451 0-2.136.759-.684.757-.727 2.084v.822zM123.742 9.433q.526-.399 1.462-.674.937-.274 2.305-.274 2.315 0 3.452.863 1.138.862 1.137 2.926v6.945h-2.315v-1.894q-.379.926-1.294 1.494-.916.567-2.179.567-1.6 0-2.495-.853-.895-.851-.894-2.41 0-.903.315-1.493.315-.589.885-.936.568-.346 1.367-.494a10 10 0 0 1 1.767-.148h2.378v-.459q0-1.106-.536-1.523-.535-.418-1.59-.418-1.451.002-2.336.51-.883.512-1.431 1.346V9.431zm3.346 7.745q.631-.001 1.083-.158.453-.156.769-.4.316-.242.484-.536t.211-.567v-.863h-2.084q-1.094 0-1.622.252-.525.251-.526.967 0 .612.432.958.43.348 1.253.347M141.155 19.028q-.925.421-2.211.421c-.857 0-1.607-.116-2.293-.347a4.7 4.7 0 0 1-1.767-1.042 4.6 4.6 0 0 1-1.137-1.726q-.4-1.03-.4-2.421c0-.928.136-1.687.41-2.368a4.7 4.7 0 0 1 1.147-1.704 4.8 4.8 0 0 1 1.767-1.03q1.031-.347 2.293-.348a7 7 0 0 1 1.956.296q.885.274 1.411.676v3.085a4.36 4.36 0 0 0-1.379-1.354q-.832-.514-1.988-.535-1.515.001-2.315.794-.8.795-.8 2.384v.313q0 1.63.832 2.394.83.762 2.324.762 1.327 0 2.179-.483.852-.48 1.254-1.176v2.538q-.357.443-1.285.867zM152.655 18.167a2.2 2.2 0 0 1-.548.453 5 5 0 0 1-.863.41 6.2 6.2 0 0 1-1.125.295q-.62.106-1.335.105-2.631.02-4.083-1.38-1.451-1.4-1.452-4.135 0-1.305.39-2.325t1.106-1.716a4.7 4.7 0 0 1 1.694-1.052q.978-.358 2.179-.359 2.293.022 3.588 1.368t1.294 3.83v1.01h-7.808q.294 2.63 3.178 2.63 1.452.001 2.41-.484.957-.484 1.379-1.178v2.526zm-4.104-7.534q-1.2 0-1.915.583-.715.585-.904 1.71h5.303q-.041-1.065-.695-1.679-.651-.614-1.789-.614' })] })));
|
|
66
|
+
});
|
|
67
|
+
exports.default = SvgAgentsSpaceLogoFullLight;
|
|
@@ -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.
|
|
7
|
-
exports.
|
|
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 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.632 13.346v6.275H4.357v-6.275zm1.356-1.358H3.002v8.986h8.986z' }), _jsx("path", { fill: '#fff', d: 'm15.905 4.399 3.672 3.672v11.506h-3.946V8.345H4.399V4.4zm.577-1.397H3v6.74h11.232v11.232h6.74V7.492L16.48 3z' })] })));
|
|
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.632 13.346v6.275H4.357v-6.275zm1.356-1.358H3.002v8.986h8.986z' }), _jsx("path", { fill: '#000', d: 'm15.905 4.399 3.672 3.672v11.506h-3.946V8.345H4.399V4.4zm.577-1.397H3v6.74h11.232v11.232h6.74V7.492L16.48 3z' })] })));
|
|
31
|
+
});
|
|
32
|
+
export default SvgAgentsSpaceLogoLight;
|
|
@@ -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.632 13.828v6.275H4.357v-6.276zm1.356-1.358H3.002v8.986h8.986z' }), _jsx("path", { fill: '#fff', d: 'm15.905 4.88 3.672 3.673V20.06h-3.946V8.827H4.399V4.881zm.577-1.396H3v6.74h11.232v11.232h6.74V7.974L16.48 3.482zM41.41 19.7h-2.8l-1.41-3.492h-6.756L29.056 19.7h-2.673l5.977-14.733h2.99zm-5.177-5.912-2.421-6.04-2.422 6.04zM49.41 17.963a3.6 3.6 0 0 1-.495.733q-.306.357-.737.628a3.9 3.9 0 0 1-1.01.44 4.7 4.7 0 0 1-1.317.167 5.3 5.3 0 0 1-1.842-.305 3.7 3.7 0 0 1-1.43-.936q-.6-.633-.936-1.622t-.337-2.378q0-1.557.337-2.641.337-1.086.957-1.768.622-.684 1.506-.999a5.8 5.8 0 0 1 1.956-.315q1.368 0 2.242.62.873.622 1.231 1.443V9.178h2.316v9.47q0 1.475-.369 2.473-.368.999-1.062 1.622-.694.619-1.684.894a8.3 8.3 0 0 1-2.21.274q-1.476 0-2.59-.369-1.117-.369-1.558-.768v-2.736q.231.315.61.62.38.305.873.548.495.242 1.116.39.62.148 1.335.148.779 0 1.358-.148.58-.149.967-.483.39-.336.58-.882.189-.547.189-1.344v-.924zm-2.8-6.829q-1.494 0-2.167.792-.674.792-.674 2.672 0 .865.199 1.468.201.603.567.98.369.382.885.55.516.17 1.146.17 1.348 0 2.042-.652t.8-1.83v-1.579q-.106-1.24-.854-1.905-.746-.663-1.946-.664zM62.62 18.649a2.2 2.2 0 0 1-.548.453 5 5 0 0 1-.863.41 6.2 6.2 0 0 1-1.125.295q-.621.104-1.336.104-2.63.021-4.082-1.379t-1.452-4.135q0-1.305.39-2.325a4.7 4.7 0 0 1 1.105-1.716 4.7 4.7 0 0 1 1.695-1.052q.978-.358 2.179-.359 2.293.022 3.587 1.368t1.295 3.83v1.01h-7.808q.294 2.63 3.178 2.63 1.451.001 2.41-.484.957-.484 1.378-1.178v2.526zm-4.104-7.534q-1.2 0-1.915.583-.716.585-.905 1.71H61q-.042-1.065-.696-1.679-.652-.614-1.788-.614M72.098 13.323q0-1.136-.485-1.653-.484-.515-1.578-.536h-.063q-2.693 0-2.693 2.715v5.852h-2.463V9.156h2.315v2.148q.338-.968 1.316-1.653.979-.683 2.495-.684 1.704.022 2.661.936.958.915.958 2.768v7.03h-2.463zM79.766 5.6v3.578h3.767v2.167h-3.767v4.567q0 1.052.347 1.442.346.39 1.231.39.674 0 1.295-.189a4.4 4.4 0 0 0 1.083-.485v2.126a1.7 1.7 0 0 1-.484.274q-.316.127-.696.22-.38.096-.8.158a6 6 0 0 1-.821.063q-1.789 0-2.706-.746-.916-.748-.916-2.536v-5.282h-1.915V9.18H77.3V7.37l2.463-1.768zM90.842 11.647q-.83-.512-1.987-.532h-.042q-.841-.001-1.316.25-.473.251-.473.75 0 .396.41.637.41.24 1.03.427.622.187 1.336.389.715.2 1.336.567a3.3 3.3 0 0 1 1.03.957q.41.59.41 1.516 0 1.578-1.074 2.44-1.073.864-3.051.885-.695 0-1.316-.126a9 9 0 0 1-1.137-.305 5 5 0 0 1-.895-.4 2.1 2.1 0 0 1-.567-.453v-2.552q.464.71 1.452 1.21.99.502 2.463.459.864-.02 1.262-.313a.91.91 0 0 0 .4-.773q.001-.416-.41-.656a5.2 5.2 0 0 0-1.03-.437q-.62-.198-1.336-.42a6.3 6.3 0 0 1-1.335-.589 3.3 3.3 0 0 1-1.03-.957q-.411-.59-.41-1.515 0-1.39 1.061-2.274 1.063-.885 3.231-.885a7 7 0 0 1 1.957.296q.884.275 1.41.674v3.075a4.4 4.4 0 0 0-1.379-1.345M108.375 8.756a6.06 6.06 0 0 0-2.463-1.389 5.5 5.5 0 0 0-1.546-.21q-1.557.02-2.242.462-.685.444-.684 1.2 0 .569.368.926.37.359.958.59a10 10 0 0 0 1.348.41c.504.12 1.024.247 1.558.39a13 13 0 0 1 1.558.515 5.1 5.1 0 0 1 1.348.79q.588.485.958 1.222.368.735.368 1.81 0 .926-.337 1.748a3.64 3.64 0 0 1-1.052 1.42q-.717.6-1.799.948-1.085.348-2.557.347a9.5 9.5 0 0 1-3.367-.599 6.7 6.7 0 0 1-1.21-.589 3.6 3.6 0 0 1-.81-.664v-3.24q.338.566.863 1.051.527.484 1.21.841.683.358 1.527.568.841.21 1.811.21 1.557 0 2.293-.504t.737-1.41q0-.778-.621-1.169-.62-.388-1.568-.642a62 62 0 0 0-2.031-.504 8.8 8.8 0 0 1-2.032-.737 4.4 4.4 0 0 1-1.568-1.336q-.62-.852-.62-2.325 0-1.978 1.473-3.061 1.471-1.084 4.126-1.084 1.704.021 2.947.432 1.242.409 1.874.894v3.64a5.3 5.3 0 0 0-.81-.947zM111.569 9.178h2.315v2.179q.147-.44.431-.869.285-.43.737-.764a3.9 3.9 0 0 1 1.084-.546q.632-.21 1.473-.21 1.01 0 1.842.305a3.7 3.7 0 0 1 1.431.935q.6.631.936 1.622.337.99.337 2.378 0 1.557-.337 2.642t-.958 1.767a3.64 3.64 0 0 1-1.505.999 5.8 5.8 0 0 1-1.957.315q-1.262 0-2.115-.547-.852-.547-1.254-1.285v5.662h-2.462V9.176zm2.462 5.619q0 1.43.759 2.199.756.768 2.063.768 1.494 0 2.167-.792.674-.792.674-2.672 0-1.73-.769-2.449-.769-.717-2.031-.717-1.451 0-2.136.759-.684.757-.727 2.084v.822zM123.742 9.915q.526-.399 1.462-.674.937-.274 2.305-.274 2.315 0 3.452.863 1.138.862 1.137 2.926V19.7h-2.315v-1.894q-.379.926-1.294 1.494-.916.567-2.179.567-1.6 0-2.495-.853-.895-.851-.894-2.41 0-.903.315-1.493.315-.589.885-.936.568-.346 1.367-.494a10 10 0 0 1 1.767-.148h2.378v-.459q0-1.106-.536-1.523-.535-.418-1.59-.418-1.451.002-2.336.51-.883.512-1.431 1.346V9.913zm3.346 7.745q.631-.001 1.083-.158.453-.156.769-.4.316-.242.484-.536t.211-.567v-.863h-2.084q-1.094 0-1.622.252-.525.251-.526.967 0 .612.432.958.43.348 1.253.347M141.155 19.51q-.925.421-2.211.421c-.857 0-1.607-.116-2.293-.347a4.7 4.7 0 0 1-1.767-1.042 4.6 4.6 0 0 1-1.137-1.726q-.4-1.03-.4-2.421c0-.928.136-1.687.41-2.368a4.7 4.7 0 0 1 1.147-1.704 4.8 4.8 0 0 1 1.767-1.03q1.031-.347 2.293-.348a7 7 0 0 1 1.956.296q.885.274 1.411.676v3.085a4.36 4.36 0 0 0-1.379-1.354q-.832-.514-1.988-.535-1.515.001-2.315.794-.8.794-.8 2.383v.314q0 1.63.832 2.393.83.763 2.324.763 1.327 0 2.179-.483.852-.48 1.254-1.176v2.538q-.357.443-1.285.867zM152.655 18.649a2.2 2.2 0 0 1-.548.453 5 5 0 0 1-.863.41 6.2 6.2 0 0 1-1.125.295q-.62.104-1.335.104-2.631.021-4.083-1.379-1.451-1.4-1.452-4.135 0-1.305.39-2.325t1.106-1.716a4.7 4.7 0 0 1 1.694-1.052q.978-.358 2.179-.359 2.293.022 3.588 1.368t1.294 3.83v1.01h-7.808q.294 2.63 3.178 2.63 1.452.001 2.41-.484.957-.484 1.379-1.178v2.526zm-4.104-7.534q-1.2 0-1.915.583-.715.585-.904 1.71h5.303q-.041-1.065-.695-1.679-.651-.614-1.789-.614' })] })));
|
|
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: 157, height: 24, fill: 'none', viewBox: '0 0 157 24', "data-test-id": testId, ref: ref }, props, { children: [_jsx("path", { fill: '#000', d: 'M10.632 13.346v6.275H4.357v-6.275zm1.356-1.358H3.002v8.986h8.986z' }), _jsx("path", { fill: '#000', d: 'm15.905 4.399 3.672 3.672v11.506h-3.946V8.345H4.399V4.4zm.577-1.397H3v6.74h11.232v11.232h6.74V7.492L16.48 3zM41.41 19.219h-2.8l-1.41-3.493h-6.756l-1.389 3.493h-2.673l5.977-14.733h2.99zm-5.177-5.913-2.421-6.04-2.422 6.04zM49.41 17.481a3.6 3.6 0 0 1-.495.733q-.306.357-.737.628-.432.274-1.01.44a4.7 4.7 0 0 1-1.317.167 5.3 5.3 0 0 1-1.842-.305 3.7 3.7 0 0 1-1.43-.936q-.6-.632-.936-1.621-.337-.99-.337-2.378 0-1.559.337-2.642.337-1.085.957-1.768.622-.684 1.506-.999a5.8 5.8 0 0 1 1.956-.315q1.368 0 2.242.62.873.622 1.231 1.443V8.696h2.316v9.47q0 1.475-.369 2.473-.368.998-1.062 1.622-.694.619-1.684.894a8.3 8.3 0 0 1-2.21.274q-1.476 0-2.59-.368-1.117-.37-1.558-.769v-2.736q.231.315.61.62.38.305.873.548a5.3 5.3 0 0 0 1.116.39q.62.148 1.335.148.779 0 1.358-.148t.967-.483q.39-.336.58-.882.189-.547.189-1.344v-.924zm-2.8-6.829q-1.494 0-2.167.792-.674.792-.674 2.672 0 .865.199 1.468.201.603.567.98.369.382.885.55.516.17 1.146.17 1.348 0 2.042-.652.694-.653.8-1.83v-1.578q-.106-1.241-.854-1.906-.746-.663-1.946-.664zM62.62 18.167q-.19.23-.548.453a5 5 0 0 1-.863.41 6.2 6.2 0 0 1-1.125.295q-.621.106-1.336.105-2.63.02-4.082-1.38t-1.452-4.135q0-1.305.39-2.325a4.7 4.7 0 0 1 1.105-1.716 4.7 4.7 0 0 1 1.695-1.052q.978-.358 2.179-.359 2.293.022 3.587 1.368t1.295 3.83v1.01h-7.808q.294 2.63 3.178 2.63 1.451.001 2.41-.484.957-.484 1.378-1.178v2.526zm-4.104-7.534q-1.2 0-1.915.583-.716.585-.905 1.71H61q-.042-1.065-.696-1.679-.652-.614-1.788-.614M72.098 12.841q0-1.136-.485-1.653-.484-.515-1.578-.536h-.063q-2.693 0-2.693 2.715v5.852h-2.463V8.674h2.315v2.148q.338-.968 1.316-1.653.979-.683 2.495-.684 1.704.022 2.661.936.958.915.958 2.768v7.03h-2.463zM79.766 5.118v3.578h3.767v2.167h-3.767v4.567q0 1.052.347 1.442.346.39 1.231.39.674 0 1.295-.189a4.4 4.4 0 0 0 1.083-.485v2.126a1.7 1.7 0 0 1-.484.274q-.316.127-.696.22-.38.096-.8.159a6 6 0 0 1-.821.063q-1.789 0-2.706-.747-.916-.748-.916-2.536v-5.282h-1.915V8.698H77.3v-1.81l2.463-1.768zM90.842 11.165q-.83-.511-1.987-.532h-.042q-.841-.001-1.316.25-.473.251-.473.75 0 .397.41.637t1.03.427q.622.188 1.336.389.715.2 1.336.567a3.3 3.3 0 0 1 1.03.957q.41.59.41 1.515 0 1.579-1.074 2.442-1.073.863-3.051.884-.695 0-1.316-.126a9 9 0 0 1-1.137-.305 5 5 0 0 1-.895-.4 2.1 2.1 0 0 1-.567-.453v-2.552q.464.71 1.452 1.21.99.502 2.463.459.864-.02 1.262-.313a.91.91 0 0 0 .4-.773q.001-.416-.41-.656a5.2 5.2 0 0 0-1.03-.437q-.62-.198-1.336-.42a6.3 6.3 0 0 1-1.335-.589 3.3 3.3 0 0 1-1.03-.957q-.411-.59-.41-1.515 0-1.39 1.061-2.274 1.063-.884 3.231-.885a7 7 0 0 1 1.957.296q.884.275 1.41.674v3.075a4.4 4.4 0 0 0-1.379-1.345M108.375 8.274a6.05 6.05 0 0 0-2.463-1.389 5.5 5.5 0 0 0-1.546-.21q-1.557.02-2.242.463-.685.442-.684 1.2 0 .567.368.925.37.359.958.59a10 10 0 0 0 1.348.41q.756.178 1.558.39.8.211 1.558.515.757.306 1.348.79.588.485.958 1.222.368.736.368 1.81 0 .926-.337 1.748a3.64 3.64 0 0 1-1.052 1.42q-.717.6-1.799.948-1.085.348-2.557.347a9.5 9.5 0 0 1-3.367-.599 6.7 6.7 0 0 1-1.21-.589 3.6 3.6 0 0 1-.81-.664v-3.24q.338.566.863 1.051.527.484 1.21.842.683.357 1.527.567.841.21 1.811.21 1.557 0 2.293-.504t.737-1.41q0-.778-.621-1.169-.62-.389-1.568-.642a62 62 0 0 0-2.031-.504 8.8 8.8 0 0 1-2.032-.737 4.4 4.4 0 0 1-1.568-1.336q-.62-.851-.62-2.325 0-1.978 1.473-3.061 1.471-1.084 4.126-1.084 1.704.021 2.947.432 1.242.409 1.874.894v3.64a5.3 5.3 0 0 0-.81-.947zM111.569 8.696h2.315v2.179q.147-.44.431-.869.285-.43.737-.764a3.9 3.9 0 0 1 1.084-.546q.632-.21 1.473-.21 1.01 0 1.842.305a3.7 3.7 0 0 1 1.431.935q.6.631.936 1.622.337.99.337 2.378 0 1.557-.337 2.642t-.958 1.767a3.64 3.64 0 0 1-1.505.999 5.8 5.8 0 0 1-1.957.315q-1.262 0-2.115-.547-.852-.547-1.254-1.285v5.662h-2.462V8.694zm2.462 5.619q0 1.43.759 2.199.756.768 2.063.768 1.494 0 2.167-.792.674-.792.674-2.671 0-1.731-.769-2.45-.769-.717-2.031-.717-1.451 0-2.136.759-.684.757-.727 2.084v.822zM123.742 9.433q.526-.399 1.462-.674.937-.274 2.305-.274 2.315 0 3.452.863 1.138.862 1.137 2.926v6.945h-2.315v-1.894q-.379.926-1.294 1.494-.916.567-2.179.567-1.6 0-2.495-.853-.895-.851-.894-2.41 0-.903.315-1.493.315-.589.885-.936.568-.346 1.367-.494a10 10 0 0 1 1.767-.148h2.378v-.459q0-1.106-.536-1.523-.535-.418-1.59-.418-1.451.002-2.336.51-.883.512-1.431 1.346V9.431zm3.346 7.745q.631-.001 1.083-.158.453-.156.769-.4.316-.242.484-.536t.211-.567v-.863h-2.084q-1.094 0-1.622.252-.525.251-.526.967 0 .612.432.958.43.348 1.253.347M141.155 19.028q-.925.421-2.211.421c-.857 0-1.607-.116-2.293-.347a4.7 4.7 0 0 1-1.767-1.042 4.6 4.6 0 0 1-1.137-1.726q-.4-1.03-.4-2.421c0-.928.136-1.687.41-2.368a4.7 4.7 0 0 1 1.147-1.704 4.8 4.8 0 0 1 1.767-1.03q1.031-.347 2.293-.348a7 7 0 0 1 1.956.296q.885.274 1.411.676v3.085a4.36 4.36 0 0 0-1.379-1.354q-.832-.514-1.988-.535-1.515.001-2.315.794-.8.795-.8 2.384v.313q0 1.63.832 2.394.83.762 2.324.762 1.327 0 2.179-.483.852-.48 1.254-1.176v2.538q-.357.443-1.285.867zM152.655 18.167a2.2 2.2 0 0 1-.548.453 5 5 0 0 1-.863.41 6.2 6.2 0 0 1-1.125.295q-.62.106-1.335.105-2.631.02-4.083-1.38-1.451-1.4-1.452-4.135 0-1.305.39-2.325t1.106-1.716a4.7 4.7 0 0 1 1.694-1.052q.978-.358 2.179-.359 2.293.022 3.588 1.368t1.294 3.83v1.01h-7.808q.294 2.63 3.178 2.63 1.452.001 2.41-.484.957-.484 1.379-1.178v2.526zm-4.104-7.534q-1.2 0-1.915.583-.715.585-.904 1.71h5.303q-.041-1.065-.695-1.679-.651-.614-1.789-.614' })] })));
|
|
31
|
+
});
|
|
32
|
+
export default SvgAgentsSpaceLogoFullLight;
|
|
@@ -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';
|
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.
|
|
4
|
+
"version": "17.10.1",
|
|
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": "
|
|
82
|
+
"gitHead": "3e6ad33138de88a09e13fded80d9d93cc50a7277"
|
|
83
83
|
}
|