@cloud-ru/uikit-product-icons 17.6.0 → 17.7.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.
Files changed (30) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/cjs/components/interface-icons-product/Grpc.d.ts +9 -0
  3. package/dist/cjs/components/interface-icons-product/Grpc.js +67 -0
  4. package/dist/cjs/components/interface-icons-product/Http.d.ts +9 -0
  5. package/dist/cjs/components/interface-icons-product/Http.js +67 -0
  6. package/dist/cjs/components/interface-icons-product/index.d.ts +2 -0
  7. package/dist/cjs/components/interface-icons-product/index.js +10 -6
  8. package/dist/cjs/components/logo-icons/GigaAgentLogo/GigaAgentLogoDark.d.ts +9 -0
  9. package/dist/cjs/components/logo-icons/GigaAgentLogo/GigaAgentLogoDark.js +67 -0
  10. package/dist/cjs/components/logo-icons/GigaAgentLogo/GigaAgentLogoLight.d.ts +9 -0
  11. package/dist/cjs/components/logo-icons/GigaAgentLogo/GigaAgentLogoLight.js +67 -0
  12. package/dist/cjs/components/logo-icons/GigaAgentLogo/index.d.ts +3 -0
  13. package/dist/cjs/components/logo-icons/GigaAgentLogo/index.js +16 -0
  14. package/dist/cjs/components/logo-icons/index.d.ts +1 -0
  15. package/dist/cjs/components/logo-icons/index.js +5 -3
  16. package/dist/esm/components/interface-icons-product/Grpc.d.ts +9 -0
  17. package/dist/esm/components/interface-icons-product/Grpc.js +32 -0
  18. package/dist/esm/components/interface-icons-product/Http.d.ts +9 -0
  19. package/dist/esm/components/interface-icons-product/Http.js +32 -0
  20. package/dist/esm/components/interface-icons-product/index.d.ts +2 -0
  21. package/dist/esm/components/interface-icons-product/index.js +2 -0
  22. package/dist/esm/components/logo-icons/GigaAgentLogo/GigaAgentLogoDark.d.ts +9 -0
  23. package/dist/esm/components/logo-icons/GigaAgentLogo/GigaAgentLogoDark.js +32 -0
  24. package/dist/esm/components/logo-icons/GigaAgentLogo/GigaAgentLogoLight.d.ts +9 -0
  25. package/dist/esm/components/logo-icons/GigaAgentLogo/GigaAgentLogoLight.js +32 -0
  26. package/dist/esm/components/logo-icons/GigaAgentLogo/index.d.ts +3 -0
  27. package/dist/esm/components/logo-icons/GigaAgentLogo/index.js +11 -0
  28. package/dist/esm/components/logo-icons/index.d.ts +1 -0
  29. package/dist/esm/components/logo-icons/index.js +1 -0
  30. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -3,6 +3,18 @@
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.7.0 (2026-07-21)
7
+
8
+
9
+ ### Features
10
+
11
+ * **FF-8780:** add grpc and http icons ([494de2e](https://github.com/cloud-ru-tech/uikit-product/commit/494de2ed9779ea84505f1c9faab3b6ecae5e9589))
12
+ * **PDS-4061:** add giga logo ([c969e8c](https://github.com/cloud-ru-tech/uikit-product/commit/c969e8cfe1af346dbe588f6a34b3c012c99d3103))
13
+
14
+
15
+
16
+
17
+
6
18
  # 17.6.0 (2026-07-07)
7
19
 
8
20
 
@@ -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 SvgGrpc: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgGrpc;
@@ -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 SvgGrpc = 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-grpc';
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: 'M6.78 7.086C4.14 9.771 1.98 11.982 1.98 12c0 .035 9.57 9.771 9.626 9.793.019.008.034-1.658.034-3.702v-3.715l-.144-.138c-.079-.076-.432-.44-.784-.808l-.641-.67h7.168l.011 2.15.01 2.15 2.11-2.53L21.481 12 19.37 9.47l-2.11-2.53-.01 2.15-.011 2.15h-7.168l.641-.67c.352-.369.705-.732.784-.808l.144-.138V5.912c0-2.042-.013-3.711-.03-3.71-.017.002-2.19 2.2-4.83 4.884m3.34.351v1.597l-1.464 1.483L7.191 12l1.465 1.483 1.464 1.483v3.187l-1.332-1.346c-3.168-3.202-4.709-4.783-4.697-4.82.011-.032 5.989-6.135 6.019-6.144.005-.002.01.716.01 1.594' }) })));
66
+ });
67
+ exports.default = SvgGrpc;
@@ -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 SvgHttp: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgHttp;
@@ -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 SvgHttp = 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-http';
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.7v12.6l1.23 1.23 1.23 1.23h12.6l1.23-1.23 1.23-1.23V5.7l-1.23-1.23-1.23-1.23H5.7zm14 1.06.77.769v11.4l-.77.771-.769.77H6.299l-.769-.77-.77-.771V6.301l.77-.771.769-.77h11.4zm-5.21 4.32c-.074.212-1.975 6.928-1.965 6.939.042.041 1.406.405 1.427.381.034-.04 2-6.941 1.983-6.959a45 45 0 0 0-1.416-.411c-.006 0-.019.022-.029.05m3 0c-.074.212-1.975 6.928-1.965 6.939.042.041 1.406.405 1.427.381.034-.04 2-6.941 1.983-6.959a45 45 0 0 0-1.416-.411c-.006 0-.019.022-.029.05m-7.983.432c-.776.126-1.241 1.005-.91 1.721a1.24 1.24 0 0 0 2.266 0c.08-.172.104-.287.104-.503 0-.775-.684-1.345-1.46-1.218m0 4c-.776.126-1.241 1.005-.91 1.721a1.24 1.24 0 0 0 2.266 0c.08-.172.104-.287.104-.503 0-.775-.684-1.345-1.46-1.218' }) })));
66
+ });
67
+ exports.default = SvgHttp;
@@ -222,6 +222,7 @@ export { default as GitVerseSVG } from './GitVerse';
222
222
  export { default as GlobeSVG } from './Globe';
223
223
  export { default as GlobeShieldSVG } from './GlobeShield';
224
224
  export { default as GpuSVG } from './Gpu';
225
+ export { default as GrpcSVG } from './Grpc';
225
226
  export { default as HabrSVG } from './Habr';
226
227
  export { default as HandLikeSVG } from './HandLike';
227
228
  export { default as HandshakeSVG } from './Handshake';
@@ -233,6 +234,7 @@ export { default as HomeFilledSVG } from './HomeFilled';
233
234
  export { default as HorizontalMenuCloseSVG } from './HorizontalMenuClose';
234
235
  export { default as HorizontalMenuOpenSVG } from './HorizontalMenuOpen';
235
236
  export { default as HrSVG } from './Hr';
237
+ export { default as HttpSVG } from './Http';
236
238
  export { default as HybridCloudSVG } from './HybridCloud';
237
239
  export { default as HypervisorSVG } from './Hypervisor';
238
240
  export { default as IaaSCloudSVG } from './IaaSCloud';
@@ -7,12 +7,12 @@ exports.AccessibilitySVG = exports.AcceptSVG = exports.AcceleratorSVG = exports.
7
7
  exports.ChartPlusSVG = exports.CertificateStarSVG = exports.CertificatePlainSVG = exports.CaseStorageSVG = exports.CaseSVG = exports.CarSVG = 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 = void 0;
