-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathIcon.tsx
More file actions
702 lines (696 loc) · 32.9 KB
/
Icon.tsx
File metadata and controls
702 lines (696 loc) · 32.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
// NOTE: This file is auto-generated. Do not edit directly. Run the script `npm run generate-icon` to update.
import IC73strings from '@IconsV2/ic-73strings.svg?react'
import ICAborted from '@IconsV2/ic-aborted.svg?react'
import ICActivity from '@IconsV2/ic-activity.svg?react'
import ICAdd from '@IconsV2/ic-add.svg?react'
import ICAi from '@IconsV2/ic-ai.svg?react'
import ICAlibaba from '@IconsV2/ic-alibaba.svg?react'
import ICAmazonEks from '@IconsV2/ic-amazon-eks.svg?react'
import ICAppGroup from '@IconsV2/ic-app-group.svg?react'
import ICAppTemplate from '@IconsV2/ic-app-template.svg?react'
import ICApplication from '@IconsV2/ic-application.svg?react'
import ICApplicationGroup from '@IconsV2/ic-application-group.svg?react'
import ICApplicationManagement from '@IconsV2/ic-application-management.svg?react'
import ICApplicationTemplate from '@IconsV2/ic-application-template.svg?react'
import ICArgocdApp from '@IconsV2/ic-argocd-app.svg?react'
import ICArrowClockwise from '@IconsV2/ic-arrow-clockwise.svg?react'
import ICArrowLineDown from '@IconsV2/ic-arrow-line-down.svg?react'
import ICArrowRight from '@IconsV2/ic-arrow-right.svg?react'
import ICArrowSquareOut from '@IconsV2/ic-arrow-square-out.svg?react'
import ICArrowUpCircle from '@IconsV2/ic-arrow-up-circle.svg?react'
import ICArrowUpCircleWithDot from '@IconsV2/ic-arrow-up-circle-with-dot.svg?react'
import ICArrowsClockwise from '@IconsV2/ic-arrows-clockwise.svg?react'
import ICArrowsLeftRight from '@IconsV2/ic-arrows-left-right.svg?react'
import ICAsterisk from '@IconsV2/ic-asterisk.svg?react'
import ICAther from '@IconsV2/ic-ather.svg?react'
import ICAws from '@IconsV2/ic-aws.svg?react'
import ICAwsCodecommit from '@IconsV2/ic-aws-codecommit.svg?react'
import ICAzure from '@IconsV2/ic-azure.svg?react'
import ICAzureAks from '@IconsV2/ic-azure-aks.svg?react'
import ICBackupAndSchedule from '@IconsV2/ic-backup-and-schedule.svg?react'
import ICBackupColor from '@IconsV2/ic-backup-color.svg?react'
import ICBackupLocation from '@IconsV2/ic-backup-location.svg?react'
import ICBackupScheduleColor from '@IconsV2/ic-backup-schedule-color.svg?react'
import ICBell from '@IconsV2/ic-bell.svg?react'
import ICBgBackupSchedule from '@IconsV2/ic-bg-backup-schedule.svg?react'
import ICBgBackups from '@IconsV2/ic-bg-backups.svg?react'
import ICBgBuild from '@IconsV2/ic-bg-build.svg?react'
import ICBgCloudVms from '@IconsV2/ic-bg-cloud-vms.svg?react'
import ICBgCluster from '@IconsV2/ic-bg-cluster.svg?react'
import ICBgCpu from '@IconsV2/ic-bg-cpu.svg?react'
import ICBgDeploy from '@IconsV2/ic-bg-deploy.svg?react'
import ICBgDockerScanner from '@IconsV2/ic-bg-docker-scanner.svg?react'
import ICBgEnvironment from '@IconsV2/ic-bg-environment.svg?react'
import ICBgHealthyVms from '@IconsV2/ic-bg-healthy-vms.svg?react'
import ICBgMemory from '@IconsV2/ic-bg-memory.svg?react'
import ICBgPauseSchedule from '@IconsV2/ic-bg-pause-schedule.svg?react'
import ICBgProductionPipelines from '@IconsV2/ic-bg-production-pipelines.svg?react'
import ICBgProject from '@IconsV2/ic-bg-project.svg?react'
import ICBgRansomwareVulnerableCluster from '@IconsV2/ic-bg-ransomware-vulnerable-cluster.svg?react'
import ICBgRestore from '@IconsV2/ic-bg-restore.svg?react'
import ICBgRunningVms from '@IconsV2/ic-bg-running-vms.svg?react'
import ICBgScan from '@IconsV2/ic-bg-scan.svg?react'
import ICBgStorageLocations from '@IconsV2/ic-bg-storage-locations.svg?react'
import ICBgTenants from '@IconsV2/ic-bg-tenants.svg?react'
import ICBgWebhook from '@IconsV2/ic-bg-webhook.svg?react'
import ICBharatpe from '@IconsV2/ic-bharatpe.svg?react'
import ICBinoculars from '@IconsV2/ic-binoculars.svg?react'
import ICBitbucket from '@IconsV2/ic-bitbucket.svg?react'
import ICBookOpen from '@IconsV2/ic-book-open.svg?react'
import ICBot from '@IconsV2/ic-bot.svg?react'
import ICBrain from '@IconsV2/ic-brain.svg?react'
import ICBrowser from '@IconsV2/ic-browser.svg?react'
import ICBug from '@IconsV2/ic-bug.svg?react'
import ICBuildColor from '@IconsV2/ic-build-color.svg?react'
import ICBuilding from '@IconsV2/ic-building.svg?react'
import ICBulb from '@IconsV2/ic-bulb.svg?react'
import ICCalendar from '@IconsV2/ic-calendar.svg?react'
import ICCancelled from '@IconsV2/ic-cancelled.svg?react'
import ICCardStack from '@IconsV2/ic-card-stack.svg?react'
import ICCaretDownSmall from '@IconsV2/ic-caret-down-small.svg?react'
import ICCaretLeft from '@IconsV2/ic-caret-left.svg?react'
import ICCaretRight from '@IconsV2/ic-caret-right.svg?react'
import ICCd from '@IconsV2/ic-cd.svg?react'
import ICChartLineUp from '@IconsV2/ic-chart-line-up.svg?react'
import ICChartRepo from '@IconsV2/ic-chart-repo.svg?react'
import ICChatCircleDots from '@IconsV2/ic-chat-circle-dots.svg?react'
import ICChatCircleOnline from '@IconsV2/ic-chat-circle-online.svg?react'
import ICCheck from '@IconsV2/ic-check.svg?react'
import ICCheckAll from '@IconsV2/ic-check-all.svg?react'
import ICCheckCircle from '@IconsV2/ic-check-circle.svg?react'
import ICCheckSquare from '@IconsV2/ic-check-square.svg?react'
import ICChecks from '@IconsV2/ic-checks.svg?react'
import ICCiLinked from '@IconsV2/ic-ci-linked.svg?react'
import ICCircleLoader from '@IconsV2/ic-circle-loader.svg?react'
import ICCircleSmall from '@IconsV2/ic-circle-small.svg?react'
import ICCleanBrush from '@IconsV2/ic-clean-brush.svg?react'
import ICClipboard from '@IconsV2/ic-clipboard.svg?react'
import ICClock from '@IconsV2/ic-clock.svg?react'
import ICClockCounterclockwise from '@IconsV2/ic-clock-counterclockwise.svg?react'
import ICCloseCircle from '@IconsV2/ic-close-circle.svg?react'
import ICCloseLarge from '@IconsV2/ic-close-large.svg?react'
import ICCloseSmall from '@IconsV2/ic-close-small.svg?react'
import ICCloudUpload from '@IconsV2/ic-cloud-upload.svg?react'
import ICCloudVms from '@IconsV2/ic-cloud-vms.svg?react'
import ICCluster from '@IconsV2/ic-cluster.svg?react'
import ICClusterIsolated from '@IconsV2/ic-cluster-isolated.svg?react'
import ICCode from '@IconsV2/ic-code.svg?react'
import ICCodeWrapped from '@IconsV2/ic-code-wrapped.svg?react'
import ICCoins from '@IconsV2/ic-coins.svg?react'
import ICCoinsColorAnimated from '@IconsV2/ic-coins-color-animated.svg?react'
import ICComment from '@IconsV2/ic-comment.svg?react'
import ICConfigurationFile from '@IconsV2/ic-configuration-file.svg?react'
import ICContainer from '@IconsV2/ic-container.svg?react'
import ICContainerRegistry from '@IconsV2/ic-container-registry.svg?react'
import ICCookr from '@IconsV2/ic-cookr.svg?react'
import ICCopy from '@IconsV2/ic-copy.svg?react'
import ICCostVisibility from '@IconsV2/ic-cost-visibility.svg?react'
import ICCpu from '@IconsV2/ic-cpu.svg?react'
import ICCrown from '@IconsV2/ic-crown.svg?react'
import ICCube from '@IconsV2/ic-cube.svg?react'
import ICCurvedArrow from '@IconsV2/ic-curved-arrow.svg?react'
import ICDatabaseBackup from '@IconsV2/ic-database-backup.svg?react'
import ICDelete from '@IconsV2/ic-delete.svg?react'
import ICDeleteDots from '@IconsV2/ic-delete-dots.svg?react'
import ICDeleteLightning from '@IconsV2/ic-delete-lightning.svg?react'
import ICDelhivery from '@IconsV2/ic-delhivery.svg?react'
import ICDeployColor from '@IconsV2/ic-deploy-color.svg?react'
import ICDeploySync from '@IconsV2/ic-deploy-sync.svg?react'
import ICDevtron from '@IconsV2/ic-devtron.svg?react'
import ICDevtronAi from '@IconsV2/ic-devtron-ai.svg?react'
import ICDevtronApp from '@IconsV2/ic-devtron-app.svg?react'
import ICDevtronHeaderLogo from '@IconsV2/ic-devtron-header-logo.svg?react'
import ICDevtronJob from '@IconsV2/ic-devtron-job.svg?react'
import ICDevtronText from '@IconsV2/ic-devtron-text.svg?react'
import ICDiffAdded from '@IconsV2/ic-diff-added.svg?react'
import ICDiffDeleted from '@IconsV2/ic-diff-deleted.svg?react'
import ICDiffUpdated from '@IconsV2/ic-diff-updated.svg?react'
import ICDisconnect from '@IconsV2/ic-disconnect.svg?react'
import ICDiscordFill from '@IconsV2/ic-discord-fill.svg?react'
import ICDockerhub from '@IconsV2/ic-dockerhub.svg?react'
import ICDotCircle from '@IconsV2/ic-dot-circle.svg?react'
import ICDownload from '@IconsV2/ic-download.svg?react'
import ICEcr from '@IconsV2/ic-ecr.svg?react'
import ICEdit from '@IconsV2/ic-edit.svg?react'
import ICEditLines from '@IconsV2/ic-edit-lines.svg?react'
import ICEmail from '@IconsV2/ic-email.svg?react'
import ICEnterFullscreen from '@IconsV2/ic-enter-fullscreen.svg?react'
import ICEnterpriseFeat from '@IconsV2/ic-enterprise-feat.svg?react'
import ICEnterpriseTag from '@IconsV2/ic-enterprise-tag.svg?react'
import ICEnv from '@IconsV2/ic-env.svg?react'
import ICEnvironment from '@IconsV2/ic-environment.svg?react'
import ICEnvironmentIsolated from '@IconsV2/ic-environment-isolated.svg?react'
import ICError from '@IconsV2/ic-error.svg?react'
import ICExitFullscreen from '@IconsV2/ic-exit-fullscreen.svg?react'
import ICExpandRightSm from '@IconsV2/ic-expand-right-sm.svg?react'
import ICExpandSm from '@IconsV2/ic-expand-sm.svg?react'
import ICExternalLink from '@IconsV2/ic-external-link.svg?react'
import ICFailure from '@IconsV2/ic-failure.svg?react'
import ICFastForward from '@IconsV2/ic-fast-forward.svg?react'
import ICFile from '@IconsV2/ic-file.svg?react'
import ICFileCode from '@IconsV2/ic-file-code.svg?react'
import ICFileDownload from '@IconsV2/ic-file-download.svg?react'
import ICFileEdit from '@IconsV2/ic-file-edit.svg?react'
import ICFileKey from '@IconsV2/ic-file-key.svg?react'
import ICFiles from '@IconsV2/ic-files.svg?react'
import ICFilesChanged from '@IconsV2/ic-files-changed.svg?react'
import ICFilter from '@IconsV2/ic-filter.svg?react'
import ICFilterApplied from '@IconsV2/ic-filter-applied.svg?react'
import ICFlask from '@IconsV2/ic-flask.svg?react'
import ICFloppyDisk from '@IconsV2/ic-floppy-disk.svg?react'
import ICFluxcdApp from '@IconsV2/ic-fluxcd-app.svg?react'
import ICFolder from '@IconsV2/ic-folder.svg?react'
import ICFolderColor from '@IconsV2/ic-folder-color.svg?react'
import ICFolderUser from '@IconsV2/ic-folder-user.svg?react'
import ICGavel from '@IconsV2/ic-gavel.svg?react'
import ICGear from '@IconsV2/ic-gear.svg?react'
import ICGift from '@IconsV2/ic-gift.svg?react'
import ICGiftAnimated from '@IconsV2/ic-gift-animated.svg?react'
import ICGiftGradient from '@IconsV2/ic-gift-gradient.svg?react'
import ICGit from '@IconsV2/ic-git.svg?react'
import ICGitBranch from '@IconsV2/ic-git-branch.svg?react'
import ICGithub from '@IconsV2/ic-github.svg?react'
import ICGitlab from '@IconsV2/ic-gitlab.svg?react'
import ICGlobalOverview from '@IconsV2/ic-global-overview.svg?react'
import ICGoogle from '@IconsV2/ic-google.svg?react'
import ICGoogleArtifactRegistry from '@IconsV2/ic-google-artifact-registry.svg?react'
import ICGoogleCloud from '@IconsV2/ic-google-cloud.svg?react'
import ICGoogleContainerRegistry from '@IconsV2/ic-google-container-registry.svg?react'
import ICGoogleGke from '@IconsV2/ic-google-gke.svg?react'
import ICGridView from '@IconsV2/ic-grid-view.svg?react'
import ICGroupFilter from '@IconsV2/ic-group-filter.svg?react'
import ICGroupFilterApplied from '@IconsV2/ic-group-filter-applied.svg?react'
import ICHadolint from '@IconsV2/ic-hadolint.svg?react'
import ICHandPointing from '@IconsV2/ic-hand-pointing.svg?react'
import ICHeartGreen from '@IconsV2/ic-heart-green.svg?react'
import ICHeartRed from '@IconsV2/ic-heart-red.svg?react'
import ICHeartRedAnimated from '@IconsV2/ic-heart-red-animated.svg?react'
import ICHelm from '@IconsV2/ic-helm.svg?react'
import ICHelmApp from '@IconsV2/ic-helm-app.svg?react'
import ICHelpFilled from '@IconsV2/ic-help-filled.svg?react'
import ICHelpOutline from '@IconsV2/ic-help-outline.svg?react'
import ICHibernate from '@IconsV2/ic-hibernate.svg?react'
import ICHibernateCircle from '@IconsV2/ic-hibernate-circle.svg?react'
import ICImageApprove from '@IconsV2/ic-image-approve.svg?react'
import ICInProgress from '@IconsV2/ic-in-progress.svg?react'
import ICInfoFilled from '@IconsV2/ic-info-filled.svg?react'
import ICInfoFilledColor from '@IconsV2/ic-info-filled-color.svg?react'
import ICInfoOutline from '@IconsV2/ic-info-outline.svg?react'
import ICInfrastructureManagement from '@IconsV2/ic-infrastructure-management.svg?react'
import ICInput from '@IconsV2/ic-input.svg?react'
import ICInstall from '@IconsV2/ic-install.svg?react'
import ICJobColor from '@IconsV2/ic-job-color.svg?react'
import ICK3s from '@IconsV2/ic-k3s.svg?react'
import ICK8sJob from '@IconsV2/ic-k8s-job.svg?react'
import ICKey from '@IconsV2/ic-key.svg?react'
import ICKeyEnter from '@IconsV2/ic-key-enter.svg?react'
import ICKind from '@IconsV2/ic-kind.svg?react'
import ICKubernetes from '@IconsV2/ic-kubernetes.svg?react'
import ICLaptop from '@IconsV2/ic-laptop.svg?react'
import ICLdap from '@IconsV2/ic-ldap.svg?react'
import ICLego from '@IconsV2/ic-lego.svg?react'
import ICLightning from '@IconsV2/ic-lightning.svg?react'
import ICLightningFill from '@IconsV2/ic-lightning-fill.svg?react'
import ICLink from '@IconsV2/ic-link.svg?react'
import ICLinkedBuildColor from '@IconsV2/ic-linked-build-color.svg?react'
import ICListBullets from '@IconsV2/ic-list-bullets.svg?react'
import ICLivspace from '@IconsV2/ic-livspace.svg?react'
import ICLocked from '@IconsV2/ic-locked.svg?react'
import ICLogout from '@IconsV2/ic-logout.svg?react'
import ICLogs from '@IconsV2/ic-logs.svg?react'
import ICMagicWand from '@IconsV2/ic-magic-wand.svg?react'
import ICMagnifyingGlass from '@IconsV2/ic-magnifying-glass.svg?react'
import ICMediumDelete from '@IconsV2/ic-medium-delete.svg?react'
import ICMediumMegaphone from '@IconsV2/ic-medium-megaphone.svg?react'
import ICMediumPaintbucket from '@IconsV2/ic-medium-paintbucket.svg?react'
import ICMediumUpgrade from '@IconsV2/ic-medium-upgrade.svg?react'
import ICMegaphoneLeft from '@IconsV2/ic-megaphone-left.svg?react'
import ICMegaphoneRight from '@IconsV2/ic-megaphone-right.svg?react'
import ICMemory from '@IconsV2/ic-memory.svg?react'
import ICMicrosoft from '@IconsV2/ic-microsoft.svg?react'
import ICMinikube from '@IconsV2/ic-minikube.svg?react'
import ICMinus from '@IconsV2/ic-minus.svg?react'
import ICMissing from '@IconsV2/ic-missing.svg?react'
import ICMobile from '@IconsV2/ic-mobile.svg?react'
import ICMonitoring from '@IconsV2/ic-monitoring.svg?react'
import ICMoreVertical from '@IconsV2/ic-more-vertical.svg?react'
import ICNamespace from '@IconsV2/ic-namespace.svg?react'
import ICNavCursor from '@IconsV2/ic-nav-cursor.svg?react'
import ICNew from '@IconsV2/ic-new.svg?react'
import ICNewChat from '@IconsV2/ic-new-chat.svg?react'
import ICNodeScript from '@IconsV2/ic-node-script.svg?react'
import ICOidc from '@IconsV2/ic-oidc.svg?react'
import ICOpenBox from '@IconsV2/ic-open-box.svg?react'
import ICOpenInNew from '@IconsV2/ic-open-in-new.svg?react'
import ICOpenai from '@IconsV2/ic-openai.svg?react'
import ICOpenshift from '@IconsV2/ic-openshift.svg?react'
import ICOracleCloud from '@IconsV2/ic-oracle-cloud.svg?react'
import ICOtcCloud from '@IconsV2/ic-otc-cloud.svg?react'
import ICOutOfSync from '@IconsV2/ic-out-of-sync.svg?react'
import ICPaperPlane from '@IconsV2/ic-paper-plane.svg?react'
import ICPaperPlaneColor from '@IconsV2/ic-paper-plane-color.svg?react'
import ICParty from '@IconsV2/ic-party.svg?react'
import ICPath from '@IconsV2/ic-path.svg?react'
import ICPause from '@IconsV2/ic-pause.svg?react'
import ICPauseCircle from '@IconsV2/ic-pause-circle.svg?react'
import ICPencil from '@IconsV2/ic-pencil.svg?react'
import ICPiggybank from '@IconsV2/ic-piggybank.svg?react'
import ICPlayOutline from '@IconsV2/ic-play-outline.svg?react'
import ICPriorityHighFill from '@IconsV2/ic-priority-high-fill.svg?react'
import ICPriorityLowFill from '@IconsV2/ic-priority-low-fill.svg?react'
import ICPriorityMediumFill from '@IconsV2/ic-priority-medium-fill.svg?react'
import ICPriorityUrgentFill from '@IconsV2/ic-priority-urgent-fill.svg?react'
import ICQuay from '@IconsV2/ic-quay.svg?react'
import ICQuote from '@IconsV2/ic-quote.svg?react'
import ICRatings from '@IconsV2/ic-ratings.svg?react'
import ICRedBulb from '@IconsV2/ic-red-bulb.svg?react'
import ICReleaseHub from '@IconsV2/ic-release-hub.svg?react'
import ICResizeHandle from '@IconsV2/ic-resize-handle.svg?react'
import ICResourceBrowser from '@IconsV2/ic-resource-browser.svg?react'
import ICResourceWatcher from '@IconsV2/ic-resource-watcher.svg?react'
import ICRightPanelCollapse from '@IconsV2/ic-right-panel-collapse.svg?react'
import ICRocketGear from '@IconsV2/ic-rocket-gear.svg?react'
import ICRocketLaunch from '@IconsV2/ic-rocket-launch.svg?react'
import ICSecurityFixable from '@IconsV2/ic-security-fixable.svg?react'
import ICSecurityNotFixable from '@IconsV2/ic-security-not-fixable.svg?react'
import ICSecurityPolicy from '@IconsV2/ic-security-policy.svg?react'
import ICSecurityScan from '@IconsV2/ic-security-scan.svg?react'
import ICSecurityVulnerability from '@IconsV2/ic-security-vulnerability.svg?react'
import ICSelected from '@IconsV2/ic-selected.svg?react'
import ICSes from '@IconsV2/ic-ses.svg?react'
import ICShapes from '@IconsV2/ic-shapes.svg?react'
import ICShieldCheck from '@IconsV2/ic-shield-check.svg?react'
import ICSlack from '@IconsV2/ic-slack.svg?react'
import ICSlidersVertical from '@IconsV2/ic-sliders-vertical.svg?react'
import ICSmtp from '@IconsV2/ic-smtp.svg?react'
import ICSoftwareReleaseManagement from '@IconsV2/ic-software-release-management.svg?react'
import ICSortAscending from '@IconsV2/ic-sort-ascending.svg?react'
import ICSortDescending from '@IconsV2/ic-sort-descending.svg?react'
import ICSortable from '@IconsV2/ic-sortable.svg?react'
import ICSparkleAiColor from '@IconsV2/ic-sparkle-ai-color.svg?react'
import ICSparkleColor from '@IconsV2/ic-sparkle-color.svg?react'
import ICSpeedometer from '@IconsV2/ic-speedometer.svg?react'
import ICSpinny from '@IconsV2/ic-spinny.svg?react'
import ICSprayCan from '@IconsV2/ic-spray-can.svg?react'
import ICStack from '@IconsV2/ic-stack.svg?react'
import ICStamp from '@IconsV2/ic-stamp.svg?react'
import ICStopFill from '@IconsV2/ic-stop-fill.svg?react'
import ICStorage from '@IconsV2/ic-storage.svg?react'
import ICStrategyBlueGreen from '@IconsV2/ic-strategy-blue-green.svg?react'
import ICStrategyBlueGreenColor from '@IconsV2/ic-strategy-blue-green-color.svg?react'
import ICStrategyCanary from '@IconsV2/ic-strategy-canary.svg?react'
import ICStrategyCanaryColor from '@IconsV2/ic-strategy-canary-color.svg?react'
import ICStrategyRecreate from '@IconsV2/ic-strategy-recreate.svg?react'
import ICStrategyRecreateColor from '@IconsV2/ic-strategy-recreate-color.svg?react'
import ICStrategyRolling from '@IconsV2/ic-strategy-rolling.svg?react'
import ICStrategyRollingColor from '@IconsV2/ic-strategy-rolling-color.svg?react'
import ICSuccess from '@IconsV2/ic-success.svg?react'
import ICSuccessBlue from '@IconsV2/ic-success-blue.svg?react'
import ICSun from '@IconsV2/ic-sun.svg?react'
import ICSuspended from '@IconsV2/ic-suspended.svg?react'
import ICSymbolGreaterThan from '@IconsV2/ic-symbol-greater-than.svg?react'
import ICTag from '@IconsV2/ic-tag.svg?react'
import ICTata1mg from '@IconsV2/ic-tata1mg.svg?react'
import ICTenants from '@IconsV2/ic-tenants.svg?react'
import ICTerminal from '@IconsV2/ic-terminal.svg?react'
import ICTerminalFill from '@IconsV2/ic-terminal-fill.svg?react'
import ICThermometer from '@IconsV2/ic-thermometer.svg?react'
import ICThumbDown from '@IconsV2/ic-thumb-down.svg?react'
import ICThumbDownFill from '@IconsV2/ic-thumb-down-fill.svg?react'
import ICThumbUp from '@IconsV2/ic-thumb-up.svg?react'
import ICThumbUpFill from '@IconsV2/ic-thumb-up-fill.svg?react'
import ICTimeoutDash from '@IconsV2/ic-timeout-dash.svg?react'
import ICTimer from '@IconsV2/ic-timer.svg?react'
import ICTrafficSignal from '@IconsV2/ic-traffic-signal.svg?react'
import ICTravclan from '@IconsV2/ic-travclan.svg?react'
import ICTrendUp from '@IconsV2/ic-trend-up.svg?react'
import ICTwoCubes from '@IconsV2/ic-two-cubes.svg?react'
import ICUbuntu from '@IconsV2/ic-ubuntu.svg?react'
import ICUnknown from '@IconsV2/ic-unknown.svg?react'
import ICUpgradeEnterprise from '@IconsV2/ic-upgrade-enterprise.svg?react'
import ICUserCircle from '@IconsV2/ic-user-circle.svg?react'
import ICUserKey from '@IconsV2/ic-user-key.svg?react'
import ICUsers from '@IconsV2/ic-users.svg?react'
import ICViewVariableToggle from '@IconsV2/ic-view-variable-toggle.svg?react'
import ICVisibilityOff from '@IconsV2/ic-visibility-off.svg?react'
import ICVisibilityOn from '@IconsV2/ic-visibility-on.svg?react'
import ICWarning from '@IconsV2/ic-warning.svg?react'
import ICWarningFill from '@IconsV2/ic-warning-fill.svg?react'
import ICWarningStroke from '@IconsV2/ic-warning-stroke.svg?react'
import ICWebhook from '@IconsV2/ic-webhook.svg?react'
import ICWebhookConfig from '@IconsV2/ic-webhook-config.svg?react'
import ICWifiSlash from '@IconsV2/ic-wifi-slash.svg?react'
import ICWorldGlobe from '@IconsV2/ic-world-globe.svg?react'
// eslint-disable-next-line no-restricted-imports
import { IconBase } from './IconBase'
import { IconBaseProps } from './types'
export const iconMap = {
'ic-73strings': IC73strings,
'ic-aborted': ICAborted,
'ic-activity': ICActivity,
'ic-add': ICAdd,
'ic-ai': ICAi,
'ic-alibaba': ICAlibaba,
'ic-amazon-eks': ICAmazonEks,
'ic-app-group': ICAppGroup,
'ic-app-template': ICAppTemplate,
'ic-application-group': ICApplicationGroup,
'ic-application-management': ICApplicationManagement,
'ic-application-template': ICApplicationTemplate,
'ic-application': ICApplication,
'ic-argocd-app': ICArgocdApp,
'ic-arrow-clockwise': ICArrowClockwise,
'ic-arrow-line-down': ICArrowLineDown,
'ic-arrow-right': ICArrowRight,
'ic-arrow-square-out': ICArrowSquareOut,
'ic-arrow-up-circle-with-dot': ICArrowUpCircleWithDot,
'ic-arrow-up-circle': ICArrowUpCircle,
'ic-arrows-clockwise': ICArrowsClockwise,
'ic-arrows-left-right': ICArrowsLeftRight,
'ic-asterisk': ICAsterisk,
'ic-ather': ICAther,
'ic-aws-codecommit': ICAwsCodecommit,
'ic-aws': ICAws,
'ic-azure-aks': ICAzureAks,
'ic-azure': ICAzure,
'ic-backup-and-schedule': ICBackupAndSchedule,
'ic-backup-color': ICBackupColor,
'ic-backup-location': ICBackupLocation,
'ic-backup-schedule-color': ICBackupScheduleColor,
'ic-bell': ICBell,
'ic-bg-backup-schedule': ICBgBackupSchedule,
'ic-bg-backups': ICBgBackups,
'ic-bg-build': ICBgBuild,
'ic-bg-cloud-vms': ICBgCloudVms,
'ic-bg-cluster': ICBgCluster,
'ic-bg-cpu': ICBgCpu,
'ic-bg-deploy': ICBgDeploy,
'ic-bg-docker-scanner': ICBgDockerScanner,
'ic-bg-environment': ICBgEnvironment,
'ic-bg-healthy-vms': ICBgHealthyVms,
'ic-bg-memory': ICBgMemory,
'ic-bg-pause-schedule': ICBgPauseSchedule,
'ic-bg-production-pipelines': ICBgProductionPipelines,
'ic-bg-project': ICBgProject,
'ic-bg-ransomware-vulnerable-cluster': ICBgRansomwareVulnerableCluster,
'ic-bg-restore': ICBgRestore,
'ic-bg-running-vms': ICBgRunningVms,
'ic-bg-scan': ICBgScan,
'ic-bg-storage-locations': ICBgStorageLocations,
'ic-bg-tenants': ICBgTenants,
'ic-bg-webhook': ICBgWebhook,
'ic-bharatpe': ICBharatpe,
'ic-binoculars': ICBinoculars,
'ic-bitbucket': ICBitbucket,
'ic-book-open': ICBookOpen,
'ic-bot': ICBot,
'ic-brain': ICBrain,
'ic-browser': ICBrowser,
'ic-bug': ICBug,
'ic-build-color': ICBuildColor,
'ic-building': ICBuilding,
'ic-bulb': ICBulb,
'ic-calendar': ICCalendar,
'ic-cancelled': ICCancelled,
'ic-card-stack': ICCardStack,
'ic-caret-down-small': ICCaretDownSmall,
'ic-caret-left': ICCaretLeft,
'ic-caret-right': ICCaretRight,
'ic-cd': ICCd,
'ic-chart-line-up': ICChartLineUp,
'ic-chart-repo': ICChartRepo,
'ic-chat-circle-dots': ICChatCircleDots,
'ic-chat-circle-online': ICChatCircleOnline,
'ic-check-all': ICCheckAll,
'ic-check-circle': ICCheckCircle,
'ic-check-square': ICCheckSquare,
'ic-check': ICCheck,
'ic-checks': ICChecks,
'ic-ci-linked': ICCiLinked,
'ic-circle-loader': ICCircleLoader,
'ic-circle-small': ICCircleSmall,
'ic-clean-brush': ICCleanBrush,
'ic-clipboard': ICClipboard,
'ic-clock-counterclockwise': ICClockCounterclockwise,
'ic-clock': ICClock,
'ic-close-circle': ICCloseCircle,
'ic-close-large': ICCloseLarge,
'ic-close-small': ICCloseSmall,
'ic-cloud-upload': ICCloudUpload,
'ic-cloud-vms': ICCloudVms,
'ic-cluster-isolated': ICClusterIsolated,
'ic-cluster': ICCluster,
'ic-code-wrapped': ICCodeWrapped,
'ic-code': ICCode,
'ic-coins-color-animated': ICCoinsColorAnimated,
'ic-coins': ICCoins,
'ic-comment': ICComment,
'ic-configuration-file': ICConfigurationFile,
'ic-container-registry': ICContainerRegistry,
'ic-container': ICContainer,
'ic-cookr': ICCookr,
'ic-copy': ICCopy,
'ic-cost-visibility': ICCostVisibility,
'ic-cpu': ICCpu,
'ic-crown': ICCrown,
'ic-cube': ICCube,
'ic-curved-arrow': ICCurvedArrow,
'ic-database-backup': ICDatabaseBackup,
'ic-delete-dots': ICDeleteDots,
'ic-delete-lightning': ICDeleteLightning,
'ic-delete': ICDelete,
'ic-delhivery': ICDelhivery,
'ic-deploy-color': ICDeployColor,
'ic-deploy-sync': ICDeploySync,
'ic-devtron-ai': ICDevtronAi,
'ic-devtron-app': ICDevtronApp,
'ic-devtron-header-logo': ICDevtronHeaderLogo,
'ic-devtron-job': ICDevtronJob,
'ic-devtron-text': ICDevtronText,
'ic-devtron': ICDevtron,
'ic-diff-added': ICDiffAdded,
'ic-diff-deleted': ICDiffDeleted,
'ic-diff-updated': ICDiffUpdated,
'ic-disconnect': ICDisconnect,
'ic-discord-fill': ICDiscordFill,
'ic-dockerhub': ICDockerhub,
'ic-dot-circle': ICDotCircle,
'ic-download': ICDownload,
'ic-ecr': ICEcr,
'ic-edit-lines': ICEditLines,
'ic-edit': ICEdit,
'ic-email': ICEmail,
'ic-enter-fullscreen': ICEnterFullscreen,
'ic-enterprise-feat': ICEnterpriseFeat,
'ic-enterprise-tag': ICEnterpriseTag,
'ic-env': ICEnv,
'ic-environment-isolated': ICEnvironmentIsolated,
'ic-environment': ICEnvironment,
'ic-error': ICError,
'ic-exit-fullscreen': ICExitFullscreen,
'ic-expand-right-sm': ICExpandRightSm,
'ic-expand-sm': ICExpandSm,
'ic-external-link': ICExternalLink,
'ic-failure': ICFailure,
'ic-fast-forward': ICFastForward,
'ic-file-code': ICFileCode,
'ic-file-download': ICFileDownload,
'ic-file-edit': ICFileEdit,
'ic-file-key': ICFileKey,
'ic-file': ICFile,
'ic-files-changed': ICFilesChanged,
'ic-files': ICFiles,
'ic-filter-applied': ICFilterApplied,
'ic-filter': ICFilter,
'ic-flask': ICFlask,
'ic-floppy-disk': ICFloppyDisk,
'ic-fluxcd-app': ICFluxcdApp,
'ic-folder-color': ICFolderColor,
'ic-folder-user': ICFolderUser,
'ic-folder': ICFolder,
'ic-gavel': ICGavel,
'ic-gear': ICGear,
'ic-gift-animated': ICGiftAnimated,
'ic-gift-gradient': ICGiftGradient,
'ic-gift': ICGift,
'ic-git-branch': ICGitBranch,
'ic-git': ICGit,
'ic-github': ICGithub,
'ic-gitlab': ICGitlab,
'ic-global-overview': ICGlobalOverview,
'ic-google-artifact-registry': ICGoogleArtifactRegistry,
'ic-google-cloud': ICGoogleCloud,
'ic-google-container-registry': ICGoogleContainerRegistry,
'ic-google-gke': ICGoogleGke,
'ic-google': ICGoogle,
'ic-grid-view': ICGridView,
'ic-group-filter-applied': ICGroupFilterApplied,
'ic-group-filter': ICGroupFilter,
'ic-hadolint': ICHadolint,
'ic-hand-pointing': ICHandPointing,
'ic-heart-green': ICHeartGreen,
'ic-heart-red-animated': ICHeartRedAnimated,
'ic-heart-red': ICHeartRed,
'ic-helm-app': ICHelmApp,
'ic-helm': ICHelm,
'ic-help-filled': ICHelpFilled,
'ic-help-outline': ICHelpOutline,
'ic-hibernate-circle': ICHibernateCircle,
'ic-hibernate': ICHibernate,
'ic-image-approve': ICImageApprove,
'ic-in-progress': ICInProgress,
'ic-info-filled-color': ICInfoFilledColor,
'ic-info-filled': ICInfoFilled,
'ic-info-outline': ICInfoOutline,
'ic-infrastructure-management': ICInfrastructureManagement,
'ic-input': ICInput,
'ic-install': ICInstall,
'ic-job-color': ICJobColor,
'ic-k3s': ICK3s,
'ic-k8s-job': ICK8sJob,
'ic-key-enter': ICKeyEnter,
'ic-key': ICKey,
'ic-kind': ICKind,
'ic-kubernetes': ICKubernetes,
'ic-laptop': ICLaptop,
'ic-ldap': ICLdap,
'ic-lego': ICLego,
'ic-lightning-fill': ICLightningFill,
'ic-lightning': ICLightning,
'ic-link': ICLink,
'ic-linked-build-color': ICLinkedBuildColor,
'ic-list-bullets': ICListBullets,
'ic-livspace': ICLivspace,
'ic-locked': ICLocked,
'ic-logout': ICLogout,
'ic-logs': ICLogs,
'ic-magic-wand': ICMagicWand,
'ic-magnifying-glass': ICMagnifyingGlass,
'ic-medium-delete': ICMediumDelete,
'ic-medium-megaphone': ICMediumMegaphone,
'ic-medium-paintbucket': ICMediumPaintbucket,
'ic-medium-upgrade': ICMediumUpgrade,
'ic-megaphone-left': ICMegaphoneLeft,
'ic-megaphone-right': ICMegaphoneRight,
'ic-memory': ICMemory,
'ic-microsoft': ICMicrosoft,
'ic-minikube': ICMinikube,
'ic-minus': ICMinus,
'ic-missing': ICMissing,
'ic-mobile': ICMobile,
'ic-monitoring': ICMonitoring,
'ic-more-vertical': ICMoreVertical,
'ic-namespace': ICNamespace,
'ic-nav-cursor': ICNavCursor,
'ic-new-chat': ICNewChat,
'ic-new': ICNew,
'ic-node-script': ICNodeScript,
'ic-oidc': ICOidc,
'ic-open-box': ICOpenBox,
'ic-open-in-new': ICOpenInNew,
'ic-openai': ICOpenai,
'ic-openshift': ICOpenshift,
'ic-oracle-cloud': ICOracleCloud,
'ic-otc-cloud': ICOtcCloud,
'ic-out-of-sync': ICOutOfSync,
'ic-paper-plane-color': ICPaperPlaneColor,
'ic-paper-plane': ICPaperPlane,
'ic-party': ICParty,
'ic-path': ICPath,
'ic-pause-circle': ICPauseCircle,
'ic-pause': ICPause,
'ic-pencil': ICPencil,
'ic-piggybank': ICPiggybank,
'ic-play-outline': ICPlayOutline,
'ic-priority-high-fill': ICPriorityHighFill,
'ic-priority-low-fill': ICPriorityLowFill,
'ic-priority-medium-fill': ICPriorityMediumFill,
'ic-priority-urgent-fill': ICPriorityUrgentFill,
'ic-quay': ICQuay,
'ic-quote': ICQuote,
'ic-ratings': ICRatings,
'ic-red-bulb': ICRedBulb,
'ic-release-hub': ICReleaseHub,
'ic-resize-handle': ICResizeHandle,
'ic-resource-browser': ICResourceBrowser,
'ic-resource-watcher': ICResourceWatcher,
'ic-right-panel-collapse': ICRightPanelCollapse,
'ic-rocket-gear': ICRocketGear,
'ic-rocket-launch': ICRocketLaunch,
'ic-security-fixable': ICSecurityFixable,
'ic-security-not-fixable': ICSecurityNotFixable,
'ic-security-policy': ICSecurityPolicy,
'ic-security-scan': ICSecurityScan,
'ic-security-vulnerability': ICSecurityVulnerability,
'ic-selected': ICSelected,
'ic-ses': ICSes,
'ic-shapes': ICShapes,
'ic-shield-check': ICShieldCheck,
'ic-slack': ICSlack,
'ic-sliders-vertical': ICSlidersVertical,
'ic-smtp': ICSmtp,
'ic-software-release-management': ICSoftwareReleaseManagement,
'ic-sort-ascending': ICSortAscending,
'ic-sort-descending': ICSortDescending,
'ic-sortable': ICSortable,
'ic-sparkle-ai-color': ICSparkleAiColor,
'ic-sparkle-color': ICSparkleColor,
'ic-speedometer': ICSpeedometer,
'ic-spinny': ICSpinny,
'ic-spray-can': ICSprayCan,
'ic-stack': ICStack,
'ic-stamp': ICStamp,
'ic-stop-fill': ICStopFill,
'ic-storage': ICStorage,
'ic-strategy-blue-green-color': ICStrategyBlueGreenColor,
'ic-strategy-blue-green': ICStrategyBlueGreen,
'ic-strategy-canary-color': ICStrategyCanaryColor,
'ic-strategy-canary': ICStrategyCanary,
'ic-strategy-recreate-color': ICStrategyRecreateColor,
'ic-strategy-recreate': ICStrategyRecreate,
'ic-strategy-rolling-color': ICStrategyRollingColor,
'ic-strategy-rolling': ICStrategyRolling,
'ic-success-blue': ICSuccessBlue,
'ic-success': ICSuccess,
'ic-sun': ICSun,
'ic-suspended': ICSuspended,
'ic-symbol-greater-than': ICSymbolGreaterThan,
'ic-tag': ICTag,
'ic-tata1mg': ICTata1mg,
'ic-tenants': ICTenants,
'ic-terminal-fill': ICTerminalFill,
'ic-terminal': ICTerminal,
'ic-thermometer': ICThermometer,
'ic-thumb-down-fill': ICThumbDownFill,
'ic-thumb-down': ICThumbDown,
'ic-thumb-up-fill': ICThumbUpFill,
'ic-thumb-up': ICThumbUp,
'ic-timeout-dash': ICTimeoutDash,
'ic-timer': ICTimer,
'ic-traffic-signal': ICTrafficSignal,
'ic-travclan': ICTravclan,
'ic-trend-up': ICTrendUp,
'ic-two-cubes': ICTwoCubes,
'ic-ubuntu': ICUbuntu,
'ic-unknown': ICUnknown,
'ic-upgrade-enterprise': ICUpgradeEnterprise,
'ic-user-circle': ICUserCircle,
'ic-user-key': ICUserKey,
'ic-users': ICUsers,
'ic-view-variable-toggle': ICViewVariableToggle,
'ic-visibility-off': ICVisibilityOff,
'ic-visibility-on': ICVisibilityOn,
'ic-warning-fill': ICWarningFill,
'ic-warning-stroke': ICWarningStroke,
'ic-warning': ICWarning,
'ic-webhook-config': ICWebhookConfig,
'ic-webhook': ICWebhook,
'ic-wifi-slash': ICWifiSlash,
'ic-world-globe': ICWorldGlobe,
}
export type IconName = keyof typeof iconMap
export interface IconsProps extends Omit<IconBaseProps, 'name' | 'iconMap'> {
/** The name of the icon to render. */
name: keyof typeof iconMap
}
export const Icon = (props: IconsProps) => <IconBase {...props} iconMap={iconMap} />