-
Notifications
You must be signed in to change notification settings - Fork 2
/
iconsearch.yaml
1077 lines (920 loc) · 22.7 KB
/
iconsearch.yaml
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
- handle: adobe-spectrum
provider: github
repo: adobe/spectrum-css-workflow-icons
branch: main
directory: icons/assets/svg
website: https://spectrum.adobe.com/page/icons/
logo: https://spectrum.adobe.com/static/adobe_logo_spectrum_site.svg
rename: [ "^S2_Icon_(.*)_20_N.svg$", "\\1.svg" ]
- handle: pictogramas
provider: github
repo: adrianmg/pictogramas
branch: master
directory: SVG
- handle: akveo
repo: akveo/eva-icons
branch: master
directory: package/icons
provider: github
name: Eva Icons
website: https://akveo.github.io/eva-icons/
- handle: amirhabibzadeh
repo: amir_habibzadeh/icons
branch: master
directory: svg
provider: gitlab
- handle: dripicons
provider: github
repo: amitjakhu/dripicons
branch: master
directory: SVG
- handle: andreasbm
repo: andreasbm/web-skills
branch: master
directory: assets
provider: github
- provider: github
handle: animal-identicons
repo: AwesomeLogos/animal-identicons
branch: main
directory: docs/images
website: 'https://animal-identicons.svg.zone/'
logo: 'https://animal-identicons.svg.zone/favicon.svg'
name: 'Animal Identicons'
- handle: ant-design
repo: ant-design/ant-design-icons
branch: master
directory: packages/icons-svg/svg
provider: github
website: http://ant.design/#/components/icon
- handle: akar
provider: github
repo: artcoholic/akar-icons
branch: master
directory: src/svg
website: https://akaricons.com/
- handle: astrit
repo: astrit/css.gg
branch: main
directory: icons/svg
provider: github
- handle: atisawd
repo: atisawd/boxicons
branch: master
directory: svg
name: BoxIcons
rename: [ "^bx[sil]-(.*)$", "\\1" ]
provider: github
- handle: automattic
repo: Automattic/gridicons
branch: trunk
directory: svg-min
provider: github
rename: [ "^gridicons-(.*)$", "\\1" ]
- handle: aws-icons
provider: github
repo: AwesomeLogos/aws-icons
branch: main
directory: docs/images
name: "AWS Architecture Icons"
logos: "https://www.vectorlogo.zone/logos/amazon_aws/amazon_aws-icon.svg"
- handle: sensa-emoji
provider: github
repo: AwesomeLogos/sensa-emoji
branch: main
directory: docs/images
name: "Sensa Emoji"
website: "https://sensa.co/emoji"
- handle: axiansdeveloper
repo: axiansdeveloper/networking-icons
branch: master
directory: ''
provider: gitlab
- handle: banno
provider: github
repo: Banno/jha-design
branch: master
directory: src/icons
website: https://jackhenry.design/
- handle: bpmn-io
repo: bpmn-io/bpmn-font
branch: main
directory: source/symbols
provider: github
- handle: iconpark
name: IconPark
provider: github
repo: bytedance/IconPark
branch: master
directory: source
website: https://iconpark.oceanengine.com/home
- handle: carbon-design
repo: carbon-design-system/carbon
branch: main
directory: packages/icons/src/svg
name: "Carbon Design Icons (IBM)"
provider: github
- handle: cat-in-136
repo: cat-in-136/JISZ8210_Symbols_SVG
branch: master
directory: Public_Information_Symbols
provider: github
- handle: ccicons
repo: cc-icons/cc-icons
branch: master
directory: fonts/cc-icons-svg
provider: github
- handle: cfpb
repo: cfpb/design-system
branch: main
directory: packages/cfpb-design-system/src/components/cfpb-icons/icons
name: CFPB Design System
website: https://cfpb.github.io/design-system/foundation/iconography
provider: github
- handle: cjpatoilo
repo: cjpatoilo/linearicons
branch: main
directory: dist/svg
provider: github
- handle: cloudscape
provider: github
repo: cloudscape-design/components
branch: main
directory: src/icon/icons
website: "https://cloudscape.design/"
- handle: coreui
repo: coreui/coreui-icons
branch: v2
directory: svg/free
provider: github
name: "CoreUI Icons"
website: https://coreui.io/icons/
- handle: CoreyGinnivan
repo: CoreyGinnivan/system-uicons
branch: main
directory: src/images/icons
website: 'https://systemuicons.com/'
provider: github
- provider: github
handle: pepicons
repo: CyCraft/pepicons
branch: dev
directory: packages/pepicons/svg
website: https://pepicons.com/
- handle: danielbruce
repo: danielbruce/entypo
branch: master
directory: src/svg
provider: github
name: Entypo
website: http://www.entypo.com/
- handle: danklammer
repo: danklammer/bytesize-icons
branch: master
directory: dist/icons
provider: github
- handle: danmb
repo: DanMB/rl-svg-icons
branch: master
directory: ''
provider: gitlab
- handle: haiku
provider: github
repo: darealshinji/haiku-icons
branch: master
directory: svg
- handle: daviddarnes
repo: daviddarnes/mac-cursors
branch: main
directory: src/svg
provider: github
website: "https://mac-cursors.netlify.app/"
- handle: davidmerfield
repo: davidmerfield/Public-Icons
branch: master
directory: source/icons
provider: github
- handle: denali-design
repo: denali-design/denali-icons-svg
branch: master
directory: svg
provider: github
- handle: designmodo
repo: designmodo/Flat-UI
branch: master
directory: dist/images/icons
provider: github
website: https://designmodo.com/flat-free/
- handle: devui
provider: github
repo: DevCloudFE/devui-icons
branch: master
directory: icomoon/svg
- handle: developmentseed
repo: developmentseed/collecticons-lib
branch: master
directory: svg
provider: github
- handle: doc88
repo: doc88git/flux-icon
branch: master
directory: src/assets/24px
provider: github
- handle: dovy
repo: dovy/elusive-iconfont
branch: master
directory: dev/icons-svg
provider: github
- handle: dukestreetstudio
repo: dukestreetstudio/zondicons
branch: master
directory: src
provider: github
name: Zondicons
website: https://www.zondicons.com/
- handle: elegantcircles
repo: dohliam/elegant-circles
branch: master
directory: svg
provider: github
website: https://dohliam.github.io/elegant-circles/
- handle: enzet
provider: github
repo: enzet/map-machine
branch: main
directory: doc
- handle: eos
repo: SUSE-UIUX/eos-icons
branch: master
directory: svg
provider: gitlab
website: https://icons.eosdesignsystem.com/
name: EOS Icons
- handle: eos-animated
repo: SUSE-UIUX/eos-icons
branch: master
directory: animated-svg
provider: gitlab
website: https://icons.eosdesignsystem.com/
name: EOS Icons (animated)
- handle: erikflowers
repo: erikflowers/weather-icons
branch: master
directory: svg
rename: [ "^wi-(.*)$", "\\1" ]
provider: github
- handle: evilicons
repo: evil-icons/evil-icons
branch: master
directory: assets/icons
rename: [ "ei-(.*)$", "\\1" ]
provider: github
website: https://evil-icons.io/
- handle: feathericon
repo: feathericon/feathericon
branch: master
directory: src/svg
provider: github
- handle: feathericons
repo: feathericons/feather
branch: main
directory: icons
provider: github
website: https://feathericons.com/
- handle: fontaudio
provider: github
repo: fefanto/fontaudio
branch: master
directory: svgs
- handle: financialtimes
provider: github
repo: Financial-Times/fticons
branch: master
directory: svg
- handle: flowbite
provider: github
repo: themesberg/flowbite-icons
branch: main
directory: src
website: https://flowbite.com/icons/
- handle: fontello
repo: fontello/fontelico.font
branch: master
directory: src/svg
provider: github
- handle: framework7
provider: github
repo: framework7io/framework7-icons
branch: master
directory: src
website: https://framework7.io/icons/
- handle: chutichhuy
repo: chutichhuy/glyph-iconset
branch: master
directory: svg
rename: [ "^si-glyph-(.*)$", "\\1" ]
provider: github
- handle: game-icons
repo: game-icons/icons
branch: master
directory: ''
exclude: '^delapouite/.*'
provider: github
- handle: game-icons-white
repo: game-icons/icons
branch: master
directory: ''
include: '^delapouite/.*'
css: gridbg
provider: github
- handle: gmgeo
repo: gmgeo/osmic
branch: master
directory: ''
provider: github
- handle: gillicons
repo: gillian.perard/gillicons
branch: master
directory: packages/gillicons/src/svgs
provider: gitlab
- handle: gnome-adwaita
provider: github
repo: GNOME/adwaita-icon-theme
branch: master
directory: Adwaita/scalable
- handle: govicons
provider: github
repo: 540co/govicons
branch: develop
directory: raw-svg
website: http://govicons.io/
- handle: grommet
name: Grommet Icons
repo: grommet/grommet-icons
branch: master
directory: public/img
provider: github
website: "https://icons.grommet.io/"
- handle: crypto
provider: github
repo: guardaco/crypto-icons
branch: master
directory: icons
# Needs complicated renames: https://github.com/google/material-design-icons
# same? https://github.com/material-icons/material-icons/tree/master/svg
- handle: halfmage
repo: halfmage/pixelarticons
branch: master
directory: svg
provider: github
website: https://pixelarticons.com/
- handle: halfmage
repo: halfmage/majesticons
branch: main
directory: ''
provider: github
website: https://www.majesticons.com/
- handle: icons8-line
repo: icons8/line-awesome
branch: master
directory: svg
provider: github
name: "Icons8 Line Awesome"
website: https://icons8.com/line-awesome
- handle: icons8-flat-color
repo: icons8/flat-color-icons
branch: master
directory: svg
provider: github
name: "Icons8 Flat Color"
website: https://icons8.github.io/flat-color-icons/
- handle: iconic
repo: iconic/open-iconic
branch: master
directory: svg
provider: github
- handle: iconscout
repo: Iconscout/unicons
branch: master
directory: svg
provider: github
name: Unicons
website: https://iconscout.com/icons
- handle: Ilaris-Kit
repo: Ilaris-Kit/oculus-ilaris
branch: master
directory: icons
provider: github
- handle: ionic-team
repo: ionic-team/ionicons
branch: main
directory: src/svg
provider: github
name: Ionicons
- handle: jackd248
repo: jackd248/weather-iconic
branch: master
directory: sources/SVG
provider: github
- handle: sjjb
provider: github
repo: jalbertbowden/ssjb-map-icons
branch: master
directory: svg/svg
website: http://www.sjjb.co.uk/mapicons/
- handle: jcfields
repo: jcfieldsdev/svg-file-icons
branch: master
directory: ''
provider: github
- handle: jetbrains
repo: JetBrains/icons
branch: master
directory: src
provider: github
- handle: jxnblk
repo: jxnblk/geomicons-open
branch: master
directory: dist/icons
provider: github
- handle: keyamoon
repo: Keyamoon/IcoMoon-Free
branch: master
directory: SVG
rename: ["^[0-9]{3}-(.*)$", "\\1" ]
provider: github
name: IcoMoon
- handle: kickstandapps
repo: kickstandapps/WeatherIcons
branch: master
directory: "SVG Files"
provider: github
- handle: circum
provider: github
repo: Klarr-Agency/Circum-Icons
branch: main
directory: svg
website: "https://circumicons.com/"
# Check for duplicates: https://github.com/leungwensen/svg-icon/tree/master/dist/svg
- handle: lucide
provider: github
repo: lucide-icons/lucide
branch: main
directory: icons
website: https://lucide.dev/
- handle: lucijanblagonic
repo: lucijanblagonic/Washicons
branch: master
directory: svg
rename: [ "^wh-(.*)$", "\\1" ]
provider: github
- handle: delft
provider: github
repo: madmaxms/iconpack-delft
branch: master
directory: Delft/apps/96
- handle: fontfabulous
provider: github
repo: ManageIQ/font-fabulous
branch: master
directory: assets/images/font-fabulous
website: https://www.manageiq.org/font-fabulous/
- handle: manifestinteractive
repo: manifestinteractive/weather-underground-icons
branch: master
directory: dist/icons/solid-black/svg
provider: github
- handle: mapbox
repo: mapbox/maki
branch: main
directory: icons
# LATER: rename
provider: github
- handle: mariuszostrowski
repo: mariuszostrowski/subway
branch: master
directory: SVG
provider: github
- handle: michaelampr
repo: michaelampr/jam
branch: master
directory: icons
provider: github
website: https://jam-icons.com/
name: "Jam Icons"
logo: https://jam-icons.com/logo.svg
- handle: microns
repo: stephenhutchings/microns
branch: master
directory: svg
provider: github
name: Microns
website: https://www.s-ings.com/projects/microns-icon-font/
- handle: fluentui
provider: github
repo: microsoft/fluentui-system-icons
rename: [ "^ic_fluent_(.*)$", "\\1" ]
branch: master
directory: assets
- handle: iconoir
provider: github
repo: iconoir-icons/iconoir
branch: main
directory: icons
website: https://iconoir.com/
#- handle: microsoft-codicons
# repo: microsoft/vscode-codicons
# branch: master
# directory: src/icons
# name: "Codicons (Microsoft)"
# provider: github
- handle: microsoft
repo: microsoft/vscode-icons
branch: main
directory: icons
provider: github
name: "VSCode Icons (Microsoft)"
logo: "https://www.vectorlogo.zone/logos/visualstudio_code/visualstudio_code-icon.svg"
- handle: mikolajdobrucki
repo: mikolajdobrucki/ikonate
branch: master
directory: icons
provider: github
website: https://ikonate.com/
name: "Ikonate"
- handle: moneytree
provider: github
repo: moneytree/mt-web-icons
branch: master
directory: svgs
- handle: mono-company
repo: mono-company/mono-icons
branch: master
directory: svg
provider: github
website: https://icons.mono.company/
name: "Mono Icons"
- handle: mysticsymbolic
provider: github
repo: mysticsymbolic/mysticsymbolic.github.io
branch: main
directory: assets/symbols
- handle: nicodinh
repo: nicodinh/kenney-icon-font
branch: develop
directory: svgs
notes: has some invalid SVGs
provider: github
- handle: opensourcedesign
repo: opensourcedesign/icons
branch: master
directory: ''
provider: github
- handle: cc-icons
provider: github
repo: openwebicons/cc-icons
branch: gh-pages
directory: svg
website: http://openwebicons.github.io/cc-icons/
name: "CC-Icons"
- handle: optimizely
repo: optimizely/react-oui-icons
branch: master
directory: assets/svgs
provider: github
- handle: blueprint
provider: github
repo: palantir/blueprint
branch: develop
directory: resources/icons/20px
website: https://blueprintjs.com/
logo: https://www.vectorlogo.zone/logos/blueprintjs/blueprintjs-icon.svg
- handle: paomedia
repo: paomedia/small-n-flat
branch: master
directory: svg
provider: github
- handle: papirus
provider: github
repo: PapirusDevelopmentTeam/papirus-icon-theme
branch: master
directory: Papirus/symbolic
rename: [ "^(.*)-symbolic.svg$", "\\1.svg" ]
- handle: pfefferle
provider: github
repo: pfefferle/openwebicons
branch: main
directory: svg
website: https://pfefferle.dev/openwebicons/
name: 'OpenWeb Icons (font)'
- handle: phosphor
name: Phosphor Icons
repo: phosphor-icons/core
branch: main
directory: assets
provider: github
website: https://phosphoricons.com/
- handle: phosphor-website
name: Phosphor Icons Website
repo: phosphor-icons/homepage
branch: master
directory: src/assets
provider: github
website: https://phosphoricons.com/
- handle: pivotal
provider: github
repo: vmware-archive/pui-icons
branch: master
directory: src/icons
- website: https://pictogrammers.com/library/memory/
provider: github
repo: Pictogrammers/Memory
branch: main
directory: packages/memory-svg
handle: pictogrammers-memory
- handle: pprince
repo: pprince/etlinefont-bower
branch: master
directory: images/svg/individual_icons
provider: github
- handle: primeicons
provider: github
repo: primefaces/primeicons
branch: master
directory: raw-svg
website: https://www.primefaces.org/primeicons/
- handle: primer
repo: primer/octicons
branch: main
directory: icons
name: Octicons (Github Primer)
provider: github
- handle: radix
provider: github
repo: radix-ui/icons
branch: master
directory: packages/radix-icons/icons
website: https://icons.modulz.app/
- handle: rapideditor
provider: github
repo: rapideditor/temaki
branch: main
directory: icons
website: https://rapideditor.github.io/temaki/docs/
- handle: remix-design
repo: Remix-Design/RemixIcon
branch: master
directory: icons
provider: github
website: https://remixicon.com/
- handle: healthicons
provider: github
repo: resolvetosavelives/healthicons
branch: main
directory: public/icons/svg
website: https://healthicons.org/
- handle: rrzepp
repo: RRZE-PP/rrze-icon-set
branch: master
directory: ''
provider: github
- handle: rush
repo: Rush/Font-Awesome-SVG-PNG
branch: master
directory: black/svg
provider: github
- handle: sargam
provider: github
repo: planetabhi/sargam-icons
branch: main
directory: Icons
rename: [ "^si_(.*)$", "\\1" ]
website: "https://sargamicons.com/"
- handle: scottdejonge
repo: scottdejonge/map-icons
branch: master
directory: src/icons
provider: github
- handle: faenza
provider: github
repo: shlinux/faenza-icon-theme
branch: master
directory: Faenza/apps/scalable
- handle: shopify-polaris
provider: github
repo: Shopify/polaris
branch: main
directory: polaris-icons/icons
website: "https://polaris.shopify.com/icons"
- handle: somerandomdude
repo: somerandomdude/Iconic
branch: master
directory: vector/original
provider: github
- handle: stephenhutchings
repo: stephenhutchings/typicons.font
branch: master
directory: src/svg
provider: github
- handle: tabler
repo: tabler/tabler-icons
branch: main
directory: icons
website: 'https://tabler-icons.io/'
provider: github
logo: 'https://www.vectorlogo.zone/logos/tablerio/tablerio-icon.svg'
- handle: taigaio
repo: kaleidos-ventures/taiga-design
branch: master
directory: icons
provider: github
- handle: tailwindlabs
repo: tailwindlabs/heroicons
branch: master
directory: src
provider: github
website: https://heroicons.com/
name: Hero Icons
- handle: teenyicons
repo: teenyicons/teenyicons
branch: master
directory: src
provider: github
website: https://teenyicons.com/
- handle: templarian
repo: Templarian/MaterialDesign
branch: master
directory: svg
provider: github
name: "Material Design"
website: http://materialdesignicons.com/
- handle: templarian-light
repo: Pictogrammers/MaterialDesignLight
branch: master
directory: svg
name: Material Design Light
provider: github
- handle: templarian-windows
repo: Templarian/WindowsIcons
branch: master
directory: WindowsPhone/svg
provider: github
- handle: hawcons
provider: github
repo: thecreation/standard-icons
branch: master
directory: customs/Hawcons
website: https://hawcons.com/
- handle: gonzocons
provider: github
repo: thecreation/standard-icons
branch: master
directory: 'customs/gonzocons/SVGs 2.0'
website: https://www.gonzodesign.nl/gonzocons/
- handle: themify
provider: github
repo: thecreation/standard-icons
branch: master
directory: customs/themify-icons/SVG
website: https://themify.me/themify-icons
- handle: topcoat
repo: topcoat/icons
branch: master
directory: svg
provider: github
- handle: laundry-symbols
provider: github
repo: tvler/laundry-symbols
branch: master
directory: symbols
- handle: twbs
repo: twbs/icons
branch: main
directory: icons
provider: github
# NOTE: ubikbsd gone as of 2021-04-05
#- handle: ubikbsd
# repo: UbikBSD/FilezVectorIcons
# branch: master
# directory: dist/icons
# provider: gitlab
- handle: uditkumar489
repo: uditkumar489/Icon-pack
branch: master
directory: ''
provider: github
- handle: uikit
repo: uikit/uikit
branch: develop
directory: src/images/icons
provider: github
- handle: uswds
provider: github
repo: uswds/uswds
branch: main
directory: packages/usa-icon/src/img/uswds-icons
website: https://designsystem.digital.gov/components/iconography/
- handle: vaadin
repo: vaadin/vaadin-icons
branch: master
directory: assets/svg
website: https://vaadin.com/components/vaadin-icons
provider: github
- handle: font-gis
provider: github
repo: Viglino/font-gis
branch: main
directory: svg
rename: [ "^u[0-9A-F]{4}-(.*)$", "\\1" ]
website: "https://viglino.github.io/font-gis/"
- handle: fluent-theme
provider: github
repo: vinceliuice/Fluent-icon-theme
branch: master
directory: src/scalable
- handle: viniciusglinden
provider: gitlab
repo: viniciusglinden/random-icons
branch: master
directory: ''
- handle: vivid
provider: github
repo: webkul/vivid
branch: master
directory: icons
- handle: clarity
provider: github
repo: vmware-archive/clarity-assets
branch: master
directory: icons
website: https://clarity.design/foundation/icons/
- handle: wordpress
repo: WordPress/dashicons
branch: master