8
8
  exports.DatabaseSearchSVG = exports.DatabaseClusterSVG = exports.DatabaseBackupSVG = exports.DatabaseSVG = exports.Data1SVG = exports.DataSVG = 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 = void 0;
9
9
  exports.FederationSVG = exports.FeaturedFilledSVG = exports.FeaturedSVG = exports.FaultTolerantCloudSVG = exports.FailedCrossSVG = exports.ExternalIpSVG = 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 = void 0;
10
- exports.KiteSVG = exports.KeySVG = exports.IpSubnetSVG = exports.IpBlockSVG = exports.InventorySVG = exports.IntruderSVG = exports.InternetSVG = exports.InterfaceSVG = exports.InstanceSVG = exports.InfraElementSVG = exports.InfoOutlineSVG = exports.IndustrialBuildingSVG = exports.IaaSCloudSVG = exports.HypervisorSVG = exports.HybridCloudSVG = exports.HrSVG = exports.HorizontalMenuOpenSVG = exports.HorizontalMenuCloseSVG = exports.HomeFilledSVG = exports.HeadphonesMicrophoneSVG = exports.HeadphonesSVG = exports.HardDriveSVG = exports.HardDiskSVG = exports.HandshakeSVG = exports.HandLikeSVG = exports.HabrSVG = 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 = void 0;
11
- exports.OnPremiseSVG = exports.OfficeTableSVG = exports.ObjectsSVG = exports.ObjectStorageSVG = exports.NumberedResourcesSVG = exports.NormalScreenSVG = exports.NoPhoneSVG = exports.NetworkInterfacesSVG = 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 = void 0;
12
- exports.RegionSVG = exports.RecordSVG = exports.RamSVG = exports.RackServerSVG = exports.RackSVG = exports.QuotaSVG = exports.QuestionRoundSVG = exports.QuestionFilledSVG = 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 = void 0;
13
- exports.SortSVG = exports.SobrSVG = exports.SnowSVG = exports.SnapshotSVG = exports.Smile2SVG = exports.SmileSVG = exports.SmartwatchSVG = exports.ShopSVG = 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 = void 0;
14
- exports.VelocitySVG = exports.UsersSVG = exports.UserSearchSVG = exports.UserLaptopSVG = exports.UserInvitationSVG = exports.UserHeartSVG = exports.UserFederationSVG = exports.UserAddSVG = 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 = 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 = void 0;
10
+ exports.IpSubnetSVG = exports.IpBlockSVG = exports.InventorySVG = exports.IntruderSVG = exports.InternetSVG = exports.InterfaceSVG = 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 = void 0;
11
+ exports.ObjectsSVG = exports.ObjectStorageSVG = exports.NumberedResourcesSVG = exports.NormalScreenSVG = exports.NoPhoneSVG = exports.NetworkInterfacesSVG = 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 = void 0;
12
+ exports.RamSVG = exports.RackServerSVG = exports.RackSVG = exports.QuotaSVG = exports.QuestionRoundSVG = exports.QuestionFilledSVG = 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 = void 0;
13
+ exports.SnowSVG = exports.SnapshotSVG = exports.Smile2SVG = exports.SmileSVG = exports.SmartwatchSVG = exports.ShopSVG = 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 = void 0;
14
+ exports.UserSearchSVG = exports.UserLaptopSVG = exports.UserInvitationSVG = exports.UserHeartSVG = exports.UserFederationSVG = exports.UserAddSVG = 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 = 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 = 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");
@@ -461,6 +461,8 @@ var GlobeShield_1 = require("./GlobeShield");
461
461
  Object.defineProperty(exports, "GlobeShieldSVG", { enumerable: true, get: function () { return __importDefault(GlobeShield_1).default; } });
462
462
  var Gpu_1 = require("./Gpu");
463
463
  Object.defineProperty(exports, "GpuSVG", { enumerable: true, get: function () { return __importDefault(Gpu_1).default; } });
464
+ var Grpc_1 = require("./Grpc");
465
+ Object.defineProperty(exports, "GrpcSVG", { enumerable: true, get: function () { return __importDefault(Grpc_1).default; } });
464
466
  var Habr_1 = require("./Habr");
465
467
  Object.defineProperty(exports, "HabrSVG", { enumerable: true, get: function () { return __importDefault(Habr_1).default; } });
466
468
  var HandLike_1 = require("./HandLike");
@@ -483,6 +485,8 @@ var HorizontalMenuOpen_1 = require("./HorizontalMenuOpen");
483
485
  Object.defineProperty(exports, "HorizontalMenuOpenSVG", { enumerable: true, get: function () { return __importDefault(HorizontalMenuOpen_1).default; } });
484
486
  var Hr_1 = require("./Hr");
485
487
  Object.defineProperty(exports, "HrSVG", { enumerable: true, get: function () { return __importDefault(Hr_1).default; } });
488
+ var Http_1 = require("./Http");
489
+ Object.defineProperty(exports, "HttpSVG", { enumerable: true, get: function () { return __importDefault(Http_1).default; } });
486
490
  var HybridCloud_1 = require("./HybridCloud");
487
491
  Object.defineProperty(exports, "HybridCloudSVG", { enumerable: true, get: function () { return __importDefault(HybridCloud_1).default; } });
488
492
  var Hypervisor_1 = require("./Hypervisor");
