@cloud-ru/uikit-product-icons 17.1.1 → 17.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/service-icons/EvolutionPromptRegistry.d.ts +9 -0
- package/dist/cjs/components/service-icons/EvolutionPromptRegistry.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/EvolutionPromptRegistry.d.ts +9 -0
- package/dist/esm/components/service-icons/EvolutionPromptRegistry.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.2.0 (2026-04-03)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **PDS-3684:** add evo prompt registry icon ([32a9cdc](https://github.com/cloud-ru-tech/uikit-product/commit/32a9cdccb631d9db90947ec41c9d7d98735764af))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## 17.1.1 (2026-03-16)
|
|
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 SvgEvolutionPromptRegistry: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default SvgEvolutionPromptRegistry;
|
|
@@ -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 SvgEvolutionPromptRegistry = 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-prompt-registry';
|
|
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: 'm16.97 3.01-.53.531 1.64 1.639 1.64 1.64v12.9h1.48V6.18l-1.85-1.85-1.851-1.85zM4.2 5.62V8h1.52V4.76h6.94l1.77 1.77L16.2 8.3v9.94h-1.4v1.52h2.92V7.7l-2.23-2.23-2.23-2.23H4.2zm6.765 2.645c-.27.635-.512 1.176-.538 1.201s-.542.257-1.147.515c-.605.257-1.123.481-1.152.496-.03.016.414.226 1.06.501.612.26 1.149.496 1.194.523.053.033.251.45.576 1.216.272.642.508 1.152.524 1.135.016-.018.25-.549.52-1.18l.49-1.148 1.144-.488a32 32 0 0 0 1.176-.517c.018-.015-.495-.254-1.14-.53L12.5 9.487l-.487-1.134a48 48 0 0 0-.521-1.188c-.024-.039-.188.304-.527 1.1M4.209 13.13l.011 1.25H6.7l.011-1.25.01-1.25H4.199zM4.2 18.5v1.26h2.52v-2.52H4.2zm5.24 0v1.26h2.52v-2.52H9.44z' }) })));
|
|
66
|
+
});
|
|
67
|
+
exports.default = SvgEvolutionPromptRegistry;
|
|
@@ -121,6 +121,7 @@ export { default as EvolutionIdentityAccessManagementSVG } from './EvolutionIden
|
|
|
121
121
|
export { default as EvolutionMagicBridgeSVG } from './EvolutionMagicBridge';
|
|
122
122
|
export { default as EvolutionMlFinetuningSVG } from './EvolutionMlFinetuning';
|
|
123
123
|
export { default as EvolutionPipelineSVG } from './EvolutionPipeline';
|
|
124
|
+
export { default as EvolutionPromptRegistrySVG } from './EvolutionPromptRegistry';
|
|
124
125
|
export { default as EvolutionRepoSVG } from './EvolutionRepo';
|
|
125
126
|
export { default as EvolutionStackSVG } from './EvolutionStack';
|
|
126
127
|
export { default as ExchangeSVG } from './Exchange';
|
|
@@ -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 = exports.VMwareBackupServerSVG = void 0;
|
|
8
|
+
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.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 = void 0;
|
|
9
|
+
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 = exports.KeyManagementSVG = void 0;
|
|
10
|
+
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 = exports.MlInferenceSVG = void 0;
|
|
11
|
+
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 = exports.OracleSVG = 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 = 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");
|
|
@@ -256,6 +256,8 @@ var EvolutionMlFinetuning_1 = require("./EvolutionMlFinetuning");
|
|
|
256
256
|
Object.defineProperty(exports, "EvolutionMlFinetuningSVG", { enumerable: true, get: function () { return __importDefault(EvolutionMlFinetuning_1).default; } });
|
|
257
257
|
var EvolutionPipeline_1 = require("./EvolutionPipeline");
|
|
258
258
|
Object.defineProperty(exports, "EvolutionPipelineSVG", { enumerable: true, get: function () { return __importDefault(EvolutionPipeline_1).default; } });
|
|
259
|
+
var EvolutionPromptRegistry_1 = require("./EvolutionPromptRegistry");
|
|
260
|
+
Object.defineProperty(exports, "EvolutionPromptRegistrySVG", { enumerable: true, get: function () { return __importDefault(EvolutionPromptRegistry_1).default; } });
|
|
259
261
|
var EvolutionRepo_1 = require("./EvolutionRepo");
|
|
260
262
|
Object.defineProperty(exports, "EvolutionRepoSVG", { enumerable: true, get: function () { return __importDefault(EvolutionRepo_1).default; } });
|
|
261
263
|
var EvolutionStack_1 = require("./EvolutionStack");
|
|
@@ -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 SvgEvolutionPromptRegistry: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
|
|
9
|
+
export default SvgEvolutionPromptRegistry;
|
|
@@ -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 SvgEvolutionPromptRegistry = 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-prompt-registry';
|
|
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: 'm16.97 3.01-.53.531 1.64 1.639 1.64 1.64v12.9h1.48V6.18l-1.85-1.85-1.851-1.85zM4.2 5.62V8h1.52V4.76h6.94l1.77 1.77L16.2 8.3v9.94h-1.4v1.52h2.92V7.7l-2.23-2.23-2.23-2.23H4.2zm6.765 2.645c-.27.635-.512 1.176-.538 1.201s-.542.257-1.147.515c-.605.257-1.123.481-1.152.496-.03.016.414.226 1.06.501.612.26 1.149.496 1.194.523.053.033.251.45.576 1.216.272.642.508 1.152.524 1.135.016-.018.25-.549.52-1.18l.49-1.148 1.144-.488a32 32 0 0 0 1.176-.517c.018-.015-.495-.254-1.14-.53L12.5 9.487l-.487-1.134a48 48 0 0 0-.521-1.188c-.024-.039-.188.304-.527 1.1M4.209 13.13l.011 1.25H6.7l.011-1.25.01-1.25H4.199zM4.2 18.5v1.26h2.52v-2.52H4.2zm5.24 0v1.26h2.52v-2.52H9.44z' }) })));
|
|
31
|
+
});
|
|
32
|
+
export default SvgEvolutionPromptRegistry;
|
|
@@ -121,6 +121,7 @@ export { default as EvolutionIdentityAccessManagementSVG } from './EvolutionIden
|
|
|
121
121
|
export { default as EvolutionMagicBridgeSVG } from './EvolutionMagicBridge';
|
|
122
122
|
export { default as EvolutionMlFinetuningSVG } from './EvolutionMlFinetuning';
|
|
123
123
|
export { default as EvolutionPipelineSVG } from './EvolutionPipeline';
|
|
124
|
+
export { default as EvolutionPromptRegistrySVG } from './EvolutionPromptRegistry';
|
|
124
125
|
export { default as EvolutionRepoSVG } from './EvolutionRepo';
|
|
125
126
|
export { default as EvolutionStackSVG } from './EvolutionStack';
|
|
126
127
|
export { default as ExchangeSVG } from './Exchange';
|
|
@@ -121,6 +121,7 @@ export { default as EvolutionIdentityAccessManagementSVG } from './EvolutionIden
|
|
|
121
121
|
export { default as EvolutionMagicBridgeSVG } from './EvolutionMagicBridge';
|
|
122
122
|
export { default as EvolutionMlFinetuningSVG } from './EvolutionMlFinetuning';
|
|
123
123
|
export { default as EvolutionPipelineSVG } from './EvolutionPipeline';
|
|
124
|
+
export { default as EvolutionPromptRegistrySVG } from './EvolutionPromptRegistry';
|
|
124
125
|
export { default as EvolutionRepoSVG } from './EvolutionRepo';
|
|
125
126
|
export { default as EvolutionStackSVG } from './EvolutionStack';
|
|
126
127
|
export { default as ExchangeSVG } from './Exchange';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloud-ru/uikit-product-icons",
|
|
3
3
|
"title": "React Icons package",
|
|
4
|
-
"version": "17.
|
|
4
|
+
"version": "17.2.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": "7ab3fb759acc8f2f742b85ac3fefdc02540c58f6"
|
|
83
83
|
}
|