@cloud-ru/uikit-product-icons 18.1.0 → 18.2.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.
- package/CHANGELOG.md +11 -0
- package/dist/cjs/components/interface-icons-product/AgentSystem.d.ts +9 -0
- package/dist/cjs/components/interface-icons-product/AgentSystem.js +67 -0
- package/dist/cjs/components/interface-icons-product/AiAgent.d.ts +9 -0
- package/dist/cjs/components/interface-icons-product/AiAgent.js +67 -0
- package/dist/cjs/components/interface-icons-product/AiSkills.d.ts +9 -0
- package/dist/cjs/components/interface-icons-product/AiSkills.js +67 -0
- package/dist/cjs/components/interface-icons-product/EvoClaw.d.ts +9 -0
- package/dist/cjs/components/interface-icons-product/EvoClaw.js +67 -0
- package/dist/cjs/components/interface-icons-product/index.d.ts +4 -0
- package/dist/cjs/components/interface-icons-product/index.js +18 -10
- package/dist/cjs/components/service-icons/EvolutionCni.d.ts +9 -0
- package/dist/cjs/components/service-icons/EvolutionCni.js +67 -0
- package/dist/cjs/components/service-icons/SyntheticMonitoring.d.ts +9 -0
- package/dist/cjs/components/service-icons/SyntheticMonitoring.js +67 -0
- package/dist/cjs/components/service-icons/index.d.ts +2 -0
- package/dist/cjs/components/service-icons/index.js +9 -5
- package/dist/esm/components/interface-icons-product/AgentSystem.d.ts +9 -0
- package/dist/esm/components/interface-icons-product/AgentSystem.js +32 -0
- package/dist/esm/components/interface-icons-product/AiAgent.d.ts +9 -0
- package/dist/esm/components/interface-icons-product/AiAgent.js +32 -0
- package/dist/esm/components/interface-icons-product/AiSkills.d.ts +9 -0
- package/dist/esm/components/interface-icons-product/AiSkills.js +32 -0
- package/dist/esm/components/interface-icons-product/EvoClaw.d.ts +9 -0
- package/dist/esm/components/interface-icons-product/EvoClaw.js +32 -0
- package/dist/esm/components/interface-icons-product/index.d.ts +4 -0
- package/dist/esm/components/interface-icons-product/index.js +4 -0
- package/dist/esm/components/service-icons/EvolutionCni.d.ts +9 -0
- package/dist/esm/components/service-icons/EvolutionCni.js +32 -0
- package/dist/esm/components/service-icons/SyntheticMonitoring.d.ts +9 -0
- package/dist/esm/components/service-icons/SyntheticMonitoring.js +32 -0
- package/dist/esm/components/service-icons/index.d.ts +2 -0
- package/dist/esm/components/service-icons/index.js +2 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# 18.2.0 (2026-09-18)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **FF-9022:** add new icons ([a1bb7f4](https://github.com/cloud-ru-tech/uikit-product/commit/a1bb7f447aa296d3877a66ef2783a4ffea310349))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# 18.1.0 (2026-09-09)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import type { SVGProps } from 'react';
|
|
3
|
+
export interface ISvgIconProps extends SVGProps<SVGSVGElement> {
|
|
4
|
+
className?: string;
|
|
5
|
+
size?: number;
|
|
6
|
+
style?: React.CSSProperties;
|
|
7
|
+
}
|
|
8
|
+
declare const SvgAgentSystem: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default SvgAgentSystem;
|
|
@@ -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 SvgAgentSystem = 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-agent-system';
|
|
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: 'm4.21 4.21-.97.971v5.638l.589.591.59.59-.59.59-.589.591v5.64l.97.969.971.97H9.16v-1.52H5.821l-.53-.529-.531-.53v-4.362l.53-.529.53-.529.98-.01.98-.011v-1.48l-.98-.011-.98-.01-.53-.529-.53-.529V5.819l.531-.53.53-.529h4.358l.53.529.531.53V8.32h1.52V5.821l.529-.53.53-.531h4.362l.529.53.529.53.011 2.34.01 2.34h1.48l.01-2.659.011-2.66-.97-.97-.97-.971h-5.64l-.591.589-.59.59-.59-.59-.591-.589h-5.64zm10.324 7.137-.956 2.231-2.231.956c-1.226.526-2.222.964-2.213.973s1.013.444 2.23.966l2.214.949.956 2.231c.526 1.226.964 2.222.973 2.213s.444-1.013.966-2.23l.949-2.214 2.214-.949c1.217-.522 2.221-.957 2.23-.966s-.987-.447-2.213-.973l-2.231-.956-.949-2.214a174 174 0 0 0-.966-2.23c-.009-.009-.447.987-.973 2.213m1.365 2.493c.192.451.37.841.395.866s.415.203.866.395c.451.191.843.361.872.376.03.017-.306.181-.82.4-.48.204-.893.391-.918.417s-.203.415-.395.866c-.191.451-.361.843-.376.872-.017.03-.181-.306-.4-.82-.204-.48-.391-.893-.417-.918s-.415-.203-.866-.395a48 48 0 0 1-.872-.376c-.03-.017.306-.181.82-.4.48-.204.893-.391.918-.417s.213-.438.417-.918c.219-.514.383-.85.4-.82.015.029.185.421.376.872' }) })));
|
|
66
|
+
});
|
|
67
|
+
exports.default = SvgAgentSystem;
|
|
@@ -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 SvgAiAgent: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default SvgAiAgent;
|
|
@@ -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 SvgAiAgent = 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-ai-agent';
|
|
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: 'M7.592 4.613 3.243 7.06 3.242 12v4.94l4.341 2.44c2.388 1.342 4.376 2.44 4.417 2.44s2.029-1.098 4.417-2.44l4.341-2.44V12l-.001-4.94-4.344-2.44c-2.389-1.342-4.373-2.443-4.409-2.447s-2.021 1.094-4.412 2.44m8.063 1.304 3.585 2.018v8.135l-3.6 2.025c-1.98 1.114-3.618 2.025-3.64 2.025s-1.66-.911-3.64-2.025l-3.6-2.025V7.935L8.35 5.91c1.975-1.113 3.619-2.021 3.655-2.017s1.678.915 3.65 2.024m-4.706 1.614L9.918 9.94l-2.149.917c-1.182.505-2.266.97-2.409 1.033l-.26.116 2.379 1.019c1.308.561 2.398 1.036 2.422 1.056s.502 1.108 1.062 2.417c.559 1.309 1.026 2.38 1.037 2.38s.478-1.071 1.037-2.38c.56-1.309 1.038-2.397 1.062-2.417s1.114-.495 2.421-1.055l2.377-1.019-.138-.065c-.077-.035-1.162-.502-2.413-1.038l-2.273-.973-1.027-2.405C12.482 6.203 12.011 5.121 12 5.121c-.011.001-.484 1.085-1.051 2.41m1.524 2.486.453 1.057 1.057.453c.581.248 1.057.463 1.057.476s-.476.227-1.058.476l-1.059.453-.451 1.054c-.248.58-.46 1.054-.472 1.054s-.224-.474-.472-1.054l-.451-1.054-1.059-.453c-.582-.249-1.058-.463-1.058-.476s.476-.228 1.057-.476l1.057-.453.453-1.057c.248-.581.461-1.057.473-1.057s.225.476.473 1.057' }) })));
|
|
66
|
+
});
|
|
67
|
+
exports.default = SvgAiAgent;
|
|
@@ -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 SvgAiSkills: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default SvgAiSkills;
|
|
@@ -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 SvgAiSkills = 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-ai-skills';
|
|
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: 'M14.998 4.27c-.269.632-.51 1.17-.534 1.194s-.562.265-1.194.534c-.632.27-1.15.496-1.15.502s.518.232 1.15.502c.632.269 1.17.51 1.194.534s.265.562.534 1.194c.27.633.496 1.15.502 1.15s.232-.517.502-1.15c.269-.632.51-1.17.534-1.194s.562-.265 1.194-.534c.633-.27 1.15-.496 1.15-.502s-.517-.232-1.15-.502c-.632-.269-1.17-.51-1.194-.534s-.265-.562-.534-1.194c-.27-.632-.496-1.15-.502-1.15s-.232.518-.502 1.15M4.24 10.21c0 3.815.016 6.172.043 6.53.155 2.052.725 3.28 1.738 3.743.602.274.066.253 6.787.267 6.686.013 6.382.023 6.904-.233q.81-.4 1.327-1.457c.452-.928.659-1.9.707-3.33l.027-.77H18.56v-4.6h-1.52v4.6H9.457l-.253.93c-.49 1.802-.782 2.544-1.164 2.962-.294.322-.483.402-.893.38-.407-.023-.615-.121-.806-.383-.142-.194-.31-.596-.386-.924-.168-.723-.166-.652-.183-6.535l-.015-5.63H11.4V4.24H4.24zm15.939 6.46c-.174 1.263-.614 2.245-1.112 2.486-.172.084-.189.084-4.8.084-2.545 0-4.627-.007-4.627-.015s.08-.183.177-.39c.209-.443.415-1.024.608-1.715.076-.275.148-.532.16-.57.019-.066.283-.07 4.82-.07h4.8z' }) })));
|
|
66
|
+
});
|
|
67
|
+
exports.default = SvgAiSkills;
|
|
@@ -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 SvgEvoClaw: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default SvgEvoClaw;
|
|
@@ -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 SvgEvoClaw = 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-evo-claw';
|
|
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: 'M7.592 4.613 3.243 7.06 3.242 12v4.94l4.341 2.44c2.388 1.342 4.376 2.44 4.417 2.44s2.029-1.098 4.417-2.44l4.341-2.44V12l-.001-4.94-4.344-2.44c-2.389-1.342-4.373-2.443-4.409-2.447s-2.021 1.094-4.412 2.44m8.063 1.304 3.585 2.018v8.135l-3.6 2.025c-1.98 1.114-3.618 2.025-3.64 2.025s-1.66-.911-3.64-2.025l-3.6-2.025V7.935L8.35 5.91c1.975-1.113 3.619-2.021 3.655-2.017s1.678.915 3.65 2.024M14.58 9.003c-1.899.963-2.43 1.25-2.72 1.469-1.057.799-1.54 1.932-1.54 3.61 0 1.453.216 2.326.739 2.992.548.698 1.387.998 2.348.839.261-.043.384-.106 1.667-.863l2.136-1.259c.412-.243.75-.458.75-.478 0-.06-.727-1.273-.754-1.258l-2.043 1.203-2.016 1.19h-.233c-.666 0-.962-.475-1.075-1.729-.136-1.522.181-2.526.975-3.083.152-.107 1.296-.71 2.541-1.34 1.246-.63 2.271-1.15 2.279-1.157.018-.017-.649-1.339-.674-1.336-.011.002-1.082.542-2.38 1.2' }) })));
|
|
66
|
+
});
|
|
67
|
+
exports.default = SvgEvoClaw;
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
export { default as AdmissionControlSVG } from './AdmissionControl';
|
|
2
2
|
export { default as AgentClaudiaSVG } from './AgentClaudia';
|
|
3
3
|
export { default as AgentMemorySVG } from './AgentMemory';
|
|
4
|
+
export { default as AgentSystemSVG } from './AgentSystem';
|
|
5
|
+
export { default as AiAgentSVG } from './AiAgent';
|
|
4
6
|
export { default as AiAssistantSVG } from './AiAssistant';
|
|
5
7
|
export { default as AiConciergeSVG } from './AiConcierge';
|
|
6
8
|
export { default as AiInConstructionSVG } from './AiInConstruction';
|
|
9
|
+
export { default as AiSkillsSVG } from './AiSkills';
|
|
7
10
|
export { default as BoldTextSVG } from './BoldText';
|
|
8
11
|
export { default as BookOpenSVG } from './BookOpen';
|
|
9
12
|
export { default as CalculatoUpSVG } from './CalculatoUp';
|
|
@@ -17,6 +20,7 @@ export { default as DatacentersTierSVG } from './DatacentersTier';
|
|
|
17
20
|
export { default as DigitalEnvironmentSVG } from './DigitalEnvironment';
|
|
18
21
|
export { default as DocumentArrowSVG } from './DocumentArrow';
|
|
19
22
|
export { default as EnterpriseKnowledgeBaseSVG } from './EnterpriseKnowledgeBase';
|
|
23
|
+
export { default as EvoClawSVG } from './EvoClaw';
|
|
20
24
|
export { default as FileMedSVG } from './FileMed';
|
|
21
25
|
export { default as FileObjectsSVG } from './FileObjects';
|
|
22
26
|
export { default as FileSearchSVG } from './FileSearch';
|
|
@@ -3,28 +3,34 @@ 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.
|
|
9
|
-
exports.
|
|
10
|
-
exports.
|
|
11
|
-
exports.
|
|
12
|
-
exports.
|
|
13
|
-
exports.
|
|
14
|
-
exports.
|
|
15
|
-
exports.ZigmundSVG = exports.ZapFlashSVG = exports.YoutubeSVG = exports.YmlFileSVG = exports.WeigherSVG = exports.WebinarSVG = exports.WebCourseSVG = exports.WebApplicationCloudSVG = exports.WanSVG = exports.WalletSVG = exports.VrfGroupSVG = exports.VrfSVG = exports.VpcPeeringSVG = exports.VniGroupSVG = exports.VniSVG = exports.VmSVG = exports.VlanGroupSVG = exports.VlanSVG = exports.VkSVG = exports.VirtualSwitchforconsoleSVG = exports.VirtualSwitchSVG = exports.VirtualRouterSVG = exports.ViewTileSVG = exports.ViewTableSVG = exports.ViewCardSVG = exports.VerticalMenuRightCloseSVG = exports.VerticalMenuOpenSVG = exports.VerticalMenuCloseSVG = exports.VersioningSVG = exports.VelocitySVG = exports.UsersSVG = exports.UserSearchSVG = exports.UserLaptopSVG = void 0;
|
|
6
|
+
exports.TranslateSVG = exports.TrainingCertificateSVG = exports.ToolingSVG = exports.TechSupportSVG = exports.SpeedCheckSVG = exports.SmartSearchBasedOnDataSVG = exports.ShieldDatacenterSVG = exports.ShieldDataShieldSVG = exports.ServicesSVG = exports.SampleSVG = exports.ReleaseNotesSVG = exports.PromoCodeSVG = exports.ProductCatalogSVG = exports.PanelSettingsSVG = exports.NumberedListSVG = exports.NumberOneIaasPaasSVG = exports.NumberOneAiSVG = exports.ModelThinkingSVG = exports.ManyServicesSVG = exports.LlmSVG = exports.ImportSVG = exports.HistorySVG = exports.FlagSVG = exports.FileStampSVG = exports.FileSearchSVG = exports.FileObjectsSVG = exports.FileMedSVG = exports.EvoClawSVG = exports.EnterpriseKnowledgeBaseSVG = exports.DocumentArrowSVG = exports.DigitalEnvironmentSVG = exports.DatacentersTierSVG = exports.CreatingCorporateAiAgentsSVG = exports.CorporateChatWithAiSVG = exports.ConnectorSVG = exports.ClustersSVG = exports.CalendarStarSVG = exports.CalendarGearSVG = exports.CalculatoUpSVG = exports.BookOpenSVG = exports.BoldTextSVG = exports.AiSkillsSVG = exports.AiInConstructionSVG = exports.AiConciergeSVG = exports.AiAssistantSVG = exports.AiAgentSVG = exports.AgentSystemSVG = exports.AgentMemorySVG = exports.AgentClaudiaSVG = exports.AdmissionControlSVG = void 0;
|
|
7
|
+
exports.CampSVG = exports.BurgerSVG = exports.BulbSVG = exports.BuildingSVG = exports.BugSVG = exports.BubblesQuestionSVG = exports.BubbleLikeSVG = exports.BrowserListSVG = exports.BrowserSVG = exports.BrouserTestSVG = exports.BrouserGeerSVG = exports.BrouserCodeSVG = exports.BridgeSVG = exports.BranchSVG = exports.BoxSVG = exports.BookmarksSVG = exports.BookmarkSVG = exports.BookGearSVG = exports.BookSVG = exports.BlogSVG = exports.BellSVG = exports.BarChartSVG = exports.BankCardSVG = exports.BankSVG = exports.BallSVG = exports.BackupCheckSVG = exports.BackplaneSVG = exports.AwardSVG = exports.AttachmentSVG = exports.AsnSVG = exports.ArrowsRoundSVG = exports.ArrowsMixSVG = exports.ArchiveSVG = exports.ApplicationClusterSVG = exports.ApiKeysSVG = exports.AlertSquareSVG = exports.AlertBackupSVG = exports.AlarmSVG = exports.AiSVG = exports.AggregatedStorageSVG = exports.AdvancedPlatformSVG = exports.AdministrationSVG = exports.AdminSVG = exports.AddressSpaceSVG = exports.AccessibilitySVG = exports.AcceptSVG = exports.AcceleratorSVG = exports.WorkSafetyGuideSVG = exports.UserFolderSVG = exports.TwoSupercomputersSVG = void 0;
|
|
8
|
+
exports.CutSVG = exports.CursorSVG = exports.CupSVG = exports.CrossArrowsSVG = exports.CreateEnviromentSVG = exports.Cpu1SVG = exports.CpuSVG = exports.CostControlSVG = exports.CoolinfSVG = exports.ControlPanelSVG = exports.ConnectionSVG = exports.ConfigurationSVG = exports.ComponentSVG = exports.CompetenceMapSVG = exports.ComitetSVG = exports.ComandSVG = exports.CollapseSVG = exports.CoinsSVG = exports.CoffeeSVG = exports.CodeSVG = exports.CoconutSVG = exports.ClusterSVG = exports.CloudsSVG = exports.CloudUploadSVG = exports.CloudStatusSVG = exports.CloudRoundArrowsSVG = exports.CloudRepositorySVG = exports.CloudPuzzleSVG = exports.CloudObjectSVG = exports.CloudMoveSVG = exports.CloudHostSVG = exports.CloudFolderSVG = exports.CloudFlashSVG = exports.CloudDownloadSVG = exports.CloudCursorSVG = exports.CloudCheckmarkSVG = exports.CloudChartSVG = exports.CloudArrowSVG = exports.CloudSVG = exports.CloseSidebarSVG = exports.CloseSVG = exports.CleanSVG = exports.CheckListSVG = exports.ChatSVG = exports.ChartPlusSVG = exports.CertificateStarSVG = exports.CertificatePlainSVG = exports.CaseStorageSVG = exports.CaseSVG = exports.CarSVG = void 0;
|
|
9
|
+
exports.ExtchassisSVG = exports.ExportSVG = exports.ExpandWindowSVG = exports.ExpandSVG = exports.Exit1SVG = exports.ExitSVG = exports.EventSourceSVG = exports.EraserSVG = exports.EquipmentSVG = exports.EnvelopeOpenSVG = exports.EnvelopeSVG = exports.EnterpriseSystemCloudSVG = exports.EnterSVG = exports.ElectricalCircuitSVG = exports.EducationSVG = exports.EditSVG = exports.DwdmSVG = exports.DropdownUpSVG = exports.DropdownRightSVG = exports.DropdownLeftSVG = exports.DropdownDownSVG = exports.DropSVG = exports.DragNDropSVG = exports.DotSmallSVG = exports.DotBigLineSVG = exports.DotBigSVG = exports.DonationSVG = exports.DollarSVG = exports.DogfoodingSVG = exports.DocumentLockSVG = exports.DocumentCheckSVG = exports.DockerSVG = exports.DislikeOutlineSVG = exports.DislikeFilledSVG = exports.DiscountSVG = exports.DiamondSVG = exports.DialogueHeartSVG = exports.DialogSVG = exports.DetalisationSVG = exports.DeploymentKubernetesSVG = exports.DeleteSVG = exports.DecorCheckedSVG = exports.DatalabsSVG = exports.DatacenterHostSVG = exports.DatabaseSearchSVG = exports.DatabaseClusterSVG = exports.DatabaseBackupSVG = exports.DatabaseSVG = exports.Data1SVG = exports.DataSVG = void 0;
|
|
10
|
+
exports.InstanceSVG = exports.InfraElementSVG = exports.InfoOutlineSVG = exports.IndustrialBuildingSVG = exports.IaaSCloudSVG = exports.HypervisorSVG = exports.HybridCloudSVG = exports.HttpSVG = exports.HrSVG = exports.HorizontalMenuOpenSVG = exports.HorizontalMenuCloseSVG = exports.HomeFilledSVG = exports.HeadphonesMicrophoneSVG = exports.HeadphonesSVG = exports.HardDriveSVG = exports.HardDiskSVG = exports.HandshakeSVG = exports.HandLikeSVG = exports.HabrSVG = exports.GrpcSVG = exports.GpuSVG = exports.GlobeShieldSVG = exports.GlobeSVG = exports.GitVerseSVG = exports.GenericSVG = exports.GenerationCodeSVG = exports.GearAiSVG = exports.GatewaySVG = exports.FullScreenSVG = exports.FolderUploadOutlineSVG = exports.FolderUploadFilledSVG = exports.FolderAddOutlineSVG = exports.FolderAddFilledSVG = exports.FlashDriveSVG = exports.FivePlusSVG = exports.FirewallBrickSVG = exports.FireSVG = exports.FingerprintSVG = exports.FilterFunnelSVG = exports.FileUploadOutlineSVG = exports.FileUploadFilledSVG = exports.FileAddOutlineSVG = exports.FileAddFilledSVG = exports.FeedbackSVG = exports.FederationSVG = exports.FeaturedFilledSVG = exports.FeaturedSVG = exports.FaultTolerantCloudSVG = exports.FailedCrossSVG = exports.ExternalIpSVG = void 0;
|
|
11
|
+
exports.NetworkConnectionSVG = exports.NetworkCardSVG = exports.NetralSVG = exports.NasSVG = exports.NamespaceKubernetesSVG = exports.MultiCloudSVG = exports.MountainsSVG = exports.MonitoringSVG = exports.MonitorTest1SVG = exports.MonitorTestSVG = exports.MonitorCloudSVG = exports.MonitorSVG = exports.MobilePhoneSVG = exports.MinimizeWindowSVG = exports.MicrophoneRoundSVG = exports.MicrophoneSVG = exports.MessagePlaySVG = exports.MertricSVG = exports.MenuCloseFullSVG = exports.MedicineSVG = exports.MedicalSVG = exports.MediaSVG = exports.MarketSVG = exports.MapPlaneSVG = exports.ManagementPanelSVG = exports.MainMenuSVG = exports.LogsSVG = exports.LogFileSVG = exports.LockSVG = exports.LocationSVG = exports.LocalUserSVG = exports.LocalNetworkSVG = exports.ListSVG = exports.LinkDisconnectSVG = exports.LinkSVG = exports.LineManagerSVG = exports.LikeOutlineSVG = exports.LikeFilledSVG = exports.LifebuoySVG = exports.LatticeSVG = exports.LaptopPulseSVG = exports.LaptopSVG = exports.KiteSVG = exports.KeySVG = exports.IpSubnetSVG = exports.IpBlockSVG = exports.InventorySVG = exports.IntruderSVG = exports.InternetSVG = exports.InterfaceSVG = void 0;
|
|
12
|
+
exports.QrCodeSVG = exports.PuzzlesSVG = exports.PuzzleSVG = exports.PurchasesSVG = exports.PublicCloudSVG = exports.PromtSVG = exports.PromptSVG = exports.ProjectSVG = exports.ProgressWheelSVG = exports.ProductManagerSVG = exports.PrioritySharedMediumSVG = exports.PrioritySharedLowSVG = exports.PrioritySharedClusterSVG = exports.PriorityMediumSVG = exports.PriorityLowSVG = exports.PriorityHighSVG = exports.PresentSVG = exports.PowerOffSVG = exports.PowerSVG = exports.PodLogicalSVG = exports.PodKubernetesSVG = exports.PlusSquareSVG = exports.PlusRoundSVG = exports.PlayPlayerSVG = exports.PlaneSVG = exports.PlanSVG = exports.PhysicalStorageSVG = exports.PhysicalLocationSVG = exports.PhotoSVG = exports.PercentSVG = exports.PausePlayerSVG = exports.PasswordLockSVG = exports.PasskeyFingerprintSVG = exports.PalmSVG = exports.PaaSCloudSVG = exports.OverviewSVG = exports.OstontrolSVG = exports.OrganizationSVG = exports.OrchestrationSVG = exports.OpticalSVG = exports.OperationSystemSVG = exports.OpenSidebarSVG = exports.OnPremiseSVG = exports.OfficeTableSVG = exports.ObjectsSVG = exports.ObjectStorageSVG = exports.NumberedResourcesSVG = exports.NormalScreenSVG = exports.NoPhoneSVG = exports.NetworkInterfacesSVG = void 0;
|
|
13
|
+
exports.ShieldArrowsSVG = exports.ShieldSVG = exports.ShareSVG = exports.ServerUploadSVG = exports.ServerGlacierDeepSVG = exports.ServerGlacierSVG = exports.ServerDownloadSVG = exports.ServerSVG = exports.ServeUploadSVG = exports.SendSVG = exports.SecuritySVG = exports.SdCardSVG = exports.SchoolBuildingSVG = exports.SberprimeSVG = exports.SberSVG = exports.SaveSVG = exports.SatelliteSVG = exports.Sad2SVG = exports.SadSVG = exports.SaaSCloudSVG = exports.RubleSVG = exports.RowExtendedSVG = exports.RowExpandedSVG = exports.RouterSVG = exports.RouteTargetSVG = exports.RouteDistinguisherSVG = exports.RoundUserStarSVG = exports.RoundUserPlusSVG = exports.RoundUserGearSVG = exports.RoundUserSVG = exports.RoundStarSVG = exports.RollupSVG = exports.RocketSVG = exports.RobotSVG = exports.RewindAheadSVG = exports.RewindSVG = exports.RestoreSVG = exports.ResourceCatalogSVG = exports.ReserchTestSVG = exports.RepositorySVG = exports.ReplacementSVG = exports.RepeatSVG = exports.RegionSVG = exports.RecordSVG = exports.RamSVG = exports.RackServerSVG = exports.RackSVG = exports.QuotaSVG = exports.QuestionRoundSVG = exports.QuestionFilledSVG = void 0;
|
|
14
|
+
exports.UserSVG = exports.UnwrapSVG = exports.UnlockSVG = exports.UmbrellaSVG = exports.TokenSVG = exports.TextMedia1SVG = exports.TextMediaSVG = exports.TelephoneSVG = exports.TelegramSVG = exports.TargetSVG = exports.TapeSVG = exports.TagSvcSVG = exports.TagSkuSVG = exports.TagDashSVG = exports.TagAppSVG = exports.TagSVG = exports.TableSettingsSVG = exports.TableSVG = exports.SwitcherSettingSVG = exports.SwitchSVG = exports.SurfSVG = exports.SuperRackSVG = exports.SunSVG = exports.StructuralSVG = exports.StopwatchSVG = exports.Step3SVG = exports.Step2SVG = exports.Step1SVG = exports.StarsMagicSVG = exports.StarsSVG = exports.StarHalfSVG = exports.SsdSVG = exports.SquarePointsSVG = exports.SquareDiagramSVG = exports.SpineSwitchSVG = exports.SpeechBubbleSVG = exports.SoundOnSVG = exports.SoundOffSVG = exports.SoundSVG = exports.SortUpSVG = exports.SortDownSVG = exports.SortDefaultSVG = exports.SortSVG = exports.SobrSVG = exports.SnowSVG = exports.SnapshotSVG = exports.Smile2SVG = exports.SmileSVG = exports.SmartwatchSVG = exports.ShopSVG = void 0;
|
|
15
|
+
exports.ZigmundSVG = exports.ZapFlashSVG = exports.YoutubeSVG = exports.YmlFileSVG = exports.WeigherSVG = exports.WebinarSVG = exports.WebCourseSVG = exports.WebApplicationCloudSVG = exports.WanSVG = exports.WalletSVG = exports.VrfGroupSVG = exports.VrfSVG = exports.VpcPeeringSVG = exports.VniGroupSVG = exports.VniSVG = exports.VmSVG = exports.VlanGroupSVG = exports.VlanSVG = exports.VkSVG = exports.VirtualSwitchforconsoleSVG = exports.VirtualSwitchSVG = exports.VirtualRouterSVG = exports.ViewTileSVG = exports.ViewTableSVG = exports.ViewCardSVG = exports.VerticalMenuRightCloseSVG = exports.VerticalMenuOpenSVG = exports.VerticalMenuCloseSVG = exports.VersioningSVG = exports.VelocitySVG = exports.UsersSVG = exports.UserSearchSVG = exports.UserLaptopSVG = exports.UserInvitationSVG = exports.UserHeartSVG = exports.UserFederationSVG = exports.UserAddSVG = void 0;
|
|
16
16
|
var AdmissionControl_1 = require("./AdmissionControl");
|
|
17
17
|
Object.defineProperty(exports, "AdmissionControlSVG", { enumerable: true, get: function () { return __importDefault(AdmissionControl_1).default; } });
|
|
18
18
|
var AgentClaudia_1 = require("./AgentClaudia");
|
|
19
19
|
Object.defineProperty(exports, "AgentClaudiaSVG", { enumerable: true, get: function () { return __importDefault(AgentClaudia_1).default; } });
|
|
20
20
|
var AgentMemory_1 = require("./AgentMemory");
|
|
21
21
|
Object.defineProperty(exports, "AgentMemorySVG", { enumerable: true, get: function () { return __importDefault(AgentMemory_1).default; } });
|
|
22
|
+
var AgentSystem_1 = require("./AgentSystem");
|
|
23
|
+
Object.defineProperty(exports, "AgentSystemSVG", { enumerable: true, get: function () { return __importDefault(AgentSystem_1).default; } });
|
|
24
|
+
var AiAgent_1 = require("./AiAgent");
|
|
25
|
+
Object.defineProperty(exports, "AiAgentSVG", { enumerable: true, get: function () { return __importDefault(AiAgent_1).default; } });
|
|
22
26
|
var AiAssistant_1 = require("./AiAssistant");
|
|
23
27
|
Object.defineProperty(exports, "AiAssistantSVG", { enumerable: true, get: function () { return __importDefault(AiAssistant_1).default; } });
|
|
24
28
|
var AiConcierge_1 = require("./AiConcierge");
|
|
25
29
|
Object.defineProperty(exports, "AiConciergeSVG", { enumerable: true, get: function () { return __importDefault(AiConcierge_1).default; } });
|
|
26
30
|
var AiInConstruction_1 = require("./AiInConstruction");
|
|
27
31
|
Object.defineProperty(exports, "AiInConstructionSVG", { enumerable: true, get: function () { return __importDefault(AiInConstruction_1).default; } });
|
|
32
|
+
var AiSkills_1 = require("./AiSkills");
|
|
33
|
+
Object.defineProperty(exports, "AiSkillsSVG", { enumerable: true, get: function () { return __importDefault(AiSkills_1).default; } });
|
|
28
34
|
var BoldText_1 = require("./BoldText");
|
|
29
35
|
Object.defineProperty(exports, "BoldTextSVG", { enumerable: true, get: function () { return __importDefault(BoldText_1).default; } });
|
|
30
36
|
var BookOpen_1 = require("./BookOpen");
|
|
@@ -51,6 +57,8 @@ var DocumentArrow_1 = require("./DocumentArrow");
|
|
|
51
57
|
Object.defineProperty(exports, "DocumentArrowSVG", { enumerable: true, get: function () { return __importDefault(DocumentArrow_1).default; } });
|
|
52
58
|
var EnterpriseKnowledgeBase_1 = require("./EnterpriseKnowledgeBase");
|
|
53
59
|
Object.defineProperty(exports, "EnterpriseKnowledgeBaseSVG", { enumerable: true, get: function () { return __importDefault(EnterpriseKnowledgeBase_1).default; } });
|
|
60
|
+
var EvoClaw_1 = require("./EvoClaw");
|
|
61
|
+
Object.defineProperty(exports, "EvoClawSVG", { enumerable: true, get: function () { return __importDefault(EvoClaw_1).default; } });
|
|
54
62
|
var FileMed_1 = require("./FileMed");
|
|
55
63
|
Object.defineProperty(exports, "FileMedSVG", { enumerable: true, get: function () { return __importDefault(FileMed_1).default; } });
|
|
56
64
|
var FileObjects_1 = require("./FileObjects");
|
|
@@ -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 SvgEvolutionCni: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default SvgEvolutionCni;
|
|
@@ -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 SvgEvolutionCni = 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-evolution-cni';
|
|
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: 'M7.592 4.613 3.243 7.06 3.242 12v4.94l4.341 2.44c2.388 1.342 4.376 2.44 4.417 2.44s2.029-1.098 4.417-2.44l4.341-2.44V12l-.001-4.94-4.344-2.44c-2.389-1.342-4.373-2.443-4.409-2.447s-2.021 1.094-4.412 2.44m4.715-.578.273.155.011 1.382.01 1.382-2.72 2.228L7.16 11.41v2.188l-.636.011-.636.011 1.01 1.039 1.009 1.038.696-.718 1.014-1.049.317-.33h-.623c-.531 0-.626-.009-.647-.063-.013-.035-.024-.364-.024-.732v-.668l2.589-2.118a422 422 0 0 0 2.74-2.254l.151-.134V6.355c0-.701.01-1.275.023-1.275s1.164.642 2.56 1.428l2.537 1.427v8.135l-3.6 2.025c-1.98 1.114-3.618 2.025-3.641 2.025-.022 0-.202-.091-.4-.203l-.359-.202.001-1.168V17.38l2.74-2.24 2.739-2.239v-2.179l.619-.011.618-.011-1.004-1.032c-.551-.567-1.015-1.026-1.031-1.02-.015.007-.455.471-.979 1.032l-.952 1.02.605.011.604.011-.003.749-.002.749-2.717 2.218-2.717 2.217-.01 1.108-.011 1.108-2.49-1.4-2.49-1.401V7.935l3.59-2.024c1.975-1.113 3.611-2.026 3.637-2.027s.169.066.32.151' }) })));
|
|
66
|
+
});
|
|
67
|
+
exports.default = SvgEvolutionCni;
|
|
@@ -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 SvgSyntheticMonitoring: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default SvgSyntheticMonitoring;
|
|
@@ -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 SvgSyntheticMonitoring = 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-synthetic-monitoring';
|
|
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: 'M4.47 4.47 3.24 5.7V9h1.52V6.299l.77-.769.771-.77H9V3.24H5.7zM15 4v.76h2.699l.771.77.77.769V9h1.52V5.7l-1.23-1.23-1.23-1.23H15zm-.4 8v4.44h1.48V7.56H14.6zm-3.453-2.013c-.015.014-.027 1.472-.027 3.24v3.213h1.52V9.96h-.733c-.404 0-.746.012-.76.027M7.92 14.82v1.62H9.4V13.2H7.92zm-4.68 1.83v1.65l1.23 1.23 1.23 1.23H9v-1.52H6.299l-.769-.77-.77-.771V15H3.24zm16-.3v1.349l-.77.771-.769.77H15v1.52h3.3l1.23-1.23 1.23-1.23V15h-1.52z' }) })));
|
|
66
|
+
});
|
|
67
|
+
exports.default = SvgSyntheticMonitoring;
|
|
@@ -114,6 +114,7 @@ export { default as EvolutionAiAgentsSVG } from './EvolutionAiAgents';
|
|
|
114
114
|
export { default as EvolutionBareMetalEnterpriseSVG } from './EvolutionBareMetalEnterprise';
|
|
115
115
|
export { default as EvolutionBiSVG } from './EvolutionBi';
|
|
116
116
|
export { default as EvolutionCloudMonitoringSVG } from './EvolutionCloudMonitoring';
|
|
117
|
+
export { default as EvolutionCniSVG } from './EvolutionCni';
|
|
117
118
|
export { default as EvolutionComputeSVG } from './EvolutionCompute';
|
|
118
119
|
export { default as EvolutionDataPlatfromSVG } from './EvolutionDataPlatfrom';
|
|
119
120
|
export { default as EvolutionDisasterRecoverySVG } from './EvolutionDisasterRecovery';
|
|
@@ -294,6 +295,7 @@ export { default as SparkSVG } from './Spark';
|
|
|
294
295
|
export { default as SshSVG } from './Ssh';
|
|
295
296
|
export { default as SubnetsSVG } from './Subnets';
|
|
296
297
|
export { default as SupersetSVG } from './Superset';
|
|
298
|
+
export { default as SyntheticMonitoringSVG } from './SyntheticMonitoring';
|
|
297
299
|
export { default as SystemObjectsSVG } from './SystemObjects';
|
|
298
300
|
export { default as TagsSVG } from './Tags';
|
|
299
301
|
export { default as TaskHistorySVG } from './TaskHistory';
|
|
@@ -5,11 +5,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
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.BasisDynamixSVG = 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.AdvancedConfigSVG = exports.AdvancedSVG = exports.ActveDirectorySVG = exports.AccidentsSVG = exports.Svg1CSVG = void 0;
|
|
7
7
|
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 = exports.CloudDnsSVG = exports.CloudContainerInstanceSVG = void 0;
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.
|
|
11
|
-
exports.
|
|
12
|
-
exports.ZabbixSVG = exports.WebhookSVG = exports.WebApplicationFirewallSVG = exports.VpnSVG = exports.VpcEndpointSVG = exports.VpcSVG = exports.VmwareServicesSVG = 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.UserGateVirtualNgfwSVG = exports.UserGateProfServiceSVG = exports.TrinoSVG = exports.TransactionsSVG = exports.TermideskSVG = exports.TechnologyConsultingSVG = void 0;
|
|
8
|
+
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.ExperimentTrackingSVG = 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.EvolutionCniSVG = exports.EvolutionCloudMonitoringSVG = exports.EvolutionBiSVG = exports.EvolutionBareMetalEnterpriseSVG = exports.EvolutionAiAgentsSVG = exports.EvolutionSVG = exports.EvoDnsSVG = exports.EnterpriseRouterSVG = exports.EnterpriseProjectManagementServiceSVG = exports.ElasticVolumeServiceSVG = exports.ElasticSearchSVG = exports.ElasticLoadBalanceSVG = exports.ElasticIpSVG = exports.ElasticCloudServerWithGpuSVG = exports.ElasticCloudServerSVG = exports.DocumentDatabaseServiceSVG = exports.DockerRegistrySVG = void 0;
|
|
9
|
+
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 = exports.ImageManagementServiceSVG = exports.IdentityAndAccessManagementSVG = exports.HuggingFaceSVG = void 0;
|
|
10
|
+
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 = exports.LinuxSVG = exports.LicensesOfBasaltSpoProductsSVG = exports.KubernetesUserSVG = void 0;
|
|
11
|
+
exports.TagsSVG = exports.SystemObjectsSVG = exports.SyntheticMonitoringSVG = exports.SupersetSVG = exports.SubnetsSVG = exports.SshSVG = exports.SparkSVG = exports.SoftwareRepositoryForContainersSVG = exports.SnatSVG = exports.SimpleMessageNotificationSVG = exports.SharedStorageNfsSVG = 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 = exports.NotificationSVG = exports.NodeJsSVG = exports.NatGatewaySVG = void 0;
|
|
12
|
+
exports.ZabbixSVG = exports.WebhookSVG = exports.WebApplicationFirewallSVG = exports.VpnSVG = exports.VpcEndpointSVG = exports.VpcSVG = exports.VmwareServicesSVG = 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.UserGateVirtualNgfwSVG = exports.UserGateProfServiceSVG = exports.TrinoSVG = exports.TransactionsSVG = exports.TermideskSVG = exports.TechnologyConsultingSVG = exports.TasksAndEnvironmentsSVG = exports.TaskHistorySVG = 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");
|
|
@@ -242,6 +242,8 @@ var EvolutionBi_1 = require("./EvolutionBi");
|
|
|
242
242
|
Object.defineProperty(exports, "EvolutionBiSVG", { enumerable: true, get: function () { return __importDefault(EvolutionBi_1).default; } });
|
|
243
243
|
var EvolutionCloudMonitoring_1 = require("./EvolutionCloudMonitoring");
|
|
244
244
|
Object.defineProperty(exports, "EvolutionCloudMonitoringSVG", { enumerable: true, get: function () { return __importDefault(EvolutionCloudMonitoring_1).default; } });
|
|
245
|
+
var EvolutionCni_1 = require("./EvolutionCni");
|
|
246
|
+
Object.defineProperty(exports, "EvolutionCniSVG", { enumerable: true, get: function () { return __importDefault(EvolutionCni_1).default; } });
|
|
245
247
|
var EvolutionCompute_1 = require("./EvolutionCompute");
|
|
246
248
|
Object.defineProperty(exports, "EvolutionComputeSVG", { enumerable: true, get: function () { return __importDefault(EvolutionCompute_1).default; } });
|
|
247
249
|
var EvolutionDataPlatfrom_1 = require("./EvolutionDataPlatfrom");
|
|
@@ -602,6 +604,8 @@ var Subnets_1 = require("./Subnets");
|
|
|
602
604
|
Object.defineProperty(exports, "SubnetsSVG", { enumerable: true, get: function () { return __importDefault(Subnets_1).default; } });
|
|
603
605
|
var Superset_1 = require("./Superset");
|
|
604
606
|
Object.defineProperty(exports, "SupersetSVG", { enumerable: true, get: function () { return __importDefault(Superset_1).default; } });
|
|
607
|
+
var SyntheticMonitoring_1 = require("./SyntheticMonitoring");
|
|
608
|
+
Object.defineProperty(exports, "SyntheticMonitoringSVG", { enumerable: true, get: function () { return __importDefault(SyntheticMonitoring_1).default; } });
|
|
605
609
|
var SystemObjects_1 = require("./SystemObjects");
|
|
606
610
|
Object.defineProperty(exports, "SystemObjectsSVG", { enumerable: true, get: function () { return __importDefault(SystemObjects_1).default; } });
|
|
607
611
|
var Tags_1 = require("./Tags");
|
|
@@ -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 SvgAgentSystem: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default SvgAgentSystem;
|
|
@@ -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 SvgAgentSystem = 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-agent-system';
|
|
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: 'm4.21 4.21-.97.971v5.638l.589.591.59.59-.59.59-.589.591v5.64l.97.969.971.97H9.16v-1.52H5.821l-.53-.529-.531-.53v-4.362l.53-.529.53-.529.98-.01.98-.011v-1.48l-.98-.011-.98-.01-.53-.529-.53-.529V5.819l.531-.53.53-.529h4.358l.53.529.531.53V8.32h1.52V5.821l.529-.53.53-.531h4.362l.529.53.529.53.011 2.34.01 2.34h1.48l.01-2.659.011-2.66-.97-.97-.97-.971h-5.64l-.591.589-.59.59-.59-.59-.591-.589h-5.64zm10.324 7.137-.956 2.231-2.231.956c-1.226.526-2.222.964-2.213.973s1.013.444 2.23.966l2.214.949.956 2.231c.526 1.226.964 2.222.973 2.213s.444-1.013.966-2.23l.949-2.214 2.214-.949c1.217-.522 2.221-.957 2.23-.966s-.987-.447-2.213-.973l-2.231-.956-.949-2.214a174 174 0 0 0-.966-2.23c-.009-.009-.447.987-.973 2.213m1.365 2.493c.192.451.37.841.395.866s.415.203.866.395c.451.191.843.361.872.376.03.017-.306.181-.82.4-.48.204-.893.391-.918.417s-.203.415-.395.866c-.191.451-.361.843-.376.872-.017.03-.181-.306-.4-.82-.204-.48-.391-.893-.417-.918s-.415-.203-.866-.395a48 48 0 0 1-.872-.376c-.03-.017.306-.181.82-.4.48-.204.893-.391.918-.417s.213-.438.417-.918c.219-.514.383-.85.4-.82.015.029.185.421.376.872' }) })));
|
|
31
|
+
});
|
|
32
|
+
export default SvgAgentSystem;
|
|
@@ -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 SvgAiAgent: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default SvgAiAgent;
|
|
@@ -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 SvgAiAgent = 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-ai-agent';
|
|
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: 'M7.592 4.613 3.243 7.06 3.242 12v4.94l4.341 2.44c2.388 1.342 4.376 2.44 4.417 2.44s2.029-1.098 4.417-2.44l4.341-2.44V12l-.001-4.94-4.344-2.44c-2.389-1.342-4.373-2.443-4.409-2.447s-2.021 1.094-4.412 2.44m8.063 1.304 3.585 2.018v8.135l-3.6 2.025c-1.98 1.114-3.618 2.025-3.64 2.025s-1.66-.911-3.64-2.025l-3.6-2.025V7.935L8.35 5.91c1.975-1.113 3.619-2.021 3.655-2.017s1.678.915 3.65 2.024m-4.706 1.614L9.918 9.94l-2.149.917c-1.182.505-2.266.97-2.409 1.033l-.26.116 2.379 1.019c1.308.561 2.398 1.036 2.422 1.056s.502 1.108 1.062 2.417c.559 1.309 1.026 2.38 1.037 2.38s.478-1.071 1.037-2.38c.56-1.309 1.038-2.397 1.062-2.417s1.114-.495 2.421-1.055l2.377-1.019-.138-.065c-.077-.035-1.162-.502-2.413-1.038l-2.273-.973-1.027-2.405C12.482 6.203 12.011 5.121 12 5.121c-.011.001-.484 1.085-1.051 2.41m1.524 2.486.453 1.057 1.057.453c.581.248 1.057.463 1.057.476s-.476.227-1.058.476l-1.059.453-.451 1.054c-.248.58-.46 1.054-.472 1.054s-.224-.474-.472-1.054l-.451-1.054-1.059-.453c-.582-.249-1.058-.463-1.058-.476s.476-.228 1.057-.476l1.057-.453.453-1.057c.248-.581.461-1.057.473-1.057s.225.476.473 1.057' }) })));
|
|
31
|
+
});
|
|
32
|
+
export default SvgAiAgent;
|
|
@@ -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 SvgAiSkills: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default SvgAiSkills;
|
|
@@ -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 SvgAiSkills = 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-ai-skills';
|
|
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: 'M14.998 4.27c-.269.632-.51 1.17-.534 1.194s-.562.265-1.194.534c-.632.27-1.15.496-1.15.502s.518.232 1.15.502c.632.269 1.17.51 1.194.534s.265.562.534 1.194c.27.633.496 1.15.502 1.15s.232-.517.502-1.15c.269-.632.51-1.17.534-1.194s.562-.265 1.194-.534c.633-.27 1.15-.496 1.15-.502s-.517-.232-1.15-.502c-.632-.269-1.17-.51-1.194-.534s-.265-.562-.534-1.194c-.27-.632-.496-1.15-.502-1.15s-.232.518-.502 1.15M4.24 10.21c0 3.815.016 6.172.043 6.53.155 2.052.725 3.28 1.738 3.743.602.274.066.253 6.787.267 6.686.013 6.382.023 6.904-.233q.81-.4 1.327-1.457c.452-.928.659-1.9.707-3.33l.027-.77H18.56v-4.6h-1.52v4.6H9.457l-.253.93c-.49 1.802-.782 2.544-1.164 2.962-.294.322-.483.402-.893.38-.407-.023-.615-.121-.806-.383-.142-.194-.31-.596-.386-.924-.168-.723-.166-.652-.183-6.535l-.015-5.63H11.4V4.24H4.24zm15.939 6.46c-.174 1.263-.614 2.245-1.112 2.486-.172.084-.189.084-4.8.084-2.545 0-4.627-.007-4.627-.015s.08-.183.177-.39c.209-.443.415-1.024.608-1.715.076-.275.148-.532.16-.57.019-.066.283-.07 4.82-.07h4.8z' }) })));
|
|
31
|
+
});
|
|
32
|
+
export default SvgAiSkills;
|
|
@@ -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 SvgEvoClaw: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default SvgEvoClaw;
|
|
@@ -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 SvgEvoClaw = 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-evo-claw';
|
|
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: 'M7.592 4.613 3.243 7.06 3.242 12v4.94l4.341 2.44c2.388 1.342 4.376 2.44 4.417 2.44s2.029-1.098 4.417-2.44l4.341-2.44V12l-.001-4.94-4.344-2.44c-2.389-1.342-4.373-2.443-4.409-2.447s-2.021 1.094-4.412 2.44m8.063 1.304 3.585 2.018v8.135l-3.6 2.025c-1.98 1.114-3.618 2.025-3.64 2.025s-1.66-.911-3.64-2.025l-3.6-2.025V7.935L8.35 5.91c1.975-1.113 3.619-2.021 3.655-2.017s1.678.915 3.65 2.024M14.58 9.003c-1.899.963-2.43 1.25-2.72 1.469-1.057.799-1.54 1.932-1.54 3.61 0 1.453.216 2.326.739 2.992.548.698 1.387.998 2.348.839.261-.043.384-.106 1.667-.863l2.136-1.259c.412-.243.75-.458.75-.478 0-.06-.727-1.273-.754-1.258l-2.043 1.203-2.016 1.19h-.233c-.666 0-.962-.475-1.075-1.729-.136-1.522.181-2.526.975-3.083.152-.107 1.296-.71 2.541-1.34 1.246-.63 2.271-1.15 2.279-1.157.018-.017-.649-1.339-.674-1.336-.011.002-1.082.542-2.38 1.2' }) })));
|
|
31
|
+
});
|
|
32
|
+
export default SvgEvoClaw;
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
export { default as AdmissionControlSVG } from './AdmissionControl';
|
|
2
2
|
export { default as AgentClaudiaSVG } from './AgentClaudia';
|
|
3
3
|
export { default as AgentMemorySVG } from './AgentMemory';
|
|
4
|
+
export { default as AgentSystemSVG } from './AgentSystem';
|
|
5
|
+
export { default as AiAgentSVG } from './AiAgent';
|
|
4
6
|
export { default as AiAssistantSVG } from './AiAssistant';
|
|
5
7
|
export { default as AiConciergeSVG } from './AiConcierge';
|
|
6
8
|
export { default as AiInConstructionSVG } from './AiInConstruction';
|
|
9
|
+
export { default as AiSkillsSVG } from './AiSkills';
|
|
7
10
|
export { default as BoldTextSVG } from './BoldText';
|
|
8
11
|
export { default as BookOpenSVG } from './BookOpen';
|
|
9
12
|
export { default as CalculatoUpSVG } from './CalculatoUp';
|
|
@@ -17,6 +20,7 @@ export { default as DatacentersTierSVG } from './DatacentersTier';
|
|
|
17
20
|
export { default as DigitalEnvironmentSVG } from './DigitalEnvironment';
|
|
18
21
|
export { default as DocumentArrowSVG } from './DocumentArrow';
|
|
19
22
|
export { default as EnterpriseKnowledgeBaseSVG } from './EnterpriseKnowledgeBase';
|
|
23
|
+
export { default as EvoClawSVG } from './EvoClaw';
|
|
20
24
|
export { default as FileMedSVG } from './FileMed';
|
|
21
25
|
export { default as FileObjectsSVG } from './FileObjects';
|
|
22
26
|
export { default as FileSearchSVG } from './FileSearch';
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
export { default as AdmissionControlSVG } from './AdmissionControl';
|
|
2
2
|
export { default as AgentClaudiaSVG } from './AgentClaudia';
|
|
3
3
|
export { default as AgentMemorySVG } from './AgentMemory';
|
|
4
|
+
export { default as AgentSystemSVG } from './AgentSystem';
|
|
5
|
+
export { default as AiAgentSVG } from './AiAgent';
|
|
4
6
|
export { default as AiAssistantSVG } from './AiAssistant';
|
|
5
7
|
export { default as AiConciergeSVG } from './AiConcierge';
|
|
6
8
|
export { default as AiInConstructionSVG } from './AiInConstruction';
|
|
9
|
+
export { default as AiSkillsSVG } from './AiSkills';
|
|
7
10
|
export { default as BoldTextSVG } from './BoldText';
|
|
8
11
|
export { default as BookOpenSVG } from './BookOpen';
|
|
9
12
|
export { default as CalculatoUpSVG } from './CalculatoUp';
|
|
@@ -17,6 +20,7 @@ export { default as DatacentersTierSVG } from './DatacentersTier';
|
|
|
17
20
|
export { default as DigitalEnvironmentSVG } from './DigitalEnvironment';
|
|
18
21
|
export { default as DocumentArrowSVG } from './DocumentArrow';
|
|
19
22
|
export { default as EnterpriseKnowledgeBaseSVG } from './EnterpriseKnowledgeBase';
|
|
23
|
+
export { default as EvoClawSVG } from './EvoClaw';
|
|
20
24
|
export { default as FileMedSVG } from './FileMed';
|
|
21
25
|
export { default as FileObjectsSVG } from './FileObjects';
|
|
22
26
|
export { default as FileSearchSVG } from './FileSearch';
|
|
@@ -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 SvgEvolutionCni: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default SvgEvolutionCni;
|
|
@@ -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 SvgEvolutionCni = 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-evolution-cni';
|
|
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: 'M7.592 4.613 3.243 7.06 3.242 12v4.94l4.341 2.44c2.388 1.342 4.376 2.44 4.417 2.44s2.029-1.098 4.417-2.44l4.341-2.44V12l-.001-4.94-4.344-2.44c-2.389-1.342-4.373-2.443-4.409-2.447s-2.021 1.094-4.412 2.44m4.715-.578.273.155.011 1.382.01 1.382-2.72 2.228L7.16 11.41v2.188l-.636.011-.636.011 1.01 1.039 1.009 1.038.696-.718 1.014-1.049.317-.33h-.623c-.531 0-.626-.009-.647-.063-.013-.035-.024-.364-.024-.732v-.668l2.589-2.118a422 422 0 0 0 2.74-2.254l.151-.134V6.355c0-.701.01-1.275.023-1.275s1.164.642 2.56 1.428l2.537 1.427v8.135l-3.6 2.025c-1.98 1.114-3.618 2.025-3.641 2.025-.022 0-.202-.091-.4-.203l-.359-.202.001-1.168V17.38l2.74-2.24 2.739-2.239v-2.179l.619-.011.618-.011-1.004-1.032c-.551-.567-1.015-1.026-1.031-1.02-.015.007-.455.471-.979 1.032l-.952 1.02.605.011.604.011-.003.749-.002.749-2.717 2.218-2.717 2.217-.01 1.108-.011 1.108-2.49-1.4-2.49-1.401V7.935l3.59-2.024c1.975-1.113 3.611-2.026 3.637-2.027s.169.066.32.151' }) })));
|
|
31
|
+
});
|
|
32
|
+
export default SvgEvolutionCni;
|
|
@@ -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 SvgSyntheticMonitoring: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default SvgSyntheticMonitoring;
|
|
@@ -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 SvgSyntheticMonitoring = 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-synthetic-monitoring';
|
|
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: 'M4.47 4.47 3.24 5.7V9h1.52V6.299l.77-.769.771-.77H9V3.24H5.7zM15 4v.76h2.699l.771.77.77.769V9h1.52V5.7l-1.23-1.23-1.23-1.23H15zm-.4 8v4.44h1.48V7.56H14.6zm-3.453-2.013c-.015.014-.027 1.472-.027 3.24v3.213h1.52V9.96h-.733c-.404 0-.746.012-.76.027M7.92 14.82v1.62H9.4V13.2H7.92zm-4.68 1.83v1.65l1.23 1.23 1.23 1.23H9v-1.52H6.299l-.769-.77-.77-.771V15H3.24zm16-.3v1.349l-.77.771-.769.77H15v1.52h3.3l1.23-1.23 1.23-1.23V15h-1.52z' }) })));
|
|
31
|
+
});
|
|
32
|
+
export default SvgSyntheticMonitoring;
|
|
@@ -114,6 +114,7 @@ export { default as EvolutionAiAgentsSVG } from './EvolutionAiAgents';
|
|
|
114
114
|
export { default as EvolutionBareMetalEnterpriseSVG } from './EvolutionBareMetalEnterprise';
|
|
115
115
|
export { default as EvolutionBiSVG } from './EvolutionBi';
|
|
116
116
|
export { default as EvolutionCloudMonitoringSVG } from './EvolutionCloudMonitoring';
|
|
117
|
+
export { default as EvolutionCniSVG } from './EvolutionCni';
|
|
117
118
|
export { default as EvolutionComputeSVG } from './EvolutionCompute';
|
|
118
119
|
export { default as EvolutionDataPlatfromSVG } from './EvolutionDataPlatfrom';
|
|
119
120
|
export { default as EvolutionDisasterRecoverySVG } from './EvolutionDisasterRecovery';
|
|
@@ -294,6 +295,7 @@ export { default as SparkSVG } from './Spark';
|
|
|
294
295
|
export { default as SshSVG } from './Ssh';
|
|
295
296
|
export { default as SubnetsSVG } from './Subnets';
|
|
296
297
|
export { default as SupersetSVG } from './Superset';
|
|
298
|
+
export { default as SyntheticMonitoringSVG } from './SyntheticMonitoring';
|
|
297
299
|
export { default as SystemObjectsSVG } from './SystemObjects';
|
|
298
300
|
export { default as TagsSVG } from './Tags';
|
|
299
301
|
export { default as TaskHistorySVG } from './TaskHistory';
|
|
@@ -114,6 +114,7 @@ export { default as EvolutionAiAgentsSVG } from './EvolutionAiAgents';
|
|
|
114
114
|
export { default as EvolutionBareMetalEnterpriseSVG } from './EvolutionBareMetalEnterprise';
|
|
115
115
|
export { default as EvolutionBiSVG } from './EvolutionBi';
|
|
116
116
|
export { default as EvolutionCloudMonitoringSVG } from './EvolutionCloudMonitoring';
|
|
117
|
+
export { default as EvolutionCniSVG } from './EvolutionCni';
|
|
117
118
|
export { default as EvolutionComputeSVG } from './EvolutionCompute';
|
|
118
119
|
export { default as EvolutionDataPlatfromSVG } from './EvolutionDataPlatfrom';
|
|
119
120
|
export { default as EvolutionDisasterRecoverySVG } from './EvolutionDisasterRecovery';
|
|
@@ -294,6 +295,7 @@ export { default as SparkSVG } from './Spark';
|
|
|
294
295
|
export { default as SshSVG } from './Ssh';
|
|
295
296
|
export { default as SubnetsSVG } from './Subnets';
|
|
296
297
|
export { default as SupersetSVG } from './Superset';
|
|
298
|
+
export { default as SyntheticMonitoringSVG } from './SyntheticMonitoring';
|
|
297
299
|
export { default as SystemObjectsSVG } from './SystemObjects';
|
|
298
300
|
export { default as TagsSVG } from './Tags';
|
|
299
301
|
export { default as TaskHistorySVG } from './TaskHistory';
|
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": "18.
|
|
4
|
+
"version": "18.2.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": "
|
|
82
|
+
"gitHead": "fb49a5ab9d8df207ad9acfb9d0788a1088b24404"
|
|
83
83
|
}
|