@@ -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 SvgGigaAgentLogoDark: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgGigaAgentLogoDark;
@@ -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 SvgGigaAgentLogoDark = React.forwardRef((_a, ref) => {
51
+ var { size } = _a, props = __rest(_a, ["size"]);
52
+ props.width = undefined;
53
+ props.height = undefined;
54
+ const testId = 'icon-giga-agent-logo-dark';
55
+ const style = {};
56
+ const isCustomSize = typeof size === 'number';
57
+ if (isCustomSize) {
58
+ style.width = size + 'px';
59
+ style.height = size + 'px';
60
+ if (!props.style)
61
+ props.style = {};
62
+ props.style.width = size + 'px';
63
+ props.style.height = size + 'px';
64
+ }
65
+ return ((0, jsx_runtime_1.jsxs)("svg", Object.assign({ xmlns: 'http://www.w3.org/2000/svg', width: 65, height: 24, fill: 'none', viewBox: '0 0 65 24', "data-test-id": testId, ref: ref }, props, { children: [(0, jsx_runtime_1.jsx)("g", { fill: '#fff', clipPath: 'url(#GigaAgentLogoDark_svg__a)', children: (0, jsx_runtime_1.jsx)("path", { d: 'M35.758 14.913a.14.14 0 0 1-.141.143H29.19a.14.14 0 0 0-.142.142v.64c0 .079.063.142.142.142h6.326c.078 0 .14.063.14.142V18.3a.14.14 0 0 1-.14.142H29.19a.14.14 0 0 0-.142.142v.742c0 .08.063.142.142.142h6.49c.078 0 .14.064.14.143v2.24a.14.14 0 0 1-.14.143H25.001a.14.14 0 0 1-.142-.143v-9.16c0-.078.063-.141.142-.141h10.615c.078 0 .141.063.141.142zM64.859 12.555h-12.87a.14.14 0 0 0-.14.142v2.673c0 .079.062.142.14.142h4.162c.077 0 .142.063.142.142v6.203c0 .079.062.142.14.142h3.981a.14.14 0 0 0 .142-.142v-6.203c0-.08.063-.142.141-.142h4.16a.14.14 0 0 0 .142-.143v-2.672a.14.14 0 0 0-.142-.142zM23.62 12.555h-7.96a.14.14 0 0 0-.14.142v7.944c0 .144-.192.193-.26.066l-4.34-8.094a.11.11 0 0 0-.101-.06H4.765a.12.12 0 0 0-.103.062L.01 21.845c-.037.071.02.155.103.155h4.279a.12.12 0 0 0 .104-.064l.551-1.18a.12.12 0 0 1 .105-.064h5.132c.043 0 .083.024.102.063l.565 1.18c.018.04.06.064.103.064h8.575a.14.14 0 0 0 .142-.142V15.45c0-.079.062-.142.14-.142h3.71a.14.14 0 0 0 .14-.142v-2.469a.14.14 0 0 0-.14-.142M6.477 18.087c-.082 0-.138-.08-.103-.152l1.209-2.54c.04-.083.165-.083.205 0l1.231 2.54c.035.07-.02.152-.103.152zM40.96 21.999h-3.968a.14.14 0 0 1-.14-.142v-9.16c0-.079.062-.142.14-.142h3.967c.079 0 .141.063.141.142v2.94c0 .078.063.141.142.141h5.103a.14.14 0 0 0 .141-.142v-2.939c0-.079.063-.142.142-.142h3.98c.079 0 .142.063.142.142v9.16a.14.14 0 0 1-.142.142h-3.98a.14.14 0 0 1-.142-.142v-3.18a.14.14 0 0 0-.14-.142h-5.104a.14.14 0 0 0-.142.142v3.18a.14.14 0 0 1-.14.142M.782 11.448h3.969a.14.14 0 0 0 .141-.142V4.899c0-.079.063-.142.141-.142h3.958a.14.14 0 0 0 .142-.142V2.146a.14.14 0 0 0-.142-.142H.782a.14.14 0 0 0-.14.142v9.16c0 .079.062.142.14.142M28.97 11.448a.14.14 0 0 0 .141-.142V4.899c0-.079.063-.142.142-.142h3.958a.14.14 0 0 0 .14-.142V2.146a.14.14 0 0 0-.14-.142H25a.14.14 0 0 0-.142.142v9.16c0 .079.063.142.142.142zM10.37 11.448h4.048a.14.14 0 0 0 .104-.048l4.743-5.278a.14.14 0 0 1 .246.095v5.087c0 .079.063.142.141.142h3.968a.14.14 0 0 0 .142-.142V2.146a.14.14 0 0 0-.142-.142h-4.046a.14.14 0 0 0-.105.047L14.726 7.34a.14.14 0 0 1-.246-.095V2.146a.14.14 0 0 0-.14-.142h-3.97a.14.14 0 0 0-.14.142v9.16c0 .079.062.142.14.142M35.92 10.14a.12.12 0 0 0-.105.066l-.55 1.179a.12.12 0 0 1-.105.065H30.88a.11.11 0 0 1-.103-.157l4.654-9.231A.11.11 0 0 1 35.535 2h6.054c.041 0 .082.023.1.06l4.95 9.23c.037.072-.017.158-.102.158h-4.713a.11.11 0 0 1-.103-.063l-.565-1.181a.12.12 0 0 0-.103-.064zm3.867-2.758-1.23-2.539c-.042-.084-.166-.084-.206 0l-1.209 2.54c-.035.071.021.152.103.152h2.438c.082 0 .138-.083.103-.155z' }) }), (0, jsx_runtime_1.jsx)("defs", { children: (0, jsx_runtime_1.jsx)("clipPath", { id: 'GigaAgentLogoDark_svg__a', children: (0, jsx_runtime_1.jsx)("path", { fill: '#fff', d: 'M0 0h65v24H0z' }) }) })] })));
66
+ });
67
+ exports.default = SvgGigaAgentLogoDark;
@@ -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 SvgGigaAgentLogoLight: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgGigaAgentLogoLight;
@@ -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 SvgGigaAgentLogoLight = React.forwardRef((_a, ref) => {
51
+ var { size } = _a, props = __rest(_a, ["size"]);
52
+ props.width = undefined;
53
+ props.height = undefined;
54
+ const testId = 'icon-giga-agent-logo-light';
55
+ const style = {};
56
+ const isCustomSize = typeof size === 'number';
57
+ if (isCustomSize) {
58
+ style.width = size + 'px';
59
+ style.height = size + 'px';
60
+ if (!props.style)
61
+ props.style = {};
62
+ props.style.width = size + 'px';
63
+ props.style.height = size + 'px';
64
+ }
65
+ return ((0, jsx_runtime_1.jsxs)("svg", Object.assign({ xmlns: 'http://www.w3.org/2000/svg', width: 65, height: 24, fill: 'none', viewBox: '0 0 65 24', "data-test-id": testId, ref: ref }, props, { children: [(0, jsx_runtime_1.jsx)("g", { fill: '#000', clipPath: 'url(#GigaAgentLogoLight_svg__a)', children: (0, jsx_runtime_1.jsx)("path", { d: 'M35.758 14.913a.14.14 0 0 1-.141.142H29.19a.14.14 0 0 0-.142.142v.64c0 .08.063.143.142.143h6.326c.078 0 .14.063.14.142v2.177a.14.14 0 0 1-.14.143H29.19a.14.14 0 0 0-.142.142v.742c0 .079.063.142.142.142h6.49c.078 0 .14.063.14.142v2.24a.14.14 0 0 1-.14.143H25.001a.14.14 0 0 1-.142-.142v-9.16c0-.079.063-.142.142-.142h10.615c.078 0 .141.063.141.142zM64.859 12.555h-12.87a.14.14 0 0 0-.14.142v2.672c0 .079.062.142.14.142h4.162c.077 0 .142.063.142.142v6.203c0 .08.062.142.14.142h3.981a.14.14 0 0 0 .142-.142v-6.203c0-.079.063-.142.141-.142h4.16A.14.14 0 0 0 65 15.37v-2.672a.14.14 0 0 0-.142-.142zM23.62 12.554h-7.96a.14.14 0 0 0-.14.143v7.943c0 .144-.192.193-.26.067l-4.34-8.095a.11.11 0 0 0-.101-.06H4.765a.12.12 0 0 0-.103.062L.01 21.844c-.037.072.02.156.103.156h4.279a.12.12 0 0 0 .104-.065l.551-1.18a.12.12 0 0 1 .105-.064h5.132c.043 0 .083.025.102.063l.565 1.181c.018.039.06.063.103.063h8.575a.14.14 0 0 0 .142-.142V15.45c0-.08.062-.142.14-.142h3.71a.14.14 0 0 0 .14-.143v-2.468a.14.14 0 0 0-.14-.143M6.477 18.087c-.082 0-.138-.08-.103-.153l1.209-2.539c.04-.084.165-.084.205 0l1.231 2.54c.035.07-.02.152-.103.152zM40.96 21.998h-3.968a.14.14 0 0 1-.14-.142v-9.16c0-.078.062-.141.14-.141h3.967c.079 0 .141.063.141.142v2.939c0 .079.063.142.142.142h5.103a.14.14 0 0 0 .141-.142v-2.94c0-.078.063-.141.142-.141h3.98c.079 0 .142.063.142.142v9.16a.14.14 0 0 1-.142.141h-3.98a.14.14 0 0 1-.142-.142v-3.18a.14.14 0 0 0-.14-.141h-5.104a.14.14 0 0 0-.142.142v3.18a.14.14 0 0 1-.14.141M.782 11.447h3.969a.14.14 0 0 0 .141-.142V4.9c0-.08.063-.142.141-.142h3.958a.14.14 0 0 0 .142-.142v-2.47a.14.14 0 0 0-.142-.141H.782a.14.14 0 0 0-.14.142v9.16c0 .078.062.141.14.141M28.97 11.447a.14.14 0 0 0 .141-.142V4.9c0-.08.063-.142.142-.142h3.958a.14.14 0 0 0 .14-.142v-2.47a.14.14 0 0 0-.14-.141H25a.14.14 0 0 0-.142.142v9.16c0 .078.063.141.142.141zM10.37 11.447h4.048a.14.14 0 0 0 .104-.047l4.743-5.278a.14.14 0 0 1 .246.095v5.086c0 .08.063.143.141.143h3.968a.14.14 0 0 0 .142-.143V2.146a.14.14 0 0 0-.142-.142h-4.046a.14.14 0 0 0-.105.047L14.726 7.34a.14.14 0 0 1-.246-.095v-5.1a.14.14 0 0 0-.14-.141h-3.97a.14.14 0 0 0-.14.142v9.16c0 .078.062.141.14.141M35.92 10.14a.12.12 0 0 0-.105.065l-.55 1.18a.12.12 0 0 1-.105.064H30.88a.11.11 0 0 1-.103-.156l4.654-9.232A.11.11 0 0 1 35.535 2h6.054c.041 0 .082.023.1.06l4.95 9.23c.037.071-.017.157-.102.157h-4.713a.11.11 0 0 1-.103-.063l-.565-1.18a.12.12 0 0 0-.103-.064zm3.867-2.758-1.23-2.54c-.042-.084-.166-.084-.206 0l-1.209 2.54c-.035.072.021.152.103.152h2.438c.082 0 .138-.082.103-.154z' }) }), (0, jsx_runtime_1.jsx)("defs", { children: (0, jsx_runtime_1.jsx)("clipPath", { id: 'GigaAgentLogoLight_svg__a', children: (0, jsx_runtime_1.jsx)("path", { fill: '#fff', d: 'M0 0h65v24H0z' }) }) })] })));
66
+ });
67
+ exports.default = SvgGigaAgentLogoLight;
@@ -0,0 +1,3 @@
1
+ import { ISvgIconProps } from './GigaAgentLogoLight';
2
+ declare const GigaAgentLogoSvg: import("react").ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default GigaAgentLogoSvg;
@@ -0,0 +1,16 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ const jsx_runtime_1 = require("react/jsx-runtime");
7
+ const react_1 = require("react");
8
+ const GigaAgentLogoLight_1 = __importDefault(require("./GigaAgentLogoLight"));
9
+ const GigaAgentLogoDark_1 = __importDefault(require("./GigaAgentLogoDark"));
10
+ const utils_1 = require("../../utils");
11
+ const GigaAgentLogoSvg = (0, react_1.forwardRef)(function GigaAgentLogoSvg(props, ref) {
12
+ const { isDarkTheme } = (0, utils_1.useThemeModification)();
13
+ const { isDarkBrand } = (0, utils_1.useBrandModification)();
14
+ return isDarkTheme || isDarkBrand ? ((0, jsx_runtime_1.jsx)(GigaAgentLogoDark_1.default, Object.assign({}, props, { ref: ref }))) : ((0, jsx_runtime_1.jsx)(GigaAgentLogoLight_1.default, Object.assign({}, props, { ref: ref })));
15
+ });
16
+ exports.default = GigaAgentLogoSvg;
@@ -40,6 +40,7 @@ export { default as FirefoxBrowserLogoSVG } from './FirefoxBrowserLogo';
40
40
  export { default as FluentbitLogoSVG } from './FluentbitLogo';
