@cloud-ru/uikit-product-icons 17.8.1 → 17.9.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 CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # 17.9.0 (2026-07-27)
7
+
8
+
9
+ ### Features
10
+
11
+ * **PDS-4145:** added AgentsSpaceSVG service icon ([d34b6e9](https://github.com/cloud-ru-tech/uikit-product/commit/d34b6e9e8de6a7560331cef4038e69b07f3f50eb))
12
+
13
+
14
+
15
+
16
+
6
17
  ## 17.8.1 (2026-07-27)
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 SvgAgentsSpace: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgAgentsSpace;
@@ -0,0 +1,67 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ var __rest = (this && this.__rest) || function (s, e) {
36
+ var t = {};
37
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
38
+ t[p] = s[p];
39
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
40
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
41
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
42
+ t[p[i]] = s[p[i]];
43
+ }
44
+ return t;
45
+ };
46
+ Object.defineProperty(exports, "__esModule", { value: true });
47
+ const jsx_runtime_1 = require("react/jsx-runtime");
48
+ // DO NOT EDIT IT MANUALLY
49
+ const React = __importStar(require("react"));
50
+ const SvgAgentsSpace = React.forwardRef((_a, ref) => {
51
+ var { size = 24 } = _a, props = __rest(_a, ["size"]);
52
+ props.width = undefined;
53
+ props.height = undefined;
54
+ const testId = 'icon-agents-space';
55
+ const style = {};
56
+ const isCustomSize = typeof size === 'number';
57
+ if (isCustomSize) {
58
+ style.width = size + 'px';
59
+ style.height = size + 'px';
60
+ if (!props.style)
61
+ props.style = {};
62
+ props.style.width = size + 'px';
63
+ props.style.height = size + 'px';
64
+ }
65
+ return ((0, jsx_runtime_1.jsx)("svg", Object.assign({ xmlns: 'http://www.w3.org/2000/svg', width: 24, height: 24, fill: 'currentColor', viewBox: '0 0 24 24', "data-test-id": testId, ref: ref }, props, { children: (0, jsx_runtime_1.jsx)("path", { fill: 'inherit', fillRule: 'evenodd', d: 'M3.24 6.74v3.5h10.52v10.52h7V7.7l-2.23-2.23-2.23-2.23H3.24zm14.23-.21 1.77 1.77v10.94h-4V8.76H4.76v-4H15.7zM3.24 16.5v4.26h8.52v-8.52H3.24zm7 0v2.74H4.76v-5.48h5.48z' }) })));
66
+ });
67
+ exports.default = SvgAgentsSpace;
@@ -3,6 +3,7 @@ export { default as AccidentsSVG } from './Accidents';
3
3
  export { default as ActveDirectorySVG } from './ActveDirectory';
4
4
  export { default as AdvancedSVG } from './Advanced';
5
5
  export { default as AgentBackupSVG } from './AgentBackup';
6
+ export { default as AgentsSpaceSVG } from './AgentsSpace';
6
7
  export { default as AiServicesSVG } from './AiServices';
7
8
  export { default as AirflowSVG } from './Airflow';
8
9
  export { default as AlertsSVG } from './Alerts';
@@ -3,13 +3,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.CloudEyeSVG = exports.CloudDnsSVG = exports.CloudContainerInstanceSVG = exports.CloudContainerEngineSVG = exports.CloudCommandLineInterfaceSVG = exports.CloudCertificateManagerSVG = exports.CloudBastionHostSVG = exports.CloudBackupAndRecoverySVG = exports.CloudAdvisorSVG = exports.ClientsSVG = exports.ClientDataBusSVG = exports.CertificationSVG = exports.CertificateManagerSVG = exports.CerebroSVG = exports.CdnSVG = exports.CalculatorSVG = exports.BillingSVG = exports.BiZoneTdrSVG = exports.BaseAltSVG = exports.BareMetalSVG = exports.BackupSVG = exports.AvabilityGroupsSVG = exports.AutoScalingSVG = exports.ArtifactRegistrySVG = exports.ArenadataStreamingSVG = exports.ArenadataQuickMartsSVG = exports.ArenadataHadoopSVG = exports.ArenadataDbSVG = exports.ArenadataAnalyticalDbSVG = exports.ApplicationsForPlacementSVG = exports.ApplicationPerformanceManagementSVG = exports.ApplicationOrchestrationServiceSVG = exports.ApplicationOperationManagementSVG = exports.ApplicationSVG = exports.AppStageSVG = exports.ApiGatewaySVG = exports.ApacheIgnitSVG = exports.ApacheFlinkSVG = exports.AntiDdosWafSVG = exports.AntiDdosFromQratorLabsSVG = exports.AnthropicSVG = exports.AllocatonsSVG = exports.AlertsSVG = exports.AirflowSVG = exports.AiServicesSVG = exports.AgentBackupSVG = exports.AdvancedSVG = exports.ActveDirectorySVG = exports.AccidentsSVG = exports.Svg1CSVG = void 0;
7
- exports.ElasticCloudServerSVG = exports.DocumentDatabaseServiceSVG = exports.DockerRegistrySVG = exports.DistributedMessageServiceForRocketMqSVG = exports.DistributedMessageServiceForRabbitMqSVG = exports.DistributedMessageServiceForKafkaSVG = exports.DistributedDatabaseMiddlewareSVG = exports.DistributedCacheServiceForRedisSVG = exports.DistributedCacheServiceForMemcachedSVG = exports.DisksSVG = exports.DirectConnectSVG = exports.DeploysSVG = exports.DeployImagesSVG = exports.DeepSeekSVG = exports.DatbriksSVG = exports.DatasetRegistrySVG = exports.DatabaseSecurityServiceSVG = exports.DataWarehouseServiceSVG = exports.DataTransferServiceSVG = exports.DataReplicationServiceSVG = exports.DataLakeInsightSVG = exports.DataHubSVG = exports.DataEncryptionWorkshopSVG = exports.DataArtsStudioSVG = exports.DataArtsInsightSVG = exports.DataAdminServiceSVG = exports.DashboardsSVG = exports.CrossPlatformConnectionSVG = exports.CouchDbSVG = exports.ContainerSecurityPlatformSVG = exports.ContainerGuardServiceSVG = exports.ContainerAppsSVG = exports.ConnectionHubSVG = exports.ConnectedServicesSVG = exports.CodeArtsTestPlanSVG = exports.CodeArtsReqSVG = exports.CodeArtsRepoSVG = exports.CodeArtsPipelineSVG = exports.CodeArtsDeploySVG = exports.CodeArtsCheckSVG = exports.CodeArtsBuildSVG = exports.CodeArtsArtifactSVG = exports.CodeArtsSVG = exports.CloudTraceServiceSVG = exports.CloudTableSVG = exports.CloudServiceEngineSVG = exports.CloudSearchServiceSVG = exports.CloudPerformanceTestServiceSVG = exports.CloudLoggingSVG = exports.CloudFirewallSVG = void 0;
8
- exports.ImagesSVG = exports.ImageManagementServiceSVG = exports.IdentityAndAccessManagementSVG = exports.HuggingFaceSVG = exports.HostSecurityServiceSVG = exports.HistoryOfPipelineLaunchesSVG = exports.HadoopMapReduceSVG = exports.HaProxySVG = exports.GreenplumDatbaseSVG = exports.GraphEngineServiceSVG = exports.GrafanaSVG = exports.GpuResourcesSVG = exports.GoSVG = exports.GitlabCiSVG = exports.GitabSVG = exports.GitSVG = exports.GigaIdSVG = exports.GeminiDbSVG = exports.FunctionGraphSVG = exports.FirewallSVG = exports.ExperimentsSVG = exports.ExchangeSVG = exports.EvolutionStackSVG = exports.EvolutionRepoSVG = exports.EvolutionProtectionPlatformSVG = exports.EvolutionPromptRegistrySVG = exports.EvolutionPipelineSVG = exports.EvolutionMlFinetuningSVG = exports.EvolutionMagicBridgeSVG = exports.EvolutionIdentityAccessManagementSVG = exports.EvolutionHybridUsergateSVG = exports.EvolutionFoundationModelsSVG = exports.EvolutionDistributedTrainSVG = exports.EvolutionDisasterRecoverySVG = exports.EvolutionDataPlatfromSVG = exports.EvolutionComputeSVG = exports.EvolutionCloudMonitoringSVG = exports.EvolutionBiSVG = exports.EvolutionBareMetalEnterpriseSVG = exports.EvolutionAiAssistantSVG = exports.EvolutionAiAgentsSVG = exports.EvolutionSVG = exports.EvoDnsSVG = exports.EnterpriseRouterSVG = exports.EnterpriseProjectManagementServiceSVG = exports.ElasticVolumeServiceSVG = exports.ElasticSearchSVG = exports.ElasticLoadBalanceSVG = exports.ElasticIpSVG = exports.ElasticCloudServerWithGpuSVG = void 0;
9
- exports.LoadBalancerSVG = exports.LinuxSVG = exports.LicensesOfBasaltSpoProductsSVG = exports.KubernetesUserSVG = exports.KubernetesSvcSVG = exports.KubernetesStsSVG = exports.KubernetesSecretSVG = exports.KubernetesSchedTitleSVG = exports.KubernetesSchedSVG = exports.KubernetesScSVG = exports.KubernetesSaSVG = exports.KubernetesRsSVG = exports.KubernetesRoleSVG = exports.KubernetesRbSVG = exports.KubernetesQuotaSVG = exports.KubernetesPvcSVG = exports.KubernetesPvSVG = exports.KubernetesPspSVG = exports.KubernetesPodSVG = exports.KubernetesNsSVG = exports.KubernetesNodeTitleSVG = exports.KubernetesNodeSVG = exports.KubernetesNetpolSVG = exports.KubernetesLimitsSVG = exports.KubernetesKubeletSVG = exports.KubernetesKproxySVG = exports.KubernetesJobSVG = exports.KubernetesIngSVG = exports.KubernetesHpaSVG = exports.KubernetesGroupSVG = exports.KubernetesEtcdSVG = exports.KubernetesEpSVG = exports.KubernetesDsSVG = exports.KubernetesDeploySVG = exports.KubernetesCronJobSVG = exports.KubernetesCrdSVG = exports.KubernetesCrbSVG = exports.KubernetesCmListSVG = exports.KubernetesCmSVG = exports.KubernetesCcmSVG = exports.KubernetesCRoleSVG = exports.KubernetesApiSVG = exports.KubernetesSVG = exports.KibanaSVG = exports.KeyManagementSVG = exports.KafkaSVG = exports.JupyterServersSVG = exports.IstioSVG = exports.IotDeviceAccessSVG = exports.IntegrationWithSiemSVG = void 0;
10
- exports.NsxVMwareSVG = exports.NotificationSVG = exports.NodeJsSVG = exports.NatGatewaySVG = exports.N8NSVG = exports.MyOfficeSVG = exports.MyCompanyProfileSVG = exports.MssqlSVG = exports.MongoDbSVG = exports.ModelRegistrySVG = exports.ModelMonitoringSVG = exports.MlsCliSVG = exports.MlSpaceSVG = exports.MlFlowSVG = exports.MistralSVG = exports.MindContollerSVG = exports.MilvusDbSVG = exports.MigrationToAdvancedSVG = exports.MigrationInTheCloudVMwareSVG = exports.MigrationSVG = exports.MicrosoftNetSVG = exports.MetastoreSVG = exports.McpServerSVG = exports.MarketplaceSVG = exports.MariaDbSVG = exports.MapReduceServiceSVG = exports.ManagedTimescaleDbSVG = exports.ManagedServicesSVG = exports.ManagedSearchSVG = exports.ManagedRedisSVG = exports.ManagedRagSVG = exports.ManagedRabbitMqSVG = exports.ManagedPostgreSqlSVG = exports.ManagedPangolinSVG = exports.ManagedMySqlSVG = exports.ManagedKubernetesSVG = exports.ManagedKafkaSVG = exports.ManagedIdentitiesSVG = exports.ManagedDocumentDbSVG = exports.ManagedDataGridSVG = exports.ManagedCoraxSVG = exports.ManagedCloudberrySVG = exports.ManagedClickHouseSVG = exports.MagicRouterSVG = exports.MlInferenceSVG = exports.LoggingAuditSVG = exports.LogTankServiceSVG = exports.LogStashSVG = exports.LogGroupsSVG = exports.LoadBalancerGeneralSVG = void 0;
11
- exports.TermideskSVG = exports.TechnologyConsultingSVG = exports.TasksAndEnvironmentsSVG = exports.TaskHistorySVG = exports.TagsSVG = exports.SystemObjectsSVG = exports.SupersetSVG = exports.SubnetsSVG = exports.SshSVG = exports.SparkSVG = exports.SoftwareRepositoryForContainersSVG = exports.SnatSVG = exports.SimpleMessageNotificationSVG = exports.SharedStorageNfsSVG = exports.ServicesSVG = exports.ServiceStageSVG = exports.ServerlessFunctionSVG = exports.ServerlessSVG = exports.ServerMigrationServiceSVG = exports.SecurityGroupsSVG = exports.SecretManagementSVG = exports.ScalableFileServiceSVG = exports.SapInTheCloudSVG = exports.SapSVG = exports.S3StorageSVG = exports.S3SVG = exports.RosaOperationSystemSVG = exports.ResourceManagerSVG = exports.RentUsbPortsSVG = exports.RelationalDatabaseServiceSVG = exports.ReferralsSVG = exports.ReferralLinksSVG = exports.RedisSVG = exports.QwenSVG = exports.QuotasSVG = exports.PytonSVG = exports.PublicIpSVG = exports.PrometeusSVG = exports.PowerBiSVG = exports.PipelinesSVG = exports.PartnerMaterialsSVG = exports.PartnerAccountSVG = exports.OracleSVG = exports.OpenSearchSVG = exports.OpenApiSVG = exports.OpenAiSVG = exports.OllamaSVG = exports.ObjectStorageServiceSVG = exports.ObjectContainerSVG = exports.NutnixSVG = void 0;
12
- exports.ZabbixSVG = exports.WebhookSVG = exports.WebApplicationFirewallSVG = exports.VpnSVG = exports.VpcEndpointSVG = exports.VpcSVG = exports.VmwareDisasterRecoverySVG = exports.VmwareSVG = exports.VmVirtualizationPlatformsSVG = exports.VmManagerSVG = exports.VmIaasBasisSVG = exports.VmEncryptionSVG = exports.VmBackupSVG = exports.VllmSVG = exports.VirtualizationPlatformsSVG = exports.VirtualPrivateCloudSVG = exports.VirtualIpSVG = exports.VirtualDesktopInfrastructureSVG = exports.VirtualDataCenterWithGpuSVG = exports.VirtualDataCenterSVG = exports.VictriaMetricsSVG = exports.VcenterManagerSVG = exports.VMwareVSphereClientSVG = exports.VMwareVSphereSVG = exports.VMwareVShpereHypervisorSVG = exports.VMwareVCentrServerSVG = exports.VMwareNsxAdvancedLoadBalancerSVG = exports.VMwareEsxiSVG = exports.VMwareCloudDirectrAvailabilitySVG = exports.VMwareCloudDirectrAppLaunchpadSVG = exports.VMwareCloudDirectorServiceSVG = exports.VMwareCloudDirectorSVG = exports.VMwareBackupServerSVG = exports.VMwareAriaOperatonsforLogsSVG = exports.VMwareAriaOperatonsSVG = exports.VAppSVG = exports.UserGateVirtualNgfw1SVG = exports.UserGateVirtualNgfwSVG = exports.UserGateProfServiceSVG = exports.TrinoSVG = exports.TransactionsSVG = void 0;
6
+ exports.CloudDnsSVG = exports.CloudContainerInstanceSVG = exports.CloudContainerEngineSVG = exports.CloudCommandLineInterfaceSVG = exports.CloudCertificateManagerSVG = exports.CloudBastionHostSVG = exports.CloudBackupAndRecoverySVG = exports.CloudAdvisorSVG = exports.ClientsSVG = exports.ClientDataBusSVG = exports.CertificationSVG = exports.CertificateManagerSVG = exports.CerebroSVG = exports.CdnSVG = exports.CalculatorSVG = exports.BillingSVG = exports.BiZoneTdrSVG = exports.BaseAltSVG = exports.BareMetalSVG = exports.BackupSVG = exports.AvabilityGroupsSVG = exports.AutoScalingSVG = exports.ArtifactRegistrySVG = exports.ArenadataStreamingSVG = exports.ArenadataQuickMartsSVG = exports.ArenadataHadoopSVG = exports.ArenadataDbSVG = exports.ArenadataAnalyticalDbSVG = exports.ApplicationsForPlacementSVG = exports.ApplicationPerformanceManagementSVG = exports.ApplicationOrchestrationServiceSVG = exports.ApplicationOperationManagementSVG = exports.ApplicationSVG = exports.AppStageSVG = exports.ApiGatewaySVG = exports.ApacheIgnitSVG = exports.ApacheFlinkSVG = exports.AntiDdosWafSVG = exports.AntiDdosFromQratorLabsSVG = exports.AnthropicSVG = exports.AllocatonsSVG = exports.AlertsSVG = exports.AirflowSVG = exports.AiServicesSVG = exports.AgentsSpaceSVG = exports.AgentBackupSVG = exports.AdvancedSVG = exports.ActveDirectorySVG = exports.AccidentsSVG = exports.Svg1CSVG = void 0;
7
+ exports.DocumentDatabaseServiceSVG = exports.DockerRegistrySVG = exports.DistributedMessageServiceForRocketMqSVG = exports.DistributedMessageServiceForRabbitMqSVG = exports.DistributedMessageServiceForKafkaSVG = exports.DistributedDatabaseMiddlewareSVG = exports.DistributedCacheServiceForRedisSVG = exports.DistributedCacheServiceForMemcachedSVG = exports.DisksSVG = exports.DirectConnectSVG = exports.DeploysSVG = exports.DeployImagesSVG = exports.DeepSeekSVG = exports.DatbriksSVG = exports.DatasetRegistrySVG = exports.DatabaseSecurityServiceSVG = exports.DataWarehouseServiceSVG = exports.DataTransferServiceSVG = exports.DataReplicationServiceSVG = exports.DataLakeInsightSVG = exports.DataHubSVG = exports.DataEncryptionWorkshopSVG = exports.DataArtsStudioSVG = exports.DataArtsInsightSVG = exports.DataAdminServiceSVG = exports.DashboardsSVG = exports.CrossPlatformConnectionSVG = exports.CouchDbSVG = exports.ContainerSecurityPlatformSVG = exports.ContainerGuardServiceSVG = exports.ContainerAppsSVG = exports.ConnectionHubSVG = exports.ConnectedServicesSVG = exports.CodeArtsTestPlanSVG = exports.CodeArtsReqSVG = exports.CodeArtsRepoSVG = exports.CodeArtsPipelineSVG = exports.CodeArtsDeploySVG = exports.CodeArtsCheckSVG = exports.CodeArtsBuildSVG = exports.CodeArtsArtifactSVG = exports.CodeArtsSVG = exports.CloudTraceServiceSVG = exports.CloudTableSVG = exports.CloudServiceEngineSVG = exports.CloudSearchServiceSVG = exports.CloudPerformanceTestServiceSVG = exports.CloudLoggingSVG = exports.CloudFirewallSVG = exports.CloudEyeSVG = void 0;
8
+ exports.ImageManagementServiceSVG = exports.IdentityAndAccessManagementSVG = exports.HuggingFaceSVG = exports.HostSecurityServiceSVG = exports.HistoryOfPipelineLaunchesSVG = exports.HadoopMapReduceSVG = exports.HaProxySVG = exports.GreenplumDatbaseSVG = exports.GraphEngineServiceSVG = exports.GrafanaSVG = exports.GpuResourcesSVG = exports.GoSVG = exports.GitlabCiSVG = exports.GitabSVG = exports.GitSVG = exports.GigaIdSVG = exports.GeminiDbSVG = exports.FunctionGraphSVG = exports.FirewallSVG = exports.ExperimentsSVG = exports.ExchangeSVG = exports.EvolutionStackSVG = exports.EvolutionRepoSVG = exports.EvolutionProtectionPlatformSVG = exports.EvolutionPromptRegistrySVG = exports.EvolutionPipelineSVG = exports.EvolutionMlFinetuningSVG = exports.EvolutionMagicBridgeSVG = exports.EvolutionIdentityAccessManagementSVG = exports.EvolutionHybridUsergateSVG = exports.EvolutionFoundationModelsSVG = exports.EvolutionDistributedTrainSVG = exports.EvolutionDisasterRecoverySVG = exports.EvolutionDataPlatfromSVG = exports.EvolutionComputeSVG = exports.EvolutionCloudMonitoringSVG = exports.EvolutionBiSVG = exports.EvolutionBareMetalEnterpriseSVG = exports.EvolutionAiAssistantSVG = exports.EvolutionAiAgentsSVG = exports.EvolutionSVG = exports.EvoDnsSVG = exports.EnterpriseRouterSVG = exports.EnterpriseProjectManagementServiceSVG = exports.ElasticVolumeServiceSVG = exports.ElasticSearchSVG = exports.ElasticLoadBalanceSVG = exports.ElasticIpSVG = exports.ElasticCloudServerWithGpuSVG = exports.ElasticCloudServerSVG = void 0;
9
+ exports.LinuxSVG = exports.LicensesOfBasaltSpoProductsSVG = exports.KubernetesUserSVG = exports.KubernetesSvcSVG = exports.KubernetesStsSVG = exports.KubernetesSecretSVG = exports.KubernetesSchedTitleSVG = exports.KubernetesSchedSVG = exports.KubernetesScSVG = exports.KubernetesSaSVG = exports.KubernetesRsSVG = exports.KubernetesRoleSVG = exports.KubernetesRbSVG = exports.KubernetesQuotaSVG = exports.KubernetesPvcSVG = exports.KubernetesPvSVG = exports.KubernetesPspSVG = exports.KubernetesPodSVG = exports.KubernetesNsSVG = exports.KubernetesNodeTitleSVG = exports.KubernetesNodeSVG = exports.KubernetesNetpolSVG = exports.KubernetesLimitsSVG = exports.KubernetesKubeletSVG = exports.KubernetesKproxySVG = exports.KubernetesJobSVG = exports.KubernetesIngSVG = exports.KubernetesHpaSVG = exports.KubernetesGroupSVG = exports.KubernetesEtcdSVG = exports.KubernetesEpSVG = exports.KubernetesDsSVG = exports.KubernetesDeploySVG = exports.KubernetesCronJobSVG = exports.KubernetesCrdSVG = exports.KubernetesCrbSVG = exports.KubernetesCmListSVG = exports.KubernetesCmSVG = exports.KubernetesCcmSVG = exports.KubernetesCRoleSVG = exports.KubernetesApiSVG = exports.KubernetesSVG = exports.KibanaSVG = exports.KeyManagementSVG = exports.KafkaSVG = exports.JupyterServersSVG = exports.IstioSVG = exports.IotDeviceAccessSVG = exports.IntegrationWithSiemSVG = exports.ImagesSVG = void 0;
10
+ exports.NotificationSVG = exports.NodeJsSVG = exports.NatGatewaySVG = exports.N8NSVG = exports.MyOfficeSVG = exports.MyCompanyProfileSVG = exports.MssqlSVG = exports.MongoDbSVG = exports.ModelRegistrySVG = exports.ModelMonitoringSVG = exports.MlsCliSVG = exports.MlSpaceSVG = exports.MlFlowSVG = exports.MistralSVG = exports.MindContollerSVG = exports.MilvusDbSVG = exports.MigrationToAdvancedSVG = exports.MigrationInTheCloudVMwareSVG = exports.MigrationSVG = exports.MicrosoftNetSVG = exports.MetastoreSVG = exports.McpServerSVG = exports.MarketplaceSVG = exports.MariaDbSVG = exports.MapReduceServiceSVG = exports.ManagedTimescaleDbSVG = exports.ManagedServicesSVG = exports.ManagedSearchSVG = exports.ManagedRedisSVG = exports.ManagedRagSVG = exports.ManagedRabbitMqSVG = exports.ManagedPostgreSqlSVG = exports.ManagedPangolinSVG = exports.ManagedMySqlSVG = exports.ManagedKubernetesSVG = exports.ManagedKafkaSVG = exports.ManagedIdentitiesSVG = exports.ManagedDocumentDbSVG = exports.ManagedDataGridSVG = exports.ManagedCoraxSVG = exports.ManagedCloudberrySVG = exports.ManagedClickHouseSVG = exports.MagicRouterSVG = exports.MlInferenceSVG = exports.LoggingAuditSVG = exports.LogTankServiceSVG = exports.LogStashSVG = exports.LogGroupsSVG = exports.LoadBalancerGeneralSVG = exports.LoadBalancerSVG = void 0;
11
+ exports.TechnologyConsultingSVG = exports.TasksAndEnvironmentsSVG = exports.TaskHistorySVG = exports.TagsSVG = exports.SystemObjectsSVG = exports.SupersetSVG = exports.SubnetsSVG = exports.SshSVG = exports.SparkSVG = exports.SoftwareRepositoryForContainersSVG = exports.SnatSVG = exports.SimpleMessageNotificationSVG = exports.SharedStorageNfsSVG = exports.ServicesSVG = exports.ServiceStageSVG = exports.ServerlessFunctionSVG = exports.ServerlessSVG = exports.ServerMigrationServiceSVG = exports.SecurityGroupsSVG = exports.SecretManagementSVG = exports.ScalableFileServiceSVG = exports.SapInTheCloudSVG = exports.SapSVG = exports.S3StorageSVG = exports.S3SVG = exports.RosaOperationSystemSVG = exports.ResourceManagerSVG = exports.RentUsbPortsSVG = exports.RelationalDatabaseServiceSVG = exports.ReferralsSVG = exports.ReferralLinksSVG = exports.RedisSVG = exports.QwenSVG = exports.QuotasSVG = exports.PytonSVG = exports.PublicIpSVG = exports.PrometeusSVG = exports.PowerBiSVG = exports.PipelinesSVG = exports.PartnerMaterialsSVG = exports.PartnerAccountSVG = exports.OracleSVG = exports.OpenSearchSVG = exports.OpenApiSVG = exports.OpenAiSVG = exports.OllamaSVG = exports.ObjectStorageServiceSVG = exports.ObjectContainerSVG = exports.NutnixSVG = exports.NsxVMwareSVG = void 0;
12
+ exports.ZabbixSVG = exports.WebhookSVG = exports.WebApplicationFirewallSVG = exports.VpnSVG = exports.VpcEndpointSVG = exports.VpcSVG = exports.VmwareDisasterRecoverySVG = exports.VmwareSVG = exports.VmVirtualizationPlatformsSVG = exports.VmManagerSVG = exports.VmIaasBasisSVG = exports.VmEncryptionSVG = exports.VmBackupSVG = exports.VllmSVG = exports.VirtualizationPlatformsSVG = exports.VirtualPrivateCloudSVG = exports.VirtualIpSVG = exports.VirtualDesktopInfrastructureSVG = exports.VirtualDataCenterWithGpuSVG = exports.VirtualDataCenterSVG = exports.VictriaMetricsSVG = exports.VcenterManagerSVG = exports.VMwareVSphereClientSVG = exports.VMwareVSphereSVG = exports.VMwareVShpereHypervisorSVG = exports.VMwareVCentrServerSVG = exports.VMwareNsxAdvancedLoadBalancerSVG = exports.VMwareEsxiSVG = exports.VMwareCloudDirectrAvailabilitySVG = exports.VMwareCloudDirectrAppLaunchpadSVG = exports.VMwareCloudDirectorServiceSVG = exports.VMwareCloudDirectorSVG = exports.VMwareBackupServerSVG = exports.VMwareAriaOperatonsforLogsSVG = exports.VMwareAriaOperatonsSVG = exports.VAppSVG = exports.UserGateVirtualNgfw1SVG = exports.UserGateVirtualNgfwSVG = exports.UserGateProfServiceSVG = exports.TrinoSVG = exports.TransactionsSVG = exports.TermideskSVG = void 0;
13
13
  var _1C_1 = require("./1C");
14
14
  Object.defineProperty(exports, "Svg1CSVG", { enumerable: true, get: function () { return __importDefault(_1C_1).default; } });
15
15
  var Accidents_1 = require("./Accidents");
@@ -20,6 +20,8 @@ var Advanced_1 = require("./Advanced");
20
20
  Object.defineProperty(exports, "AdvancedSVG", { enumerable: true, get: function () { return __importDefault(Advanced_1).default; } });
21
21
  var AgentBackup_1 = require("./AgentBackup");
22
22
  Object.defineProperty(exports, "AgentBackupSVG", { enumerable: true, get: function () { return __importDefault(AgentBackup_1).default; } });
23
+ var AgentsSpace_1 = require("./AgentsSpace");
24
+ Object.defineProperty(exports, "AgentsSpaceSVG", { enumerable: true, get: function () { return __importDefault(AgentsSpace_1).default; } });
23
25
  var AiServices_1 = require("./AiServices");
24
26
  Object.defineProperty(exports, "AiServicesSVG", { enumerable: true, get: function () { return __importDefault(AiServices_1).default; } });
25
27
  var Airflow_1 = require("./Airflow");
@@ -0,0 +1,9 @@
1
+ import * as React from 'react';
2
+ import type { SVGProps } from 'react';
3
+ export interface ISvgIconProps extends SVGProps<SVGSVGElement> {
4
+ className?: string;
5
+ size?: number;
6
+ style?: React.CSSProperties;
7
+ }
8
+ declare const SvgAgentsSpace: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgAgentsSpace;
@@ -0,0 +1,32 @@
1
+ var __rest = (this && this.__rest) || function (s, e) {
2
+ var t = {};
3
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
4
+ t[p] = s[p];
5
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
6
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
7
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
8
+ t[p[i]] = s[p[i]];
9
+ }
10
+ return t;
11
+ };
12
+ import { jsx as _jsx } from "react/jsx-runtime";
13
+ // DO NOT EDIT IT MANUALLY
14
+ import * as React from 'react';
15
+ const SvgAgentsSpace = React.forwardRef((_a, ref) => {
16
+ var { size = 24 } = _a, props = __rest(_a, ["size"]);
17
+ props.width = undefined;
18
+ props.height = undefined;
19
+ const testId = 'icon-agents-space';
20
+ const style = {};
21
+ const isCustomSize = typeof size === 'number';
22
+ if (isCustomSize) {
23
+ style.width = size + 'px';
24
+ style.height = size + 'px';
25
+ if (!props.style)
26
+ props.style = {};
27
+ props.style.width = size + 'px';
28
+ props.style.height = size + 'px';
29
+ }
30
+ return (_jsx("svg", Object.assign({ xmlns: 'http://www.w3.org/2000/svg', width: 24, height: 24, fill: 'currentColor', viewBox: '0 0 24 24', "data-test-id": testId, ref: ref }, props, { children: _jsx("path", { fill: 'inherit', fillRule: 'evenodd', d: 'M3.24 6.74v3.5h10.52v10.52h7V7.7l-2.23-2.23-2.23-2.23H3.24zm14.23-.21 1.77 1.77v10.94h-4V8.76H4.76v-4H15.7zM3.24 16.5v4.26h8.52v-8.52H3.24zm7 0v2.74H4.76v-5.48h5.48z' }) })));
31
+ });
32
+ export default SvgAgentsSpace;
@@ -3,6 +3,7 @@ export { default as AccidentsSVG } from './Accidents';
3
3
  export { default as ActveDirectorySVG } from './ActveDirectory';
