-
Notifications
You must be signed in to change notification settings - Fork 410
Expand file tree
/
Copy pathicons.tsx
More file actions
1983 lines (1928 loc) · 94.1 KB
/
Copy pathicons.tsx
File metadata and controls
1983 lines (1928 loc) · 94.1 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
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* Icon registry and helpers.
*
* Categories:
* - `Icons`: general UI/brand glyphs.
* - `UDFIcons`: action icons keyed by registry action (trigger/core/tools/ai).
* - `providerIcons`: provider badges.
* - `secretIcons`: credential type badges.
*
* Adding/reusing icons:
* - Prefer reusing existing vendor icon components across categories.
* - For `UDFIcons`, register entries via `createIconRenderer` for consistent
* wrapper/size handling; use `wrapperClassName`/`iconClassName` for tweaks.
* - Use a custom renderer only when an icon needs overlays or extra layout.
*/
import {
Blend,
BlocksIcon,
BoxIcon,
Building2Icon,
Code,
Cpu,
DatabaseIcon,
Globe,
KeyRound,
ListChecks,
LogInIcon,
MailIcon,
MergeIcon,
MessageCircleMore,
MessageCirclePlus,
Plug2,
RefreshCcw,
SendIcon,
ShieldAlert,
ShieldPlus,
Sparkles,
SplitIcon,
Table,
WandSparkles,
WorkflowIcon,
ZapIcon,
} from "lucide-react"
import { cn } from "@/lib/utils"
type IconProps = React.HTMLAttributes<SVGElement>
type CustomIconProps = IconProps & {
flairsize?: "sm" | "md" | "lg"
iconClassName?: string
}
export const Icons = {
logo: (props: IconProps) => (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 27" {...props}>
<path
fill="#000000"
d="M12.3822 3.53999C12.054 4.02329 11.7313 4.53498 11.5029 4.91328L11.1972 5.41953L10.6118 5.50502C6.02493 6.17496 2.50435 10.1209 2.50435 14.8838C2.50435 20.1177 6.75443 24.363 12 24.363C17.2456 24.363 21.4957 20.1177 21.4957 14.8838C21.4957 13.5676 21.2276 12.317 20.7443 11.1811L23.0489 10.2015C23.6616 11.6415 24 13.2248 24 14.8838C24 21.5026 18.6262 26.866 12 26.866C5.37385 26.866 0 21.5026 0 14.8838C0 9.06384 4.15393 4.21622 9.66122 3.12927C9.96291 2.64898 10.3338 2.08367 10.689 1.59239C10.9283 1.26149 11.1866 0.927598 11.4273 0.67256C11.5426 0.550492 11.6976 0.399017 11.8781 0.276051C11.9682 0.214659 12.1098 0.128874 12.292 0.0696269C12.4715 0.0112944 12.7876 -0.0518963 13.1495 0.0685454C13.6061 0.220489 13.8519 0.558613 13.9453 0.69853C14.061 0.872024 14.1436 1.05531 14.2004 1.19425C14.2891 1.41119 14.3768 1.67991 14.4485 1.89969C14.4664 1.95427 14.4832 2.00584 14.4988 2.05285C14.5614 2.24116 14.6139 2.38741 14.6599 2.49826C15.5671 2.71414 16.9787 3.09593 17.9405 3.35607C17.9842 3.36788 18.0269 3.37943 18.0686 3.39071C18.3616 3.18553 18.7003 2.96937 19.0405 2.79063C19.3212 2.64317 19.6625 2.48908 20.0139 2.40633C20.3048 2.33782 20.9445 2.23484 21.5187 2.64313L21.9696 2.96371L22.036 3.51276C22.3815 6.36928 21.5919 9.66699 19.9031 11.8337C19.0456 12.9339 17.8926 13.8186 16.4631 14.1044C15.0114 14.3947 13.4757 14.0273 11.9567 13.0019L13.3583 10.9276C14.4482 11.6633 15.3117 11.782 15.9718 11.65C16.6542 11.5136 17.3256 11.0676 17.9275 10.2955C18.8835 9.0689 19.5007 7.21641 19.5982 5.37671C19.4144 5.50192 19.2444 5.62833 19.1112 5.7347L18.6176 6.1289L18.0072 5.96636C17.8011 5.91149 17.5325 5.83889 17.2281 5.75659C16.1191 5.45678 14.5341 5.02828 13.7587 4.85956C13.3554 4.77179 13.0724 4.54607 12.8974 4.36146C12.723 4.17742 12.5993 3.97563 12.5127 3.81222C12.466 3.72423 12.4226 3.63249 12.3822 3.53999ZM20.5964 4.84095C20.5964 4.84098 20.5952 4.84122 20.593 4.84157C20.5953 4.84109 20.5964 4.84092 20.5964 4.84095Z"
/>
</svg>
),
twitter: (props: IconProps) => (
<svg
{...props}
height="23"
viewBox="0 0 1200 1227"
width="23"
xmlns="http://www.w3.org/2000/svg"
>
<path d="M714.163 519.284L1160.89 0H1055.03L667.137 450.887L357.328 0H0L468.492 681.821L0 1226.37H105.866L515.491 750.218L842.672 1226.37H1200L714.137 519.284H714.163ZM569.165 687.828L521.697 619.934L144.011 79.6944H306.615L611.412 515.685L658.88 583.579L1055.08 1150.3H892.476L569.165 687.854V687.828Z" />
</svg>
),
gitHub: (props: IconProps) => (
<svg viewBox="0 0 438.549 438.549" {...props}>
<path
fill="currentColor"
d="M409.132 114.573c-19.608-33.596-46.205-60.194-79.798-79.8-33.598-19.607-70.277-29.408-110.063-29.408-39.781 0-76.472 9.804-110.063 29.408-33.596 19.605-60.192 46.204-79.8 79.8C9.803 148.168 0 184.854 0 224.63c0 47.78 13.94 90.745 41.827 128.906 27.884 38.164 63.906 64.572 108.063 79.227 5.14.954 8.945.283 11.419-1.996 2.475-2.282 3.711-5.14 3.711-8.562 0-.571-.049-5.708-.144-15.417a2549.81 2549.81 0 01-.144-25.406l-6.567 1.136c-4.187.767-9.469 1.092-15.846 1-6.374-.089-12.991-.757-19.842-1.999-6.854-1.231-13.229-4.086-19.13-8.559-5.898-4.473-10.085-10.328-12.56-17.556l-2.855-6.57c-1.903-4.374-4.899-9.233-8.992-14.559-4.093-5.331-8.232-8.945-12.419-10.848l-1.999-1.431c-1.332-.951-2.568-2.098-3.711-3.429-1.142-1.331-1.997-2.663-2.568-3.997-.572-1.335-.098-2.43 1.427-3.289 1.525-.859 4.281-1.276 8.28-1.276l5.708.853c3.807.763 8.516 3.042 14.133 6.851 5.614 3.806 10.229 8.754 13.846 14.842 4.38 7.806 9.657 13.754 15.846 17.847 6.184 4.093 12.419 6.136 18.699 6.136 6.28 0 11.704-.476 16.274-1.423 4.565-.952 8.848-2.383 12.847-4.285 1.713-12.758 6.377-22.559 13.988-29.41-10.848-1.14-20.601-2.857-29.264-5.14-8.658-2.286-17.605-5.996-26.835-11.14-9.235-5.137-16.896-11.516-22.985-19.126-6.09-7.614-11.088-17.61-14.987-29.979-3.901-12.374-5.852-26.648-5.852-42.826 0-23.035 7.52-42.637 22.557-58.817-7.044-17.318-6.379-36.732 1.997-58.24 5.52-1.715 13.706-.428 24.554 3.853 10.85 4.283 18.794 7.952 23.84 10.994 5.046 3.041 9.089 5.618 12.135 7.708 17.705-4.947 35.976-7.421 54.818-7.421s37.117 2.474 54.823 7.421l10.849-6.849c7.419-4.57 16.18-8.758 26.262-12.565 10.088-3.805 17.802-4.853 23.134-3.138 8.562 21.509 9.325 40.922 2.279 58.24 15.036 16.18 22.559 35.787 22.559 58.817 0 16.178-1.958 30.497-5.853 42.966-3.9 12.471-8.941 22.457-15.125 29.979-6.191 7.521-13.901 13.85-23.131 18.986-9.232 5.14-18.182 8.85-26.84 11.136-8.662 2.286-18.415 4.004-29.263 5.146 9.894 8.562 14.842 22.077 14.842 40.539v60.237c0 3.422 1.19 6.279 3.572 8.562 2.379 2.279 6.136 2.95 11.276 1.995 44.163-14.653 80.185-41.062 108.068-79.226 27.88-38.161 41.825-81.126 41.825-128.906-.01-39.771-9.818-76.454-29.414-110.049z"
></path>
</svg>
),
microsoft: (props: IconProps) => (
<svg viewBox="0 0 88 88" {...props}>
<path fill="#f25022" d="M0 0h41.39v41.39H0z"></path>
<path fill="#00a4ef" d="M46.61 0H88v41.39H46.61z"></path>
<path fill="#7fba00" d="M0 46.61h41.39V88H0z"></path>
<path fill="#ffb900" d="M46.61 46.61H88V88H46.61z"></path>
</svg>
),
radix: (props: IconProps) => (
<svg viewBox="0 0 25 25" fill="none" {...props}>
<path
d="M12 25C7.58173 25 4 21.4183 4 17C4 12.5817 7.58173 9 12 9V25Z"
fill="currentcolor"
></path>
<path d="M12 0H4V8H12V0Z" fill="currentcolor"></path>
<path
d="M17 8C19.2091 8 21 6.20914 21 4C21 1.79086 19.2091 0 17 0C14.7909 0 13 1.79086 13 4C13 6.20914 14.7909 8 17 8Z"
fill="currentcolor"
></path>
</svg>
),
aria: (props: IconProps) => (
<svg role="img" viewBox="0 0 24 24" fill="currentColor" {...props}>
<path d="M13.966 22.624l-1.69-4.281H8.122l3.892-9.144 5.662 13.425zM8.884 1.376H0v21.248zm15.116 0h-8.884L24 22.624Z" />
</svg>
),
npm: (props: IconProps) => (
<svg viewBox="0 0 24 24" {...props}>
<path
d="M1.763 0C.786 0 0 .786 0 1.763v20.474C0 23.214.786 24 1.763 24h20.474c.977 0 1.763-.786 1.763-1.763V1.763C24 .786 23.214 0 22.237 0zM5.13 5.323l13.837.019-.009 13.836h-3.464l.01-10.382h-3.456L12.04 19.17H5.113z"
fill="currentColor"
/>
</svg>
),
yarn: (props: IconProps) => (
<svg viewBox="0 0 24 24" {...props}>
<path
d="M12 0C5.375 0 0 5.375 0 12s5.375 12 12 12 12-5.375 12-12S18.625 0 12 0zm.768 4.105c.183 0 .363.053.525.157.125.083.287.185.755 1.154.31-.088.468-.042.551-.019.204.056.366.19.463.375.477.917.542 2.553.334 3.605-.241 1.232-.755 2.029-1.131 2.576.324.329.778.899 1.117 1.825.278.774.31 1.478.273 2.015a5.51 5.51 0 0 0 .602-.329c.593-.366 1.487-.917 2.553-.931.714-.009 1.269.445 1.353 1.103a1.23 1.23 0 0 1-.945 1.362c-.649.158-.95.278-1.821.843-1.232.797-2.539 1.242-3.012 1.39a1.686 1.686 0 0 1-.704.343c-.737.181-3.266.315-3.466.315h-.046c-.783 0-1.214-.241-1.45-.491-.658.329-1.51.19-2.122-.134a1.078 1.078 0 0 1-.58-1.153 1.243 1.243 0 0 1-.153-.195c-.162-.25-.528-.936-.454-1.946.056-.723.556-1.367.88-1.71a5.522 5.522 0 0 1 .408-2.256c.306-.727.885-1.348 1.32-1.737-.32-.537-.644-1.367-.329-2.21.227-.602.412-.936.82-1.08h-.005c.199-.074.389-.153.486-.259a3.418 3.418 0 0 1 2.298-1.103c.037-.093.079-.185.125-.283.31-.658.639-1.029 1.024-1.168a.94.94 0 0 1 .328-.06zm.006.7c-.507.016-1.001 1.519-1.001 1.519s-1.27-.204-2.266.871c-.199.218-.468.334-.746.44-.079.028-.176.023-.417.672-.371.991.625 2.094.625 2.094s-1.186.839-1.626 1.881c-.486 1.144-.338 2.261-.338 2.261s-.843.732-.899 1.487c-.051.663.139 1.2.343 1.515.227.343.51.176.51.176s-.561.653-.037.931c.477.25 1.283.394 1.71-.037.31-.31.371-1.001.486-1.283.028-.065.12.111.209.199.097.093.264.195.264.195s-.755.324-.445 1.066c.102.246.468.403 1.066.398.222-.005 2.664-.139 3.313-.296.375-.088.505-.283.505-.283s1.566-.431 2.998-1.357c.917-.598 1.293-.76 2.034-.936.612-.148.57-1.098-.241-1.084-.839.009-1.575.44-2.196.825-1.163.718-1.742.672-1.742.672l-.018-.032c-.079-.13.371-1.293-.134-2.678-.547-1.515-1.413-1.881-1.344-1.997.297-.5 1.038-1.297 1.334-2.78.176-.899.13-2.377-.269-3.151-.074-.144-.732.241-.732.241s-.616-1.371-.788-1.483a.271.271 0 0 0-.157-.046z"
fill="currentColor"
/>
</svg>
),
pnpm: (props: IconProps) => (
<svg viewBox="0 0 24 24" {...props}>
<path
d="M0 0v7.5h7.5V0zm8.25 0v7.5h7.498V0zm8.25 0v7.5H24V0zM8.25 8.25v7.5h7.498v-7.5zm8.25 0v7.5H24v-7.5zM0 16.5V24h7.5v-7.5zm8.25 0V24h7.498v-7.5zm8.25 0V24H24v-7.5z"
fill="currentColor"
/>
</svg>
),
react: (props: IconProps) => (
<svg viewBox="0 0 24 24" {...props}>
<path
d="M14.23 12.004a2.236 2.236 0 0 1-2.235 2.236 2.236 2.236 0 0 1-2.236-2.236 2.236 2.236 0 0 1 2.235-2.236 2.236 2.236 0 0 1 2.236 2.236zm2.648-10.69c-1.346 0-3.107.96-4.888 2.622-1.78-1.653-3.542-2.602-4.887-2.602-.41 0-.783.093-1.106.278-1.375.793-1.683 3.264-.973 6.365C1.98 8.917 0 10.42 0 12.004c0 1.59 1.99 3.097 5.043 4.03-.704 3.113-.39 5.588.988 6.38.32.187.69.275 1.102.275 1.345 0 3.107-.96 4.888-2.624 1.78 1.654 3.542 2.603 4.887 2.603.41 0 .783-.09 1.106-.275 1.374-.792 1.683-3.263.973-6.365C22.02 15.096 24 13.59 24 12.004c0-1.59-1.99-3.097-5.043-4.032.704-3.11.39-5.587-.988-6.38-.318-.184-.688-.277-1.092-.278zm-.005 1.09v.006c.225 0 .406.044.558.127.666.382.955 1.835.73 3.704-.054.46-.142.945-.25 1.44-.96-.236-2.006-.417-3.107-.534-.66-.905-1.345-1.727-2.035-2.447 1.592-1.48 3.087-2.292 4.105-2.295zm-9.77.02c1.012 0 2.514.808 4.11 2.28-.686.72-1.37 1.537-2.02 2.442-1.107.117-2.154.298-3.113.538-.112-.49-.195-.964-.254-1.42-.23-1.868.054-3.32.714-3.707.19-.09.4-.127.563-.132zm4.882 3.05c.455.468.91.992 1.36 1.564-.44-.02-.89-.034-1.345-.034-.46 0-.915.01-1.36.034.44-.572.895-1.096 1.345-1.565zM12 8.1c.74 0 1.477.034 2.202.093.406.582.802 1.203 1.183 1.86.372.64.71 1.29 1.018 1.946-.308.655-.646 1.31-1.013 1.95-.38.66-.773 1.288-1.18 1.87-.728.063-1.466.098-2.21.098-.74 0-1.477-.035-2.202-.093-.406-.582-.802-1.204-1.183-1.86-.372-.64-.71-1.29-1.018-1.946.303-.657.646-1.313 1.013-1.954.38-.66.773-1.286 1.18-1.868.728-.064 1.466-.098 2.21-.098zm-3.635.254c-.24.377-.48.763-.704 1.16-.225.39-.435.782-.635 1.174-.265-.656-.49-1.31-.676-1.947.64-.15 1.315-.283 2.015-.386zm7.26 0c.695.103 1.365.23 2.006.387-.18.632-.405 1.282-.66 1.933-.2-.39-.41-.783-.64-1.174-.225-.392-.465-.774-.705-1.146zm3.063.675c.484.15.944.317 1.375.498 1.732.74 2.852 1.708 2.852 2.476-.005.768-1.125 1.74-2.857 2.475-.42.18-.88.342-1.355.493-.28-.958-.646-1.956-1.1-2.98.45-1.017.81-2.01 1.085-2.964zm-13.395.004c.278.96.645 1.957 1.1 2.98-.45 1.017-.812 2.01-1.086 2.964-.484-.15-.944-.318-1.37-.5-1.732-.737-2.852-1.706-2.852-2.474 0-.768 1.12-1.742 2.852-2.476.42-.18.88-.342 1.356-.494zm11.678 4.28c.265.657.49 1.312.676 1.948-.64.157-1.316.29-2.016.39.24-.375.48-.762.705-1.158.225-.39.435-.788.636-1.18zm-9.945.02c.2.392.41.783.64 1.175.23.39.465.772.705 1.143-.695-.102-1.365-.23-2.006-.386.18-.63.406-1.282.66-1.933zM17.92 16.32c.112.493.2.968.254 1.423.23 1.868-.054 3.32-.714 3.708-.147.09-.338.128-.563.128-1.012 0-2.514-.807-4.11-2.28.686-.72 1.37-1.536 2.02-2.44 1.107-.118 2.154-.3 3.113-.54zm-11.83.01c.96.234 2.006.415 3.107.532.66.905 1.345 1.727 2.035 2.446-1.595 1.483-3.092 2.295-4.11 2.295-.22-.005-.406-.05-.553-.132-.666-.38-.955-1.834-.73-3.703.054-.46.142-.944.25-1.438zm4.56.64c.44.02.89.034 1.345.034.46 0 .915-.01 1.36-.034-.44.572-.895 1.095-1.345 1.565-.455-.47-.91-.993-1.36-1.565z"
fill="currentColor"
/>
</svg>
),
tailwind: (props: IconProps) => (
<svg viewBox="0 0 24 24" {...props}>
<path
d="M12.001,4.8c-3.2,0-5.2,1.6-6,4.8c1.2-1.6,2.6-2.2,4.2-1.8c0.913,0.228,1.565,0.89,2.288,1.624 C13.666,10.618,15.027,12,18.001,12c3.2,0,5.2-1.6,6-4.8c-1.2,1.6-2.6,2.2-4.2,1.8c-0.913-0.228-1.565-0.89-2.288-1.624 C16.337,6.182,14.976,4.8,12.001,4.8z M6.001,12c-3.2,0-5.2,1.6-6,4.8c1.2-1.6,2.6-2.2,4.2-1.8c0.913,0.228,1.565,0.89,2.288,1.624 c1.177,1.194,2.538,2.576,5.512,2.576c3.2,0,5.2-1.6,6-4.8c-1.2,1.6-2.6,2.2-4.2,1.8c-0.913-0.228-1.565-0.89-2.288-1.624 C10.337,13.382,8.976,12,6.001,12z"
fill="currentColor"
/>
</svg>
),
google: (props: IconProps) => (
<svg role="img" viewBox="0 0 24 24" {...props}>
<path
fill="currentColor"
d="M12.48 10.92v3.28h7.84c-.24 1.84-.853 3.187-1.787 4.133-1.147 1.147-2.933 2.4-6.053 2.4-4.827 0-8.6-3.893-8.6-8.72s3.773-8.72 8.6-8.72c2.6 0 4.507 1.027 5.907 2.347l2.307-2.307C18.747 1.44 16.133 0 12.48 0 5.867 0 .307 5.387.307 12s5.56 12 12.173 12c3.573 0 6.267-1.173 8.373-3.36 2.16-2.16 2.84-5.213 2.84-7.667 0-.76-.053-1.467-.173-2.053H12.48z"
/>
</svg>
),
apple: (props: IconProps) => (
<svg role="img" viewBox="0 0 24 24" {...props}>
<path
d="M12.152 6.896c-.948 0-2.415-1.078-3.96-1.04-2.04.027-3.91 1.183-4.961 3.014-2.117 3.675-.546 9.103 1.519 12.09 1.013 1.454 2.208 3.09 3.792 3.039 1.52-.065 2.09-.987 3.935-.987 1.831 0 2.35.987 3.96.948 1.637-.026 2.676-1.48 3.676-2.948 1.156-1.688 1.636-3.325 1.662-3.415-.039-.013-3.182-1.221-3.22-4.857-.026-3.04 2.48-4.494 2.597-4.559-1.429-2.09-3.623-2.324-4.39-2.376-2-.156-3.675 1.09-4.61 1.09zM15.53 3.83c.843-1.012 1.4-2.427 1.245-3.83-1.207.052-2.662.805-3.532 1.818-.78.896-1.454 2.338-1.273 3.714 1.338.104 2.715-.688 3.559-1.701"
fill="currentColor"
/>
</svg>
),
paypal: (props: IconProps) => (
<svg role="img" viewBox="0 0 24 24" {...props}>
<path
d="M7.076 21.337H2.47a.641.641 0 0 1-.633-.74L4.944.901C5.026.382 5.474 0 5.998 0h7.46c2.57 0 4.578.543 5.69 1.81 1.01 1.15 1.304 2.42 1.012 4.287-.023.143-.047.288-.077.437-.983 5.05-4.349 6.797-8.647 6.797h-2.19c-.524 0-.968.382-1.05.9l-1.12 7.106zm14.146-14.42a3.35 3.35 0 0 0-.607-.541c-.013.076-.026.175-.041.254-.93 4.778-4.005 7.201-9.138 7.201h-2.19a.563.563 0 0 0-.556.479l-1.187 7.527h-.506l-.24 1.516a.56.56 0 0 0 .554.647h3.882c.46 0 .85-.334.922-.788.06-.26.76-4.852.816-5.09a.932.932 0 0 1 .923-.788h.58c3.76 0 6.705-1.528 7.565-5.946.36-1.847.174-3.388-.777-4.471z"
fill="currentColor"
/>
</svg>
),
spinner: (props: IconProps) => (
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
{...props}
>
<path d="M21 12a9 9 0 1 1-6.219-8.56" />
</svg>
),
discord: (props: IconProps) => (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 127.14 96.36"
{...props}
>
<path d="M107.7 8.07A105.15 105.15 0 0 0 81.47 0a72.06 72.06 0 0 0-3.36 6.83 97.68 97.68 0 0 0-29.11 0A72.37 72.37 0 0 0 45.64 0a105.89 105.89 0 0 0-26.25 8.09C2.79 32.65-1.71 56.6.54 80.21a105.73 105.73 0 0 0 32.17 16.15 77.7 77.7 0 0 0 6.89-11.11 68.42 68.42 0 0 1-10.85-5.18c.91-.66 1.8-1.34 2.66-2a75.57 75.57 0 0 0 64.32 0c.87.71 1.76 1.39 2.66 2a68.68 68.68 0 0 1-10.87 5.19 77 77 0 0 0 6.89 11.1 105.25 105.25 0 0 0 32.19-16.14c2.64-27.38-4.51-51.11-18.9-72.15ZM42.45 65.69C36.18 65.69 31 60 31 53s5-12.74 11.43-12.74S54 46 53.89 53s-5.05 12.69-11.44 12.69Zm42.24 0C78.41 65.69 73.25 60 73.25 53s5-12.74 11.44-12.74S96.23 46 96.12 53s-5.04 12.69-11.43 12.69Z" />
</svg>
),
saml: (props: IconProps) => <Building2Icon {...props} />,
login: (props: IconProps) => <LogInIcon {...props} />,
}
export function getFlairSize(size: "sm" | "md" | "lg"): string {
switch (size) {
case "sm":
return "size-2"
case "lg":
return "size-6"
default:
return "size-4"
}
}
export function getIcon(key: string, props?: CustomIconProps): JSX.Element {
// Try exact match
if (UDFIcons[key]) {
return UDFIcons[key](props ?? {})
}
const segments = key.split(".")
// Try all until last segment
for (let i = segments.length; i > 0; i--) {
const subKey = segments.slice(0, i).join(".")
if (UDFIcons[subKey]) {
return UDFIcons[subKey](props ?? {})
}
}
// Try top level namespace match
const topLevelNamespace = segments[0]
if (UDFIcons[topLevelNamespace]) {
return UDFIcons[topLevelNamespace](props ?? {})
}
// return default icon
const { className, ...rest } = props ?? {}
return (
<div className={cn(basicIconsCommon, "bg-sky-100", className)}>
<BoxIcon className="size-6" {...rest} />
</div>
)
}
export const basicIconsCommon =
"flex p-1 shrink-0 rounded-full items-center justify-center bg-stone-200/50"
function createIconRenderer(
Icon: (props: IconProps) => JSX.Element,
options?: { wrapperClassName?: string; iconClassName?: string }
) {
return ({
className,
iconClassName,
flairsize: _unusedFlairSize,
...rest
}: CustomIconProps) => (
<div className={cn(basicIconsCommon, options?.wrapperClassName, className)}>
<Icon
{...rest}
className={cn("size-full", options?.iconClassName, iconClassName)}
/>
</div>
)
}
export const UDFIcons: Record<string, (props: CustomIconProps) => JSX.Element> =
{
// Triggers namespace
trigger: ({ className, ...rest }) => (
<div className={cn(basicIconsCommon, "bg-indigo-100", className)}>
<ZapIcon {...rest} />
</div>
),
// Core namespace
core: ({ className, ...rest }) => (
<div className={cn(basicIconsCommon, "bg-slate-200/50", className)}>
<Cpu {...rest} />
</div>
),
"core.http_request": ({ className, ...rest }) => (
<div className={cn(basicIconsCommon, "bg-emerald-100", className)}>
<Globe {...rest} />
</div>
),
"core.http_poll": ({ className, ...rest }) => (
<div className={cn(basicIconsCommon, "bg-emerald-100", className)}>
<RefreshCcw {...rest} />
</div>
),
"core.require": ({ className, ...rest }) => (
<div className={cn(basicIconsCommon, "bg-rose-200/70", className)}>
<ListChecks {...rest} />
</div>
),
"core.transform": ({ className, ...rest }) => (
<div className={cn(basicIconsCommon, "bg-fuchsia-200/70", className)}>
<Blend {...rest} />
</div>
),
"core.transform.scatter": ({ className, ...rest }) => (
<div className={cn(basicIconsCommon, "bg-fuchsia-200/70", className)}>
{/* Rotate 180deg to appear upside down */}
<SplitIcon style={{ transform: "rotate(90deg)" }} {...rest} />
</div>
),
"core.transform.gather": ({ className, ...rest }) => (
<div className={cn(basicIconsCommon, "bg-fuchsia-200/70", className)}>
{/* Rotate 180deg to appear upside down */}
<MergeIcon style={{ transform: "rotate(90deg)" }} {...rest} />
</div>
),
"core.loop": ({ className, ...rest }) => (
<div className={cn(basicIconsCommon, "bg-orange-200/70", className)}>
<RefreshCcw {...rest} />
</div>
),
"core.loop.start": ({ className, ...rest }) => (
<div className={cn(basicIconsCommon, "bg-orange-200/70", className)}>
<SplitIcon style={{ transform: "rotate(90deg)" }} {...rest} />
</div>
),
"core.loop.end": ({ className, ...rest }) => (
<div className={cn(basicIconsCommon, "bg-orange-200/70", className)}>
<MergeIcon style={{ transform: "rotate(90deg)" }} {...rest} />
</div>
),
"core.cases": ({ className, ...rest }) => (
<div className={cn(basicIconsCommon, "bg-rose-100", className)}>
<ShieldAlert {...rest} />
</div>
),
"core.cases.update": ({ className, ...rest }) => (
<div className={cn(basicIconsCommon, "bg-rose-100", className)}>
<ShieldPlus {...rest} />
</div>
),
"core.cases.create_comment": ({ className, ...rest }) => (
<div className={cn(basicIconsCommon, "bg-rose-100", className)}>
<MessageCircleMore {...rest} />
</div>
),
"core.cases.update_comment": ({ className, ...rest }) => (
<div className={cn(basicIconsCommon, "bg-rose-100", className)}>
<MessageCirclePlus {...rest} />
</div>
),
"core.receive_email": ({ className, ...rest }) => (
<div className={cn(basicIconsCommon, "bg-purple-100", className)}>
<MailIcon {...rest} />
</div>
),
"core.send_email": ({ className, ...rest }) => (
<div className={cn(basicIconsCommon, "bg-lime-100", className)}>
<SendIcon {...rest} />
</div>
),
"core.send_email_smtp": ({ className, ...rest }) => (
<div className={cn(basicIconsCommon, "bg-lime-100", className)}>
<SendIcon {...rest} />
</div>
),
"core.script": ({ className, ...rest }) => (
<div className={cn(basicIconsCommon, "bg-purple-100", className)}>
<Code {...rest} />
</div>
),
/* AI subnamespace */
"core.ai_action": ({ className, flairsize = "md", ...rest }) => (
<div className={cn(basicIconsCommon, "bg-amber-100", className)}>
<WandSparkles {...rest} />
<Sparkles
className={cn(
"absolute top-0 right-0 -translate-y-1/8 translate-x-1/8 fill-yellow-500/70 text-amber-500/70",
getFlairSize(flairsize)
)}
/>
</div>
),
"core.workflow": ({ className, ...rest }) => (
<div className={cn(basicIconsCommon, "bg-violet-100/80", className)}>
<WorkflowIcon {...rest} />
</div>
),
"core.table": ({ className, ...rest }) => (
<div className={cn(basicIconsCommon, "bg-sky-100/80", className)}>
<Table {...rest} />
</div>
),
"core.sql": ({ className, ...rest }) => (
<div className={cn(basicIconsCommon, "bg-teal-100/80", className)}>
<DatabaseIcon {...rest} />
</div>
),
"core.duckdb": ({ className, ...rest }) => (
<div className={cn(basicIconsCommon, "bg-teal-100/80", className)}>
<DatabaseIcon {...rest} />
</div>
),
tools: createIconRenderer((props: IconProps) => <BlocksIcon {...props} />),
"tools.datadog": createIconRenderer(DatadogIcon),
// Emailrep namespace
"tools.emailrep": createIconRenderer(EmailrepIcon, {
iconClassName: "h-auto w-full",
}),
// Sublime namespace
"tools.sublime": createIconRenderer(SublimeIcon, {
iconClassName: "h-auto w-full",
}),
// URLScan namespace
"tools.urlscan": createIconRenderer(UrlscanIcon),
"tools.virustotal": createIconRenderer(VirusTotalIcon),
"tools.wiz": createIconRenderer(WizIcon),
"tools.pagerduty": createIconRenderer(PagerDutyToolIcon, {
wrapperClassName: "rounded-xl",
}),
"tools.gophish": createIconRenderer(GophishToolIcon, {
wrapperClassName: "rounded-full",
iconClassName: "h-full w-auto",
}),
"tools.servicenow": createIconRenderer(ServiceNowIcon),
"tools.slack": createIconRenderer(SlackIcon),
"tools.slack_blocks": createIconRenderer(SlackIcon),
"tools.jira": createIconRenderer(JiraIcon),
"tools.github": createIconRenderer(GitHubIcon),
"tools.microsoft_defender_endpoint": createIconRenderer(
MicrosoftDefenderIcon
),
"tools.microsoft_defender_xdr": createIconRenderer(MicrosoftDefenderIcon),
"tools.microsoft_entra": createIconRenderer(MicrosoftEntraIcon),
"tools.microsoft_teams": createIconRenderer(MicrosoftTeamsIcon),
"tools.microsoft_sentinel": createIconRenderer(MicrosoftSentinelIcon),
"tools.azure_log_analytics": createIconRenderer(AzureLogAnalyticsIcon),
"tools.google_sheets": createIconRenderer(GoogleSheetsIcon),
"tools.google_docs": createIconRenderer(GoogleDocsIcon),
"tools.google_drive": createIconRenderer(GoogleDriveIcon),
"tools.google_api": createIconRenderer(GoogleIcon),
"tools.gmail": createIconRenderer(GmailIcon),
"tools.google_secops_detection": createIconRenderer(
GoogleSecOpsDetectionIcon
),
"tools.google_secops_soar": createIconRenderer(GoogleSecOpsIcon),
// AI namespace
"ai.slackbot": createIconRenderer(SlackIcon),
}
/**
* Icons for providers.
*
* @example
* <ProviderIcon providerId="microsoft" />
* <ProviderIcon providerId="google" />
* <ProviderIcon providerId="github" />
*/
export const providerIcons: Record<
string,
(props: CustomIconProps) => JSX.Element
> = {
microsoft_graph: ({ className, ...rest }) => (
<div className={className}>
<MicrosoftIcon {...rest} />
</div>
),
microsoft_defender: ({ className, ...rest }) => (
<div className={className}>
<MicrosoftDefenderIcon {...rest} />
</div>
),
microsoft_defender_endpoint: ({ className, ...rest }) => (
<div className={className}>
<MicrosoftDefenderIcon {...rest} />
</div>
),
microsoft_defender_xdr: ({ className, ...rest }) => (
<div className={className}>
<MicrosoftDefenderIcon {...rest} />
</div>
),
microsoft_entra: ({ className, ...rest }) => (
<div className={className}>
<MicrosoftEntraIcon {...rest} />
</div>
),
microsoft_teams: ({ className, ...rest }) => (
<div className={className}>
<MicrosoftTeamsIcon {...rest} />
</div>
),
microsoft_sentinel: ({ className, ...rest }) => (
<div className={className}>
<MicrosoftSentinelIcon {...rest} />
</div>
),
azure_log_analytics: ({ className, ...rest }) => (
<div className={className}>
<AzureLogAnalyticsIcon {...rest} />
</div>
),
azure_management: ({ className, ...rest }) => (
<div className={className}>
<AzureManagementIcon {...rest} />
</div>
),
google: ({ className, ...rest }) => (
<div className={className}>
<GoogleIcon {...rest} />
</div>
),
microsoft: ({ className, ...rest }) => (
<div className={className}>
<MicrosoftIcon {...rest} />
</div>
),
openai: ({ className, ...rest }) => (
<div className={className}>
<OpenAIIcon {...rest} />
</div>
),
anthropic: ({ className, ...rest }) => (
<div className={className}>
<ClaudeIcon {...rest} />
</div>
),
"amazon-bedrock": ({ className, ...rest }) => (
<div className={className}>
<AwsIcon {...rest} />
</div>
),
ollama: ({ className, ...rest }) => (
<div className={className}>
<OllamaIcon {...rest} />
</div>
),
vllm: ({ className, ...rest }) => (
<div className={className}>
<VllmIcon {...rest} />
</div>
),
"manual-custom-source": ({ className, ...rest }) => (
<div className={className}>
<Sparkles {...rest} />
</div>
),
google_docs: ({ className, ...rest }) => (
<div className={className}>
<GoogleDocsIcon {...rest} />
</div>
),
google_drive: ({ className, ...rest }) => (
<div className={className}>
<GoogleDriveIcon {...rest} />
</div>
),
google_sheets: ({ className, ...rest }) => (
<div className={className}>
<GoogleSheetsIcon {...rest} />
</div>
),
google_gmail: ({ className, ...rest }) => (
<div className={className}>
<GmailIcon {...rest} />
</div>
),
github: ({ className, ...rest }) => (
<div className={className}>
<GitHubIcon {...rest} />
</div>
),
servicenow: ({ className, ...rest }) => (
<div className={className}>
<ServiceNowIcon {...rest} />
</div>
),
slack: ({ className, iconClassName, flairsize: _ignored, ...rest }) => (
<div className={cn("!rounded-sm", className)}>
<SlackIcon {...rest} className={cn("size-full", iconClassName)} />
</div>
),
custom: ({ className, ...rest }) => (
<div className={className}>
<Plug2 {...rest} fill="black" />
</div>
),
sentry_mcp: (props) => <SentryIcon {...props} />,
notion_mcp: (props) => <NotionIcon {...props} />,
linear_mcp: (props) => <LinearIcon {...props} />,
jira_mcp: (props) => <JiraIcon {...props} />,
runreveal_mcp: (props) => <RunRevealIcon {...props} />,
secureannex_mcp: (props) => <SecureAnnexIcon {...props} />,
wiz_mcp: (props) => <WizIcon {...props} />,
github_mcp: ({ className, ...rest }) => (
<div className={className}>
<GitHubIcon {...rest} />
</div>
),
}
export function ProviderIcon({
providerId,
className,
...rest
}: {
providerId: string
className?: string
}) {
const Icon = providerIcons[providerId] ?? providerIcons["custom"]
return (
<Icon
className={cn(
"flex shrink-0 items-center justify-center overflow-hidden rounded-sm bg-stone-200/50 p-1",
className
)}
{...rest}
/>
)
}
/**
* Icons for secrets (credential types).
* Maps secret names to their respective icons.
*/
export const secretIcons: Record<
string,
(props: CustomIconProps) => JSX.Element
> = {
gmail: ({ className, ...rest }) => (
<div className={className}>
<GmailIcon {...rest} />
</div>
),
slack: ({ className, iconClassName, flairsize: _ignored, ...rest }) => (
<div className={cn("!rounded-sm", className)}>
<SlackIcon {...rest} className={cn("size-full", iconClassName)} />
</div>
),
servicenow: ({ className, ...rest }) => (
<div className={className}>
<ServiceNowIcon {...rest} />
</div>
),
github: ({ className, ...rest }) => (
<div className={className}>
<GitHubIcon {...rest} />
</div>
),
openai: ({ className, ...rest }) => (
<div className={className}>
<OpenAIIcon {...rest} />
</div>
),
jira: ({ className, ...rest }) => (
<div className={className}>
<JiraIcon {...rest} />
</div>
),
datadog: ({ className, ...rest }) => (
<div className={className}>
<DatadogIcon {...rest} />
</div>
),
sentry: ({ className, ...rest }) => (
<div className={className}>
<SentryIcon {...rest} />
</div>
),
sql: ({ className, ...rest }) => (
<div className={className}>
<DatabaseIcon {...rest} />
</div>
),
smtp: ({ className, ...rest }) => (
<div className={className}>
<SendIcon {...rest} />
</div>
),
notion: ({ className, ...rest }) => (
<div className={className}>
<NotionIcon {...rest} />
</div>
),
linear: ({ className, ...rest }) => (
<div className={className}>
<LinearIcon {...rest} />
</div>
),
google: ({ className, ...rest }) => (
<div className={className}>
<GoogleIcon {...rest} />
</div>
),
microsoft: ({ className, ...rest }) => (
<div className={className}>
<MicrosoftIcon {...rest} />
</div>
),
anthropic: ({ className, ...rest }) => (
<div className={className}>
<ClaudeIcon {...rest} />
</div>
),
gemini: ({ className, ...rest }) => (
<div className={className}>
<GoogleIcon {...rest} />
</div>
),
"custom-model-provider": ({ className, ...rest }) => (
<div className={className}>
<Sparkles {...rest} />
</div>
),
terraform: ({ className, ...rest }) => (
<div className={className}>
<TerraformIcon {...rest} />
</div>
),
pagerduty: ({ className, ...rest }) => (
<div className={className}>
<PagerDutyIcon {...rest} />
</div>
),
exa: ({ className, ...rest }) => (
<div className={className}>
<ExaIcon {...rest} />
</div>
),
alertmedia: ({ className, ...rest }) => (
<div className={className}>
<AlertMediaIcon {...rest} />
</div>
),
gophish: ({ className, ...rest }) => (
<div className={className}>
<GophishIcon {...rest} />
</div>
),
// Default fallback using KeyRound icon
default: ({ className, ...rest }) => (
<div className={className}>
<KeyRound {...rest} />
</div>
),
}
export function SecretIcon({
secretName,
className,
...rest
}: {
secretName: string
className?: string
}) {
const Icon = secretIcons[secretName] ?? secretIcons["default"]
return (
<Icon
className={cn(
"flex shrink-0 items-center justify-center overflow-hidden rounded-sm bg-stone-200/50 p-1",
className
)}
{...rest}
/>
)
}
export function GenericWorkflowIcon({ className, ...rest }: IconProps) {
return (
<div className={cn(basicIconsCommon, className)}>
<WorkflowIcon {...rest} />
</div>
)
}
export function ClaudeIcon({ className, ...rest }: IconProps) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="256"
height="257"
preserveAspectRatio="xMidYMid"
viewBox="0 0 256 257"
className={className}
{...rest}
>
<path
fill="#D97757"
d="m50.228 170.321 50.357-28.257.843-2.463-.843-1.361h-2.462l-8.426-.518-28.775-.778-24.952-1.037-24.175-1.296-6.092-1.297L0 125.796l.583-3.759 5.12-3.434 7.324.648 16.202 1.101 24.304 1.685 17.629 1.037 26.118 2.722h4.148l.583-1.685-1.426-1.037-1.101-1.037-25.147-17.045-27.22-18.017-14.258-10.37-7.713-5.25-3.888-4.925-1.685-10.758 7-7.713 9.397.649 2.398.648 9.527 7.323 20.35 15.75L94.817 91.9l3.889 3.24 1.555-1.102.195-.777-1.75-2.917-14.453-26.118-15.425-26.572-6.87-11.018-1.814-6.61c-.648-2.723-1.102-4.991-1.102-7.778l7.972-10.823L71.42 0 82.05 1.426l4.472 3.888 6.61 15.101 10.694 23.786 16.591 32.34 4.861 9.592 2.592 8.879.973 2.722h1.685v-1.556l1.36-18.211 2.528-22.36 2.463-28.776.843-8.1 4.018-9.722 7.971-5.25 6.222 2.981 5.12 7.324-.713 4.73-3.046 19.768-5.962 30.98-3.889 20.739h2.268l2.593-2.593 10.499-13.934 17.628-22.036 7.778-8.749 9.073-9.657 5.833-4.601h11.018l8.1 12.055-3.628 12.443-11.342 14.388-9.398 12.184-13.48 18.147-8.426 14.518.778 1.166 2.01-.194 30.46-6.481 16.462-2.982 19.637-3.37 8.88 4.148.971 4.213-3.5 8.62-20.998 5.184-24.628 4.926-36.682 8.685-.454.324.519.648 16.526 1.555 7.065.389h17.304l32.21 2.398 8.426 5.574 5.055 6.805-.843 5.184-12.962 6.611-17.498-4.148-40.83-9.721-14-3.5h-1.944v1.167l11.666 11.406 21.387 19.314 26.767 24.887 1.36 6.157-3.434 4.86-3.63-.518-23.526-17.693-9.073-7.972-20.545-17.304h-1.36v1.814l4.73 6.935 25.017 37.59 1.296 11.536-1.814 3.76-6.481 2.268-7.13-1.297-14.647-20.544-15.1-23.138-12.185-20.739-1.49.843-7.194 77.448-3.37 3.953-7.778 2.981-6.48-4.925-3.436-7.972 3.435-15.749 4.148-20.544 3.37-16.333 3.046-20.285 1.815-6.74-.13-.454-1.49.194-15.295 20.999-23.267 31.433-18.406 19.702-4.407 1.75-7.648-3.954.713-7.064 4.277-6.286 25.47-32.405 15.36-20.092 9.917-11.6-.065-1.686h-.583L44.07 198.125l-12.055 1.555-5.185-4.86.648-7.972 2.463-2.593 20.35-13.999-.064.065Z"
/>
</svg>
)
}
export function AwsIcon({ className, ...rest }: IconProps) {
return (
<svg
viewBox="0 0 40 40"
role="img"
className={className}
xmlns="http://www.w3.org/2000/svg"
{...rest}
>
<g fill="none" fillRule="evenodd">
<path fill="#242F3E" d="M0 0h40v40H0z" />
<path
fill="#FFF"
d="M32.6982 23.9008c.361.469-.4 2.399-.741 3.263-.104.262.118.365.35.168 1.513-1.284 1.905-3.975 1.594-4.363-.307-.386-2.951-.717-4.563.432-.249.177-.206.421.069.389.908-.112 2.931-.357 3.291.111Zm-.842 2.009c.518-.378.074-.941-.454-.72-3.513 1.464-7.327 2.173-10.8 2.173-5.143 0-10.127-1.389-14.156-3.695-.352-.202-.613.155-.319.414 3.733 3.316 8.669 5.309 14.147 5.309 3.91 0 8.451-1.208 11.582-3.481ZM29.7122 20.6948c-.498 0-.985-.053-1.459-.161-.476-.109-.84-.232-1.093-.373-.155-.084-.252-.172-.291-.258a.751.751 0 0 1-.058-.26v-.469c0-.194.073-.293.216-.293.055 0 .113.013.173.033.061.023.141.055.241.098.32.141.667.248 1.044.324.376.075.751.113 1.126.113.597 0 1.058-.102 1.384-.308.327-.204.489-.495.489-.873 0-.26-.085-.475-.257-.649-.171-.174-.489-.333-.952-.485l-1.375-.421c-.697-.216-1.202-.529-1.517-.938-.315-.412-.472-.859-.472-1.347 0-.387.085-.729.258-1.027.17-.297.395-.55.676-.761.285-.21.614-.368.989-.478.374-.107.772-.162 1.192-.162.21 0 .423.014.64.041.215.026.419.062.612.105.193.045.373.093.538.146.166.055.298.109.399.162.131.075.224.151.281.227.055.075.083.177.083.308v.436c0 .195-.072.291-.217.291-.077 0-.197-.036-.364-.112-.54-.239-1.15-.356-1.821-.356-.542 0-.963.086-1.261.258-.299.174-.448.449-.448.827 0 .258.094.477.283.655.188.178.535.348 1.044.511l1.342.422c.685.214 1.174.512 1.466.888.294.379.441.81.441 1.295 0 .401-.083.76-.25 1.078-.166.319-.395.59-.689.817-.292.227-.642.399-1.051.518-.41.12-.857.178-1.342.178ZM17.5472 20.4508c-.166 0-.287-.027-.365-.087-.078-.061-.144-.181-.199-.365l-2.222-7.157c-.053-.184-.082-.307-.082-.371 0-.151.078-.227.233-.227h.927c.177 0 .301.03.374.09.071.058.134.178.189.364l1.591 6.12 1.477-6.12c.044-.186.104-.306.181-.364.077-.06.204-.09.38-.09h.765c.175 0 .302.03.38.09.077.058.138.178.182.364l1.493 6.201 1.64-6.201c.055-.186.118-.306.19-.364.073-.06.196-.09.373-.09h.878c.156 0 .233.076.233.227 0 .041-.007.091-.016.144-.013.056-.033.131-.068.227l-2.286 7.157c-.055.184-.122.304-.2.365-.077.06-.199.087-.364.087h-.813c-.176 0-.303-.03-.38-.094-.077-.065-.138-.191-.182-.373l-1.476-5.96-1.457 5.96c-.044.182-.106.308-.183.373-.078.064-.204.094-.381.094h-.812ZM9.9392 19.4488c.311 0 .636-.057.979-.17.342-.114.64-.31.894-.592.156-.172.262-.369.324-.591.06-.22.089-.487.089-.801v-.388a9.414 9.414 0 0 0-.869-.154 8.957 8.957 0 0 0-.887-.057c-.629 0-1.1.124-1.408.373-.309.248-.465.603-.465 1.07 0 .431.117.756.349.978.232.222.564.332.994.332Zm3.846-1.408c0 .345.035.619.107.825.073.206.175.428.307.664.044.076.066.146.066.209 0 .099-.061.191-.182.276l-.597.39a.502.502 0 0 1-.248.081.407.407 0 0 1-.282-.129 2.954 2.954 0 0 1-.339-.43 5.95 5.95 0 0 1-.291-.544c-.741.853-1.668 1.28-2.784 1.28-.796 0-1.426-.22-1.891-.664-.463-.442-.695-1.036-.695-1.78 0-.787.287-1.423.863-1.903.573-.48 1.348-.721 2.319-.721.321 0 .655.025 1.003.073.347.048.71.117 1.084.203v-.679c0-.702-.147-1.196-.446-1.483-.298-.286-.811-.428-1.54-.428-.333 0-.673.039-1.021.12-.347.081-.688.186-1.019.315-.155.065-.266.106-.331.122a.977.977 0 0 1-.149.024c-.132 0-.2-.096-.2-.292v-.452c0-.152.024-.26.068-.323.044-.066.132-.131.265-.195.331-.163.729-.303 1.192-.421.465-.119.956-.179 1.476-.179 1.126 0 1.952.253 2.477.753.524.502.788 1.26.788 2.275v3.013Z"
/>
</g>
</svg>
)
}
export function OpenAIIcon({ className, ...rest }: IconProps) {
return (
<svg
fill="#000000"
width="100%"
height="100%"
viewBox="0 0 24 24"
role="img"
xmlns="http://www.w3.org/2000/svg"
className={cn("rounded-full", className)}
{...rest}
>
<path d="M22.2819 9.8211a5.9847 5.9847 0 0 0-.5157-4.9108 6.0462 6.0462 0 0 0-6.5098-2.9A6.0651 6.0651 0 0 0 4.9807 4.1818a5.9847 5.9847 0 0 0-3.9977 2.9 6.0462 6.0462 0 0 0 .7427 7.0966 5.98 5.98 0 0 0 .511 4.9107 6.051 6.051 0 0 0 6.5146 2.9001A5.9847 5.9847 0 0 0 13.2599 24a6.0557 6.0557 0 0 0 5.7718-4.2058 5.9894 5.9894 0 0 0 3.9977-2.9001 6.0557 6.0557 0 0 0-.7475-7.0729zm-9.022 12.6081a4.4755 4.4755 0 0 1-2.8764-1.0408l.1419-.0804 4.7783-2.7582a.7948.7948 0 0 0 .3927-.6813v-6.7369l2.02 1.1686a.071.071 0 0 1 .038.052v5.5826a4.504 4.504 0 0 1-4.4945 4.4944zm-9.6607-4.1254a4.4708 4.4708 0 0 1-.5346-3.0137l.142.0852 4.783 2.7582a.7712.7712 0 0 0 .7806 0l5.8428-3.3685v2.3324a.0804.0804 0 0 1-.0332.0615L9.74 19.9502a4.4992 4.4992 0 0 1-6.1408-1.6464zM2.3408 7.8956a4.485 4.485 0 0 1 2.3655-1.9728V11.6a.7664.7664 0 0 0 .3879.6765l5.8144 3.3543-2.0201 1.1685a.0757.0757 0 0 1-.071 0l-4.8303-2.7865A4.504 4.504 0 0 1 2.3408 7.872zm16.5963 3.8558L13.1038 8.364 15.1192 7.2a.0757.0757 0 0 1 .071 0l4.8303 2.7913a4.4944 4.4944 0 0 1-.6765 8.1042v-5.6772a.79.79 0 0 0-.407-.667zm2.0107-3.0231l-.142-.0852-4.7735-2.7818a.7759.7759 0 0 0-.7854 0L9.409 9.2297V6.8974a.0662.0662 0 0 1 .0284-.0615l4.8303-2.7866a4.4992 4.4992 0 0 1 6.6802 4.66zM8.3065 12.863l-2.02-1.1638a.0804.0804 0 0 1-.038-.0567V6.0742a4.4992 4.4992 0 0 1 7.3757-3.4537l-.142.0805L8.704 5.459a.7948.7948 0 0 0-.3927.6813zm1.0976-2.3654l2.602-1.4998 2.6069 1.4998v2.9994l-2.5974 1.4997-2.6067-1.4997Z" />
</svg>
)
}
export function SlackIcon({ className, ...rest }: IconProps) {
return (
<svg
enableBackground="new 0 0 2447.6 2452.5"
viewBox="0 0 2447.6 2452.5"
xmlns="http://www.w3.org/2000/svg"
className={className}
{...rest}
>
<g clipRule="evenodd" fillRule="evenodd">
<path
d="m897.4 0c-135.3.1-244.8 109.9-244.7 245.2-.1 135.3 109.5 245.1 244.8 245.2h244.8v-245.1c.1-135.3-109.5-245.1-244.9-245.3.1 0 .1 0 0 0m0 654h-652.6c-135.3.1-244.9 109.9-244.8 245.2-.2 135.3 109.4 245.1 244.7 245.3h652.7c135.3-.1 244.9-109.9 244.8-245.2.1-135.4-109.5-245.2-244.8-245.3z"
fill="#36c5f0"
/>
<path
d="m2447.6 899.2c.1-135.3-109.5-245.1-244.8-245.2-135.3.1-244.9 109.9-244.8 245.2v245.3h244.8c135.3-.1 244.9-109.9 244.8-245.3zm-652.7 0v-654c.1-135.2-109.4-245-244.7-245.2-135.3.1-244.9 109.9-244.8 245.2v654c-.2 135.3 109.4 245.1 244.7 245.3 135.3-.1 244.9-109.9 244.8-245.3z"
fill="#2eb67d"
/>
<path
d="m1550.1 2452.5c135.3-.1 244.9-109.9 244.8-245.2.1-135.3-109.5-245.1-244.8-245.2h-244.8v245.2c-.1 135.2 109.5 245 244.8 245.2zm0-654.1h652.7c135.3-.1 244.9-109.9 244.8-245.2.2-135.3-109.4-245.1-244.7-245.3h-652.7c-135.3.1-244.9 109.9-244.8 245.2-.1 135.4 109.4 245.2 244.7 245.3z"
fill="#ecb22e"
/>
<path
d="m0 1553.2c-.1 135.3 109.5 245.1 244.8 245.2 135.3-.1 244.9-109.9 244.8-245.2v-245.2h-244.8c-135.3.1-244.9 109.9-244.8 245.2zm652.7 0v654c-.2 135.3 109.4 245.1 244.7 245.3 135.3-.1 244.9-109.9 244.8-245.2v-653.9c.2-135.3-109.4-245.1-244.7-245.3-135.4 0-244.9 109.8-244.8 245.1 0 0 0 .1 0 0"
fill="#e01e5a"
/>
</g>
</svg>
)
}
export function ServiceNowIcon({ className, ...rest }: IconProps) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="94 4.5 17 17"
className={className}
{...rest}
>
<g clipRule="evenodd" fillRule="evenodd">
<path
d="m102.8 5.762c-4.2 0-7.5 3.3-7.5 7.5 0 2.2 0.9 4.2 2.3 5.6 0.5 0.5 1.4 0.5 2 0.1 0.8-0.7 2-1.1 3.2-1.1 1.3 0 2.3 0.4 3.2 1.1 0.6 0.5 1.4 0.4 2-0.2 1.4-1.4 2.3-3.3 2.3-5.5-0.1-4.1-3.4-7.5-7.5-7.5m-0.1 11.4c-2.3 0-3.8-1.7-3.8-3.8s1.5-3.8 3.8-3.8 3.8 1.7 3.8 3.8-1.5 3.8-3.8 3.8"
fill="#81b5a1"
/>
</g>
</svg>
)
}
export function DatadogIcon({ className, ...rest }: IconProps) {
return (
<svg
role="img"
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 800 800"
style={{
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#632ca6",
}}
className={cn("rounded-full bg-purple-400/20", className)}
{...rest}
>
<path d="m670.38 608.27-71.24-46.99-59.43 99.27-69.12-20.21-60.86 92.89 3.12 29.24 330.9-60.97-19.22-206.75-54.15 113.52zm-308.59-89.14 53.09-7.3c8.59 3.86 14.57 5.33 24.87 7.95 16.04 4.18 34.61 8.19 62.11-5.67 6.4-3.17 19.73-15.36 25.12-22.31l217.52-39.46 22.19 268.56-372.65 67.16-32.25-268.93zm404.06-96.77-21.47 4.09L703.13.27.27 81.77l86.59 702.68 82.27-11.94c-6.57-9.38-16.8-20.73-34.27-35.26-24.23-20.13-15.66-54.32-1.37-75.91 18.91-36.48 116.34-82.84 110.82-141.15-1.98-21.2-5.35-48.8-25.03-67.71-.74 7.85.59 15.41.59 15.41s-8.08-10.31-12.11-24.37c-4-5.39-7.14-7.11-11.39-14.31-3.03 8.33-2.63 17.99-2.63 17.99s-6.61-15.62-7.68-28.8c-3.92 5.9-4.91 17.11-4.91 17.11s-8.59-24.62-6.63-37.88c-3.92-11.54-15.54-34.44-12.25-86.49 21.45 15.03 68.67 11.46 87.07-15.66 6.11-8.98 10.29-33.5-3.05-81.81-8.57-30.98-29.79-77.11-38.06-94.61l-.99.71c4.36 14.1 13.35 43.66 16.8 57.99 10.44 43.47 13.24 58.6 8.34 78.64-4.17 17.42-14.17 28.82-39.52 41.56-25.35 12.78-58.99-18.32-61.12-20.04-24.63-19.62-43.68-51.63-45.81-67.18-2.21-17.02 9.81-27.24 15.87-41.16-8.67 2.48-18.34 6.88-18.34 6.88s11.54-11.94 25.77-22.27c5.89-3.9 9.35-6.38 15.56-11.54-8.99-.15-16.29.11-16.29.11s14.99-8.1 30.53-14c-11.37-.5-22.25-.08-22.25-.08s33.45-14.96 59.87-25.94c18.17-7.45 35.92-5.25 45.89 9.17 13.09 18.89 26.84 29.15 55.98 35.51 17.89-7.93 23.33-12.01 45.81-18.13 19.79-21.76 35.33-24.58 35.33-24.58s-7.71 7.07-9.77 18.18c11.22-8.84 23.52-16.22 23.52-16.22s-4.76 5.88-9.2 15.22l1.03 1.53c13.09-7.85 28.48-14.04 28.48-14.04s-4.4 5.56-9.56 12.76c9.87-.08 29.89.42 37.66 1.3 45.87 1.01 55.39-48.99 72.99-55.26 22.04-7.87 31.89-12.63 69.45 24.26 32.23 31.67 57.41 88.36 44.91 101.06-10.48 10.54-31.16-4.11-54.08-32.68-12.11-15.13-21.27-33.01-25.56-55.74-3.62-19.18-17.71-30.31-17.71-30.31S520 92.95 520 109.01c0 8.77 1.1 41.56 15.16 59.96-1.39 2.69-2.04 13.31-3.58 15.34-16.36-19.77-51.49-33.92-57.22-38.09 19.39 15.89 63.96 52.39 81.08 87.37 16.19 33.08 6.65 63.4 14.84 71.25 2.33 2.25 34.82 42.73 41.07 63.07 10.9 35.45.65 72.7-13.62 95.81l-39.85 6.21c-5.83-1.62-9.76-2.43-14.99-5.46 2.88-5.1 8.61-17.82 8.67-20.44l-2.25-3.95c-12.4 17.57-33.18 34.63-50.44 44.43-22.59 12.8-48.63 10.83-65.58 5.58-48.11-14.84-93.6-47.35-104.57-55.89 0 0-.34 6.82 1.73 8.35 12.13 13.68 39.92 38.43 66.78 55.68l-57.26 6.3 27.07 210.78c-12 1.72-13.87 2.56-27.01 4.43-11.58-40.91-33.73-67.62-57.94-83.18-21.35-13.72-50.8-16.81-78.99-11.23l-1.81 2.1c19.6-2.04 42.74.8 66.51 15.85 23.33 14.75 42.13 52.85 49.05 75.79 8.86 29.32 14.99 60.68-8.86 93.92-16.97 23.63-66.51 36.69-106.53 8.44 10.69 17.19 25.14 31.25 44.59 33.9 28.88 3.92 56.29-1.09 75.16-20.46 16.11-16.56 24.65-51.19 22.4-87.66l25.49-3.7 9.2 65.46 421.98-50.81-34.43-335.8zM509.12 244.59c-1.18 2.69-3.03 4.45-.25 13.2l.17.5.44 1.13 1.16 2.62c5.01 10.24 10.51 19.9 19.7 24.83 2.38-.4 4.84-.67 7.39-.8 8.63-.38 14.08.99 17.54 2.85.31-1.72.38-4.24.19-7.95-.67-12.97 2.57-35.03-22.36-46.64-9.41-4.37-22.61-3.02-27.01 2.43.8.1 1.52.27 2.08.46 6.65 2.33 2.14 4.62.95 7.37m69.87 121.02c-3.27-1.8-18.55-1.09-29.29.19-20.46 2.41-42.55 9.51-47.39 13.29-8.8 6.8-4.8 18.66 1.7 23.53 18.23 13.62 34.21 22.75 51.08 20.53 10.36-1.36 19.49-17.76 25.96-32.64 4.43-10.25 4.43-21.31-2.06-24.9M397.85 260.65c5.77-5.48-28.74-12.68-55.52 5.58-19.75 13.47-20.38 42.35-1.47 58.72 1.89 1.62 3.45 2.77 4.91 3.71 5.52-2.6 11.81-5.23 19.05-7.58 12.23-3.97 22.4-6.02 30.76-7.11 4-4.47 8.65-12.34 7.49-26.59-1.58-19.33-16.23-16.26-5.22-26.73" />
</svg>
)
}
export function UrlscanIcon({ className, ...rest }: IconProps) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 950 950"
className={cn("bg-orange-400/20", className)}
{...rest}
>
<path
d="M512 70c244 0 442 198 442 442S756 954 512 954 70 756 70 512 268 70 512 70z"
fill="#e35946"
/>
<path
d="M772 730c10 9 16 22 16 37 0 29-24 53-53 53-15 0-28-6-37-16L548 655c-34 23-76 37-121 37-120 0-218-98-218-218s98-218 218-218 218 98 218 218c0 37-9 72-26 102z"
fill="#b74837"
/>
<path
d="M789 721c0 29-24 53-53 53-15 0-28-6-37-16L504 564c32-18 57-46 70-80l199 200c10 9 16 22 16 37z"
fill="#294658"
/>
<path
d="M428 272c86 0 156 70 156 156s-70 156-156 156-156-70-156-156 70-156 156-156z"
fill="#26495d"
/>
<path
d="M428 606c-82 0-148-66-148-148s66-148 148-148 148 66 148 148-66 148-148 148z"
fill="#3b637d"
/>
<path
d="M403 334c23 0 41 18 41 41s-18 41-41 41-41-18-41-41 18-41 41-41z"
fill="#9db2c2"
/>
<path
d="M428 646c-120 0-218-98-218-218s98-218 218-218 218 98 218 218-98 218-218 218zm0-366c-82 0-148 66-148 148s66 148 148 148 148-66 148-148-66-148-148-148z"
fill="#e5e9ec"
/>
</svg>
)
}
export function EmailrepIcon({ className, ...rest }: IconProps) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="150"
height="100"
viewBox="0 0 34 23"
fill="none"
className={className}
{...rest}
>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M0.0997772 11.5L8.34994 19.6435C12.8838 24.1188 20.3157 24.1188 24.8496 19.6435L29.436 15.1163L28.5201 14.2122L27.6043 13.3082L25.7724 11.5L23.0397 8.80266L21.186 6.97293C18.6742 4.49361 14.5253 4.49361 12.0136 6.97293L11.0908 7.88375L12.9227 9.69178L13.8454 8.78111C15.3458 7.29999 17.8537 7.29999 19.3541 8.78111L19.5341 8.95872L21.2078 10.6108L22.1087 11.5L23.9405 13.3082L25.7724 15.1163L23.0179 17.8353C19.4949 21.3126 13.7045 21.3126 10.1816 17.8353L5.59527 13.3082L3.76341 11.5L1.93167 9.69178L0.0997772 11.5ZM7.42719 7.88375L9.25906 9.69178L11.0908 11.5L11.5522 11.9553L13.3839 13.7635L13.8454 14.2189C15.3458 15.7001 17.8537 15.7001 19.3541 14.2189L20.2769 13.3082L22.1087 15.1163L21.186 16.0271C18.6742 18.5064 14.5253 18.5064 12.0136 16.0271L9.72027 13.7635L7.42719 11.5L5.59527 9.69178L4.23987 8.35405L3.76341 7.88375L8.34994 3.35648C12.8838 -1.11883 20.3157 -1.11883 24.8496 3.35648L33.0998 11.5L31.2679 13.3082L29.436 11.5L27.7385 9.82443L23.0179 5.16469C19.4949 1.68739 13.7045 1.68739 10.1816 5.16469L7.42719 7.88375ZM14.7546 11.5L15.6772 12.4108C16.1666 12.8938 17.0329 12.8938 17.5224 12.4108L18.445 11.5L17.5224 10.5892C17.0329 10.1062 16.1666 10.1062 15.6772 10.5892L14.7546 11.5Z"
fill="#00C292"
fillOpacity="0.8"
/>
</svg>
)
}
export function SublimeIcon(props: IconProps) {
return <EmailrepIcon {...props} />
}
export function VirusTotalIcon({ className, ...rest }: IconProps) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="100%"
height="100%"
viewBox="0 0 1024 1024"
preserveAspectRatio="xMidYMid meet"
className={className}
{...rest}
>
<circle cx="512" cy="512" r="512" style={{ fill: "#394eff" }} />
<path
d="M256.1 300.7 468 512.2 256.1 723.3h467.8V300.7H256.1zM678.7 678h-316l167.1-165.8L362.7 346h315.9c.1 0 .1 332 .1 332z"
style={{ fill: "#fff" }}
/>
</svg>
)
}
export function PagerDutyToolIcon({ className, ...rest }: IconProps) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
className={className}
{...rest}
>
<path
fill="#06AC38"
d="M16.965 1.18C15.085.164 13.769 0 10.683 0H3.73v14.55h6.926c2.743 0 4.8-.164 6.61-1.37 1.975-1.303 3.004-3.484 3.004-6.007 0-2.716-1.262-4.896-3.305-5.994zm-5.5 10.326h-4.21V3.113l3.977-.027c3.62-.028 5.43 1.234 5.43 4.128 0 3.113-2.248 4.292-5.197 4.292zM3.73 17.61h3.525V24H3.73Z"
/>
</svg>
)
}
export function GophishToolIcon({ className, ...rest }: IconProps) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="186.667"
height="213.333"