41
41
  export { default as GatekeeperLogoSVG } from './GatekeeperLogo';
42
42
  export { default as GeminiLogoSVG } from './GeminiLogo';
43
+ export { default as GigaAgentLogoSVG } from './GigaAgentLogo';
43
44
  export { default as GigaChatLogoSVG } from './GigaChatLogo';
44
45
  export { default as GigaIDELogoSVG } from './GigaIDELogo';
45
46
  export { default as GigaStudioLogoSVG } from './GigaStudioLogo';
@@ -3,9 +3,9 @@ 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.GolosLogoSVG = exports.GoLogoSVG = exports.GitlabLogoSVG = exports.GitVerseLogoSVG = exports.GitHubLogoSVG = exports.GigaStudioLogoSVG = exports.GigaIDELogoSVG = exports.GigaChatLogoSVG = exports.GeminiLogoSVG = exports.GatekeeperLogoSVG = exports.FluentbitLogoSVG = exports.FirefoxBrowserLogoSVG = exports.FedoraLogoSVG = exports.ExternaldnsLogoSVG = exports.EsoLogoSVG = exports.DrupalLogoSVG = exports.DockerLogoSVG = exports.DjangoLogoSVG = exports.DisplayvideoLogoSVG = exports.DeepseekLogoSVG = exports.DebianLogoSVG = exports.CsharpLogoSVG = exports.CplusLogoSVG = exports.CorednsLogoSVG = exports.ConnaisseuerLogoSVG = exports.CloudSqlLogoSVG = exports.CloudSpannerLogoSVG = exports.CloudLogoStageSVG = exports.CloudLogoHybridSVG = exports.CloudLogoDevSVG = exports.CloudLogoSVG = exports.CloudFullLogoSVG = exports.ClickhouseLogoSVG = exports.ClaudeSonnetLogoSVG = exports.CiliumLogoSVG = exports.ChromiumBrowserLogoSVG = exports.CertmanagerLogoSVG = exports.CampaignManagerLogoSVG = exports.CalicoLogoSVG = exports.CSIS3LogoSVG = exports.CSIDriverLogoSVG = exports.BootcampLogoSVG = exports.BigQueryLogoSVG = exports.BaaiLogoSVG = exports.AzureLogoSVG = exports.ApacheLogoSVG = exports.AmazonLogoSVG = exports.AlmaLinuxLogoSVG = exports.AiCloudLogoSVG = exports.AgentSandboxLogoSVG = void 0;
7
- exports.OpenClawLogoSVG = exports.OpenAiChatGptLogoSVG = exports.NvidiaNemoLogoSVG = exports.NvidiaLogoSVG = exports.NpmLogoSVG = exports.NodejsLogoSVG = exports.NodeexporterLogoSVG = exports.NginxLogoSVG = exports.NginxIngressLogoSVG = exports.NemoClawLogoSVG = exports.N8nLogoSVG = exports.MysqlLogoSVG = exports.MsSqlLogoSVG = exports.ModxLogoSVG = exports.MlflowLogoSVG = exports.MlSpaceLogoSVG = exports.MlSpaceFullLogoSVG = exports.MistralAiLogoSVG = exports.MaxLogoSVG = exports.MattermostLogoSVG = exports.ManagedServiceForRedisLogoSVG = exports.LempLogoSVG = exports.KyvernoLogoSVG = exports.KubestatemetricsLogoSVG = exports.KuberLogoSVG = exports.KotlinLogoSVG = exports.KedaLogoSVG = exports.KatadeployLogoSVG = exports.KaggleLogoSVG = exports.K8sgptLogoSVG = exports.K8scleanerLogoSVG = exports.JupiterLogoSVG = exports.JoomlaLogoSVG = exports.JenkinsLogoSVG = exports.JazzLogoSVG = exports.JavaLogoSVG = exports.IstioLogoSVG = exports.IndextsLogoSVG = exports.HuggingfaceLogoSVG = exports.HorovodLogoSVG = exports.HiveLogoSVG = exports.HelmLogoSVG = exports.HdfsLogoSVG = exports.GoogleadManagerLogoSVG = exports.GoogleSheetsLogoSVG = exports.GoogleCloudStorageLogoSVG = exports.GoogleCloudPlatformLogoSVG = exports.GoogleChromeBrowserLogoSVG = exports.GoogleAnalyticsLogoSVG = exports.GoogleAdsLogoSVG = void 0;
8
- exports.YandexBrowserLogoSVG = exports.WordPressLogoSVG = exports.WindowsServerLogoSVG = exports.WhatsAppLogoSVG = exports.VmwareLogoSVG = exports.VmagentLogoSVG = exports.UbuntuLogoSVG = exports.TtechLogoSVG = exports.TrivyLogoSVG = exports.TelegramLogoSVG = exports.T5LogoSVG = exports.SynapseservicemeshLogoSVG = exports.StrongSwanLogoSVG = exports.SpegelLogoSVG = exports.SparkLogoSVG = exports.SentosLogoSVG = exports.SberLogoSVG = exports.SberBusinessLogoSVG = exports.SafariBrowserLogoSVG = exports.RustLogoSVG = exports.RubyStackLogoSVG = exports.RuDalleLogoSVG = exports.RockyLinuxLogoSVG = exports.ReloaderLogoSVG = exports.RedshiftLogoSVG = exports.RedmineLogoSVG = exports.ReactLogoSVG = exports.RPMLogoSVG = exports.QwenLogoSVG = exports.PytorchLogoSVG = exports.PythonLogoSVG = exports.ProxmoxLogoSVG = exports.PostgreLogoSVG = exports.PlatformvLogoSVG = exports.PerplexityLogoSVG = exports.OvirtLogoSVG = exports.OuroborosLogoSVG = exports.OrasLogoSVG = exports.OracleLogoSVG = exports.OracleLinuxLogoSVG = exports.OpencartLogoSVG = exports.OpenSuseLogoSVG = exports.OpenStackLogoSVG = exports.OpenContainerInitiativeLogoSVG = void 0;
6
+ exports.GoLogoSVG = exports.GitlabLogoSVG = exports.GitVerseLogoSVG = exports.GitHubLogoSVG = exports.GigaStudioLogoSVG = exports.GigaIDELogoSVG = exports.GigaChatLogoSVG = exports.GigaAgentLogoSVG = exports.GeminiLogoSVG = exports.GatekeeperLogoSVG = exports.FluentbitLogoSVG = exports.FirefoxBrowserLogoSVG = exports.FedoraLogoSVG = exports.ExternaldnsLogoSVG = exports.EsoLogoSVG = exports.DrupalLogoSVG = exports.DockerLogoSVG = exports.DjangoLogoSVG = exports.DisplayvideoLogoSVG = exports.DeepseekLogoSVG = exports.DebianLogoSVG = exports.CsharpLogoSVG = exports.CplusLogoSVG = exports.CorednsLogoSVG = exports.ConnaisseuerLogoSVG = exports.CloudSqlLogoSVG = exports.CloudSpannerLogoSVG = exports.CloudLogoStageSVG = exports.CloudLogoHybridSVG = exports.CloudLogoDevSVG = exports.CloudLogoSVG = exports.CloudFullLogoSVG = exports.ClickhouseLogoSVG = exports.ClaudeSonnetLogoSVG = exports.CiliumLogoSVG = exports.ChromiumBrowserLogoSVG = exports.CertmanagerLogoSVG = exports.CampaignManagerLogoSVG = exports.CalicoLogoSVG = exports.CSIS3LogoSVG = exports.CSIDriverLogoSVG = exports.BootcampLogoSVG = exports.BigQueryLogoSVG = exports.BaaiLogoSVG = exports.AzureLogoSVG = exports.ApacheLogoSVG = exports.AmazonLogoSVG = exports.AlmaLinuxLogoSVG = exports.AiCloudLogoSVG = exports.AgentSandboxLogoSVG = void 0;
7
+ exports.OpenAiChatGptLogoSVG = exports.NvidiaNemoLogoSVG = exports.NvidiaLogoSVG = exports.NpmLogoSVG = exports.NodejsLogoSVG = exports.NodeexporterLogoSVG = exports.NginxLogoSVG = exports.NginxIngressLogoSVG = exports.NemoClawLogoSVG = exports.N8nLogoSVG = exports.MysqlLogoSVG = exports.MsSqlLogoSVG = exports.ModxLogoSVG = exports.MlflowLogoSVG = exports.MlSpaceLogoSVG = exports.MlSpaceFullLogoSVG = exports.MistralAiLogoSVG = exports.MaxLogoSVG = exports.MattermostLogoSVG = exports.ManagedServiceForRedisLogoSVG = exports.LempLogoSVG = exports.KyvernoLogoSVG = exports.KubestatemetricsLogoSVG = exports.KuberLogoSVG = exports.KotlinLogoSVG = exports.KedaLogoSVG = exports.KatadeployLogoSVG = exports.KaggleLogoSVG = exports.K8sgptLogoSVG = exports.K8scleanerLogoSVG = exports.JupiterLogoSVG = exports.JoomlaLogoSVG = exports.JenkinsLogoSVG = exports.JazzLogoSVG = exports.JavaLogoSVG = exports.IstioLogoSVG = exports.IndextsLogoSVG = exports.HuggingfaceLogoSVG = exports.HorovodLogoSVG = exports.HiveLogoSVG = exports.HelmLogoSVG = exports.HdfsLogoSVG = exports.GoogleadManagerLogoSVG = exports.GoogleSheetsLogoSVG = exports.GoogleCloudStorageLogoSVG = exports.GoogleCloudPlatformLogoSVG = exports.GoogleChromeBrowserLogoSVG = exports.GoogleAnalyticsLogoSVG = exports.GoogleAdsLogoSVG = exports.GolosLogoSVG = void 0;
8
+ exports.YandexBrowserLogoSVG = exports.WordPressLogoSVG = exports.WindowsServerLogoSVG = exports.WhatsAppLogoSVG = exports.VmwareLogoSVG = exports.VmagentLogoSVG = exports.UbuntuLogoSVG = exports.TtechLogoSVG = exports.TrivyLogoSVG = exports.TelegramLogoSVG = exports.T5LogoSVG = exports.SynapseservicemeshLogoSVG = exports.StrongSwanLogoSVG = exports.SpegelLogoSVG = exports.SparkLogoSVG = exports.SentosLogoSVG = exports.SberLogoSVG = exports.SberBusinessLogoSVG = exports.SafariBrowserLogoSVG = exports.RustLogoSVG = exports.RubyStackLogoSVG = exports.RuDalleLogoSVG = exports.RockyLinuxLogoSVG = exports.ReloaderLogoSVG = exports.RedshiftLogoSVG = exports.RedmineLogoSVG = exports.ReactLogoSVG = exports.RPMLogoSVG = exports.QwenLogoSVG = exports.PytorchLogoSVG = exports.PythonLogoSVG = exports.ProxmoxLogoSVG = exports.PostgreLogoSVG = exports.PlatformvLogoSVG = exports.PerplexityLogoSVG = exports.OvirtLogoSVG = exports.OuroborosLogoSVG = exports.OrasLogoSVG = exports.OracleLogoSVG = exports.OracleLinuxLogoSVG = exports.OpencartLogoSVG = exports.OpenSuseLogoSVG = exports.OpenStackLogoSVG = exports.OpenContainerInitiativeLogoSVG = exports.OpenClawLogoSVG = void 0;
9
9
  var AgentSandboxLogo_1 = require("./AgentSandboxLogo");