4
4
  export { default as AdvancedSVG } from './Advanced';
5
5
  export { default as AgentBackupSVG } from './AgentBackup';
6
+ export { default as AgentsSpaceSVG } from './AgentsSpace';
6
7
  export { default as AiServicesSVG } from './AiServices';
7
8
  export { default as AirflowSVG } from './Airflow';
8
9
  export { default as AlertsSVG } from './Alerts';
@@ -3,6 +3,7 @@ export { default as AccidentsSVG } from './Accidents';
3
3
  export { default as ActveDirectorySVG } from './ActveDirectory';
4
4
  export { default as AdvancedSVG } from './Advanced';
5
5
  export { default as AgentBackupSVG } from './AgentBackup';
6
+ export { default as AgentsSpaceSVG } from './AgentsSpace';
6
7
  export { default as AiServicesSVG } from './AiServices';
7
8
  export { default as AirflowSVG } from './Airflow';
8
9
  export { default as AlertsSVG } from './Alerts';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cloud-ru/uikit-product-icons",
3
3
  "title": "React Icons package",
4
- "version": "17.8.1",
4
+ "version": "17.9.0",
5
5
  "sideEffects": [
6
6
  "*.svg",
7
7
  "*.css",
@@ -79,5 +79,5 @@
79
79
  "svgo": "3.3.4",
80
80
  "yargs": "17.7.2"
81
81
  },
82
- "gitHead": "1a03e39e2f2b52e36765da40bbe57bc1f01a4548"
82
+ "gitHead": "d30b6d796fbbd24e553af1312f1e688c491ec038"
83
83
  }