@cloud-ru/uikit-product-icons 17.0.6 → 17.1.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/service-icons/EvolutionMagicBridge.d.ts +9 -0
- package/dist/cjs/components/service-icons/EvolutionMagicBridge.js +67 -0
- package/dist/cjs/components/service-icons/index.d.ts +1 -0
- package/dist/cjs/components/service-icons/index.js +7 -5
- package/dist/esm/components/service-icons/EvolutionMagicBridge.d.ts +9 -0
- package/dist/esm/components/service-icons/EvolutionMagicBridge.js +32 -0
- package/dist/esm/components/service-icons/index.d.ts +1 -0
- package/dist/esm/components/service-icons/index.js +1 -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
|
+
# 17.1.0 (2026-03-10)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **PDS-3591:** add evo magic bridge icon ([8a44219](https://github.com/cloud-ru-tech/uikit-product/commit/8a4421958aade6868251003ae50e9e33d355114d))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## 17.0.6 (2026-03-04)
|
|
7
18
|
|
|
8
19
|
### Only dependencies have been changed
|
|
@@ -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 SvgEvolutionMagicBridge: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default SvgEvolutionMagicBridge;
|
|
@@ -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 SvgEvolutionMagicBridge = 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-magic-bridge';
|
|
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", { d: 'M13.2 3.241a5.85 5.85 0 0 0-4.551 3.213 6.5 6.5 0 0 0-.505 1.513 2 2 0 0 1-.079.341 2 2 0 0 1-.332.077c-.684.119-1.573.479-2.182.883a6.4 6.4 0 0 0-1.618 1.623c-.169.254-.531.945-.534 1.018-.001.017-.111.094-.245.171-.612.35-.975 1.077-.873 1.75.07.469.204.73.535 1.042.203.193.218.221.305.575a5.85 5.85 0 0 0 2.15 3.306c1.119.85 2.31 1.206 4.039 1.207h.53v-1.52h-.715c-.79 0-1.231-.058-1.723-.227a4.34 4.34 0 0 1-2.425-2.067c-.167-.315-.339-.746-.335-.842 0-.024.091-.088.2-.141.227-.11.647-.511.719-.686l.049-.117h6.51v5.6l4.81-.01 4.81-.01.01-5.31.01-5.31h-9.64v3.52H5.618l-.077-.143a2 2 0 0 0-.332-.381l-.255-.239.231-.348c.435-.656 1.162-1.274 1.835-1.558.703-.298.906-.34 1.78-.368l.74-.023.024-.72c.03-.926.116-1.297.456-1.986.53-1.072 1.57-1.911 2.773-2.237.471-.128 1.461-.151 1.968-.046a4.3 4.3 0 0 1 2.99 2.329l.231.471c.004.006.319-.097.701-.23.382-.132.699-.241.703-.241.019 0-.203-.517-.335-.778-.76-1.514-2.311-2.685-4.008-3.026-.447-.09-1.399-.129-1.843-.075m7.04 8.579v1.02H13.6V10.8h6.64zm0 3.32v.78h-1.8v1.48h1.8v1.04H13.6v-4.08h6.64z' }) })));
|
|
66
|
+
});
|
|
67
|
+
exports.default = SvgEvolutionMagicBridge;
|
|
@@ -118,6 +118,7 @@ export { default as EvolutionDistributedTrainSVG } from './EvolutionDistributedT
|
|
|
118
118
|
export { default as EvolutionFoundationModelsSVG } from './EvolutionFoundationModels';
|
|
119
119
|
export { default as EvolutionHybridUsergateSVG } from './EvolutionHybridUsergate';
|
|
120
120
|
export { default as EvolutionIdentityAccessManagementSVG } from './EvolutionIdentityAccessManagement';
|
|
121
|
+
export { default as EvolutionMagicBridgeSVG } from './EvolutionMagicBridge';
|
|
121
122
|
export { default as EvolutionMlFinetuningSVG } from './EvolutionMlFinetuning';
|
|
122
123
|
export { default as EvolutionPipelineSVG } from './EvolutionPipeline';
|
|
123
124
|
export { default as EvolutionRepoSVG } from './EvolutionRepo';
|
|
@@ -5,11 +5,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.CloudFirewallSVG = exports.CloudEyeSVG = exports.CloudDnsSVG = exports.CloudContainerInstanceSVG = exports.CloudContainerEngineSVG = exports.CloudCommandLineInterfaceSVG = exports.CloudCertificateManagerSVG = exports.CloudBastionHostSVG = exports.CloudBackupAndRecoverySVG = exports.CloudAdvisorSVG = exports.ClientsSVG = 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
7
|
exports.ElasticCloudServerWithGpuSVG = 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 = void 0;
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.
|
|
11
|
-
exports.
|
|
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 = void 0;
|
|
8
|
+
exports.KeyManagementSVG = exports.KafkaSVG = exports.JupyterServersSVG = exports.IstioSVG = exports.IntegrationWithSiemSVG = 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.FunctionGraphSVG = exports.FirewallSVG = exports.ExperimentsSVG = exports.ExchangeSVG = exports.EvolutionStackSVG = exports.EvolutionRepoSVG = 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 = void 0;
|
|
9
|
+
exports.MlInferenceSVG = exports.LoggingAuditSVG = exports.LogTankServiceSVG = exports.LogStashSVG = exports.LogGroupsSVG = exports.LoadBalancerGeneralSVG = 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 = void 0;
|
|
10
|
+
exports.OracleSVG = exports.OpenSearchSVG = exports.OpenApiSVG = exports.OpenAiSVG = exports.OllamaSVG = exports.ObjectStorageServiceSVG = exports.ObjectContainerSVG = exports.NutnixSVG = 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.ManagedDocumentDbSVG = exports.ManagedDataGridSVG = exports.ManagedCoraxSVG = exports.ManagedClickHouseSVG = exports.MagicRouterSVG = void 0;
|
|
11
|
+
exports.VMwareAriaOperatonsforLogsSVG = exports.VMwareAriaOperatonsSVG = exports.VAppSVG = exports.UserGateVirtualNgfw1SVG = exports.UserGateVirtualNgfwSVG = exports.UserGateProfServiceSVG = exports.TrinoSVG = exports.TransactionsSVG = 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 = 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 = 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");
|
|
@@ -250,6 +250,8 @@ var EvolutionHybridUsergate_1 = require("./EvolutionHybridUsergate");
|
|
|
250
250
|
Object.defineProperty(exports, "EvolutionHybridUsergateSVG", { enumerable: true, get: function () { return __importDefault(EvolutionHybridUsergate_1).default; } });
|
|
251
251
|
var EvolutionIdentityAccessManagement_1 = require("./EvolutionIdentityAccessManagement");
|
|
252
252
|
Object.defineProperty(exports, "EvolutionIdentityAccessManagementSVG", { enumerable: true, get: function () { return __importDefault(EvolutionIdentityAccessManagement_1).default; } });
|
|
253
|
+
var EvolutionMagicBridge_1 = require("./EvolutionMagicBridge");
|
|
254
|
+
Object.defineProperty(exports, "EvolutionMagicBridgeSVG", { enumerable: true, get: function () { return __importDefault(EvolutionMagicBridge_1).default; } });
|
|
253
255
|
var EvolutionMlFinetuning_1 = require("./EvolutionMlFinetuning");
|
|
254
256
|
Object.defineProperty(exports, "EvolutionMlFinetuningSVG", { enumerable: true, get: function () { return __importDefault(EvolutionMlFinetuning_1).default; } });
|
|
255
257
|
var EvolutionPipeline_1 = require("./EvolutionPipeline");
|
|
@@ -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 SvgEvolutionMagicBridge: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default SvgEvolutionMagicBridge;
|
|
@@ -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 SvgEvolutionMagicBridge = 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-magic-bridge';
|
|
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", { d: 'M13.2 3.241a5.85 5.85 0 0 0-4.551 3.213 6.5 6.5 0 0 0-.505 1.513 2 2 0 0 1-.079.341 2 2 0 0 1-.332.077c-.684.119-1.573.479-2.182.883a6.4 6.4 0 0 0-1.618 1.623c-.169.254-.531.945-.534 1.018-.001.017-.111.094-.245.171-.612.35-.975 1.077-.873 1.75.07.469.204.73.535 1.042.203.193.218.221.305.575a5.85 5.85 0 0 0 2.15 3.306c1.119.85 2.31 1.206 4.039 1.207h.53v-1.52h-.715c-.79 0-1.231-.058-1.723-.227a4.34 4.34 0 0 1-2.425-2.067c-.167-.315-.339-.746-.335-.842 0-.024.091-.088.2-.141.227-.11.647-.511.719-.686l.049-.117h6.51v5.6l4.81-.01 4.81-.01.01-5.31.01-5.31h-9.64v3.52H5.618l-.077-.143a2 2 0 0 0-.332-.381l-.255-.239.231-.348c.435-.656 1.162-1.274 1.835-1.558.703-.298.906-.34 1.78-.368l.74-.023.024-.72c.03-.926.116-1.297.456-1.986.53-1.072 1.57-1.911 2.773-2.237.471-.128 1.461-.151 1.968-.046a4.3 4.3 0 0 1 2.99 2.329l.231.471c.004.006.319-.097.701-.23.382-.132.699-.241.703-.241.019 0-.203-.517-.335-.778-.76-1.514-2.311-2.685-4.008-3.026-.447-.09-1.399-.129-1.843-.075m7.04 8.579v1.02H13.6V10.8h6.64zm0 3.32v.78h-1.8v1.48h1.8v1.04H13.6v-4.08h6.64z' }) })));
|
|
31
|
+
});
|
|
32
|
+
export default SvgEvolutionMagicBridge;
|
|
@@ -118,6 +118,7 @@ export { default as EvolutionDistributedTrainSVG } from './EvolutionDistributedT
|
|
|
118
118
|
export { default as EvolutionFoundationModelsSVG } from './EvolutionFoundationModels';
|
|
119
119
|
export { default as EvolutionHybridUsergateSVG } from './EvolutionHybridUsergate';
|
|
120
120
|
export { default as EvolutionIdentityAccessManagementSVG } from './EvolutionIdentityAccessManagement';
|
|
121
|
+
export { default as EvolutionMagicBridgeSVG } from './EvolutionMagicBridge';
|
|
121
122
|
export { default as EvolutionMlFinetuningSVG } from './EvolutionMlFinetuning';
|
|
122
123
|
export { default as EvolutionPipelineSVG } from './EvolutionPipeline';
|
|
123
124
|
export { default as EvolutionRepoSVG } from './EvolutionRepo';
|
|
@@ -118,6 +118,7 @@ export { default as EvolutionDistributedTrainSVG } from './EvolutionDistributedT
|
|
|
118
118
|
export { default as EvolutionFoundationModelsSVG } from './EvolutionFoundationModels';
|
|
119
119
|
export { default as EvolutionHybridUsergateSVG } from './EvolutionHybridUsergate';
|
|
120
120
|
export { default as EvolutionIdentityAccessManagementSVG } from './EvolutionIdentityAccessManagement';
|
|
121
|
+
export { default as EvolutionMagicBridgeSVG } from './EvolutionMagicBridge';
|
|
121
122
|
export { default as EvolutionMlFinetuningSVG } from './EvolutionMlFinetuning';
|
|
122
123
|
export { default as EvolutionPipelineSVG } from './EvolutionPipeline';
|
|
123
124
|
export { default as EvolutionRepoSVG } from './EvolutionRepo';
|
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.0
|
|
4
|
+
"version": "17.1.0",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"*.svg",
|
|
7
7
|
"*.css",
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"svgo": "3.3.2",
|
|
80
80
|
"yargs": "17.7.2"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "793fb323408ef28299ccf81b50722e89ad2a5eeb"
|
|
83
83
|
}
|