10
10
  Object.defineProperty(exports, "AgentSandboxLogoSVG", { enumerable: true, get: function () { return __importDefault(AgentSandboxLogo_1).default; } });
11
11
  var AiCloudLogo_1 = require("./AiCloudLogo");
@@ -90,6 +90,8 @@ var GatekeeperLogo_1 = require("./GatekeeperLogo");
90
90
  Object.defineProperty(exports, "GatekeeperLogoSVG", { enumerable: true, get: function () { return __importDefault(GatekeeperLogo_1).default; } });
91
91
  var GeminiLogo_1 = require("./GeminiLogo");
92
92
  Object.defineProperty(exports, "GeminiLogoSVG", { enumerable: true, get: function () { return __importDefault(GeminiLogo_1).default; } });
93
+ var GigaAgentLogo_1 = require("./GigaAgentLogo");
94
+ Object.defineProperty(exports, "GigaAgentLogoSVG", { enumerable: true, get: function () { return __importDefault(GigaAgentLogo_1).default; } });
93
95
  var GigaChatLogo_1 = require("./GigaChatLogo");
94
96
  Object.defineProperty(exports, "GigaChatLogoSVG", { enumerable: true, get: function () { return __importDefault(GigaChatLogo_1).default; } });
95
97
  var GigaIDELogo_1 = require("./GigaIDELogo");
@@ -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 SvgGrpc: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgGrpc;
@@ -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 SvgGrpc = 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-grpc';
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: 'M6.78 7.086C4.14 9.771 1.98 11.982 1.98 12c0 .035 9.57 9.771 9.626 9.793.019.008.034-1.658.034-3.702v-3.715l-.144-.138c-.079-.076-.432-.44-.784-.808l-.641-.67h7.168l.011 2.15.01 2.15 2.11-2.53L21.481 12 19.37 9.47l-2.11-2.53-.01 2.15-.011 2.15h-7.168l.641-.67c.352-.369.705-.732.784-.808l.144-.138V5.912c0-2.042-.013-3.711-.03-3.71-.017.002-2.19 2.2-4.83 4.884m3.34.351v1.597l-1.464 1.483L7.191 12l1.465 1.483 1.464 1.483v3.187l-1.332-1.346c-3.168-3.202-4.709-4.783-4.697-4.82.011-.032 5.989-6.135 6.019-6.144.005-.002.01.716.01 1.594' }) })));
31
+ });
32
+ export default SvgGrpc;
@@ -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 SvgHttp: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgHttp;
@@ -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 SvgHttp = 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-http';
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.7v12.6l1.23 1.23 1.23 1.23h12.6l1.23-1.23 1.23-1.23V5.7l-1.23-1.23-1.23-1.23H5.7zm14 1.06.77.769v11.4l-.77.771-.769.77H6.299l-.769-.77-.77-.771V6.301l.77-.771.769-.77h11.4zm-5.21 4.32c-.074.212-1.975 6.928-1.965 6.939.042.041 1.406.405 1.427.381.034-.04 2-6.941 1.983-6.959a45 45 0 0 0-1.416-.411c-.006 0-.019.022-.029.05m3 0c-.074.212-1.975 6.928-1.965 6.939.042.041 1.406.405 1.427.381.034-.04 2-6.941 1.983-6.959a45 45 0 0 0-1.416-.411c-.006 0-.019.022-.029.05m-7.983.432c-.776.126-1.241 1.005-.91 1.721a1.24 1.24 0 0 0 2.266 0c.08-.172.104-.287.104-.503 0-.775-.684-1.345-1.46-1.218m0 4c-.776.126-1.241 1.005-.91 1.721a1.24 1.24 0 0 0 2.266 0c.08-.172.104-.287.104-.503 0-.775-.684-1.345-1.46-1.218' }) })));
31
+ });
32
+ export default SvgHttp;
@@ -222,6 +222,7 @@ export { default as GitVerseSVG } from './GitVerse';
222
222
  export { default as GlobeSVG } from './Globe';
223
223
  export { default as GlobeShieldSVG } from './GlobeShield';
224
224
  export { default as GpuSVG } from './Gpu';
225
+ export { default as GrpcSVG } from './Grpc';
225
226
  export { default as HabrSVG } from './Habr';
226
227
  export { default as HandLikeSVG } from './HandLike';
227
228
  export { default as HandshakeSVG } from './Handshake';
@@ -233,6 +234,7 @@ export { default as HomeFilledSVG } from './HomeFilled';
233
234
  export { default as HorizontalMenuCloseSVG } from './HorizontalMenuClose';
234
235
  export { default as HorizontalMenuOpenSVG } from './HorizontalMenuOpen';
235
236
  export { default as HrSVG } from './Hr';
237
+ export { default as HttpSVG } from './Http';
236
238
  export { default as HybridCloudSVG } from './HybridCloud';
237
239
  export { default as HypervisorSVG } from './Hypervisor';
238
240
  export { default as IaaSCloudSVG } from './IaaSCloud';
@@ -222,6 +222,7 @@ export { default as GitVerseSVG } from './GitVerse';
222
222
  export { default as GlobeSVG } from './Globe';
223
223
  export { default as GlobeShieldSVG } from './GlobeShield';
224
224
  export { default as GpuSVG } from './Gpu';
225
+ export { default as GrpcSVG } from './Grpc';
225
226
  export { default as HabrSVG } from './Habr';
226
227
  export { default as HandLikeSVG } from './HandLike';
227
228
  export { default as HandshakeSVG } from './Handshake';
@@ -233,6 +234,7 @@ export { default as HomeFilledSVG } from './HomeFilled';
233
234
  export { default as HorizontalMenuCloseSVG } from './HorizontalMenuClose';
234
235
  export { default as HorizontalMenuOpenSVG } from './HorizontalMenuOpen';
235
236
  export { default as HrSVG } from './Hr';
237
+ export { default as HttpSVG } from './Http';
236
238
  export { default as HybridCloudSVG } from './HybridCloud';
237
239
  export { default as HypervisorSVG } from './Hypervisor';
238
240
  export { default as IaaSCloudSVG } from './IaaSCloud';
@@ -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 SvgGigaAgentLogoDark: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgGigaAgentLogoDark;
@@ -0,0 +1,32 @@
1
+ var __rest = (this && this.__rest) || function (s, e) {
2
+ var t = {};
3
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
4
+ t[p] = s[p];
5
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
6
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
7
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
8
+ t[p[i]] = s[p[i]];
9
+ }
10
+ return t;
11
+ };
12
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
+ // DO NOT EDIT IT MANUALLY
14
+ import * as React from 'react';
15
+ const SvgGigaAgentLogoDark = React.forwardRef((_a, ref) => {
16
+ var { size } = _a, props = __rest(_a, ["size"]);
17
+ props.width = undefined;
18
+ props.height = undefined;
19
+ const testId = 'icon-giga-agent-logo-dark';
20
+ const style = {};
21
+ const isCustomSize = typeof size === 'number';
22
+ if (isCustomSize) {
23
+ style.width = size + 'px';
24
+ style.height = size + 'px';
25
+ if (!props.style)
26
+ props.style = {};
27
+ props.style.width = size + 'px';
28
+ props.style.height = size + 'px';
29
+ }
30
+ return (_jsxs("svg", Object.assign({ xmlns: 'http://www.w3.org/2000/svg', width: 65, height: 24, fill: 'none', viewBox: '0 0 65 24', "data-test-id": testId, ref: ref }, props, { children: [_jsx("g", { fill: '#fff', clipPath: 'url(#GigaAgentLogoDark_svg__a)', children: _jsx("path", { d: 'M35.758 14.913a.14.14 0 0 1-.141.143H29.19a.14.14 0 0 0-.142.142v.64c0 .079.063.142.142.142h6.326c.078 0 .14.063.14.142V18.3a.14.14 0 0 1-.14.142H29.19a.14.14 0 0 0-.142.142v.742c0 .08.063.142.142.142h6.49c.078 0 .14.064.14.143v2.24a.14.14 0 0 1-.14.143H25.001a.14.14 0 0 1-.142-.143v-9.16c0-.078.063-.141.142-.141h10.615c.078 0 .141.063.141.142zM64.859 12.555h-12.87a.14.14 0 0 0-.14.142v2.673c0 .079.062.142.14.142h4.162c.077 0 .142.063.142.142v6.203c0 .079.062.142.14.142h3.981a.14.14 0 0 0 .142-.142v-6.203c0-.08.063-.142.141-.142h4.16a.14.14 0 0 0 .142-.143v-2.672a.14.14 0 0 0-.142-.142zM23.62 12.555h-7.96a.14.14 0 0 0-.14.142v7.944c0 .144-.192.193-.26.066l-4.34-8.094a.11.11 0 0 0-.101-.06H4.765a.12.12 0 0 0-.103.062L.01 21.845c-.037.071.02.155.103.155h4.279a.12.12 0 0 0 .104-.064l.551-1.18a.12.12 0 0 1 .105-.064h5.132c.043 0 .083.024.102.063l.565 1.18c.018.04.06.064.103.064h8.575a.14.14 0 0 0 .142-.142V15.45c0-.079.062-.142.14-.142h3.71a.14.14 0 0 0 .14-.142v-2.469a.14.14 0 0 0-.14-.142M6.477 18.087c-.082 0-.138-.08-.103-.152l1.209-2.54c.04-.083.165-.083.205 0l1.231 2.54c.035.07-.02.152-.103.152zM40.96 21.999h-3.968a.14.14 0 0 1-.14-.142v-9.16c0-.079.062-.142.14-.142h3.967c.079 0 .141.063.141.142v2.94c0 .078.063.141.142.141h5.103a.14.14 0 0 0 .141-.142v-2.939c0-.079.063-.142.142-.142h3.98c.079 0 .142.063.142.142v9.16a.14.14 0 0 1-.142.142h-3.98a.14.14 0 0 1-.142-.142v-3.18a.14.14 0 0 0-.14-.142h-5.104a.14.14 0 0 0-.142.142v3.18a.14.14 0 0 1-.14.142M.782 11.448h3.969a.14.14 0 0 0 .141-.142V4.899c0-.079.063-.142.141-.142h3.958a.14.14 0 0 0 .142-.142V2.146a.14.14 0 0 0-.142-.142H.782a.14.14 0 0 0-.14.142v9.16c0 .079.062.142.14.142M28.97 11.448a.14.14 0 0 0 .141-.142V4.899c0-.079.063-.142.142-.142h3.958a.14.14 0 0 0 .14-.142V2.146a.14.14 0 0 0-.14-.142H25a.14.14 0 0 0-.142.142v9.16c0 .079.063.142.142.142zM10.37 11.448h4.048a.14.14 0 0 0 .104-.048l4.743-5.278a.14.14 0 0 1 .246.095v5.087c0 .079.063.142.141.142h3.968a.14.14 0 0 0 .142-.142V2.146a.14.14 0 0 0-.142-.142h-4.046a.14.14 0 0 0-.105.047L14.726 7.34a.14.14 0 0 1-.246-.095V2.146a.14.14 0 0 0-.14-.142h-3.97a.14.14 0 0 0-.14.142v9.16c0 .079.062.142.14.142M35.92 10.14a.12.12 0 0 0-.105.066l-.55 1.179a.12.12 0 0 1-.105.065H30.88a.11.11 0 0 1-.103-.157l4.654-9.231A.11.11 0 0 1 35.535 2h6.054c.041 0 .082.023.1.06l4.95 9.23c.037.072-.017.158-.102.158h-4.713a.11.11 0 0 1-.103-.063l-.565-1.181a.12.12 0 0 0-.103-.064zm3.867-2.758-1.23-2.539c-.042-.084-.166-.084-.206 0l-1.209 2.54c-.035.071.021.152.103.152h2.438c.082 0 .138-.083.103-.155z' }) }), _jsx("defs", { children: _jsx("clipPath", { id: 'GigaAgentLogoDark_svg__a', children: _jsx("path", { fill: '#fff', d: 'M0 0h65v24H0z' }) }) })] })));
31
+ });
32
+ export default SvgGigaAgentLogoDark;
@@ -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 SvgGigaAgentLogoLight: React.ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
9
+ export default SvgGigaAgentLogoLight;
@@ -0,0 +1,32 @@
1
+ var __rest = (this && this.__rest) || function (s, e) {
2
+ var t = {};
3
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
4
+ t[p] = s[p];
5
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
6
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
7
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
8
+ t[p[i]] = s[p[i]];
9
+ }
10
+ return t;
11
+ };
12
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
+ // DO NOT EDIT IT MANUALLY
14
+ import * as React from 'react';
15
+ const SvgGigaAgentLogoLight = React.forwardRef((_a, ref) => {
16
+ var { size } = _a, props = __rest(_a, ["size"]);
17
+ props.width = undefined;
18
+ props.height = undefined;
19
+ const testId = 'icon-giga-agent-logo-light';
20
+ const style = {};
21
+ const isCustomSize = typeof size === 'number';
22
+ if (isCustomSize) {
23
+ style.width = size + 'px';
24
+ style.height = size + 'px';
25
+ if (!props.style)
26
+ props.style = {};
27
+ props.style.width = size + 'px';
28
+ props.style.height = size + 'px';
29
+ }
30
+ return (_jsxs("svg", Object.assign({ xmlns: 'http://www.w3.org/2000/svg', width: 65, height: 24, fill: 'none', viewBox: '0 0 65 24', "data-test-id": testId, ref: ref }, props, { children: [_jsx("g", { fill: '#000', clipPath: 'url(#GigaAgentLogoLight_svg__a)', children: _jsx("path", { d: 'M35.758 14.913a.14.14 0 0 1-.141.142H29.19a.14.14 0 0 0-.142.142v.64c0 .08.063.143.142.143h6.326c.078 0 .14.063.14.142v2.177a.14.14 0 0 1-.14.143H29.19a.14.14 0 0 0-.142.142v.742c0 .079.063.142.142.142h6.49c.078 0 .14.063.14.142v2.24a.14.14 0 0 1-.14.143H25.001a.14.14 0 0 1-.142-.142v-9.16c0-.079.063-.142.142-.142h10.615c.078 0 .141.063.141.142zM64.859 12.555h-12.87a.14.14 0 0 0-.14.142v2.672c0 .079.062.142.14.142h4.162c.077 0 .142.063.142.142v6.203c0 .08.062.142.14.142h3.981a.14.14 0 0 0 .142-.142v-6.203c0-.079.063-.142.141-.142h4.16A.14.14 0 0 0 65 15.37v-2.672a.14.14 0 0 0-.142-.142zM23.62 12.554h-7.96a.14.14 0 0 0-.14.143v7.943c0 .144-.192.193-.26.067l-4.34-8.095a.11.11 0 0 0-.101-.06H4.765a.12.12 0 0 0-.103.062L.01 21.844c-.037.072.02.156.103.156h4.279a.12.12 0 0 0 .104-.065l.551-1.18a.12.12 0 0 1 .105-.064h5.132c.043 0 .083.025.102.063l.565 1.181c.018.039.06.063.103.063h8.575a.14.14 0 0 0 .142-.142V15.45c0-.08.062-.142.14-.142h3.71a.14.14 0 0 0 .14-.143v-2.468a.14.14 0 0 0-.14-.143M6.477 18.087c-.082 0-.138-.08-.103-.153l1.209-2.539c.04-.084.165-.084.205 0l1.231 2.54c.035.07-.02.152-.103.152zM40.96 21.998h-3.968a.14.14 0 0 1-.14-.142v-9.16c0-.078.062-.141.14-.141h3.967c.079 0 .141.063.141.142v2.939c0 .079.063.142.142.142h5.103a.14.14 0 0 0 .141-.142v-2.94c0-.078.063-.141.142-.141h3.98c.079 0 .142.063.142.142v9.16a.14.14 0 0 1-.142.141h-3.98a.14.14 0 0 1-.142-.142v-3.18a.14.14 0 0 0-.14-.141h-5.104a.14.14 0 0 0-.142.142v3.18a.14.14 0 0 1-.14.141M.782 11.447h3.969a.14.14 0 0 0 .141-.142V4.9c0-.08.063-.142.141-.142h3.958a.14.14 0 0 0 .142-.142v-2.47a.14.14 0 0 0-.142-.141H.782a.14.14 0 0 0-.14.142v9.16c0 .078.062.141.14.141M28.97 11.447a.14.14 0 0 0 .141-.142V4.9c0-.08.063-.142.142-.142h3.958a.14.14 0 0 0 .14-.142v-2.47a.14.14 0 0 0-.14-.141H25a.14.14 0 0 0-.142.142v9.16c0 .078.063.141.142.141zM10.37 11.447h4.048a.14.14 0 0 0 .104-.047l4.743-5.278a.14.14 0 0 1 .246.095v5.086c0 .08.063.143.141.143h3.968a.14.14 0 0 0 .142-.143V2.146a.14.14 0 0 0-.142-.142h-4.046a.14.14 0 0 0-.105.047L14.726 7.34a.14.14 0 0 1-.246-.095v-5.1a.14.14 0 0 0-.14-.141h-3.97a.14.14 0 0 0-.14.142v9.16c0 .078.062.141.14.141M35.92 10.14a.12.12 0 0 0-.105.065l-.55 1.18a.12.12 0 0 1-.105.064H30.88a.11.11 0 0 1-.103-.156l4.654-9.232A.11.11 0 0 1 35.535 2h6.054c.041 0 .082.023.1.06l4.95 9.23c.037.071-.017.157-.102.157h-4.713a.11.11 0 0 1-.103-.063l-.565-1.18a.12.12 0 0 0-.103-.064zm3.867-2.758-1.23-2.54c-.042-.084-.166-.084-.206 0l-1.209 2.54c-.035.072.021.152.103.152h2.438c.082 0 .138-.082.103-.154z' }) }), _jsx("defs", { children: _jsx("clipPath", { id: 'GigaAgentLogoLight_svg__a', children: _jsx("path", { fill: '#fff', d: 'M0 0h65v24H0z' }) }) })] })));
31
+ });
32
+ export default SvgGigaAgentLogoLight;
@@ -0,0 +1,3 @@
1
+ import { ISvgIconProps } from './GigaAgentLogoLight';
2
+ declare const GigaAgentLogoSvg: import("react").ForwardRefExoticComponent<Omit<ISvgIconProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
3
+ export default GigaAgentLogoSvg;
@@ -0,0 +1,11 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { forwardRef } from 'react';
3
+ import GigaAgentLogoLight from './GigaAgentLogoLight';
4
+ import GigaAgentLogoDark from './GigaAgentLogoDark';
5
+ import { useThemeModification, useBrandModification } from '../../utils';
6
+ const GigaAgentLogoSvg = forwardRef(function GigaAgentLogoSvg(props, ref) {
7
+ const { isDarkTheme } = useThemeModification();
8
+ const { isDarkBrand } = useBrandModification();
9
+ return isDarkTheme || isDarkBrand ? (_jsx(GigaAgentLogoDark, Object.assign({}, props, { ref: ref }))) : (_jsx(GigaAgentLogoLight, Object.assign({}, props, { ref: ref })));
10
+ });
11
+ export default GigaAgentLogoSvg;
@@ -40,6 +40,7 @@ export { default as FirefoxBrowserLogoSVG } from './FirefoxBrowserLogo';
40
40
  export { default as FluentbitLogoSVG } from './FluentbitLogo';
41
41
  export { default as GatekeeperLogoSVG } from './GatekeeperLogo';
42
42
  export { default as GeminiLogoSVG } from './GeminiLogo';
43
+ export { default as GigaAgentLogoSVG } from './GigaAgentLogo';
43
44
  export { default as GigaChatLogoSVG } from './GigaChatLogo';
44
45
  export { default as GigaIDELogoSVG } from './GigaIDELogo';
45
46
  export { default as GigaStudioLogoSVG } from './GigaStudioLogo';
@@ -40,6 +40,7 @@ export { default as FirefoxBrowserLogoSVG } from './FirefoxBrowserLogo';
40
40
  export { default as FluentbitLogoSVG } from './FluentbitLogo';
41
41
  export { default as GatekeeperLogoSVG } from './GatekeeperLogo';
42
42
  export { default as GeminiLogoSVG } from './GeminiLogo';
43
+ export { default as GigaAgentLogoSVG } from './GigaAgentLogo';
43
44
  export { default as GigaChatLogoSVG } from './GigaChatLogo';
44
45
  export { default as GigaIDELogoSVG } from './GigaIDELogo';
45
46
  export { default as GigaStudioLogoSVG } from './GigaStudioLogo';
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.6.0",
4
+ "version": "17.7.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": "4075376759ae1159670bc2dfd59aca3a9bf9de65"
82
+ "gitHead": "0ba8fab8e570a50b497bfcf5dfc83ddf9eef91ac"
83
83
  }