-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathICON_TABLE.md
1772 lines (1769 loc) · 435 KB
/
ICON_TABLE.md
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 table equivalence
| telefonica | vivo-new | o2-new | o2 | blau | icon name |
| :---: | :---: | :---: | :---: | :---: |:--- |
| | | | |![2g-filled](icons/blau/filled/2g-filled.svg) |<a id='2g-filled'>`2g-filled`</a>[![2g-filled](.github/resources/anchor.svg)](#2g-filled)|
| | | | |![2g-regular](icons/blau/regular/2g-regular.svg) |<a id='2g-regular'>`2g-regular`</a>[![2g-regular](.github/resources/anchor.svg)](#2g-regular)|
| | |![3d-view-filled](icons/o2-new/filled/3d-view-filled.svg) |![3d-view-filled](icons/o2/filled/3d-view-filled.svg) | |<a id='3d-view-filled'>`3d-view-filled`</a>[![3d-view-filled](.github/resources/anchor.svg)](#3d-view-filled)|
| | |![3d-view-light](icons/o2-new/light/3d-view-light.svg) |![3d-view-light](icons/o2/light/3d-view-light.svg) | |<a id='3d-view-light'>`3d-view-light`</a>[![3d-view-light](.github/resources/anchor.svg)](#3d-view-light)|
| | |![3d-view-regular](icons/o2-new/regular/3d-view-regular.svg) |![3d-view-regular](icons/o2/regular/3d-view-regular.svg) | |<a id='3d-view-regular'>`3d-view-regular`</a>[![3d-view-regular](.github/resources/anchor.svg)](#3d-view-regular)|
| | | | |![3g-filled](icons/blau/filled/3g-filled.svg) |<a id='3g-filled'>`3g-filled`</a>[![3g-filled](.github/resources/anchor.svg)](#3g-filled)|
| | | | |![3g-regular](icons/blau/regular/3g-regular.svg) |<a id='3g-regular'>`3g-regular`</a>[![3g-regular](.github/resources/anchor.svg)](#3g-regular)|
| | |![4g-filled](icons/o2-new/filled/4g-filled.svg) |![4g-filled](icons/o2/filled/4g-filled.svg) |![4g-filled](icons/blau/filled/4g-filled.svg) |<a id='4g-filled'>`4g-filled`</a>[![4g-filled](.github/resources/anchor.svg)](#4g-filled)|
| | |![4g-light](icons/o2-new/light/4g-light.svg) |![4g-light](icons/o2/light/4g-light.svg) | |<a id='4g-light'>`4g-light`</a>[![4g-light](.github/resources/anchor.svg)](#4g-light)|
| | |![4g-regular](icons/o2-new/regular/4g-regular.svg) |![4g-regular](icons/o2/regular/4g-regular.svg) |![4g-regular](icons/blau/regular/4g-regular.svg) |<a id='4g-regular'>`4g-regular`</a>[![4g-regular](.github/resources/anchor.svg)](#4g-regular)|
| | |![5g-filled](icons/o2-new/filled/5g-filled.svg) |![5g-filled](icons/o2/filled/5g-filled.svg) |![5g-filled](icons/blau/filled/5g-filled.svg) |<a id='5g-filled'>`5g-filled`</a>[![5g-filled](.github/resources/anchor.svg)](#5g-filled)|
| | |![5g-light](icons/o2-new/light/5g-light.svg) |![5g-light](icons/o2/light/5g-light.svg) | |<a id='5g-light'>`5g-light`</a>[![5g-light](.github/resources/anchor.svg)](#5g-light)|
|![5g-regular](icons/telefonica/regular/5g-regular.svg) | |![5g-regular](icons/o2-new/regular/5g-regular.svg) |![5g-regular](icons/o2/regular/5g-regular.svg) |![5g-regular](icons/blau/regular/5g-regular.svg) |<a id='5g-regular'>`5g-regular`</a>[![5g-regular](.github/resources/anchor.svg)](#5g-regular)|
|![academic-filled](icons/telefonica/filled/academic-filled.svg) | | | | |<a id='academic-filled'>`academic-filled`</a>[![academic-filled](.github/resources/anchor.svg)](#academic-filled)|
|![academic-light](icons/telefonica/light/academic-light.svg) | | | | |<a id='academic-light'>`academic-light`</a>[![academic-light](.github/resources/anchor.svg)](#academic-light)|
|![academic-regular](icons/telefonica/regular/academic-regular.svg) | | | | |<a id='academic-regular'>`academic-regular`</a>[![academic-regular](.github/resources/anchor.svg)](#academic-regular)|
| | |![accessories-filled](icons/o2-new/filled/accessories-filled.svg) |![accessories-filled](icons/o2/filled/accessories-filled.svg) | |<a id='accessories-filled'>`accessories-filled`</a>[![accessories-filled](.github/resources/anchor.svg)](#accessories-filled)|
| | |![accessories-light](icons/o2-new/light/accessories-light.svg) |![accessories-light](icons/o2/light/accessories-light.svg) | |<a id='accessories-light'>`accessories-light`</a>[![accessories-light](.github/resources/anchor.svg)](#accessories-light)|
| | |![accessories-regular](icons/o2-new/regular/accessories-regular.svg) |![accessories-regular](icons/o2/regular/accessories-regular.svg) | |<a id='accessories-regular'>`accessories-regular`</a>[![accessories-regular](.github/resources/anchor.svg)](#accessories-regular)|
| | |![add-bill-euro-filled](icons/o2-new/filled/add-bill-euro-filled.svg) |![add-bill-euro-filled](icons/o2/filled/add-bill-euro-filled.svg) | |<a id='add-bill-euro-filled'>`add-bill-euro-filled`</a>[![add-bill-euro-filled](.github/resources/anchor.svg)](#add-bill-euro-filled)|
| | |![add-bill-euro-light](icons/o2-new/light/add-bill-euro-light.svg) |![add-bill-euro-light](icons/o2/light/add-bill-euro-light.svg) | |<a id='add-bill-euro-light'>`add-bill-euro-light`</a>[![add-bill-euro-light](.github/resources/anchor.svg)](#add-bill-euro-light)|
| | |![add-bill-euro-regular](icons/o2-new/regular/add-bill-euro-regular.svg) |![add-bill-euro-regular](icons/o2/regular/add-bill-euro-regular.svg) | |<a id='add-bill-euro-regular'>`add-bill-euro-regular`</a>[![add-bill-euro-regular](.github/resources/anchor.svg)](#add-bill-euro-regular)|
| | |![add-bill-pound-filled](icons/o2-new/filled/add-bill-pound-filled.svg) |![add-bill-pound-filled](icons/o2/filled/add-bill-pound-filled.svg) | |<a id='add-bill-pound-filled'>`add-bill-pound-filled`</a>[![add-bill-pound-filled](.github/resources/anchor.svg)](#add-bill-pound-filled)|
| | |![add-bill-pound-light](icons/o2-new/light/add-bill-pound-light.svg) |![add-bill-pound-light](icons/o2/light/add-bill-pound-light.svg) | |<a id='add-bill-pound-light'>`add-bill-pound-light`</a>[![add-bill-pound-light](.github/resources/anchor.svg)](#add-bill-pound-light)|
| | |![add-bill-pound-regular](icons/o2-new/regular/add-bill-pound-regular.svg) |![add-bill-pound-regular](icons/o2/regular/add-bill-pound-regular.svg) | |<a id='add-bill-pound-regular'>`add-bill-pound-regular`</a>[![add-bill-pound-regular](.github/resources/anchor.svg)](#add-bill-pound-regular)|
| | |![add-bolton-filled](icons/o2-new/filled/add-bolton-filled.svg) |![add-bolton-filled](icons/o2/filled/add-bolton-filled.svg) | |<a id='add-bolton-filled'>`add-bolton-filled`</a>[![add-bolton-filled](.github/resources/anchor.svg)](#add-bolton-filled)|
| | |![add-bolton-light](icons/o2-new/light/add-bolton-light.svg) |![add-bolton-light](icons/o2/light/add-bolton-light.svg) | |<a id='add-bolton-light'>`add-bolton-light`</a>[![add-bolton-light](.github/resources/anchor.svg)](#add-bolton-light)|
| | |![add-bolton-regular](icons/o2-new/regular/add-bolton-regular.svg) |![add-bolton-regular](icons/o2/regular/add-bolton-regular.svg) | |<a id='add-bolton-regular'>`add-bolton-regular`</a>[![add-bolton-regular](.github/resources/anchor.svg)](#add-bolton-regular)|
|![add-more-circle-filled](icons/telefonica/filled/add-more-circle-filled.svg) | |![add-more-circle-filled](icons/o2-new/filled/add-more-circle-filled.svg) |![add-more-circle-filled](icons/o2/filled/add-more-circle-filled.svg) | |<a id='add-more-circle-filled'>`add-more-circle-filled`</a>[![add-more-circle-filled](.github/resources/anchor.svg)](#add-more-circle-filled)|
|![add-more-circle-light](icons/telefonica/light/add-more-circle-light.svg) | |![add-more-circle-light](icons/o2-new/light/add-more-circle-light.svg) |![add-more-circle-light](icons/o2/light/add-more-circle-light.svg) | |<a id='add-more-circle-light'>`add-more-circle-light`</a>[![add-more-circle-light](.github/resources/anchor.svg)](#add-more-circle-light)|
|![add-more-circle-regular](icons/telefonica/regular/add-more-circle-regular.svg) | |![add-more-circle-regular](icons/o2-new/regular/add-more-circle-regular.svg) |![add-more-circle-regular](icons/o2/regular/add-more-circle-regular.svg) |![add-more-circle-regular](icons/blau/regular/add-more-circle-regular.svg) |<a id='add-more-circle-regular'>`add-more-circle-regular`</a>[![add-more-circle-regular](.github/resources/anchor.svg)](#add-more-circle-regular)|
| | |![add-more-filled](icons/o2-new/filled/add-more-filled.svg) |![add-more-filled](icons/o2/filled/add-more-filled.svg) | |<a id='add-more-filled'>`add-more-filled`</a>[![add-more-filled](.github/resources/anchor.svg)](#add-more-filled)|
|![add-more-light](icons/telefonica/light/add-more-light.svg) | |![add-more-light](icons/o2-new/light/add-more-light.svg) |![add-more-light](icons/o2/light/add-more-light.svg) | |<a id='add-more-light'>`add-more-light`</a>[![add-more-light](.github/resources/anchor.svg)](#add-more-light)|
|![add-more-location-filled](icons/telefonica/filled/add-more-location-filled.svg) | | | | |<a id='add-more-location-filled'>`add-more-location-filled`</a>[![add-more-location-filled](.github/resources/anchor.svg)](#add-more-location-filled)|
|![add-more-location-regular](icons/telefonica/regular/add-more-location-regular.svg) | | | | |<a id='add-more-location-regular'>`add-more-location-regular`</a>[![add-more-location-regular](.github/resources/anchor.svg)](#add-more-location-regular)|
|![add-more-query-filled](icons/telefonica/filled/add-more-query-filled.svg) | | | | |<a id='add-more-query-filled'>`add-more-query-filled`</a>[![add-more-query-filled](.github/resources/anchor.svg)](#add-more-query-filled)|
|![add-more-query-light](icons/telefonica/light/add-more-query-light.svg) | | | | |<a id='add-more-query-light'>`add-more-query-light`</a>[![add-more-query-light](.github/resources/anchor.svg)](#add-more-query-light)|
|![add-more-query-regular](icons/telefonica/regular/add-more-query-regular.svg) | | | | |<a id='add-more-query-regular'>`add-more-query-regular`</a>[![add-more-query-regular](.github/resources/anchor.svg)](#add-more-query-regular)|
|![add-more-regular](icons/telefonica/regular/add-more-regular.svg) | |![add-more-regular](icons/o2-new/regular/add-more-regular.svg) |![add-more-regular](icons/o2/regular/add-more-regular.svg) |![add-more-regular](icons/blau/regular/add-more-regular.svg) |<a id='add-more-regular'>`add-more-regular`</a>[![add-more-regular](.github/resources/anchor.svg)](#add-more-regular)|
| | |![add-phone-filled](icons/o2-new/filled/add-phone-filled.svg) |![add-phone-filled](icons/o2/filled/add-phone-filled.svg) | |<a id='add-phone-filled'>`add-phone-filled`</a>[![add-phone-filled](.github/resources/anchor.svg)](#add-phone-filled)|
| | |![add-phone-light](icons/o2-new/light/add-phone-light.svg) |![add-phone-light](icons/o2/light/add-phone-light.svg) | |<a id='add-phone-light'>`add-phone-light`</a>[![add-phone-light](.github/resources/anchor.svg)](#add-phone-light)|
| | |![add-phone-regular](icons/o2-new/regular/add-phone-regular.svg) |![add-phone-regular](icons/o2/regular/add-phone-regular.svg) | |<a id='add-phone-regular'>`add-phone-regular`</a>[![add-phone-regular](.github/resources/anchor.svg)](#add-phone-regular)|
| | |![airtime-filled](icons/o2-new/filled/airtime-filled.svg) |![airtime-filled](icons/o2/filled/airtime-filled.svg) | |<a id='airtime-filled'>`airtime-filled`</a>[![airtime-filled](.github/resources/anchor.svg)](#airtime-filled)|
| | |![airtime-light](icons/o2-new/light/airtime-light.svg) |![airtime-light](icons/o2/light/airtime-light.svg) | |<a id='airtime-light'>`airtime-light`</a>[![airtime-light](.github/resources/anchor.svg)](#airtime-light)|
| | |![airtime-regular](icons/o2-new/regular/airtime-regular.svg) |![airtime-regular](icons/o2/regular/airtime-regular.svg) | |<a id='airtime-regular'>`airtime-regular`</a>[![airtime-regular](.github/resources/anchor.svg)](#airtime-regular)|
| | |![alarm-clock-filled](icons/o2-new/filled/alarm-clock-filled.svg) |![alarm-clock-filled](icons/o2/filled/alarm-clock-filled.svg) | |<a id='alarm-clock-filled'>`alarm-clock-filled`</a>[![alarm-clock-filled](.github/resources/anchor.svg)](#alarm-clock-filled)|
| | |![alarm-clock-light](icons/o2-new/light/alarm-clock-light.svg) |![alarm-clock-light](icons/o2/light/alarm-clock-light.svg) | |<a id='alarm-clock-light'>`alarm-clock-light`</a>[![alarm-clock-light](.github/resources/anchor.svg)](#alarm-clock-light)|
| | |![alarm-clock-regular](icons/o2-new/regular/alarm-clock-regular.svg) |![alarm-clock-regular](icons/o2/regular/alarm-clock-regular.svg) | |<a id='alarm-clock-regular'>`alarm-clock-regular`</a>[![alarm-clock-regular](.github/resources/anchor.svg)](#alarm-clock-regular)|
|![alarm-light-cross-filled](icons/telefonica/filled/alarm-light-cross-filled.svg) | | | | |<a id='alarm-light-cross-filled'>`alarm-light-cross-filled`</a>[![alarm-light-cross-filled](.github/resources/anchor.svg)](#alarm-light-cross-filled)|
|![alarm-light-cross-light](icons/telefonica/light/alarm-light-cross-light.svg) | | | | |<a id='alarm-light-cross-light'>`alarm-light-cross-light`</a>[![alarm-light-cross-light](.github/resources/anchor.svg)](#alarm-light-cross-light)|
|![alarm-light-cross-regular](icons/telefonica/regular/alarm-light-cross-regular.svg) | | | | |<a id='alarm-light-cross-regular'>`alarm-light-cross-regular`</a>[![alarm-light-cross-regular](.github/resources/anchor.svg)](#alarm-light-cross-regular)|
|![alarm-light-filled](icons/telefonica/filled/alarm-light-filled.svg) | | | | |<a id='alarm-light-filled'>`alarm-light-filled`</a>[![alarm-light-filled](.github/resources/anchor.svg)](#alarm-light-filled)|
|![alarm-light-light](icons/telefonica/light/alarm-light-light.svg) | | | | |<a id='alarm-light-light'>`alarm-light-light`</a>[![alarm-light-light](.github/resources/anchor.svg)](#alarm-light-light)|
|![alarm-light-regular](icons/telefonica/regular/alarm-light-regular.svg) | | | | |<a id='alarm-light-regular'>`alarm-light-regular`</a>[![alarm-light-regular](.github/resources/anchor.svg)](#alarm-light-regular)|
|![alert-filled](icons/telefonica/filled/alert-filled.svg) |![alert-filled](icons/vivo-new/filled/alert-filled.svg) |![alert-filled](icons/o2-new/filled/alert-filled.svg) |![alert-filled](icons/o2/filled/alert-filled.svg) | |<a id='alert-filled'>`alert-filled`</a>[![alert-filled](.github/resources/anchor.svg)](#alert-filled)|
|![alert-light](icons/telefonica/light/alert-light.svg) |![alert-light](icons/vivo-new/light/alert-light.svg) |![alert-light](icons/o2-new/light/alert-light.svg) |![alert-light](icons/o2/light/alert-light.svg) | |<a id='alert-light'>`alert-light`</a>[![alert-light](.github/resources/anchor.svg)](#alert-light)|
|![alert-regular](icons/telefonica/regular/alert-regular.svg) |![alert-regular](icons/vivo-new/regular/alert-regular.svg) |![alert-regular](icons/o2-new/regular/alert-regular.svg) |![alert-regular](icons/o2/regular/alert-regular.svg) | |<a id='alert-regular'>`alert-regular`</a>[![alert-regular](.github/resources/anchor.svg)](#alert-regular)|
|![ambulance-filled](icons/telefonica/filled/ambulance-filled.svg) | | | | |<a id='ambulance-filled'>`ambulance-filled`</a>[![ambulance-filled](.github/resources/anchor.svg)](#ambulance-filled)|
|![ambulance-light](icons/telefonica/light/ambulance-light.svg) | | | | |<a id='ambulance-light'>`ambulance-light`</a>[![ambulance-light](.github/resources/anchor.svg)](#ambulance-light)|
|![ambulance-regular](icons/telefonica/regular/ambulance-regular.svg) | | | | |<a id='ambulance-regular'>`ambulance-regular`</a>[![ambulance-regular](.github/resources/anchor.svg)](#ambulance-regular)|
| |![amplifier-signal-filled](icons/vivo-new/filled/amplifier-signal-filled.svg) | | | |<a id='amplifier-signal-filled'>`amplifier-signal-filled`</a>[![amplifier-signal-filled](.github/resources/anchor.svg)](#amplifier-signal-filled)|
| |![amplifier-signal-light](icons/vivo-new/light/amplifier-signal-light.svg) | | | |<a id='amplifier-signal-light'>`amplifier-signal-light`</a>[![amplifier-signal-light](.github/resources/anchor.svg)](#amplifier-signal-light)|
| |![amplifier-signal-regular](icons/vivo-new/regular/amplifier-signal-regular.svg) | | | |<a id='amplifier-signal-regular'>`amplifier-signal-regular`</a>[![amplifier-signal-regular](.github/resources/anchor.svg)](#amplifier-signal-regular)|
| | |![angel-filled](icons/o2-new/filled/angel-filled.svg) |![angel-filled](icons/o2/filled/angel-filled.svg) | |<a id='angel-filled'>`angel-filled`</a>[![angel-filled](.github/resources/anchor.svg)](#angel-filled)|
| | |![angel-light](icons/o2-new/light/angel-light.svg) |![angel-light](icons/o2/light/angel-light.svg) | |<a id='angel-light'>`angel-light`</a>[![angel-light](.github/resources/anchor.svg)](#angel-light)|
| | |![angel-regular](icons/o2-new/regular/angel-regular.svg) |![angel-regular](icons/o2/regular/angel-regular.svg) | |<a id='angel-regular'>`angel-regular`</a>[![angel-regular](.github/resources/anchor.svg)](#angel-regular)|
|![antenna-filled](icons/telefonica/filled/antenna-filled.svg) | | | | |<a id='antenna-filled'>`antenna-filled`</a>[![antenna-filled](.github/resources/anchor.svg)](#antenna-filled)|
|![antenna-light](icons/telefonica/light/antenna-light.svg) | | | | |<a id='antenna-light'>`antenna-light`</a>[![antenna-light](.github/resources/anchor.svg)](#antenna-light)|
|![antenna-regular](icons/telefonica/regular/antenna-regular.svg) | | | | |<a id='antenna-regular'>`antenna-regular`</a>[![antenna-regular](.github/resources/anchor.svg)](#antenna-regular)|
|![apartment-building-filled](icons/telefonica/filled/apartment-building-filled.svg) | |![apartment-building-filled](icons/o2-new/filled/apartment-building-filled.svg) |![apartment-building-filled](icons/o2/filled/apartment-building-filled.svg) | |<a id='apartment-building-filled'>`apartment-building-filled`</a>[![apartment-building-filled](.github/resources/anchor.svg)](#apartment-building-filled)|
|![apartment-building-light](icons/telefonica/light/apartment-building-light.svg) | |![apartment-building-light](icons/o2-new/light/apartment-building-light.svg) |![apartment-building-light](icons/o2/light/apartment-building-light.svg) | |<a id='apartment-building-light'>`apartment-building-light`</a>[![apartment-building-light](.github/resources/anchor.svg)](#apartment-building-light)|
|![apartment-building-regular](icons/telefonica/regular/apartment-building-regular.svg) | |![apartment-building-regular](icons/o2-new/regular/apartment-building-regular.svg) |![apartment-building-regular](icons/o2/regular/apartment-building-regular.svg) | |<a id='apartment-building-regular'>`apartment-building-regular`</a>[![apartment-building-regular](.github/resources/anchor.svg)](#apartment-building-regular)|
|![api-filled](icons/telefonica/filled/api-filled.svg) | | | | |<a id='api-filled'>`api-filled`</a>[![api-filled](.github/resources/anchor.svg)](#api-filled)|
|![api-light](icons/telefonica/light/api-light.svg) | | | | |<a id='api-light'>`api-light`</a>[![api-light](.github/resources/anchor.svg)](#api-light)|
|![api-regular](icons/telefonica/regular/api-regular.svg) | | | | |<a id='api-regular'>`api-regular`</a>[![api-regular](.github/resources/anchor.svg)](#api-regular)|
| | |![app-icon-filled](icons/o2-new/filled/app-icon-filled.svg) |![app-icon-filled](icons/o2/filled/app-icon-filled.svg) | |<a id='app-icon-filled'>`app-icon-filled`</a>[![app-icon-filled](.github/resources/anchor.svg)](#app-icon-filled)|
| | |![app-icon-light](icons/o2-new/light/app-icon-light.svg) |![app-icon-light](icons/o2/light/app-icon-light.svg) | |<a id='app-icon-light'>`app-icon-light`</a>[![app-icon-light](.github/resources/anchor.svg)](#app-icon-light)|
| | |![app-icon-regular](icons/o2-new/regular/app-icon-regular.svg) |![app-icon-regular](icons/o2/regular/app-icon-regular.svg) | |<a id='app-icon-regular'>`app-icon-regular`</a>[![app-icon-regular](.github/resources/anchor.svg)](#app-icon-regular)|
|![appointment-filled](icons/telefonica/filled/appointment-filled.svg) | | | | |<a id='appointment-filled'>`appointment-filled`</a>[![appointment-filled](.github/resources/anchor.svg)](#appointment-filled)|
|![appointment-light](icons/telefonica/light/appointment-light.svg) | | | | |<a id='appointment-light'>`appointment-light`</a>[![appointment-light](.github/resources/anchor.svg)](#appointment-light)|
|![appointment-regular](icons/telefonica/regular/appointment-regular.svg) | | | | |<a id='appointment-regular'>`appointment-regular`</a>[![appointment-regular](.github/resources/anchor.svg)](#appointment-regular)|
| | |![apps-business-filled](icons/o2-new/filled/apps-business-filled.svg) |![apps-business-filled](icons/o2/filled/apps-business-filled.svg) | |<a id='apps-business-filled'>`apps-business-filled`</a>[![apps-business-filled](.github/resources/anchor.svg)](#apps-business-filled)|
| | |![apps-business-light](icons/o2-new/light/apps-business-light.svg) |![apps-business-light](icons/o2/light/apps-business-light.svg) | |<a id='apps-business-light'>`apps-business-light`</a>[![apps-business-light](.github/resources/anchor.svg)](#apps-business-light)|
| | |![apps-business-regular](icons/o2-new/regular/apps-business-regular.svg) |![apps-business-regular](icons/o2/regular/apps-business-regular.svg) | |<a id='apps-business-regular'>`apps-business-regular`</a>[![apps-business-regular](.github/resources/anchor.svg)](#apps-business-regular)|
|![apps-filled](icons/telefonica/filled/apps-filled.svg) | |![apps-filled](icons/o2-new/filled/apps-filled.svg) |![apps-filled](icons/o2/filled/apps-filled.svg) | |<a id='apps-filled'>`apps-filled`</a>[![apps-filled](.github/resources/anchor.svg)](#apps-filled)|
| | |![apps-light](icons/o2-new/light/apps-light.svg) |![apps-light](icons/o2/light/apps-light.svg) | |<a id='apps-light'>`apps-light`</a>[![apps-light](.github/resources/anchor.svg)](#apps-light)|
| | |![apps-regular](icons/o2-new/regular/apps-regular.svg) |![apps-regular](icons/o2/regular/apps-regular.svg) | |<a id='apps-regular'>`apps-regular`</a>[![apps-regular](.github/resources/anchor.svg)](#apps-regular)|
|![arrow-down-filled](icons/telefonica/filled/arrow-down-filled.svg) | |![arrow-down-filled](icons/o2-new/filled/arrow-down-filled.svg) |![arrow-down-filled](icons/o2/filled/arrow-down-filled.svg) | |<a id='arrow-down-filled'>`arrow-down-filled`</a>[![arrow-down-filled](.github/resources/anchor.svg)](#arrow-down-filled)|
|![arrow-down-left-filled](icons/telefonica/filled/arrow-down-left-filled.svg) | |![arrow-down-left-filled](icons/o2-new/filled/arrow-down-left-filled.svg) |![arrow-down-left-filled](icons/o2/filled/arrow-down-left-filled.svg) | |<a id='arrow-down-left-filled'>`arrow-down-left-filled`</a>[![arrow-down-left-filled](.github/resources/anchor.svg)](#arrow-down-left-filled)|
|![arrow-down-left-light](icons/telefonica/light/arrow-down-left-light.svg) | |![arrow-down-left-light](icons/o2-new/light/arrow-down-left-light.svg) |![arrow-down-left-light](icons/o2/light/arrow-down-left-light.svg) | |<a id='arrow-down-left-light'>`arrow-down-left-light`</a>[![arrow-down-left-light](.github/resources/anchor.svg)](#arrow-down-left-light)|
|![arrow-down-left-regular](icons/telefonica/regular/arrow-down-left-regular.svg) | |![arrow-down-left-regular](icons/o2-new/regular/arrow-down-left-regular.svg) |![arrow-down-left-regular](icons/o2/regular/arrow-down-left-regular.svg) | |<a id='arrow-down-left-regular'>`arrow-down-left-regular`</a>[![arrow-down-left-regular](.github/resources/anchor.svg)](#arrow-down-left-regular)|
|![arrow-down-light](icons/telefonica/light/arrow-down-light.svg) | |![arrow-down-light](icons/o2-new/light/arrow-down-light.svg) |![arrow-down-light](icons/o2/light/arrow-down-light.svg) | |<a id='arrow-down-light'>`arrow-down-light`</a>[![arrow-down-light](.github/resources/anchor.svg)](#arrow-down-light)|
|![arrow-down-regular](icons/telefonica/regular/arrow-down-regular.svg) | |![arrow-down-regular](icons/o2-new/regular/arrow-down-regular.svg) |![arrow-down-regular](icons/o2/regular/arrow-down-regular.svg) | |<a id='arrow-down-regular'>`arrow-down-regular`</a>[![arrow-down-regular](.github/resources/anchor.svg)](#arrow-down-regular)|
|![arrow-down-right-filled](icons/telefonica/filled/arrow-down-right-filled.svg) | |![arrow-down-right-filled](icons/o2-new/filled/arrow-down-right-filled.svg) |![arrow-down-right-filled](icons/o2/filled/arrow-down-right-filled.svg) | |<a id='arrow-down-right-filled'>`arrow-down-right-filled`</a>[![arrow-down-right-filled](.github/resources/anchor.svg)](#arrow-down-right-filled)|
|![arrow-down-right-light](icons/telefonica/light/arrow-down-right-light.svg) | |![arrow-down-right-light](icons/o2-new/light/arrow-down-right-light.svg) |![arrow-down-right-light](icons/o2/light/arrow-down-right-light.svg) | |<a id='arrow-down-right-light'>`arrow-down-right-light`</a>[![arrow-down-right-light](.github/resources/anchor.svg)](#arrow-down-right-light)|
|![arrow-down-right-regular](icons/telefonica/regular/arrow-down-right-regular.svg) | |![arrow-down-right-regular](icons/o2-new/regular/arrow-down-right-regular.svg) |![arrow-down-right-regular](icons/o2/regular/arrow-down-right-regular.svg) | |<a id='arrow-down-right-regular'>`arrow-down-right-regular`</a>[![arrow-down-right-regular](.github/resources/anchor.svg)](#arrow-down-right-regular)|
|![arrow-drop-down-filled](icons/telefonica/filled/arrow-drop-down-filled.svg) | | | | |<a id='arrow-drop-down-filled'>`arrow-drop-down-filled`</a>[![arrow-drop-down-filled](.github/resources/anchor.svg)](#arrow-drop-down-filled)|
|![arrow-drop-up-filled](icons/telefonica/filled/arrow-drop-up-filled.svg) | | | | |<a id='arrow-drop-up-filled'>`arrow-drop-up-filled`</a>[![arrow-drop-up-filled](.github/resources/anchor.svg)](#arrow-drop-up-filled)|
|![arrow-left-filled](icons/telefonica/filled/arrow-left-filled.svg) | |![arrow-left-filled](icons/o2-new/filled/arrow-left-filled.svg) |![arrow-left-filled](icons/o2/filled/arrow-left-filled.svg) | |<a id='arrow-left-filled'>`arrow-left-filled`</a>[![arrow-left-filled](.github/resources/anchor.svg)](#arrow-left-filled)|
| | |![arrow-left-light](icons/o2-new/light/arrow-left-light.svg) |![arrow-left-light](icons/o2/light/arrow-left-light.svg) | |<a id='arrow-left-light'>`arrow-left-light`</a>[![arrow-left-light](.github/resources/anchor.svg)](#arrow-left-light)|
| | |![arrow-left-regular](icons/o2-new/regular/arrow-left-regular.svg) |![arrow-left-regular](icons/o2/regular/arrow-left-regular.svg) | |<a id='arrow-left-regular'>`arrow-left-regular`</a>[![arrow-left-regular](.github/resources/anchor.svg)](#arrow-left-regular)|
|![arrow-line-down-left-light](icons/telefonica/light/arrow-line-down-left-light.svg) | | | | |<a id='arrow-line-down-left-light'>`arrow-line-down-left-light`</a>[![arrow-line-down-left-light](.github/resources/anchor.svg)](#arrow-line-down-left-light)|
|![arrow-line-down-left-regular](icons/telefonica/regular/arrow-line-down-left-regular.svg) | | | | |<a id='arrow-line-down-left-regular'>`arrow-line-down-left-regular`</a>[![arrow-line-down-left-regular](.github/resources/anchor.svg)](#arrow-line-down-left-regular)|
|![arrow-line-down-light](icons/telefonica/light/arrow-line-down-light.svg) | | | | |<a id='arrow-line-down-light'>`arrow-line-down-light`</a>[![arrow-line-down-light](.github/resources/anchor.svg)](#arrow-line-down-light)|
|![arrow-line-down-regular](icons/telefonica/regular/arrow-line-down-regular.svg) | | | | |<a id='arrow-line-down-regular'>`arrow-line-down-regular`</a>[![arrow-line-down-regular](.github/resources/anchor.svg)](#arrow-line-down-regular)|
|![arrow-line-left-light](icons/telefonica/light/arrow-line-left-light.svg) | | | | |<a id='arrow-line-left-light'>`arrow-line-left-light`</a>[![arrow-line-left-light](.github/resources/anchor.svg)](#arrow-line-left-light)|
|![arrow-line-left-regular](icons/telefonica/regular/arrow-line-left-regular.svg) | | | | |<a id='arrow-line-left-regular'>`arrow-line-left-regular`</a>[![arrow-line-left-regular](.github/resources/anchor.svg)](#arrow-line-left-regular)|
|![arrow-line-right-light](icons/telefonica/light/arrow-line-right-light.svg) | | | | |<a id='arrow-line-right-light'>`arrow-line-right-light`</a>[![arrow-line-right-light](.github/resources/anchor.svg)](#arrow-line-right-light)|
|![arrow-line-right-regular](icons/telefonica/regular/arrow-line-right-regular.svg) | | | | |<a id='arrow-line-right-regular'>`arrow-line-right-regular`</a>[![arrow-line-right-regular](.github/resources/anchor.svg)](#arrow-line-right-regular)|
|![arrow-line-up-light](icons/telefonica/light/arrow-line-up-light.svg) | | | | |<a id='arrow-line-up-light'>`arrow-line-up-light`</a>[![arrow-line-up-light](.github/resources/anchor.svg)](#arrow-line-up-light)|
|![arrow-line-up-regular](icons/telefonica/regular/arrow-line-up-regular.svg) | | | | |<a id='arrow-line-up-regular'>`arrow-line-up-regular`</a>[![arrow-line-up-regular](.github/resources/anchor.svg)](#arrow-line-up-regular)|
|![arrow-line-up-right-light](icons/telefonica/light/arrow-line-up-right-light.svg) | | | | |<a id='arrow-line-up-right-light'>`arrow-line-up-right-light`</a>[![arrow-line-up-right-light](.github/resources/anchor.svg)](#arrow-line-up-right-light)|
|![arrow-line-up-right-regular](icons/telefonica/regular/arrow-line-up-right-regular.svg) | | | | |<a id='arrow-line-up-right-regular'>`arrow-line-up-right-regular`</a>[![arrow-line-up-right-regular](.github/resources/anchor.svg)](#arrow-line-up-right-regular)|
|![arrow-right-filled](icons/telefonica/filled/arrow-right-filled.svg) | |![arrow-right-filled](icons/o2-new/filled/arrow-right-filled.svg) |![arrow-right-filled](icons/o2/filled/arrow-right-filled.svg) | |<a id='arrow-right-filled'>`arrow-right-filled`</a>[![arrow-right-filled](.github/resources/anchor.svg)](#arrow-right-filled)|
|![arrow-right-light](icons/telefonica/light/arrow-right-light.svg) | |![arrow-right-light](icons/o2-new/light/arrow-right-light.svg) |![arrow-right-light](icons/o2/light/arrow-right-light.svg) | |<a id='arrow-right-light'>`arrow-right-light`</a>[![arrow-right-light](.github/resources/anchor.svg)](#arrow-right-light)|
|![arrow-right-regular](icons/telefonica/regular/arrow-right-regular.svg) | |![arrow-right-regular](icons/o2-new/regular/arrow-right-regular.svg) |![arrow-right-regular](icons/o2/regular/arrow-right-regular.svg) | |<a id='arrow-right-regular'>`arrow-right-regular`</a>[![arrow-right-regular](.github/resources/anchor.svg)](#arrow-right-regular)|
|![arrow-up-down-filled](icons/telefonica/filled/arrow-up-down-filled.svg) | |![arrow-up-down-filled](icons/o2-new/filled/arrow-up-down-filled.svg) |![arrow-up-down-filled](icons/o2/filled/arrow-up-down-filled.svg) | |<a id='arrow-up-down-filled'>`arrow-up-down-filled`</a>[![arrow-up-down-filled](.github/resources/anchor.svg)](#arrow-up-down-filled)|
|![arrow-up-down-light](icons/telefonica/light/arrow-up-down-light.svg) | |![arrow-up-down-light](icons/o2-new/light/arrow-up-down-light.svg) |![arrow-up-down-light](icons/o2/light/arrow-up-down-light.svg) | |<a id='arrow-up-down-light'>`arrow-up-down-light`</a>[![arrow-up-down-light](.github/resources/anchor.svg)](#arrow-up-down-light)|
|![arrow-up-down-regular](icons/telefonica/regular/arrow-up-down-regular.svg) | |![arrow-up-down-regular](icons/o2-new/regular/arrow-up-down-regular.svg) |![arrow-up-down-regular](icons/o2/regular/arrow-up-down-regular.svg) |![arrow-up-down-regular](icons/blau/regular/arrow-up-down-regular.svg) |<a id='arrow-up-down-regular'>`arrow-up-down-regular`</a>[![arrow-up-down-regular](.github/resources/anchor.svg)](#arrow-up-down-regular)|
|![arrow-up-filled](icons/telefonica/filled/arrow-up-filled.svg) | |![arrow-up-filled](icons/o2-new/filled/arrow-up-filled.svg) |![arrow-up-filled](icons/o2/filled/arrow-up-filled.svg) | |<a id='arrow-up-filled'>`arrow-up-filled`</a>[![arrow-up-filled](.github/resources/anchor.svg)](#arrow-up-filled)|
|![arrow-up-left-filled](icons/telefonica/filled/arrow-up-left-filled.svg) | |![arrow-up-left-filled](icons/o2-new/filled/arrow-up-left-filled.svg) |![arrow-up-left-filled](icons/o2/filled/arrow-up-left-filled.svg) | |<a id='arrow-up-left-filled'>`arrow-up-left-filled`</a>[![arrow-up-left-filled](.github/resources/anchor.svg)](#arrow-up-left-filled)|
|![arrow-up-left-light](icons/telefonica/light/arrow-up-left-light.svg) | |![arrow-up-left-light](icons/o2-new/light/arrow-up-left-light.svg) |![arrow-up-left-light](icons/o2/light/arrow-up-left-light.svg) | |<a id='arrow-up-left-light'>`arrow-up-left-light`</a>[![arrow-up-left-light](.github/resources/anchor.svg)](#arrow-up-left-light)|
|![arrow-up-left-regular](icons/telefonica/regular/arrow-up-left-regular.svg) | |![arrow-up-left-regular](icons/o2-new/regular/arrow-up-left-regular.svg) |![arrow-up-left-regular](icons/o2/regular/arrow-up-left-regular.svg) |![arrow-up-left-regular](icons/blau/regular/arrow-up-left-regular.svg) |<a id='arrow-up-left-regular'>`arrow-up-left-regular`</a>[![arrow-up-left-regular](.github/resources/anchor.svg)](#arrow-up-left-regular)|
|![arrow-up-light](icons/telefonica/light/arrow-up-light.svg) | |![arrow-up-light](icons/o2-new/light/arrow-up-light.svg) |![arrow-up-light](icons/o2/light/arrow-up-light.svg) | |<a id='arrow-up-light'>`arrow-up-light`</a>[![arrow-up-light](.github/resources/anchor.svg)](#arrow-up-light)|
|![arrow-up-regular](icons/telefonica/regular/arrow-up-regular.svg) | |![arrow-up-regular](icons/o2-new/regular/arrow-up-regular.svg) |![arrow-up-regular](icons/o2/regular/arrow-up-regular.svg) |![arrow-up-regular](icons/blau/regular/arrow-up-regular.svg) |<a id='arrow-up-regular'>`arrow-up-regular`</a>[![arrow-up-regular](.github/resources/anchor.svg)](#arrow-up-regular)|
|![arrow-up-right-filled](icons/telefonica/filled/arrow-up-right-filled.svg) | |![arrow-up-right-filled](icons/o2-new/filled/arrow-up-right-filled.svg) |![arrow-up-right-filled](icons/o2/filled/arrow-up-right-filled.svg) | |<a id='arrow-up-right-filled'>`arrow-up-right-filled`</a>[![arrow-up-right-filled](.github/resources/anchor.svg)](#arrow-up-right-filled)|
|![arrow-up-right-light](icons/telefonica/light/arrow-up-right-light.svg) | |![arrow-up-right-light](icons/o2-new/light/arrow-up-right-light.svg) |![arrow-up-right-light](icons/o2/light/arrow-up-right-light.svg) | |<a id='arrow-up-right-light'>`arrow-up-right-light`</a>[![arrow-up-right-light](.github/resources/anchor.svg)](#arrow-up-right-light)|
|![arrow-up-right-regular](icons/telefonica/regular/arrow-up-right-regular.svg) | |![arrow-up-right-regular](icons/o2-new/regular/arrow-up-right-regular.svg) |![arrow-up-right-regular](icons/o2/regular/arrow-up-right-regular.svg) | |<a id='arrow-up-right-regular'>`arrow-up-right-regular`</a>[![arrow-up-right-regular](.github/resources/anchor.svg)](#arrow-up-right-regular)|
|![arrows-left-and-right-filled](icons/telefonica/filled/arrows-left-and-right-filled.svg) | |![arrows-left-and-right-filled](icons/o2-new/filled/arrows-left-and-right-filled.svg) |![arrows-left-and-right-filled](icons/o2/filled/arrows-left-and-right-filled.svg) | |<a id='arrows-left-and-right-filled'>`arrows-left-and-right-filled`</a>[![arrows-left-and-right-filled](.github/resources/anchor.svg)](#arrows-left-and-right-filled)|
|![arrows-left-and-right-light](icons/telefonica/light/arrows-left-and-right-light.svg) | |![arrows-left-and-right-light](icons/o2-new/light/arrows-left-and-right-light.svg) |![arrows-left-and-right-light](icons/o2/light/arrows-left-and-right-light.svg) | |<a id='arrows-left-and-right-light'>`arrows-left-and-right-light`</a>[![arrows-left-and-right-light](.github/resources/anchor.svg)](#arrows-left-and-right-light)|
|![arrows-left-and-right-regular](icons/telefonica/regular/arrows-left-and-right-regular.svg) | |![arrows-left-and-right-regular](icons/o2-new/regular/arrows-left-and-right-regular.svg) |![arrows-left-and-right-regular](icons/o2/regular/arrows-left-and-right-regular.svg) | |<a id='arrows-left-and-right-regular'>`arrows-left-and-right-regular`</a>[![arrows-left-and-right-regular](.github/resources/anchor.svg)](#arrows-left-and-right-regular)|
|![artificial-intelligence-filled](icons/telefonica/filled/artificial-intelligence-filled.svg) | | | | |<a id='artificial-intelligence-filled'>`artificial-intelligence-filled`</a>[![artificial-intelligence-filled](.github/resources/anchor.svg)](#artificial-intelligence-filled)|
|![artificial-intelligence-light](icons/telefonica/light/artificial-intelligence-light.svg) | | | | |<a id='artificial-intelligence-light'>`artificial-intelligence-light`</a>[![artificial-intelligence-light](.github/resources/anchor.svg)](#artificial-intelligence-light)|
|![artificial-intelligence-regular](icons/telefonica/regular/artificial-intelligence-regular.svg) | | | | |<a id='artificial-intelligence-regular'>`artificial-intelligence-regular`</a>[![artificial-intelligence-regular](.github/resources/anchor.svg)](#artificial-intelligence-regular)|
|![audio-filled](icons/telefonica/filled/audio-filled.svg) | |![audio-filled](icons/o2-new/filled/audio-filled.svg) |![audio-filled](icons/o2/filled/audio-filled.svg) | |<a id='audio-filled'>`audio-filled`</a>[![audio-filled](.github/resources/anchor.svg)](#audio-filled)|
|![audio-light](icons/telefonica/light/audio-light.svg) | |![audio-light](icons/o2-new/light/audio-light.svg) |![audio-light](icons/o2/light/audio-light.svg) | |<a id='audio-light'>`audio-light`</a>[![audio-light](.github/resources/anchor.svg)](#audio-light)|
|![audio-regular](icons/telefonica/regular/audio-regular.svg) |![audio-regular](icons/vivo-new/regular/audio-regular.svg) |![audio-regular](icons/o2-new/regular/audio-regular.svg) |![audio-regular](icons/o2/regular/audio-regular.svg) | |<a id='audio-regular'>`audio-regular`</a>[![audio-regular](.github/resources/anchor.svg)](#audio-regular)|
|![aura-filled](icons/telefonica/filled/aura-filled.svg) | | | | |<a id='aura-filled'>`aura-filled`</a>[![aura-filled](.github/resources/anchor.svg)](#aura-filled)|
|![authentication-failure-filled](icons/telefonica/filled/authentication-failure-filled.svg) | | | | |<a id='authentication-failure-filled'>`authentication-failure-filled`</a>[![authentication-failure-filled](.github/resources/anchor.svg)](#authentication-failure-filled)|
|![authentication-failure-regular](icons/telefonica/regular/authentication-failure-regular.svg) | | | | |<a id='authentication-failure-regular'>`authentication-failure-regular`</a>[![authentication-failure-regular](.github/resources/anchor.svg)](#authentication-failure-regular)|
|![authentication-success-filled](icons/telefonica/filled/authentication-success-filled.svg) | | | | |<a id='authentication-success-filled'>`authentication-success-filled`</a>[![authentication-success-filled](.github/resources/anchor.svg)](#authentication-success-filled)|
|![authentication-success-light](icons/telefonica/light/authentication-success-light.svg) | | | | |<a id='authentication-success-light'>`authentication-success-light`</a>[![authentication-success-light](.github/resources/anchor.svg)](#authentication-success-light)|
|![authentication-success-regular](icons/telefonica/regular/authentication-success-regular.svg) | | | | |<a id='authentication-success-regular'>`authentication-success-regular`</a>[![authentication-success-regular](.github/resources/anchor.svg)](#authentication-success-regular)|
|![bacteria-filled](icons/telefonica/filled/bacteria-filled.svg) | | | | |<a id='bacteria-filled'>`bacteria-filled`</a>[![bacteria-filled](.github/resources/anchor.svg)](#bacteria-filled)|
|![bacteria-light](icons/telefonica/light/bacteria-light.svg) | | | | |<a id='bacteria-light'>`bacteria-light`</a>[![bacteria-light](.github/resources/anchor.svg)](#bacteria-light)|
|![bacteria-regular](icons/telefonica/regular/bacteria-regular.svg) | | | | |<a id='bacteria-regular'>`bacteria-regular`</a>[![bacteria-regular](.github/resources/anchor.svg)](#bacteria-regular)|
|![balance-filled](icons/telefonica/filled/balance-filled.svg) | | | | |<a id='balance-filled'>`balance-filled`</a>[![balance-filled](.github/resources/anchor.svg)](#balance-filled)|
|![balance-light](icons/telefonica/light/balance-light.svg) | | | | |<a id='balance-light'>`balance-light`</a>[![balance-light](.github/resources/anchor.svg)](#balance-light)|
|![balance-regular](icons/telefonica/regular/balance-regular.svg) | | | | |<a id='balance-regular'>`balance-regular`</a>[![balance-regular](.github/resources/anchor.svg)](#balance-regular)|
|![band-aid-filled](icons/telefonica/filled/band-aid-filled.svg) | | | | |<a id='band-aid-filled'>`band-aid-filled`</a>[![band-aid-filled](.github/resources/anchor.svg)](#band-aid-filled)|
|![band-aid-light](icons/telefonica/light/band-aid-light.svg) | | | | |<a id='band-aid-light'>`band-aid-light`</a>[![band-aid-light](.github/resources/anchor.svg)](#band-aid-light)|
|![band-aid-regular](icons/telefonica/regular/band-aid-regular.svg) | | | | |<a id='band-aid-regular'>`band-aid-regular`</a>[![band-aid-regular](.github/resources/anchor.svg)](#band-aid-regular)|
|![bar-chart-filled](icons/telefonica/filled/bar-chart-filled.svg) | | | | |<a id='bar-chart-filled'>`bar-chart-filled`</a>[![bar-chart-filled](.github/resources/anchor.svg)](#bar-chart-filled)|
|![bar-chart-light](icons/telefonica/light/bar-chart-light.svg) | | | | |<a id='bar-chart-light'>`bar-chart-light`</a>[![bar-chart-light](.github/resources/anchor.svg)](#bar-chart-light)|
|![bar-chart-regular](icons/telefonica/regular/bar-chart-regular.svg) | | | | |<a id='bar-chart-regular'>`bar-chart-regular`</a>[![bar-chart-regular](.github/resources/anchor.svg)](#bar-chart-regular)|
| | |![barcode-filled](icons/o2-new/filled/barcode-filled.svg) |![barcode-filled](icons/o2/filled/barcode-filled.svg) | |<a id='barcode-filled'>`barcode-filled`</a>[![barcode-filled](.github/resources/anchor.svg)](#barcode-filled)|
| | |![barcode-light](icons/o2-new/light/barcode-light.svg) |![barcode-light](icons/o2/light/barcode-light.svg) | |<a id='barcode-light'>`barcode-light`</a>[![barcode-light](.github/resources/anchor.svg)](#barcode-light)|
| | |![barcode-regular](icons/o2-new/regular/barcode-regular.svg) |![barcode-regular](icons/o2/regular/barcode-regular.svg) | |<a id='barcode-regular'>`barcode-regular`</a>[![barcode-regular](.github/resources/anchor.svg)](#barcode-regular)|
|![battery-charging-filled](icons/telefonica/filled/battery-charging-filled.svg) | |![battery-charging-filled](icons/o2-new/filled/battery-charging-filled.svg) |![battery-charging-filled](icons/o2/filled/battery-charging-filled.svg) | |<a id='battery-charging-filled'>`battery-charging-filled`</a>[![battery-charging-filled](.github/resources/anchor.svg)](#battery-charging-filled)|
| | |![battery-charging-light](icons/o2-new/light/battery-charging-light.svg) |![battery-charging-light](icons/o2/light/battery-charging-light.svg) | |<a id='battery-charging-light'>`battery-charging-light`</a>[![battery-charging-light](.github/resources/anchor.svg)](#battery-charging-light)|
|![battery-charging-regular](icons/telefonica/regular/battery-charging-regular.svg) | |![battery-charging-regular](icons/o2-new/regular/battery-charging-regular.svg) |![battery-charging-regular](icons/o2/regular/battery-charging-regular.svg) | |<a id='battery-charging-regular'>`battery-charging-regular`</a>[![battery-charging-regular](.github/resources/anchor.svg)](#battery-charging-regular)|
|![battery-full-filled](icons/telefonica/filled/battery-full-filled.svg) | | | | |<a id='battery-full-filled'>`battery-full-filled`</a>[![battery-full-filled](.github/resources/anchor.svg)](#battery-full-filled)|
|![battery-full-regular](icons/telefonica/regular/battery-full-regular.svg) | | | | |<a id='battery-full-regular'>`battery-full-regular`</a>[![battery-full-regular](.github/resources/anchor.svg)](#battery-full-regular)|
|![battery-light](icons/telefonica/light/battery-light.svg) | | | | |<a id='battery-light'>`battery-light`</a>[![battery-light](.github/resources/anchor.svg)](#battery-light)|
|![battery-low-filled](icons/telefonica/filled/battery-low-filled.svg) | | | | |<a id='battery-low-filled'>`battery-low-filled`</a>[![battery-low-filled](.github/resources/anchor.svg)](#battery-low-filled)|
|![battery-low-regular](icons/telefonica/regular/battery-low-regular.svg) | | | | |<a id='battery-low-regular'>`battery-low-regular`</a>[![battery-low-regular](.github/resources/anchor.svg)](#battery-low-regular)|
|![battery-medium-filled](icons/telefonica/filled/battery-medium-filled.svg) | | | | |<a id='battery-medium-filled'>`battery-medium-filled`</a>[![battery-medium-filled](.github/resources/anchor.svg)](#battery-medium-filled)|
|![battery-medium-regular](icons/telefonica/regular/battery-medium-regular.svg) | | | | |<a id='battery-medium-regular'>`battery-medium-regular`</a>[![battery-medium-regular](.github/resources/anchor.svg)](#battery-medium-regular)|
|![battery-regular](icons/telefonica/regular/battery-regular.svg) | | | | |<a id='battery-regular'>`battery-regular`</a>[![battery-regular](.github/resources/anchor.svg)](#battery-regular)|
|![beach-umbrella-filled](icons/telefonica/filled/beach-umbrella-filled.svg) | | | | |<a id='beach-umbrella-filled'>`beach-umbrella-filled`</a>[![beach-umbrella-filled](.github/resources/anchor.svg)](#beach-umbrella-filled)|
|![beach-umbrella-light](icons/telefonica/light/beach-umbrella-light.svg) | | | | |<a id='beach-umbrella-light'>`beach-umbrella-light`</a>[![beach-umbrella-light](.github/resources/anchor.svg)](#beach-umbrella-light)|
|![beach-umbrella-regular](icons/telefonica/regular/beach-umbrella-regular.svg) | | | | |<a id='beach-umbrella-regular'>`beach-umbrella-regular`</a>[![beach-umbrella-regular](.github/resources/anchor.svg)](#beach-umbrella-regular)|
|![bell-add-more-filled](icons/telefonica/filled/bell-add-more-filled.svg) | | | | |<a id='bell-add-more-filled'>`bell-add-more-filled`</a>[![bell-add-more-filled](.github/resources/anchor.svg)](#bell-add-more-filled)|
|![bell-add-more-light](icons/telefonica/light/bell-add-more-light.svg) | | | | |<a id='bell-add-more-light'>`bell-add-more-light`</a>[![bell-add-more-light](.github/resources/anchor.svg)](#bell-add-more-light)|
|![bell-add-more-regular](icons/telefonica/regular/bell-add-more-regular.svg) | | | | |<a id='bell-add-more-regular'>`bell-add-more-regular`</a>[![bell-add-more-regular](.github/resources/anchor.svg)](#bell-add-more-regular)|
|![bell-filled](icons/telefonica/filled/bell-filled.svg) |![bell-filled](icons/vivo-new/filled/bell-filled.svg) |![bell-filled](icons/o2-new/filled/bell-filled.svg) |![bell-filled](icons/o2/filled/bell-filled.svg) | |<a id='bell-filled'>`bell-filled`</a>[![bell-filled](.github/resources/anchor.svg)](#bell-filled)|
|![bell-light](icons/telefonica/light/bell-light.svg) |![bell-light](icons/vivo-new/light/bell-light.svg) |![bell-light](icons/o2-new/light/bell-light.svg) |![bell-light](icons/o2/light/bell-light.svg) | |<a id='bell-light'>`bell-light`</a>[![bell-light](.github/resources/anchor.svg)](#bell-light)|
|![bell-off-filled](icons/telefonica/filled/bell-off-filled.svg) | | | | |<a id='bell-off-filled'>`bell-off-filled`</a>[![bell-off-filled](.github/resources/anchor.svg)](#bell-off-filled)|
|![bell-off-light](icons/telefonica/light/bell-off-light.svg) | | | | |<a id='bell-off-light'>`bell-off-light`</a>[![bell-off-light](.github/resources/anchor.svg)](#bell-off-light)|
|![bell-off-regular](icons/telefonica/regular/bell-off-regular.svg) | | | | |<a id='bell-off-regular'>`bell-off-regular`</a>[![bell-off-regular](.github/resources/anchor.svg)](#bell-off-regular)|
|![bell-program-filled](icons/telefonica/filled/bell-program-filled.svg) | | | | |<a id='bell-program-filled'>`bell-program-filled`</a>[![bell-program-filled](.github/resources/anchor.svg)](#bell-program-filled)|
|![bell-program-light](icons/telefonica/light/bell-program-light.svg) | | | | |<a id='bell-program-light'>`bell-program-light`</a>[![bell-program-light](.github/resources/anchor.svg)](#bell-program-light)|
|![bell-program-regular](icons/telefonica/regular/bell-program-regular.svg) | | | | |<a id='bell-program-regular'>`bell-program-regular`</a>[![bell-program-regular](.github/resources/anchor.svg)](#bell-program-regular)|
|![bell-regular](icons/telefonica/regular/bell-regular.svg) |![bell-regular](icons/vivo-new/regular/bell-regular.svg) |![bell-regular](icons/o2-new/regular/bell-regular.svg) |![bell-regular](icons/o2/regular/bell-regular.svg) |![bell-regular](icons/blau/regular/bell-regular.svg) |<a id='bell-regular'>`bell-regular`</a>[![bell-regular](.github/resources/anchor.svg)](#bell-regular)|
|![bicycle-bike-filled](icons/telefonica/filled/bicycle-bike-filled.svg) | | | | |<a id='bicycle-bike-filled'>`bicycle-bike-filled`</a>[![bicycle-bike-filled](.github/resources/anchor.svg)](#bicycle-bike-filled)|
|![bicycle-bike-light](icons/telefonica/light/bicycle-bike-light.svg) | | | | |<a id='bicycle-bike-light'>`bicycle-bike-light`</a>[![bicycle-bike-light](.github/resources/anchor.svg)](#bicycle-bike-light)|
|![bicycle-bike-regular](icons/telefonica/regular/bicycle-bike-regular.svg) | | | | |<a id='bicycle-bike-regular'>`bicycle-bike-regular`</a>[![bicycle-bike-regular](.github/resources/anchor.svg)](#bicycle-bike-regular)|
| | |![bill-invoice-pound-filled](icons/o2-new/filled/bill-invoice-pound-filled.svg) |![bill-invoice-pound-filled](icons/o2/filled/bill-invoice-pound-filled.svg) | |<a id='bill-invoice-pound-filled'>`bill-invoice-pound-filled`</a>[![bill-invoice-pound-filled](.github/resources/anchor.svg)](#bill-invoice-pound-filled)|
| | |![bill-invoice-pound-light](icons/o2-new/light/bill-invoice-pound-light.svg) |![bill-invoice-pound-light](icons/o2/light/bill-invoice-pound-light.svg) | |<a id='bill-invoice-pound-light'>`bill-invoice-pound-light`</a>[![bill-invoice-pound-light](.github/resources/anchor.svg)](#bill-invoice-pound-light)|
| | |![bill-invoice-pound-regular](icons/o2-new/regular/bill-invoice-pound-regular.svg) |![bill-invoice-pound-regular](icons/o2/regular/bill-invoice-pound-regular.svg) | |<a id='bill-invoice-pound-regular'>`bill-invoice-pound-regular`</a>[![bill-invoice-pound-regular](.github/resources/anchor.svg)](#bill-invoice-pound-regular)|
| | |![bill-queries-euro-filled](icons/o2-new/filled/bill-queries-euro-filled.svg) |![bill-queries-euro-filled](icons/o2/filled/bill-queries-euro-filled.svg) | |<a id='bill-queries-euro-filled'>`bill-queries-euro-filled`</a>[![bill-queries-euro-filled](.github/resources/anchor.svg)](#bill-queries-euro-filled)|
| | |![bill-queries-euro-light](icons/o2-new/light/bill-queries-euro-light.svg) |![bill-queries-euro-light](icons/o2/light/bill-queries-euro-light.svg) | |<a id='bill-queries-euro-light'>`bill-queries-euro-light`</a>[![bill-queries-euro-light](.github/resources/anchor.svg)](#bill-queries-euro-light)|
| | |![bill-queries-euro-regular](icons/o2-new/regular/bill-queries-euro-regular.svg) |![bill-queries-euro-regular](icons/o2/regular/bill-queries-euro-regular.svg) | |<a id='bill-queries-euro-regular'>`bill-queries-euro-regular`</a>[![bill-queries-euro-regular](.github/resources/anchor.svg)](#bill-queries-euro-regular)|
| | |![bill-queries-pound-filled](icons/o2-new/filled/bill-queries-pound-filled.svg) |![bill-queries-pound-filled](icons/o2/filled/bill-queries-pound-filled.svg) | |<a id='bill-queries-pound-filled'>`bill-queries-pound-filled`</a>[![bill-queries-pound-filled](.github/resources/anchor.svg)](#bill-queries-pound-filled)|
| | |![bill-queries-pound-light](icons/o2-new/light/bill-queries-pound-light.svg) |![bill-queries-pound-light](icons/o2/light/bill-queries-pound-light.svg) | |<a id='bill-queries-pound-light'>`bill-queries-pound-light`</a>[![bill-queries-pound-light](.github/resources/anchor.svg)](#bill-queries-pound-light)|
| | |![bill-queries-pound-regular](icons/o2-new/regular/bill-queries-pound-regular.svg) |![bill-queries-pound-regular](icons/o2/regular/bill-queries-pound-regular.svg) | |<a id='bill-queries-pound-regular'>`bill-queries-pound-regular`</a>[![bill-queries-pound-regular](.github/resources/anchor.svg)](#bill-queries-pound-regular)|
|![blog-filled](icons/telefonica/filled/blog-filled.svg) | | | | |<a id='blog-filled'>`blog-filled`</a>[![blog-filled](.github/resources/anchor.svg)](#blog-filled)|
|![blog-light](icons/telefonica/light/blog-light.svg) | | | | |<a id='blog-light'>`blog-light`</a>[![blog-light](.github/resources/anchor.svg)](#blog-light)|
|![blog-regular](icons/telefonica/regular/blog-regular.svg) | | | | |<a id='blog-regular'>`blog-regular`</a>[![blog-regular](.github/resources/anchor.svg)](#blog-regular)|
|![boat-filled](icons/telefonica/filled/boat-filled.svg) | | | | |<a id='boat-filled'>`boat-filled`</a>[![boat-filled](.github/resources/anchor.svg)](#boat-filled)|
|![boat-light](icons/telefonica/light/boat-light.svg) | | | | |<a id='boat-light'>`boat-light`</a>[![boat-light](.github/resources/anchor.svg)](#boat-light)|
|![boat-regular](icons/telefonica/regular/boat-regular.svg) | | | | |<a id='boat-regular'>`boat-regular`</a>[![boat-regular](.github/resources/anchor.svg)](#boat-regular)|
|![book-filled](icons/telefonica/filled/book-filled.svg) | | | | |<a id='book-filled'>`book-filled`</a>[![book-filled](.github/resources/anchor.svg)](#book-filled)|
|![book-light](icons/telefonica/light/book-light.svg) | | | | |<a id='book-light'>`book-light`</a>[![book-light](.github/resources/anchor.svg)](#book-light)|
|![book-regular](icons/telefonica/regular/book-regular.svg) | | | | |<a id='book-regular'>`book-regular`</a>[![book-regular](.github/resources/anchor.svg)](#book-regular)|
|![bookmark-filled](icons/telefonica/filled/bookmark-filled.svg) | | | | |<a id='bookmark-filled'>`bookmark-filled`</a>[![bookmark-filled](.github/resources/anchor.svg)](#bookmark-filled)|
|![bookmark-light](icons/telefonica/light/bookmark-light.svg) | | | | |<a id='bookmark-light'>`bookmark-light`</a>[![bookmark-light](.github/resources/anchor.svg)](#bookmark-light)|
|![bookmark-regular](icons/telefonica/regular/bookmark-regular.svg) | | | | |<a id='bookmark-regular'>`bookmark-regular`</a>[![bookmark-regular](.github/resources/anchor.svg)](#bookmark-regular)|
|![box-filled](icons/telefonica/filled/box-filled.svg) | |![box-filled](icons/o2-new/filled/box-filled.svg) |![box-filled](icons/o2/filled/box-filled.svg) | |<a id='box-filled'>`box-filled`</a>[![box-filled](.github/resources/anchor.svg)](#box-filled)|
|![box-light](icons/telefonica/light/box-light.svg) | |![box-light](icons/o2-new/light/box-light.svg) |![box-light](icons/o2/light/box-light.svg) | |<a id='box-light'>`box-light`</a>[![box-light](.github/resources/anchor.svg)](#box-light)|
| | |![box-location-filled](icons/o2-new/filled/box-location-filled.svg) |![box-location-filled](icons/o2/filled/box-location-filled.svg) | |<a id='box-location-filled'>`box-location-filled`</a>[![box-location-filled](.github/resources/anchor.svg)](#box-location-filled)|
| | |![box-location-light](icons/o2-new/light/box-location-light.svg) |![box-location-light](icons/o2/light/box-location-light.svg) | |<a id='box-location-light'>`box-location-light`</a>[![box-location-light](.github/resources/anchor.svg)](#box-location-light)|
| | |![box-location-regular](icons/o2-new/regular/box-location-regular.svg) |![box-location-regular](icons/o2/regular/box-location-regular.svg) | |<a id='box-location-regular'>`box-location-regular`</a>[![box-location-regular](.github/resources/anchor.svg)](#box-location-regular)|
|![box-regular](icons/telefonica/regular/box-regular.svg) | |![box-regular](icons/o2-new/regular/box-regular.svg) |![box-regular](icons/o2/regular/box-regular.svg) | |<a id='box-regular'>`box-regular`</a>[![box-regular](.github/resources/anchor.svg)](#box-regular)|
| |![box-star-filled](icons/vivo-new/filled/box-star-filled.svg) | | | |<a id='box-star-filled'>`box-star-filled`</a>[![box-star-filled](.github/resources/anchor.svg)](#box-star-filled)|
| |![box-star-light](icons/vivo-new/light/box-star-light.svg) | | | |<a id='box-star-light'>`box-star-light`</a>[![box-star-light](.github/resources/anchor.svg)](#box-star-light)|
| |![box-star-regular](icons/vivo-new/regular/box-star-regular.svg) | | | |<a id='box-star-regular'>`box-star-regular`</a>[![box-star-regular](.github/resources/anchor.svg)](#box-star-regular)|
|![brain-filled](icons/telefonica/filled/brain-filled.svg) | | | | |<a id='brain-filled'>`brain-filled`</a>[![brain-filled](.github/resources/anchor.svg)](#brain-filled)|
|![brain-light](icons/telefonica/light/brain-light.svg) | | | | |<a id='brain-light'>`brain-light`</a>[![brain-light](.github/resources/anchor.svg)](#brain-light)|
|![brain-regular](icons/telefonica/regular/brain-regular.svg) | | | | |<a id='brain-regular'>`brain-regular`</a>[![brain-regular](.github/resources/anchor.svg)](#brain-regular)|
| | |![briefcase-business-filled](icons/o2-new/filled/briefcase-business-filled.svg) |![briefcase-business-filled](icons/o2/filled/briefcase-business-filled.svg) | |<a id='briefcase-business-filled'>`briefcase-business-filled`</a>[![briefcase-business-filled](.github/resources/anchor.svg)](#briefcase-business-filled)|
| | |![briefcase-business-light](icons/o2-new/light/briefcase-business-light.svg) |![briefcase-business-light](icons/o2/light/briefcase-business-light.svg) | |<a id='briefcase-business-light'>`briefcase-business-light`</a>[![briefcase-business-light](.github/resources/anchor.svg)](#briefcase-business-light)|
| | |![briefcase-business-regular](icons/o2-new/regular/briefcase-business-regular.svg) |![briefcase-business-regular](icons/o2/regular/briefcase-business-regular.svg) | |<a id='briefcase-business-regular'>`briefcase-business-regular`</a>[![briefcase-business-regular](.github/resources/anchor.svg)](#briefcase-business-regular)|
|![briefcase-filled](icons/telefonica/filled/briefcase-filled.svg) | |![briefcase-filled](icons/o2-new/filled/briefcase-filled.svg) |![briefcase-filled](icons/o2/filled/briefcase-filled.svg) | |<a id='briefcase-filled'>`briefcase-filled`</a>[![briefcase-filled](.github/resources/anchor.svg)](#briefcase-filled)|
|![briefcase-light](icons/telefonica/light/briefcase-light.svg) | |![briefcase-light](icons/o2-new/light/briefcase-light.svg) |![briefcase-light](icons/o2/light/briefcase-light.svg) | |<a id='briefcase-light'>`briefcase-light`</a>[![briefcase-light](.github/resources/anchor.svg)](#briefcase-light)|
|![briefcase-regular](icons/telefonica/regular/briefcase-regular.svg) | |![briefcase-regular](icons/o2-new/regular/briefcase-regular.svg) |![briefcase-regular](icons/o2/regular/briefcase-regular.svg) |![briefcase-regular](icons/blau/regular/briefcase-regular.svg) |<a id='briefcase-regular'>`briefcase-regular`</a>[![briefcase-regular](.github/resources/anchor.svg)](#briefcase-regular)|
|![broadband-filled](icons/telefonica/filled/broadband-filled.svg) | | | | |<a id='broadband-filled'>`broadband-filled`</a>[![broadband-filled](.github/resources/anchor.svg)](#broadband-filled)|
|![broadband-light](icons/telefonica/light/broadband-light.svg) | | | | |<a id='broadband-light'>`broadband-light`</a>[![broadband-light](.github/resources/anchor.svg)](#broadband-light)|
|![broadband-regular](icons/telefonica/regular/broadband-regular.svg) | | | | |<a id='broadband-regular'>`broadband-regular`</a>[![broadband-regular](.github/resources/anchor.svg)](#broadband-regular)|
|![bug-filled](icons/telefonica/filled/bug-filled.svg) | | | | |<a id='bug-filled'>`bug-filled`</a>[![bug-filled](.github/resources/anchor.svg)](#bug-filled)|
|![bug-light](icons/telefonica/light/bug-light.svg) | | | | |<a id='bug-light'>`bug-light`</a>[![bug-light](.github/resources/anchor.svg)](#bug-light)|
|![bug-regular](icons/telefonica/regular/bug-regular.svg) | | | | |<a id='bug-regular'>`bug-regular`</a>[![bug-regular](.github/resources/anchor.svg)](#bug-regular)|
|![bus-filled](icons/telefonica/filled/bus-filled.svg) | | | | |<a id='bus-filled'>`bus-filled`</a>[![bus-filled](.github/resources/anchor.svg)](#bus-filled)|
|![bus-light](icons/telefonica/light/bus-light.svg) | | | | |<a id='bus-light'>`bus-light`</a>[![bus-light](.github/resources/anchor.svg)](#bus-light)|
|![bus-regular](icons/telefonica/regular/bus-regular.svg) | | | | |<a id='bus-regular'>`bus-regular`</a>[![bus-regular](.github/resources/anchor.svg)](#bus-regular)|
|![buy-data-filled](icons/telefonica/filled/buy-data-filled.svg) | | | | |<a id='buy-data-filled'>`buy-data-filled`</a>[![buy-data-filled](.github/resources/anchor.svg)](#buy-data-filled)|
|![buy-data-light](icons/telefonica/light/buy-data-light.svg) | | | | |<a id='buy-data-light'>`buy-data-light`</a>[![buy-data-light](.github/resources/anchor.svg)](#buy-data-light)|
|![buy-data-regular](icons/telefonica/regular/buy-data-regular.svg) | | | | |<a id='buy-data-regular'>`buy-data-regular`</a>[![buy-data-regular](.github/resources/anchor.svg)](#buy-data-regular)|
|![buy-devices-filled](icons/telefonica/filled/buy-devices-filled.svg) | |![buy-devices-filled](icons/o2-new/filled/buy-devices-filled.svg) |![buy-devices-filled](icons/o2/filled/buy-devices-filled.svg) | |<a id='buy-devices-filled'>`buy-devices-filled`</a>[![buy-devices-filled](.github/resources/anchor.svg)](#buy-devices-filled)|
|![buy-devices-light](icons/telefonica/light/buy-devices-light.svg) | |![buy-devices-light](icons/o2-new/light/buy-devices-light.svg) |![buy-devices-light](icons/o2/light/buy-devices-light.svg) | |<a id='buy-devices-light'>`buy-devices-light`</a>[![buy-devices-light](.github/resources/anchor.svg)](#buy-devices-light)|
|![buy-devices-regular](icons/telefonica/regular/buy-devices-regular.svg) | |![buy-devices-regular](icons/o2-new/regular/buy-devices-regular.svg) |![buy-devices-regular](icons/o2/regular/buy-devices-regular.svg) | |<a id='buy-devices-regular'>`buy-devices-regular`</a>[![buy-devices-regular](.github/resources/anchor.svg)](#buy-devices-regular)|
|![buy-home-products-filled](icons/telefonica/filled/buy-home-products-filled.svg) | | | | |<a id='buy-home-products-filled'>`buy-home-products-filled`</a>[![buy-home-products-filled](.github/resources/anchor.svg)](#buy-home-products-filled)|
|![buy-home-products-light](icons/telefonica/light/buy-home-products-light.svg) | | | | |<a id='buy-home-products-light'>`buy-home-products-light`</a>[![buy-home-products-light](.github/resources/anchor.svg)](#buy-home-products-light)|
|![buy-home-products-regular](icons/telefonica/regular/buy-home-products-regular.svg) | | | | |<a id='buy-home-products-regular'>`buy-home-products-regular`</a>[![buy-home-products-regular](.github/resources/anchor.svg)](#buy-home-products-regular)|
|![buy-plans-filled](icons/telefonica/filled/buy-plans-filled.svg) | | | | |<a id='buy-plans-filled'>`buy-plans-filled`</a>[![buy-plans-filled](.github/resources/anchor.svg)](#buy-plans-filled)|
|![buy-plans-light](icons/telefonica/light/buy-plans-light.svg) | | | | |<a id='buy-plans-light'>`buy-plans-light`</a>[![buy-plans-light](.github/resources/anchor.svg)](#buy-plans-light)|
|![buy-plans-regular](icons/telefonica/regular/buy-plans-regular.svg) | | | | |<a id='buy-plans-regular'>`buy-plans-regular`</a>[![buy-plans-regular](.github/resources/anchor.svg)](#buy-plans-regular)|
|![cafe-filled](icons/telefonica/filled/cafe-filled.svg) | | | | |<a id='cafe-filled'>`cafe-filled`</a>[![cafe-filled](.github/resources/anchor.svg)](#cafe-filled)|
|![cafe-light](icons/telefonica/light/cafe-light.svg) | | | | |<a id='cafe-light'>`cafe-light`</a>[![cafe-light](.github/resources/anchor.svg)](#cafe-light)|
|![cafe-regular](icons/telefonica/regular/cafe-regular.svg) | | | | |<a id='cafe-regular'>`cafe-regular`</a>[![cafe-regular](.github/resources/anchor.svg)](#cafe-regular)|
| | |![calendar-euro-filled](icons/o2-new/filled/calendar-euro-filled.svg) |![calendar-euro-filled](icons/o2/filled/calendar-euro-filled.svg) | |<a id='calendar-euro-filled'>`calendar-euro-filled`</a>[![calendar-euro-filled](.github/resources/anchor.svg)](#calendar-euro-filled)|
| | |![calendar-euro-light](icons/o2-new/light/calendar-euro-light.svg) |![calendar-euro-light](icons/o2/light/calendar-euro-light.svg) | |<a id='calendar-euro-light'>`calendar-euro-light`</a>[![calendar-euro-light](.github/resources/anchor.svg)](#calendar-euro-light)|
| | |![calendar-euro-regular](icons/o2-new/regular/calendar-euro-regular.svg) |![calendar-euro-regular](icons/o2/regular/calendar-euro-regular.svg) | |<a id='calendar-euro-regular'>`calendar-euro-regular`</a>[![calendar-euro-regular](.github/resources/anchor.svg)](#calendar-euro-regular)|
|![calendar-filled](icons/telefonica/filled/calendar-filled.svg) | |![calendar-filled](icons/o2-new/filled/calendar-filled.svg) |![calendar-filled](icons/o2/filled/calendar-filled.svg) | |<a id='calendar-filled'>`calendar-filled`</a>[![calendar-filled](.github/resources/anchor.svg)](#calendar-filled)|
|![calendar-light](icons/telefonica/light/calendar-light.svg) | |![calendar-light](icons/o2-new/light/calendar-light.svg) |![calendar-light](icons/o2/light/calendar-light.svg) | |<a id='calendar-light'>`calendar-light`</a>[![calendar-light](.github/resources/anchor.svg)](#calendar-light)|
| | |![calendar-pound-filled](icons/o2-new/filled/calendar-pound-filled.svg) |![calendar-pound-filled](icons/o2/filled/calendar-pound-filled.svg) | |<a id='calendar-pound-filled'>`calendar-pound-filled`</a>[![calendar-pound-filled](.github/resources/anchor.svg)](#calendar-pound-filled)|
| | |![calendar-pound-light](icons/o2-new/light/calendar-pound-light.svg) |![calendar-pound-light](icons/o2/light/calendar-pound-light.svg) | |<a id='calendar-pound-light'>`calendar-pound-light`</a>[![calendar-pound-light](.github/resources/anchor.svg)](#calendar-pound-light)|
| | |![calendar-pound-regular](icons/o2-new/regular/calendar-pound-regular.svg) |![calendar-pound-regular](icons/o2/regular/calendar-pound-regular.svg) | |<a id='calendar-pound-regular'>`calendar-pound-regular`</a>[![calendar-pound-regular](.github/resources/anchor.svg)](#calendar-pound-regular)|
|![calendar-regular](icons/telefonica/regular/calendar-regular.svg) | |![calendar-regular](icons/o2-new/regular/calendar-regular.svg) |![calendar-regular](icons/o2/regular/calendar-regular.svg) | |<a id='calendar-regular'>`calendar-regular`</a>[![calendar-regular](.github/resources/anchor.svg)](#calendar-regular)|
|![call-details-filled](icons/telefonica/filled/call-details-filled.svg) | | | | |<a id='call-details-filled'>`call-details-filled`</a>[![call-details-filled](.github/resources/anchor.svg)](#call-details-filled)|
|![call-details-light](icons/telefonica/light/call-details-light.svg) | | | | |<a id='call-details-light'>`call-details-light`</a>[![call-details-light](.github/resources/anchor.svg)](#call-details-light)|
|![call-details-regular](icons/telefonica/regular/call-details-regular.svg) | | | | |<a id='call-details-regular'>`call-details-regular`</a>[![call-details-regular](.github/resources/anchor.svg)](#call-details-regular)|
|![call-landline-filled](icons/telefonica/filled/call-landline-filled.svg) | |![call-landline-filled](icons/o2-new/filled/call-landline-filled.svg) |![call-landline-filled](icons/o2/filled/call-landline-filled.svg) | |<a id='call-landline-filled'>`call-landline-filled`</a>[![call-landline-filled](.github/resources/anchor.svg)](#call-landline-filled)|
|![call-landline-light](icons/telefonica/light/call-landline-light.svg) | |![call-landline-light](icons/o2-new/light/call-landline-light.svg) |![call-landline-light](icons/o2/light/call-landline-light.svg) | |<a id='call-landline-light'>`call-landline-light`</a>[![call-landline-light](.github/resources/anchor.svg)](#call-landline-light)|
|![call-landline-regular](icons/telefonica/regular/call-landline-regular.svg) | |![call-landline-regular](icons/o2-new/regular/call-landline-regular.svg) |![call-landline-regular](icons/o2/regular/call-landline-regular.svg) |![call-landline-regular](icons/blau/regular/call-landline-regular.svg) |<a id='call-landline-regular'>`call-landline-regular`</a>[![call-landline-regular](.github/resources/anchor.svg)](#call-landline-regular)|
| | |![callback-filled](icons/o2-new/filled/callback-filled.svg) |![callback-filled](icons/o2/filled/callback-filled.svg) | |<a id='callback-filled'>`callback-filled`</a>[![callback-filled](.github/resources/anchor.svg)](#callback-filled)|
| | |![callback-light](icons/o2-new/light/callback-light.svg) |![callback-light](icons/o2/light/callback-light.svg) | |<a id='callback-light'>`callback-light`</a>[![callback-light](.github/resources/anchor.svg)](#callback-light)|
| | |![callback-regular](icons/o2-new/regular/callback-regular.svg) |![callback-regular](icons/o2/regular/callback-regular.svg) | |<a id='callback-regular'>`callback-regular`</a>[![callback-regular](.github/resources/anchor.svg)](#callback-regular)|
|![cancel-filled](icons/telefonica/filled/cancel-filled.svg) | |![cancel-filled](icons/o2-new/filled/cancel-filled.svg) |![cancel-filled](icons/o2/filled/cancel-filled.svg) | |<a id='cancel-filled'>`cancel-filled`</a>[![cancel-filled](.github/resources/anchor.svg)](#cancel-filled)|
|![cancel-light](icons/telefonica/light/cancel-light.svg) | |![cancel-light](icons/o2-new/light/cancel-light.svg) |![cancel-light](icons/o2/light/cancel-light.svg) | |<a id='cancel-light'>`cancel-light`</a>[![cancel-light](.github/resources/anchor.svg)](#cancel-light)|
|![cancel-regular](icons/telefonica/regular/cancel-regular.svg) | |![cancel-regular](icons/o2-new/regular/cancel-regular.svg) |![cancel-regular](icons/o2/regular/cancel-regular.svg) |![cancel-regular](icons/blau/regular/cancel-regular.svg) |<a id='cancel-regular'>`cancel-regular`</a>[![cancel-regular](.github/resources/anchor.svg)](#cancel-regular)|
| | |![cancellation-filled](icons/o2-new/filled/cancellation-filled.svg) |![cancellation-filled](icons/o2/filled/cancellation-filled.svg) | |<a id='cancellation-filled'>`cancellation-filled`</a>[![cancellation-filled](.github/resources/anchor.svg)](#cancellation-filled)|
| | |![cancellation-light](icons/o2-new/light/cancellation-light.svg) |![cancellation-light](icons/o2/light/cancellation-light.svg) | |<a id='cancellation-light'>`cancellation-light`</a>[![cancellation-light](.github/resources/anchor.svg)](#cancellation-light)|
| | |![cancellation-regular](icons/o2-new/regular/cancellation-regular.svg) |![cancellation-regular](icons/o2/regular/cancellation-regular.svg) | |<a id='cancellation-regular'>`cancellation-regular`</a>[![cancellation-regular](.github/resources/anchor.svg)](#cancellation-regular)|
|![car-filled](icons/telefonica/filled/car-filled.svg) | | | | |<a id='car-filled'>`car-filled`</a>[![car-filled](.github/resources/anchor.svg)](#car-filled)|
|![car-light](icons/telefonica/light/car-light.svg) | | | | |<a id='car-light'>`car-light`</a>[![car-light](.github/resources/anchor.svg)](#car-light)|
|![car-moving-filled](icons/telefonica/filled/car-moving-filled.svg) | | | | |<a id='car-moving-filled'>`car-moving-filled`</a>[![car-moving-filled](.github/resources/anchor.svg)](#car-moving-filled)|
|![car-moving-light](icons/telefonica/light/car-moving-light.svg) | | | | |<a id='car-moving-light'>`car-moving-light`</a>[![car-moving-light](.github/resources/anchor.svg)](#car-moving-light)|
|![car-moving-regular](icons/telefonica/regular/car-moving-regular.svg) | | | | |<a id='car-moving-regular'>`car-moving-regular`</a>[![car-moving-regular](.github/resources/anchor.svg)](#car-moving-regular)|
|![car-regular](icons/telefonica/regular/car-regular.svg) | | | | |<a id='car-regular'>`car-regular`</a>[![car-regular](.github/resources/anchor.svg)](#car-regular)|
|![car-with-clock-filled](icons/telefonica/filled/car-with-clock-filled.svg) | | | | |<a id='car-with-clock-filled'>`car-with-clock-filled`</a>[![car-with-clock-filled](.github/resources/anchor.svg)](#car-with-clock-filled)|
|![car-with-clock-light](icons/telefonica/light/car-with-clock-light.svg) | | | | |<a id='car-with-clock-light'>`car-with-clock-light`</a>[![car-with-clock-light](.github/resources/anchor.svg)](#car-with-clock-light)|
|![car-with-clock-regular](icons/telefonica/regular/car-with-clock-regular.svg) | | | | |<a id='car-with-clock-regular'>`car-with-clock-regular`</a>[![car-with-clock-regular](.github/resources/anchor.svg)](#car-with-clock-regular)|
| |![care-bike-regular](icons/vivo-new/regular/care-bike-regular.svg) | | | |<a id='care-bike-regular'>`care-bike-regular`</a>[![care-bike-regular](.github/resources/anchor.svg)](#care-bike-regular)|
| |![care-briefcase-regular](icons/vivo-new/regular/care-briefcase-regular.svg) | | | |<a id='care-briefcase-regular'>`care-briefcase-regular`</a>[![care-briefcase-regular](.github/resources/anchor.svg)](#care-briefcase-regular)|
| |![care-check-regular](icons/vivo-new/regular/care-check-regular.svg) | | | |<a id='care-check-regular'>`care-check-regular`</a>[![care-check-regular](.github/resources/anchor.svg)](#care-check-regular)|
|![care-filled](icons/telefonica/filled/care-filled.svg) | | | | |<a id='care-filled'>`care-filled`</a>[![care-filled](.github/resources/anchor.svg)](#care-filled)|
|![care-health-filled](icons/telefonica/filled/care-health-filled.svg) | | | | |<a id='care-health-filled'>`care-health-filled`</a>[![care-health-filled](.github/resources/anchor.svg)](#care-health-filled)|
|![care-health-light](icons/telefonica/light/care-health-light.svg) | | | | |<a id='care-health-light'>`care-health-light`</a>[![care-health-light](.github/resources/anchor.svg)](#care-health-light)|
|![care-health-regular](icons/telefonica/regular/care-health-regular.svg) | | | | |<a id='care-health-regular'>`care-health-regular`</a>[![care-health-regular](.github/resources/anchor.svg)](#care-health-regular)|
| |![care-home-regular](icons/vivo-new/regular/care-home-regular.svg) | | | |<a id='care-home-regular'>`care-home-regular`</a>[![care-home-regular](.github/resources/anchor.svg)](#care-home-regular)|
| |![care-laptop-regular](icons/vivo-new/regular/care-laptop-regular.svg) | | | |<a id='care-laptop-regular'>`care-laptop-regular`</a>[![care-laptop-regular](.github/resources/anchor.svg)](#care-laptop-regular)|
|![care-light](icons/telefonica/light/care-light.svg) | | | | |<a id='care-light'>`care-light`</a>[![care-light](.github/resources/anchor.svg)](#care-light)|
| |![care-mobile-regular](icons/vivo-new/regular/care-mobile-regular.svg) | | | |<a id='care-mobile-regular'>`care-mobile-regular`</a>[![care-mobile-regular](.github/resources/anchor.svg)](#care-mobile-regular)|
| |![care-pet-regular](icons/vivo-new/regular/care-pet-regular.svg) | | | |<a id='care-pet-regular'>`care-pet-regular`</a>[![care-pet-regular](.github/resources/anchor.svg)](#care-pet-regular)|
|![care-regular](icons/telefonica/regular/care-regular.svg) |![care-regular](icons/vivo-new/regular/care-regular.svg) | | | |<a id='care-regular'>`care-regular`</a>[![care-regular](.github/resources/anchor.svg)](#care-regular)|
|![care-shield-filled](icons/telefonica/filled/care-shield-filled.svg) | | | | |<a id='care-shield-filled'>`care-shield-filled`</a>[![care-shield-filled](.github/resources/anchor.svg)](#care-shield-filled)|
|![care-shield-light](icons/telefonica/light/care-shield-light.svg) | | | | |<a id='care-shield-light'>`care-shield-light`</a>[![care-shield-light](.github/resources/anchor.svg)](#care-shield-light)|
|![care-shield-regular](icons/telefonica/regular/care-shield-regular.svg) | | | | |<a id='care-shield-regular'>`care-shield-regular`</a>[![care-shield-regular](.github/resources/anchor.svg)](#care-shield-regular)|
| |![care-win-regular](icons/vivo-new/regular/care-win-regular.svg) | | | |<a id='care-win-regular'>`care-win-regular`</a>[![care-win-regular](.github/resources/anchor.svg)](#care-win-regular)|
|![casino-filled](icons/telefonica/filled/casino-filled.svg) | | | | |<a id='casino-filled'>`casino-filled`</a>[![casino-filled](.github/resources/anchor.svg)](#casino-filled)|
|![casino-light](icons/telefonica/light/casino-light.svg) | | | | |<a id='casino-light'>`casino-light`</a>[![casino-light](.github/resources/anchor.svg)](#casino-light)|
|![casino-regular](icons/telefonica/regular/casino-regular.svg) | | | | |<a id='casino-regular'>`casino-regular`</a>[![casino-regular](.github/resources/anchor.svg)](#casino-regular)|
| |![cat-filled](icons/vivo-new/filled/cat-filled.svg) | | | |<a id='cat-filled'>`cat-filled`</a>[![cat-filled](.github/resources/anchor.svg)](#cat-filled)|
| |![cat-light](icons/vivo-new/light/cat-light.svg) | | | |<a id='cat-light'>`cat-light`</a>[![cat-light](.github/resources/anchor.svg)](#cat-light)|
| |![cat-regular](icons/vivo-new/regular/cat-regular.svg) | | | |<a id='cat-regular'>`cat-regular`</a>[![cat-regular](.github/resources/anchor.svg)](#cat-regular)|
|![certificate-filled](icons/telefonica/filled/certificate-filled.svg) | | | | |<a id='certificate-filled'>`certificate-filled`</a>[![certificate-filled](.github/resources/anchor.svg)](#certificate-filled)|
|![certificate-light](icons/telefonica/light/certificate-light.svg) | | | | |<a id='certificate-light'>`certificate-light`</a>[![certificate-light](.github/resources/anchor.svg)](#certificate-light)|
|![certificate-regular](icons/telefonica/regular/certificate-regular.svg) | | | | |<a id='certificate-regular'>`certificate-regular`</a>[![certificate-regular](.github/resources/anchor.svg)](#certificate-regular)|
|![change-plan-filled](icons/telefonica/filled/change-plan-filled.svg) | | | | |<a id='change-plan-filled'>`change-plan-filled`</a>[![change-plan-filled](.github/resources/anchor.svg)](#change-plan-filled)|
|![change-plan-light](icons/telefonica/light/change-plan-light.svg) | | | | |<a id='change-plan-light'>`change-plan-light`</a>[![change-plan-light](.github/resources/anchor.svg)](#change-plan-light)|
|![change-plan-regular](icons/telefonica/regular/change-plan-regular.svg) | | | | |<a id='change-plan-regular'>`change-plan-regular`</a>[![change-plan-regular](.github/resources/anchor.svg)](#change-plan-regular)|
|![change-wifi-password-filled](icons/telefonica/filled/change-wifi-password-filled.svg) | | | | |<a id='change-wifi-password-filled'>`change-wifi-password-filled`</a>[![change-wifi-password-filled](.github/resources/anchor.svg)](#change-wifi-password-filled)|
|![change-wifi-password-light](icons/telefonica/light/change-wifi-password-light.svg) | | | | |<a id='change-wifi-password-light'>`change-wifi-password-light`</a>[![change-wifi-password-light](.github/resources/anchor.svg)](#change-wifi-password-light)|
|![change-wifi-password-regular](icons/telefonica/regular/change-wifi-password-regular.svg) | | | | |<a id='change-wifi-password-regular'>`change-wifi-password-regular`</a>[![change-wifi-password-regular](.github/resources/anchor.svg)](#change-wifi-password-regular)|
| | |![chart-device-filled](icons/o2-new/filled/chart-device-filled.svg) |![chart-device-filled](icons/o2/filled/chart-device-filled.svg) | |<a id='chart-device-filled'>`chart-device-filled`</a>[![chart-device-filled](.github/resources/anchor.svg)](#chart-device-filled)|
| | |![chart-device-light](icons/o2-new/light/chart-device-light.svg) |![chart-device-light](icons/o2/light/chart-device-light.svg) | |<a id='chart-device-light'>`chart-device-light`</a>[![chart-device-light](.github/resources/anchor.svg)](#chart-device-light)|
| | |![chart-device-regular](icons/o2-new/regular/chart-device-regular.svg) |![chart-device-regular](icons/o2/regular/chart-device-regular.svg) | |<a id='chart-device-regular'>`chart-device-regular`</a>[![chart-device-regular](.github/resources/anchor.svg)](#chart-device-regular)|
|![chat-filled](icons/telefonica/filled/chat-filled.svg) | |![chat-filled](icons/o2-new/filled/chat-filled.svg) |![chat-filled](icons/o2/filled/chat-filled.svg) | |<a id='chat-filled'>`chat-filled`</a>[![chat-filled](.github/resources/anchor.svg)](#chat-filled)|
|![chat-light](icons/telefonica/light/chat-light.svg) | |![chat-light](icons/o2-new/light/chat-light.svg) |![chat-light](icons/o2/light/chat-light.svg) | |<a id='chat-light'>`chat-light`</a>[![chat-light](.github/resources/anchor.svg)](#chat-light)|
|![chat-regular](icons/telefonica/regular/chat-regular.svg) | |![chat-regular](icons/o2-new/regular/chat-regular.svg) |![chat-regular](icons/o2/regular/chat-regular.svg) |![chat-regular](icons/blau/regular/chat-regular.svg) |<a id='chat-regular'>`chat-regular`</a>[![chat-regular](.github/resources/anchor.svg)](#chat-regular)|
| | |![check-filled](icons/o2-new/filled/check-filled.svg) |![check-filled](icons/o2/filled/check-filled.svg) | |<a id='check-filled'>`check-filled`</a>[![check-filled](.github/resources/anchor.svg)](#check-filled)|
| | |![check-light](icons/o2-new/light/check-light.svg) |![check-light](icons/o2/light/check-light.svg) | |<a id='check-light'>`check-light`</a>[![check-light](.github/resources/anchor.svg)](#check-light)|
|![check-regular](icons/telefonica/regular/check-regular.svg) | |![check-regular](icons/o2-new/regular/check-regular.svg) |![check-regular](icons/o2/regular/check-regular.svg) |![check-regular](icons/blau/regular/check-regular.svg) |<a id='check-regular'>`check-regular`</a>[![check-regular](.github/resources/anchor.svg)](#check-regular)|
|![checked-filled](icons/telefonica/filled/checked-filled.svg) | |![checked-filled](icons/o2-new/filled/checked-filled.svg) |![checked-filled](icons/o2/filled/checked-filled.svg) | |<a id='checked-filled'>`checked-filled`</a>[![checked-filled](.github/resources/anchor.svg)](#checked-filled)|
|![checked-light](icons/telefonica/light/checked-light.svg) | |![checked-light](icons/o2-new/light/checked-light.svg) |![checked-light](icons/o2/light/checked-light.svg) | |<a id='checked-light'>`checked-light`</a>[![checked-light](.github/resources/anchor.svg)](#checked-light)|
|![checked-regular](icons/telefonica/regular/checked-regular.svg) | |![checked-regular](icons/o2-new/regular/checked-regular.svg) |![checked-regular](icons/o2/regular/checked-regular.svg) |![checked-regular](icons/blau/regular/checked-regular.svg) |<a id='checked-regular'>`checked-regular`</a>[![checked-regular](.github/resources/anchor.svg)](#checked-regular)|
|![chemistry-filled](icons/telefonica/filled/chemistry-filled.svg) | | | | |<a id='chemistry-filled'>`chemistry-filled`</a>[![chemistry-filled](.github/resources/anchor.svg)](#chemistry-filled)|
|![chemistry-light](icons/telefonica/light/chemistry-light.svg) | | | | |<a id='chemistry-light'>`chemistry-light`</a>[![chemistry-light](.github/resources/anchor.svg)](#chemistry-light)|
|![chemistry-regular](icons/telefonica/regular/chemistry-regular.svg) | | | | |<a id='chemistry-regular'>`chemistry-regular`</a>[![chemistry-regular](.github/resources/anchor.svg)](#chemistry-regular)|
|![chevron-down-light](icons/telefonica/light/chevron-down-light.svg) | |![chevron-down-light](icons/o2-new/light/chevron-down-light.svg) |![chevron-down-light](icons/o2/light/chevron-down-light.svg) | |<a id='chevron-down-light'>`chevron-down-light`</a>[![chevron-down-light](.github/resources/anchor.svg)](#chevron-down-light)|
|![chevron-down-regular](icons/telefonica/regular/chevron-down-regular.svg) | |![chevron-down-regular](icons/o2-new/regular/chevron-down-regular.svg) |![chevron-down-regular](icons/o2/regular/chevron-down-regular.svg) |![chevron-down-regular](icons/blau/regular/chevron-down-regular.svg) |<a id='chevron-down-regular'>`chevron-down-regular`</a>[![chevron-down-regular](.github/resources/anchor.svg)](#chevron-down-regular)|
|![chevron-left-light](icons/telefonica/light/chevron-left-light.svg) | |![chevron-left-light](icons/o2-new/light/chevron-left-light.svg) |![chevron-left-light](icons/o2/light/chevron-left-light.svg) | |<a id='chevron-left-light'>`chevron-left-light`</a>[![chevron-left-light](.github/resources/anchor.svg)](#chevron-left-light)|
|![chevron-left-regular](icons/telefonica/regular/chevron-left-regular.svg) | |![chevron-left-regular](icons/o2-new/regular/chevron-left-regular.svg) |![chevron-left-regular](icons/o2/regular/chevron-left-regular.svg) |![chevron-left-regular](icons/blau/regular/chevron-left-regular.svg) |<a id='chevron-left-regular'>`chevron-left-regular`</a>[![chevron-left-regular](.github/resources/anchor.svg)](#chevron-left-regular)|
|![chevron-right-light](icons/telefonica/light/chevron-right-light.svg) | |![chevron-right-light](icons/o2-new/light/chevron-right-light.svg) |![chevron-right-light](icons/o2/light/chevron-right-light.svg) | |<a id='chevron-right-light'>`chevron-right-light`</a>[![chevron-right-light](.github/resources/anchor.svg)](#chevron-right-light)|
|![chevron-right-regular](icons/telefonica/regular/chevron-right-regular.svg) | |![chevron-right-regular](icons/o2-new/regular/chevron-right-regular.svg) |![chevron-right-regular](icons/o2/regular/chevron-right-regular.svg) |![chevron-right-regular](icons/blau/regular/chevron-right-regular.svg) |<a id='chevron-right-regular'>`chevron-right-regular`</a>[![chevron-right-regular](.github/resources/anchor.svg)](#chevron-right-regular)|
|![chevron-up-light](icons/telefonica/light/chevron-up-light.svg) | |![chevron-up-light](icons/o2-new/light/chevron-up-light.svg) |![chevron-up-light](icons/o2/light/chevron-up-light.svg) | |<a id='chevron-up-light'>`chevron-up-light`</a>[![chevron-up-light](.github/resources/anchor.svg)](#chevron-up-light)|
|![chevron-up-regular](icons/telefonica/regular/chevron-up-regular.svg) | |![chevron-up-regular](icons/o2-new/regular/chevron-up-regular.svg) |![chevron-up-regular](icons/o2/regular/chevron-up-regular.svg) |![chevron-up-regular](icons/blau/regular/chevron-up-regular.svg) |<a id='chevron-up-regular'>`chevron-up-regular`</a>[![chevron-up-regular](.github/resources/anchor.svg)](#chevron-up-regular)|
|![child-filled](icons/telefonica/filled/child-filled.svg) | | | | |<a id='child-filled'>`child-filled`</a>[![child-filled](.github/resources/anchor.svg)](#child-filled)|
|![child-light](icons/telefonica/light/child-light.svg) | | | | |<a id='child-light'>`child-light`</a>[![child-light](.github/resources/anchor.svg)](#child-light)|
|![child-regular](icons/telefonica/regular/child-regular.svg) | | | | |<a id='child-regular'>`child-regular`</a>[![child-regular](.github/resources/anchor.svg)](#child-regular)|
|![chip-device-filled](icons/telefonica/filled/chip-device-filled.svg) | | | | |<a id='chip-device-filled'>`chip-device-filled`</a>[![chip-device-filled](.github/resources/anchor.svg)](#chip-device-filled)|
|![chip-device-light](icons/telefonica/light/chip-device-light.svg) | | | | |<a id='chip-device-light'>`chip-device-light`</a>[![chip-device-light](.github/resources/anchor.svg)](#chip-device-light)|
|![chip-device-regular](icons/telefonica/regular/chip-device-regular.svg) | | | | |<a id='chip-device-regular'>`chip-device-regular`</a>[![chip-device-regular](.github/resources/anchor.svg)](#chip-device-regular)|
|![chip-sim-card-filled](icons/telefonica/filled/chip-sim-card-filled.svg) | |![chip-sim-card-filled](icons/o2-new/filled/chip-sim-card-filled.svg) |![chip-sim-card-filled](icons/o2/filled/chip-sim-card-filled.svg) | |<a id='chip-sim-card-filled'>`chip-sim-card-filled`</a>[![chip-sim-card-filled](.github/resources/anchor.svg)](#chip-sim-card-filled)|
|![chip-sim-card-light](icons/telefonica/light/chip-sim-card-light.svg) | |![chip-sim-card-light](icons/o2-new/light/chip-sim-card-light.svg) |![chip-sim-card-light](icons/o2/light/chip-sim-card-light.svg) | |<a id='chip-sim-card-light'>`chip-sim-card-light`</a>[![chip-sim-card-light](.github/resources/anchor.svg)](#chip-sim-card-light)|
|![chip-sim-card-regular](icons/telefonica/regular/chip-sim-card-regular.svg) | |![chip-sim-card-regular](icons/o2-new/regular/chip-sim-card-regular.svg) |![chip-sim-card-regular](icons/o2/regular/chip-sim-card-regular.svg) |![chip-sim-card-regular](icons/blau/regular/chip-sim-card-regular.svg) |<a id='chip-sim-card-regular'>`chip-sim-card-regular`</a>[![chip-sim-card-regular](.github/resources/anchor.svg)](#chip-sim-card-regular)|
| | |![circuits-filled](icons/o2-new/filled/circuits-filled.svg) |![circuits-filled](icons/o2/filled/circuits-filled.svg) | |<a id='circuits-filled'>`circuits-filled`</a>[![circuits-filled](.github/resources/anchor.svg)](#circuits-filled)|
| | |![circuits-light](icons/o2-new/light/circuits-light.svg) |![circuits-light](icons/o2/light/circuits-light.svg) | |<a id='circuits-light'>`circuits-light`</a>[![circuits-light](.github/resources/anchor.svg)](#circuits-light)|
| | |![circuits-regular](icons/o2-new/regular/circuits-regular.svg) |![circuits-regular](icons/o2/regular/circuits-regular.svg) | |<a id='circuits-regular'>`circuits-regular`</a>[![circuits-regular](.github/resources/anchor.svg)](#circuits-regular)|
| | |![cleaning-filled](icons/o2-new/filled/cleaning-filled.svg) |![cleaning-filled](icons/o2/filled/cleaning-filled.svg) | |<a id='cleaning-filled'>`cleaning-filled`</a>[![cleaning-filled](.github/resources/anchor.svg)](#cleaning-filled)|
| | |![cleaning-light](icons/o2-new/light/cleaning-light.svg) |![cleaning-light](icons/o2/light/cleaning-light.svg) | |<a id='cleaning-light'>`cleaning-light`</a>[![cleaning-light](.github/resources/anchor.svg)](#cleaning-light)|
| | |![cleaning-regular](icons/o2-new/regular/cleaning-regular.svg) |![cleaning-regular](icons/o2/regular/cleaning-regular.svg) | |<a id='cleaning-regular'>`cleaning-regular`</a>[![cleaning-regular](.github/resources/anchor.svg)](#cleaning-regular)|
| | |![click-and-collect-filled](icons/o2-new/filled/click-and-collect-filled.svg) |![click-and-collect-filled](icons/o2/filled/click-and-collect-filled.svg) | |<a id='click-and-collect-filled'>`click-and-collect-filled`</a>[![click-and-collect-filled](.github/resources/anchor.svg)](#click-and-collect-filled)|
| | |![click-and-collect-light](icons/o2-new/light/click-and-collect-light.svg) |![click-and-collect-light](icons/o2/light/click-and-collect-light.svg) | |<a id='click-and-collect-light'>`click-and-collect-light`</a>[![click-and-collect-light](.github/resources/anchor.svg)](#click-and-collect-light)|
| | |![click-and-collect-regular](icons/o2-new/regular/click-and-collect-regular.svg) |![click-and-collect-regular](icons/o2/regular/click-and-collect-regular.svg) | |<a id='click-and-collect-regular'>`click-and-collect-regular`</a>[![click-and-collect-regular](.github/resources/anchor.svg)](#click-and-collect-regular)|
|![click-to-call-filled](icons/telefonica/filled/click-to-call-filled.svg) | | | | |<a id='click-to-call-filled'>`click-to-call-filled`</a>[![click-to-call-filled](.github/resources/anchor.svg)](#click-to-call-filled)|
|![click-to-call-light](icons/telefonica/light/click-to-call-light.svg) | | | | |<a id='click-to-call-light'>`click-to-call-light`</a>[![click-to-call-light](.github/resources/anchor.svg)](#click-to-call-light)|
|![click-to-call-regular](icons/telefonica/regular/click-to-call-regular.svg) | | | | |<a id='click-to-call-regular'>`click-to-call-regular`</a>[![click-to-call-regular](.github/resources/anchor.svg)](#click-to-call-regular)|
|![clip-filled](icons/telefonica/filled/clip-filled.svg) | |![clip-filled](icons/o2-new/filled/clip-filled.svg) |![clip-filled](icons/o2/filled/clip-filled.svg) | |<a id='clip-filled'>`clip-filled`</a>[![clip-filled](.github/resources/anchor.svg)](#clip-filled)|
|![clip-light](icons/telefonica/light/clip-light.svg) | |![clip-light](icons/o2-new/light/clip-light.svg) |![clip-light](icons/o2/light/clip-light.svg) | |<a id='clip-light'>`clip-light`</a>[![clip-light](.github/resources/anchor.svg)](#clip-light)|
|![clip-regular](icons/telefonica/regular/clip-regular.svg) | |![clip-regular](icons/o2-new/regular/clip-regular.svg) |![clip-regular](icons/o2/regular/clip-regular.svg) | |<a id='clip-regular'>`clip-regular`</a>[![clip-regular](.github/resources/anchor.svg)](#clip-regular)|
|![clipboard-filled](icons/telefonica/filled/clipboard-filled.svg) | |![clipboard-filled](icons/o2-new/filled/clipboard-filled.svg) |![clipboard-filled](icons/o2/filled/clipboard-filled.svg) | |<a id='clipboard-filled'>`clipboard-filled`</a>[![clipboard-filled](.github/resources/anchor.svg)](#clipboard-filled)|
|![clipboard-light](icons/telefonica/light/clipboard-light.svg) | |![clipboard-light](icons/o2-new/light/clipboard-light.svg) |![clipboard-light](icons/o2/light/clipboard-light.svg) | |<a id='clipboard-light'>`clipboard-light`</a>[![clipboard-light](.github/resources/anchor.svg)](#clipboard-light)|
|![clipboard-regular](icons/telefonica/regular/clipboard-regular.svg) | |![clipboard-regular](icons/o2-new/regular/clipboard-regular.svg) |![clipboard-regular](icons/o2/regular/clipboard-regular.svg) | |<a id='clipboard-regular'>`clipboard-regular`</a>[![clipboard-regular](.github/resources/anchor.svg)](#clipboard-regular)|
| | |![cloakroom-filled](icons/o2-new/filled/cloakroom-filled.svg) |![cloakroom-filled](icons/o2/filled/cloakroom-filled.svg) | |<a id='cloakroom-filled'>`cloakroom-filled`</a>[![cloakroom-filled](.github/resources/anchor.svg)](#cloakroom-filled)|
| | |![cloakroom-light](icons/o2-new/light/cloakroom-light.svg) |![cloakroom-light](icons/o2/light/cloakroom-light.svg) | |<a id='cloakroom-light'>`cloakroom-light`</a>[![cloakroom-light](.github/resources/anchor.svg)](#cloakroom-light)|
| | |![cloakroom-regular](icons/o2-new/regular/cloakroom-regular.svg) |![cloakroom-regular](icons/o2/regular/cloakroom-regular.svg) | |<a id='cloakroom-regular'>`cloakroom-regular`</a>[![cloakroom-regular](.github/resources/anchor.svg)](#cloakroom-regular)|
|![close-light](icons/telefonica/light/close-light.svg) | |![close-light](icons/o2-new/light/close-light.svg) |![close-light](icons/o2/light/close-light.svg) | |<a id='close-light'>`close-light`</a>[![close-light](.github/resources/anchor.svg)](#close-light)|
|![close-regular](icons/telefonica/regular/close-regular.svg) | |![close-regular](icons/o2-new/regular/close-regular.svg) |![close-regular](icons/o2/regular/close-regular.svg) | |<a id='close-regular'>`close-regular`</a>[![close-regular](.github/resources/anchor.svg)](#close-regular)|
| | |![cloud-distribution-alternative-filled](icons/o2-new/filled/cloud-distribution-alternative-filled.svg) |![cloud-distribution-alternative-filled](icons/o2/filled/cloud-distribution-alternative-filled.svg) | |<a id='cloud-distribution-alternative-filled'>`cloud-distribution-alternative-filled`</a>[![cloud-distribution-alternative-filled](.github/resources/anchor.svg)](#cloud-distribution-alternative-filled)|
| | |![cloud-distribution-alternative-light](icons/o2-new/light/cloud-distribution-alternative-light.svg) |![cloud-distribution-alternative-light](icons/o2/light/cloud-distribution-alternative-light.svg) | |<a id='cloud-distribution-alternative-light'>`cloud-distribution-alternative-light`</a>[![cloud-distribution-alternative-light](.github/resources/anchor.svg)](#cloud-distribution-alternative-light)|
| | |![cloud-distribution-alternative-regular](icons/o2-new/regular/cloud-distribution-alternative-regular.svg) |![cloud-distribution-alternative-regular](icons/o2/regular/cloud-distribution-alternative-regular.svg) | |<a id='cloud-distribution-alternative-regular'>`cloud-distribution-alternative-regular`</a>[![cloud-distribution-alternative-regular](.github/resources/anchor.svg)](#cloud-distribution-alternative-regular)|
|![cloud-distribution-filled](icons/telefonica/filled/cloud-distribution-filled.svg) | |![cloud-distribution-filled](icons/o2-new/filled/cloud-distribution-filled.svg) |![cloud-distribution-filled](icons/o2/filled/cloud-distribution-filled.svg) | |<a id='cloud-distribution-filled'>`cloud-distribution-filled`</a>[![cloud-distribution-filled](.github/resources/anchor.svg)](#cloud-distribution-filled)|
|![cloud-distribution-light](icons/telefonica/light/cloud-distribution-light.svg) | |![cloud-distribution-light](icons/o2-new/light/cloud-distribution-light.svg) |![cloud-distribution-light](icons/o2/light/cloud-distribution-light.svg) | |<a id='cloud-distribution-light'>`cloud-distribution-light`</a>[![cloud-distribution-light](.github/resources/anchor.svg)](#cloud-distribution-light)|
|![cloud-distribution-regular](icons/telefonica/regular/cloud-distribution-regular.svg) | |![cloud-distribution-regular](icons/o2-new/regular/cloud-distribution-regular.svg) |![cloud-distribution-regular](icons/o2/regular/cloud-distribution-regular.svg) | |<a id='cloud-distribution-regular'>`cloud-distribution-regular`</a>[![cloud-distribution-regular](.github/resources/anchor.svg)](#cloud-distribution-regular)|
|![cloud-filled](icons/telefonica/filled/cloud-filled.svg) | |![cloud-filled](icons/o2-new/filled/cloud-filled.svg) |![cloud-filled](icons/o2/filled/cloud-filled.svg) | |<a id='cloud-filled'>`cloud-filled`</a>[![cloud-filled](.github/resources/anchor.svg)](#cloud-filled)|
| | |![cloud-friends-filled](icons/o2-new/filled/cloud-friends-filled.svg) |![cloud-friends-filled](icons/o2/filled/cloud-friends-filled.svg) | |<a id='cloud-friends-filled'>`cloud-friends-filled`</a>[![cloud-friends-filled](.github/resources/anchor.svg)](#cloud-friends-filled)|
| | |![cloud-friends-light](icons/o2-new/light/cloud-friends-light.svg) |![cloud-friends-light](icons/o2/light/cloud-friends-light.svg) | |<a id='cloud-friends-light'>`cloud-friends-light`</a>[![cloud-friends-light](.github/resources/anchor.svg)](#cloud-friends-light)|
| | |![cloud-friends-regular](icons/o2-new/regular/cloud-friends-regular.svg) |![cloud-friends-regular](icons/o2/regular/cloud-friends-regular.svg) | |<a id='cloud-friends-regular'>`cloud-friends-regular`</a>[![cloud-friends-regular](.github/resources/anchor.svg)](#cloud-friends-regular)|
|![cloud-light](icons/telefonica/light/cloud-light.svg) | |![cloud-light](icons/o2-new/light/cloud-light.svg) |![cloud-light](icons/o2/light/cloud-light.svg) | |<a id='cloud-light'>`cloud-light`</a>[![cloud-light](.github/resources/anchor.svg)](#cloud-light)|
|![cloud-regular](icons/telefonica/regular/cloud-regular.svg) | |![cloud-regular](icons/o2-new/regular/cloud-regular.svg) |![cloud-regular](icons/o2/regular/cloud-regular.svg) | |<a id='cloud-regular'>`cloud-regular`</a>[![cloud-regular](.github/resources/anchor.svg)](#cloud-regular)|
|![cloud-upload-filled](icons/telefonica/filled/cloud-upload-filled.svg) | | | | |<a id='cloud-upload-filled'>`cloud-upload-filled`</a>[![cloud-upload-filled](.github/resources/anchor.svg)](#cloud-upload-filled)|
|![cloud-upload-light](icons/telefonica/light/cloud-upload-light.svg) | | | | |<a id='cloud-upload-light'>`cloud-upload-light`</a>[![cloud-upload-light](.github/resources/anchor.svg)](#cloud-upload-light)|
|![cloud-upload-regular](icons/telefonica/regular/cloud-upload-regular.svg) | | | | |<a id='cloud-upload-regular'>`cloud-upload-regular`</a>[![cloud-upload-regular](.github/resources/anchor.svg)](#cloud-upload-regular)|
|![clover-filled](icons/telefonica/filled/clover-filled.svg) | | | | |<a id='clover-filled'>`clover-filled`</a>[![clover-filled](.github/resources/anchor.svg)](#clover-filled)|
|![clover-light](icons/telefonica/light/clover-light.svg) | | | | |<a id='clover-light'>`clover-light`</a>[![clover-light](.github/resources/anchor.svg)](#clover-light)|
|![clover-regular](icons/telefonica/regular/clover-regular.svg) | | | | |<a id='clover-regular'>`clover-regular`</a>[![clover-regular](.github/resources/anchor.svg)](#clover-regular)|
|![cocktail-filled](icons/telefonica/filled/cocktail-filled.svg) | |![cocktail-filled](icons/o2-new/filled/cocktail-filled.svg) |![cocktail-filled](icons/o2/filled/cocktail-filled.svg) | |<a id='cocktail-filled'>`cocktail-filled`</a>[![cocktail-filled](.github/resources/anchor.svg)](#cocktail-filled)|
|![cocktail-light](icons/telefonica/light/cocktail-light.svg) | |![cocktail-light](icons/o2-new/light/cocktail-light.svg) |![cocktail-light](icons/o2/light/cocktail-light.svg) | |<a id='cocktail-light'>`cocktail-light`</a>[![cocktail-light](.github/resources/anchor.svg)](#cocktail-light)|
|![cocktail-regular](icons/telefonica/regular/cocktail-regular.svg) | |![cocktail-regular](icons/o2-new/regular/cocktail-regular.svg) |![cocktail-regular](icons/o2/regular/cocktail-regular.svg) | |<a id='cocktail-regular'>`cocktail-regular`</a>[![cocktail-regular](.github/resources/anchor.svg)](#cocktail-regular)|
|![code-filled](icons/telefonica/filled/code-filled.svg) | | | | |<a id='code-filled'>`code-filled`</a>[![code-filled](.github/resources/anchor.svg)](#code-filled)|
|![code-light](icons/telefonica/light/code-light.svg) | | | | |<a id='code-light'>`code-light`</a>[![code-light](.github/resources/anchor.svg)](#code-light)|
|![code-regular](icons/telefonica/regular/code-regular.svg) | | | | |<a id='code-regular'>`code-regular`</a>[![code-regular](.github/resources/anchor.svg)](#code-regular)|
| | |![coffee-tea-filled](icons/o2-new/filled/coffee-tea-filled.svg) |![coffee-tea-filled](icons/o2/filled/coffee-tea-filled.svg) | |<a id='coffee-tea-filled'>`coffee-tea-filled`</a>[![coffee-tea-filled](.github/resources/anchor.svg)](#coffee-tea-filled)|
| | |![coffee-tea-light](icons/o2-new/light/coffee-tea-light.svg) |![coffee-tea-light](icons/o2/light/coffee-tea-light.svg) | |<a id='coffee-tea-light'>`coffee-tea-light`</a>[![coffee-tea-light](.github/resources/anchor.svg)](#coffee-tea-light)|
| | |![coffee-tea-regular](icons/o2-new/regular/coffee-tea-regular.svg) |![coffee-tea-regular](icons/o2/regular/coffee-tea-regular.svg) | |<a id='coffee-tea-regular'>`coffee-tea-regular`</a>[![coffee-tea-regular](.github/resources/anchor.svg)](#coffee-tea-regular)|
| | |![coins-filled](icons/o2-new/filled/coins-filled.svg) |![coins-filled](icons/o2/filled/coins-filled.svg) | |<a id='coins-filled'>`coins-filled`</a>[![coins-filled](.github/resources/anchor.svg)](#coins-filled)|
| | |![coins-light](icons/o2-new/light/coins-light.svg) |![coins-light](icons/o2/light/coins-light.svg) | |<a id='coins-light'>`coins-light`</a>[![coins-light](.github/resources/anchor.svg)](#coins-light)|
| | |![coins-regular](icons/o2-new/regular/coins-regular.svg) |![coins-regular](icons/o2/regular/coins-regular.svg) | |<a id='coins-regular'>`coins-regular`</a>[![coins-regular](.github/resources/anchor.svg)](#coins-regular)|
| | |![comment-filled](icons/o2-new/filled/comment-filled.svg) |![comment-filled](icons/o2/filled/comment-filled.svg) | |<a id='comment-filled'>`comment-filled`</a>[![comment-filled](.github/resources/anchor.svg)](#comment-filled)|
| | |![comment-light](icons/o2-new/light/comment-light.svg) |![comment-light](icons/o2/light/comment-light.svg) | |<a id='comment-light'>`comment-light`</a>[![comment-light](.github/resources/anchor.svg)](#comment-light)|
| | |![comment-regular](icons/o2-new/regular/comment-regular.svg) |![comment-regular](icons/o2/regular/comment-regular.svg) | |<a id='comment-regular'>`comment-regular`</a>[![comment-regular](.github/resources/anchor.svg)](#comment-regular)|
|![computer-academic-filled](icons/telefonica/filled/computer-academic-filled.svg) | | | | |<a id='computer-academic-filled'>`computer-academic-filled`</a>[![computer-academic-filled](.github/resources/anchor.svg)](#computer-academic-filled)|
|![computer-academic-regular](icons/telefonica/regular/computer-academic-regular.svg) | | | | |<a id='computer-academic-regular'>`computer-academic-regular`</a>[![computer-academic-regular](.github/resources/anchor.svg)](#computer-academic-regular)|
|![computer-filled](icons/telefonica/filled/computer-filled.svg) | |![computer-filled](icons/o2-new/filled/computer-filled.svg) |![computer-filled](icons/o2/filled/computer-filled.svg) | |<a id='computer-filled'>`computer-filled`</a>[![computer-filled](.github/resources/anchor.svg)](#computer-filled)|
|![computer-light](icons/telefonica/light/computer-light.svg) | |![computer-light](icons/o2-new/light/computer-light.svg) |![computer-light](icons/o2/light/computer-light.svg) | |<a id='computer-light'>`computer-light`</a>[![computer-light](.github/resources/anchor.svg)](#computer-light)|
|![computer-regular](icons/telefonica/regular/computer-regular.svg) | |![computer-regular](icons/o2-new/regular/computer-regular.svg) |![computer-regular](icons/o2/regular/computer-regular.svg) |![computer-regular](icons/blau/regular/computer-regular.svg) |<a id='computer-regular'>`computer-regular`</a>[![computer-regular](.github/resources/anchor.svg)](#computer-regular)|
|![computer-user-filled](icons/telefonica/filled/computer-user-filled.svg) | | | | |<a id='computer-user-filled'>`computer-user-filled`</a>[![computer-user-filled](.github/resources/anchor.svg)](#computer-user-filled)|
|![computer-user-light](icons/telefonica/light/computer-user-light.svg) | | | | |<a id='computer-user-light'>`computer-user-light`</a>[![computer-user-light](.github/resources/anchor.svg)](#computer-user-light)|
|![computer-user-regular](icons/telefonica/regular/computer-user-regular.svg) | | | | |<a id='computer-user-regular'>`computer-user-regular`</a>[![computer-user-regular](.github/resources/anchor.svg)](#computer-user-regular)|
| | |![conference-call-filled](icons/o2-new/filled/conference-call-filled.svg) |![conference-call-filled](icons/o2/filled/conference-call-filled.svg) | |<a id='conference-call-filled'>`conference-call-filled`</a>[![conference-call-filled](.github/resources/anchor.svg)](#conference-call-filled)|
| | |![conference-call-light](icons/o2-new/light/conference-call-light.svg) |![conference-call-light](icons/o2/light/conference-call-light.svg) | |<a id='conference-call-light'>`conference-call-light`</a>[![conference-call-light](.github/resources/anchor.svg)](#conference-call-light)|
| | |![conference-call-regular](icons/o2-new/regular/conference-call-regular.svg) |![conference-call-regular](icons/o2/regular/conference-call-regular.svg) | |<a id='conference-call-regular'>`conference-call-regular`</a>[![conference-call-regular](.github/resources/anchor.svg)](#conference-call-regular)|
|![conference-filled](icons/telefonica/filled/conference-filled.svg) | |![conference-filled](icons/o2-new/filled/conference-filled.svg) |![conference-filled](icons/o2/filled/conference-filled.svg) | |<a id='conference-filled'>`conference-filled`</a>[![conference-filled](.github/resources/anchor.svg)](#conference-filled)|
|![conference-light](icons/telefonica/light/conference-light.svg) | |![conference-light](icons/o2-new/light/conference-light.svg) |![conference-light](icons/o2/light/conference-light.svg) | |<a id='conference-light'>`conference-light`</a>[![conference-light](.github/resources/anchor.svg)](#conference-light)|
|![conference-regular](icons/telefonica/regular/conference-regular.svg) | |![conference-regular](icons/o2-new/regular/conference-regular.svg) |![conference-regular](icons/o2/regular/conference-regular.svg) | |<a id='conference-regular'>`conference-regular`</a>[![conference-regular](.github/resources/anchor.svg)](#conference-regular)|
|![configure-device-filled](icons/telefonica/filled/configure-device-filled.svg) | |![configure-device-filled](icons/o2-new/filled/configure-device-filled.svg) |![configure-device-filled](icons/o2/filled/configure-device-filled.svg) | |<a id='configure-device-filled'>`configure-device-filled`</a>[![configure-device-filled](.github/resources/anchor.svg)](#configure-device-filled)|
|![configure-device-light](icons/telefonica/light/configure-device-light.svg) | |![configure-device-light](icons/o2-new/light/configure-device-light.svg) |![configure-device-light](icons/o2/light/configure-device-light.svg) | |<a id='configure-device-light'>`configure-device-light`</a>[![configure-device-light](.github/resources/anchor.svg)](#configure-device-light)|
|![configure-device-regular](icons/telefonica/regular/configure-device-regular.svg) | |![configure-device-regular](icons/o2-new/regular/configure-device-regular.svg) |![configure-device-regular](icons/o2/regular/configure-device-regular.svg) | |<a id='configure-device-regular'>`configure-device-regular`</a>[![configure-device-regular](.github/resources/anchor.svg)](#configure-device-regular)|
|![configure-modem-filled](icons/telefonica/filled/configure-modem-filled.svg) | | | | |<a id='configure-modem-filled'>`configure-modem-filled`</a>[![configure-modem-filled](.github/resources/anchor.svg)](#configure-modem-filled)|
|![configure-modem-light](icons/telefonica/light/configure-modem-light.svg) | | | | |<a id='configure-modem-light'>`configure-modem-light`</a>[![configure-modem-light](.github/resources/anchor.svg)](#configure-modem-light)|
|![configure-modem-regular](icons/telefonica/regular/configure-modem-regular.svg) | | | | |<a id='configure-modem-regular'>`configure-modem-regular`</a>[![configure-modem-regular](.github/resources/anchor.svg)](#configure-modem-regular)|
|![configure-tv-decoder-filled](icons/telefonica/filled/configure-tv-decoder-filled.svg) | | | | |<a id='configure-tv-decoder-filled'>`configure-tv-decoder-filled`</a>[![configure-tv-decoder-filled](.github/resources/anchor.svg)](#configure-tv-decoder-filled)|
|![configure-tv-decoder-light](icons/telefonica/light/configure-tv-decoder-light.svg) | | | | |<a id='configure-tv-decoder-light'>`configure-tv-decoder-light`</a>[![configure-tv-decoder-light](.github/resources/anchor.svg)](#configure-tv-decoder-light)|
|![configure-tv-decoder-regular](icons/telefonica/regular/configure-tv-decoder-regular.svg) | | | | |<a id='configure-tv-decoder-regular'>`configure-tv-decoder-regular`</a>[![configure-tv-decoder-regular](.github/resources/anchor.svg)](#configure-tv-decoder-regular)|
| | |![connected-car-filled](icons/o2-new/filled/connected-car-filled.svg) |![connected-car-filled](icons/o2/filled/connected-car-filled.svg) | |<a id='connected-car-filled'>`connected-car-filled`</a>[![connected-car-filled](.github/resources/anchor.svg)](#connected-car-filled)|
| | |![connected-car-light](icons/o2-new/light/connected-car-light.svg) |![connected-car-light](icons/o2/light/connected-car-light.svg) | |<a id='connected-car-light'>`connected-car-light`</a>[![connected-car-light](.github/resources/anchor.svg)](#connected-car-light)|
| | |![connected-car-regular](icons/o2-new/regular/connected-car-regular.svg) |![connected-car-regular](icons/o2/regular/connected-car-regular.svg) | |<a id='connected-car-regular'>`connected-car-regular`</a>[![connected-car-regular](.github/resources/anchor.svg)](#connected-car-regular)|
|![connections-filled](icons/telefonica/filled/connections-filled.svg) | |![connections-filled](icons/o2-new/filled/connections-filled.svg) |![connections-filled](icons/o2/filled/connections-filled.svg) | |<a id='connections-filled'>`connections-filled`</a>[![connections-filled](.github/resources/anchor.svg)](#connections-filled)|
|![connections-light](icons/telefonica/light/connections-light.svg) | |![connections-light](icons/o2-new/light/connections-light.svg) |![connections-light](icons/o2/light/connections-light.svg) | |<a id='connections-light'>`connections-light`</a>[![connections-light](.github/resources/anchor.svg)](#connections-light)|
|![connections-regular](icons/telefonica/regular/connections-regular.svg) | |![connections-regular](icons/o2-new/regular/connections-regular.svg) |![connections-regular](icons/o2/regular/connections-regular.svg) | |<a id='connections-regular'>`connections-regular`</a>[![connections-regular](.github/resources/anchor.svg)](#connections-regular)|
|![contact-book-filled](icons/telefonica/filled/contact-book-filled.svg) | | | | |<a id='contact-book-filled'>`contact-book-filled`</a>[![contact-book-filled](.github/resources/anchor.svg)](#contact-book-filled)|
|![contact-book-light](icons/telefonica/light/contact-book-light.svg) | | | | |<a id='contact-book-light'>`contact-book-light`</a>[![contact-book-light](.github/resources/anchor.svg)](#contact-book-light)|
|![contact-book-regular](icons/telefonica/regular/contact-book-regular.svg) | | | | |<a id='contact-book-regular'>`contact-book-regular`</a>[![contact-book-regular](.github/resources/anchor.svg)](#contact-book-regular)|
| | |![contact-us-filled](icons/o2-new/filled/contact-us-filled.svg) |![contact-us-filled](icons/o2/filled/contact-us-filled.svg) | |<a id='contact-us-filled'>`contact-us-filled`</a>[![contact-us-filled](.github/resources/anchor.svg)](#contact-us-filled)|
| | |![contact-us-light](icons/o2-new/light/contact-us-light.svg) |![contact-us-light](icons/o2/light/contact-us-light.svg) | |<a id='contact-us-light'>`contact-us-light`</a>[![contact-us-light](.github/resources/anchor.svg)](#contact-us-light)|
| | |![contact-us-regular](icons/o2-new/regular/contact-us-regular.svg) |![contact-us-regular](icons/o2/regular/contact-us-regular.svg) | |<a id='contact-us-regular'>`contact-us-regular`</a>[![contact-us-regular](.github/resources/anchor.svg)](#contact-us-regular)|
| | |![contactless-payments-euro-filled](icons/o2-new/filled/contactless-payments-euro-filled.svg) |![contactless-payments-euro-filled](icons/o2/filled/contactless-payments-euro-filled.svg) | |<a id='contactless-payments-euro-filled'>`contactless-payments-euro-filled`</a>[![contactless-payments-euro-filled](.github/resources/anchor.svg)](#contactless-payments-euro-filled)|
| | |![contactless-payments-euro-light](icons/o2-new/light/contactless-payments-euro-light.svg) |![contactless-payments-euro-light](icons/o2/light/contactless-payments-euro-light.svg) | |<a id='contactless-payments-euro-light'>`contactless-payments-euro-light`</a>[![contactless-payments-euro-light](.github/resources/anchor.svg)](#contactless-payments-euro-light)|
| | |![contactless-payments-euro-regular](icons/o2-new/regular/contactless-payments-euro-regular.svg) |![contactless-payments-euro-regular](icons/o2/regular/contactless-payments-euro-regular.svg) | |<a id='contactless-payments-euro-regular'>`contactless-payments-euro-regular`</a>[![contactless-payments-euro-regular](.github/resources/anchor.svg)](#contactless-payments-euro-regular)|
| | |![contactless-payments-pound-filled](icons/o2-new/filled/contactless-payments-pound-filled.svg) |![contactless-payments-pound-filled](icons/o2/filled/contactless-payments-pound-filled.svg) | |<a id='contactless-payments-pound-filled'>`contactless-payments-pound-filled`</a>[![contactless-payments-pound-filled](.github/resources/anchor.svg)](#contactless-payments-pound-filled)|
| | |![contactless-payments-pound-light](icons/o2-new/light/contactless-payments-pound-light.svg) |![contactless-payments-pound-light](icons/o2/light/contactless-payments-pound-light.svg) | |<a id='contactless-payments-pound-light'>`contactless-payments-pound-light`</a>[![contactless-payments-pound-light](.github/resources/anchor.svg)](#contactless-payments-pound-light)|
| | |![contactless-payments-pound-regular](icons/o2-new/regular/contactless-payments-pound-regular.svg) |![contactless-payments-pound-regular](icons/o2/regular/contactless-payments-pound-regular.svg) | |<a id='contactless-payments-pound-regular'>`contactless-payments-pound-regular`</a>[![contactless-payments-pound-regular](.github/resources/anchor.svg)](#contactless-payments-pound-regular)|
|![controls-filled](icons/telefonica/filled/controls-filled.svg) | |![controls-filled](icons/o2-new/filled/controls-filled.svg) |![controls-filled](icons/o2/filled/controls-filled.svg) | |<a id='controls-filled'>`controls-filled`</a>[![controls-filled](.github/resources/anchor.svg)](#controls-filled)|
|![controls-light](icons/telefonica/light/controls-light.svg) | |![controls-light](icons/o2-new/light/controls-light.svg) |![controls-light](icons/o2/light/controls-light.svg) | |<a id='controls-light'>`controls-light`</a>[![controls-light](.github/resources/anchor.svg)](#controls-light)|
|![controls-regular](icons/telefonica/regular/controls-regular.svg) | |![controls-regular](icons/o2-new/regular/controls-regular.svg) |![controls-regular](icons/o2/regular/controls-regular.svg) | |<a id='controls-regular'>`controls-regular`</a>[![controls-regular](.github/resources/anchor.svg)](#controls-regular)|
|![cooking-filled](icons/telefonica/filled/cooking-filled.svg) | | | | |<a id='cooking-filled'>`cooking-filled`</a>[![cooking-filled](.github/resources/anchor.svg)](#cooking-filled)|
|![cooking-light](icons/telefonica/light/cooking-light.svg) | | | | |<a id='cooking-light'>`cooking-light`</a>[![cooking-light](.github/resources/anchor.svg)](#cooking-light)|
|![cooking-regular](icons/telefonica/regular/cooking-regular.svg) | | | | |<a id='cooking-regular'>`cooking-regular`</a>[![cooking-regular](.github/resources/anchor.svg)](#cooking-regular)|
|![copy-filled](icons/telefonica/filled/copy-filled.svg) | | | | |<a id='copy-filled'>`copy-filled`</a>[![copy-filled](.github/resources/anchor.svg)](#copy-filled)|
|![copy-light](icons/telefonica/light/copy-light.svg) | | | | |<a id='copy-light'>`copy-light`</a>[![copy-light](.github/resources/anchor.svg)](#copy-light)|
|![copy-regular](icons/telefonica/regular/copy-regular.svg) | | | | |<a id='copy-regular'>`copy-regular`</a>[![copy-regular](.github/resources/anchor.svg)](#copy-regular)|
|![cough-syrup-filled](icons/telefonica/filled/cough-syrup-filled.svg) | | | | |<a id='cough-syrup-filled'>`cough-syrup-filled`</a>[![cough-syrup-filled](.github/resources/anchor.svg)](#cough-syrup-filled)|
|![cough-syrup-light](icons/telefonica/light/cough-syrup-light.svg) | | | | |<a id='cough-syrup-light'>`cough-syrup-light`</a>[![cough-syrup-light](.github/resources/anchor.svg)](#cough-syrup-light)|
|![cough-syrup-regular](icons/telefonica/regular/cough-syrup-regular.svg) | | | | |<a id='cough-syrup-regular'>`cough-syrup-regular`</a>[![cough-syrup-regular](.github/resources/anchor.svg)](#cough-syrup-regular)|
|![cowboy-lasso-light](icons/telefonica/light/cowboy-lasso-light.svg) | | | | |<a id='cowboy-lasso-light'>`cowboy-lasso-light`</a>[![cowboy-lasso-light](.github/resources/anchor.svg)](#cowboy-lasso-light)|
|![cowboy-lasso-regular](icons/telefonica/regular/cowboy-lasso-regular.svg) | | | | |<a id='cowboy-lasso-regular'>`cowboy-lasso-regular`</a>[![cowboy-lasso-regular](.github/resources/anchor.svg)](#cowboy-lasso-regular)|
| | |![credit-balance-euro-filled](icons/o2-new/filled/credit-balance-euro-filled.svg) |![credit-balance-euro-filled](icons/o2/filled/credit-balance-euro-filled.svg) | |<a id='credit-balance-euro-filled'>`credit-balance-euro-filled`</a>[![credit-balance-euro-filled](.github/resources/anchor.svg)](#credit-balance-euro-filled)|
| | |![credit-balance-euro-light](icons/o2-new/light/credit-balance-euro-light.svg) |![credit-balance-euro-light](icons/o2/light/credit-balance-euro-light.svg) | |<a id='credit-balance-euro-light'>`credit-balance-euro-light`</a>[![credit-balance-euro-light](.github/resources/anchor.svg)](#credit-balance-euro-light)|
| | |![credit-balance-euro-regular](icons/o2-new/regular/credit-balance-euro-regular.svg) |![credit-balance-euro-regular](icons/o2/regular/credit-balance-euro-regular.svg) | |<a id='credit-balance-euro-regular'>`credit-balance-euro-regular`</a>[![credit-balance-euro-regular](.github/resources/anchor.svg)](#credit-balance-euro-regular)|
| | |![credit-balance-pound-filled](icons/o2-new/filled/credit-balance-pound-filled.svg) |![credit-balance-pound-filled](icons/o2/filled/credit-balance-pound-filled.svg) | |<a id='credit-balance-pound-filled'>`credit-balance-pound-filled`</a>[![credit-balance-pound-filled](.github/resources/anchor.svg)](#credit-balance-pound-filled)|
| | |![credit-balance-pound-light](icons/o2-new/light/credit-balance-pound-light.svg) |![credit-balance-pound-light](icons/o2/light/credit-balance-pound-light.svg) | |<a id='credit-balance-pound-light'>`credit-balance-pound-light`</a>[![credit-balance-pound-light](.github/resources/anchor.svg)](#credit-balance-pound-light)|
| | |![credit-balance-pound-regular](icons/o2-new/regular/credit-balance-pound-regular.svg) |![credit-balance-pound-regular](icons/o2/regular/credit-balance-pound-regular.svg) | |<a id='credit-balance-pound-regular'>`credit-balance-pound-regular`</a>[![credit-balance-pound-regular](.github/resources/anchor.svg)](#credit-balance-pound-regular)|
|![credit-card-filled](icons/telefonica/filled/credit-card-filled.svg) | |![credit-card-filled](icons/o2-new/filled/credit-card-filled.svg) |![credit-card-filled](icons/o2/filled/credit-card-filled.svg) | |<a id='credit-card-filled'>`credit-card-filled`</a>[![credit-card-filled](.github/resources/anchor.svg)](#credit-card-filled)|
|![credit-card-light](icons/telefonica/light/credit-card-light.svg) | |![credit-card-light](icons/o2-new/light/credit-card-light.svg) |![credit-card-light](icons/o2/light/credit-card-light.svg) | |<a id='credit-card-light'>`credit-card-light`</a>[![credit-card-light](.github/resources/anchor.svg)](#credit-card-light)|
|![credit-card-regular](icons/telefonica/regular/credit-card-regular.svg) | |![credit-card-regular](icons/o2-new/regular/credit-card-regular.svg) |![credit-card-regular](icons/o2/regular/credit-card-regular.svg) |![credit-card-regular](icons/blau/regular/credit-card-regular.svg) |<a id='credit-card-regular'>`credit-card-regular`</a>[![credit-card-regular](.github/resources/anchor.svg)](#credit-card-regular)|
|![credit-card-visa-filled](icons/telefonica/filled/credit-card-visa-filled.svg) | |![credit-card-visa-filled](icons/o2-new/filled/credit-card-visa-filled.svg) |![credit-card-visa-filled](icons/o2/filled/credit-card-visa-filled.svg) | |<a id='credit-card-visa-filled'>`credit-card-visa-filled`</a>[![credit-card-visa-filled](.github/resources/anchor.svg)](#credit-card-visa-filled)|
|![credit-card-visa-light](icons/telefonica/light/credit-card-visa-light.svg) | |![credit-card-visa-light](icons/o2-new/light/credit-card-visa-light.svg) |![credit-card-visa-light](icons/o2/light/credit-card-visa-light.svg) | |<a id='credit-card-visa-light'>`credit-card-visa-light`</a>[![credit-card-visa-light](.github/resources/anchor.svg)](#credit-card-visa-light)|
|![credit-card-visa-regular](icons/telefonica/regular/credit-card-visa-regular.svg) | |![credit-card-visa-regular](icons/o2-new/regular/credit-card-visa-regular.svg) |![credit-card-visa-regular](icons/o2/regular/credit-card-visa-regular.svg) | |<a id='credit-card-visa-regular'>`credit-card-visa-regular`</a>[![credit-card-visa-regular](.github/resources/anchor.svg)](#credit-card-visa-regular)|
| |![curtain-regular](icons/vivo-new/regular/curtain-regular.svg) | | | |<a id='curtain-regular'>`curtain-regular`</a>[![curtain-regular](.github/resources/anchor.svg)](#curtain-regular)|
|![cut-filled](icons/telefonica/filled/cut-filled.svg) | | | | |<a id='cut-filled'>`cut-filled`</a>[![cut-filled](.github/resources/anchor.svg)](#cut-filled)|
|![cut-light](icons/telefonica/light/cut-light.svg) | | | | |<a id='cut-light'>`cut-light`</a>[![cut-light](.github/resources/anchor.svg)](#cut-light)|
|![dartboard-filled](icons/telefonica/filled/dartboard-filled.svg) | |![dartboard-filled](icons/o2-new/filled/dartboard-filled.svg) |![dartboard-filled](icons/o2/filled/dartboard-filled.svg) | |<a id='dartboard-filled'>`dartboard-filled`</a>[![dartboard-filled](.github/resources/anchor.svg)](#dartboard-filled)|
|![dartboard-light](icons/telefonica/light/dartboard-light.svg) | |![dartboard-light](icons/o2-new/light/dartboard-light.svg) |![dartboard-light](icons/o2/light/dartboard-light.svg) | |<a id='dartboard-light'>`dartboard-light`</a>[![dartboard-light](.github/resources/anchor.svg)](#dartboard-light)|
|![dartboard-regular](icons/telefonica/regular/dartboard-regular.svg) | |![dartboard-regular](icons/o2-new/regular/dartboard-regular.svg) |![dartboard-regular](icons/o2/regular/dartboard-regular.svg) | |<a id='dartboard-regular'>`dartboard-regular`</a>[![dartboard-regular](.github/resources/anchor.svg)](#dartboard-regular)|
| | |![data-10-gb-filled](icons/o2-new/filled/data-10-gb-filled.svg) |![data-10-gb-filled](icons/o2/filled/data-10-gb-filled.svg) | |<a id='data-10-gb-filled'>`data-10-gb-filled`</a>[![data-10-gb-filled](.github/resources/anchor.svg)](#data-10-gb-filled)|
| | |![data-10-gb-light](icons/o2-new/light/data-10-gb-light.svg) |![data-10-gb-light](icons/o2/light/data-10-gb-light.svg) | |<a id='data-10-gb-light'>`data-10-gb-light`</a>[![data-10-gb-light](.github/resources/anchor.svg)](#data-10-gb-light)|
| | |![data-10-gb-regular](icons/o2-new/regular/data-10-gb-regular.svg) |![data-10-gb-regular](icons/o2/regular/data-10-gb-regular.svg) | |<a id='data-10-gb-regular'>`data-10-gb-regular`</a>[![data-10-gb-regular](.github/resources/anchor.svg)](#data-10-gb-regular)|
| | |![data-100-gb-filled](icons/o2-new/filled/data-100-gb-filled.svg) |![data-100-gb-filled](icons/o2/filled/data-100-gb-filled.svg) | |<a id='data-100-gb-filled'>`data-100-gb-filled`</a>[![data-100-gb-filled](.github/resources/anchor.svg)](#data-100-gb-filled)|
| | |![data-100-gb-light](icons/o2-new/light/data-100-gb-light.svg) |![data-100-gb-light](icons/o2/light/data-100-gb-light.svg) | |<a id='data-100-gb-light'>`data-100-gb-light`</a>[![data-100-gb-light](.github/resources/anchor.svg)](#data-100-gb-light)|
| | |![data-100-gb-regular](icons/o2-new/regular/data-100-gb-regular.svg) |![data-100-gb-regular](icons/o2/regular/data-100-gb-regular.svg) | |<a id='data-100-gb-regular'>`data-100-gb-regular`</a>[![data-100-gb-regular](.github/resources/anchor.svg)](#data-100-gb-regular)|
| | |![data-30-gb-filled](icons/o2-new/filled/data-30-gb-filled.svg) |![data-30-gb-filled](icons/o2/filled/data-30-gb-filled.svg) | |<a id='data-30-gb-filled'>`data-30-gb-filled`</a>[![data-30-gb-filled](.github/resources/anchor.svg)](#data-30-gb-filled)|
| | |![data-30-gb-light](icons/o2-new/light/data-30-gb-light.svg) |![data-30-gb-light](icons/o2/light/data-30-gb-light.svg) | |<a id='data-30-gb-light'>`data-30-gb-light`</a>[![data-30-gb-light](.github/resources/anchor.svg)](#data-30-gb-light)|
| | |![data-30-gb-regular](icons/o2-new/regular/data-30-gb-regular.svg) |![data-30-gb-regular](icons/o2/regular/data-30-gb-regular.svg) | |<a id='data-30-gb-regular'>`data-30-gb-regular`</a>[![data-30-gb-regular](.github/resources/anchor.svg)](#data-30-gb-regular)|
|![data-alert-filled](icons/telefonica/filled/data-alert-filled.svg) | | | | |<a id='data-alert-filled'>`data-alert-filled`</a>[![data-alert-filled](.github/resources/anchor.svg)](#data-alert-filled)|
|![data-alert-light](icons/telefonica/light/data-alert-light.svg) | | | | |<a id='data-alert-light'>`data-alert-light`</a>[![data-alert-light](.github/resources/anchor.svg)](#data-alert-light)|
|![data-alert-regular](icons/telefonica/regular/data-alert-regular.svg) | | | | |<a id='data-alert-regular'>`data-alert-regular`</a>[![data-alert-regular](.github/resources/anchor.svg)](#data-alert-regular)|
| | |![data-bonus-filled](icons/o2-new/filled/data-bonus-filled.svg) |![data-bonus-filled](icons/o2/filled/data-bonus-filled.svg) | |<a id='data-bonus-filled'>`data-bonus-filled`</a>[![data-bonus-filled](.github/resources/anchor.svg)](#data-bonus-filled)|
| | |![data-bonus-light](icons/o2-new/light/data-bonus-light.svg) |![data-bonus-light](icons/o2/light/data-bonus-light.svg) | |<a id='data-bonus-light'>`data-bonus-light`</a>[![data-bonus-light](.github/resources/anchor.svg)](#data-bonus-light)|
| | |![data-bonus-regular](icons/o2-new/regular/data-bonus-regular.svg) |![data-bonus-regular](icons/o2/regular/data-bonus-regular.svg) | |<a id='data-bonus-regular'>`data-bonus-regular`</a>[![data-bonus-regular](.github/resources/anchor.svg)](#data-bonus-regular)|
| | |![data-centre-filled](icons/o2-new/filled/data-centre-filled.svg) |![data-centre-filled](icons/o2/filled/data-centre-filled.svg) | |<a id='data-centre-filled'>`data-centre-filled`</a>[![data-centre-filled](.github/resources/anchor.svg)](#data-centre-filled)|
| | |![data-centre-light](icons/o2-new/light/data-centre-light.svg) |![data-centre-light](icons/o2/light/data-centre-light.svg) | |<a id='data-centre-light'>`data-centre-light`</a>[![data-centre-light](.github/resources/anchor.svg)](#data-centre-light)|
| | |![data-centre-regular](icons/o2-new/regular/data-centre-regular.svg) |![data-centre-regular](icons/o2/regular/data-centre-regular.svg) | |<a id='data-centre-regular'>`data-centre-regular`</a>[![data-centre-regular](.github/resources/anchor.svg)](#data-centre-regular)|
|![data-checked-filled](icons/telefonica/filled/data-checked-filled.svg) | | | | |<a id='data-checked-filled'>`data-checked-filled`</a>[![data-checked-filled](.github/resources/anchor.svg)](#data-checked-filled)|
|![data-checked-light](icons/telefonica/light/data-checked-light.svg) | | | | |<a id='data-checked-light'>`data-checked-light`</a>[![data-checked-light](.github/resources/anchor.svg)](#data-checked-light)|
|![data-checked-regular](icons/telefonica/regular/data-checked-regular.svg) | | | | |<a id='data-checked-regular'>`data-checked-regular`</a>[![data-checked-regular](.github/resources/anchor.svg)](#data-checked-regular)|
|![data-cloud-filled](icons/telefonica/filled/data-cloud-filled.svg) | |![data-cloud-filled](icons/o2-new/filled/data-cloud-filled.svg) |![data-cloud-filled](icons/o2/filled/data-cloud-filled.svg) | |<a id='data-cloud-filled'>`data-cloud-filled`</a>[![data-cloud-filled](.github/resources/anchor.svg)](#data-cloud-filled)|
|![data-cloud-light](icons/telefonica/light/data-cloud-light.svg) | |![data-cloud-light](icons/o2-new/light/data-cloud-light.svg) |![data-cloud-light](icons/o2/light/data-cloud-light.svg) | |<a id='data-cloud-light'>`data-cloud-light`</a>[![data-cloud-light](.github/resources/anchor.svg)](#data-cloud-light)|
|![data-cloud-regular](icons/telefonica/regular/data-cloud-regular.svg) | |![data-cloud-regular](icons/o2-new/regular/data-cloud-regular.svg) |![data-cloud-regular](icons/o2/regular/data-cloud-regular.svg) | |<a id='data-cloud-regular'>`data-cloud-regular`</a>[![data-cloud-regular](.github/resources/anchor.svg)](#data-cloud-regular)|
|![data-distribution-filled](icons/telefonica/filled/data-distribution-filled.svg) | | | | |<a id='data-distribution-filled'>`data-distribution-filled`</a>[![data-distribution-filled](.github/resources/anchor.svg)](#data-distribution-filled)|
|![data-distribution-light](icons/telefonica/light/data-distribution-light.svg) | | | | |<a id='data-distribution-light'>`data-distribution-light`</a>[![data-distribution-light](.github/resources/anchor.svg)](#data-distribution-light)|
|![data-distribution-regular](icons/telefonica/regular/data-distribution-regular.svg) | | | | |<a id='data-distribution-regular'>`data-distribution-regular`</a>[![data-distribution-regular](.github/resources/anchor.svg)](#data-distribution-regular)|
|![data-filled](icons/telefonica/filled/data-filled.svg) | | | | |<a id='data-filled'>`data-filled`</a>[![data-filled](.github/resources/anchor.svg)](#data-filled)|
|![data-light](icons/telefonica/light/data-light.svg) | | | | |<a id='data-light'>`data-light`</a>[![data-light](.github/resources/anchor.svg)](#data-light)|
|![data-network-filled](icons/telefonica/filled/data-network-filled.svg) | | | | |<a id='data-network-filled'>`data-network-filled`</a>[![data-network-filled](.github/resources/anchor.svg)](#data-network-filled)|
|![data-network-light](icons/telefonica/light/data-network-light.svg) | | | | |<a id='data-network-light'>`data-network-light`</a>[![data-network-light](.github/resources/anchor.svg)](#data-network-light)|
|![data-network-regular](icons/telefonica/regular/data-network-regular.svg) | | | | |<a id='data-network-regular'>`data-network-regular`</a>[![data-network-regular](.github/resources/anchor.svg)](#data-network-regular)|
|![data-regular](icons/telefonica/regular/data-regular.svg) | | | | |<a id='data-regular'>`data-regular`</a>[![data-regular](.github/resources/anchor.svg)](#data-regular)|
| | |![data-rollover-filled](icons/o2-new/filled/data-rollover-filled.svg) |![data-rollover-filled](icons/o2/filled/data-rollover-filled.svg) | |<a id='data-rollover-filled'>`data-rollover-filled`</a>[![data-rollover-filled](.github/resources/anchor.svg)](#data-rollover-filled)|
| | |![data-rollover-light](icons/o2-new/light/data-rollover-light.svg) |![data-rollover-light](icons/o2/light/data-rollover-light.svg) | |<a id='data-rollover-light'>`data-rollover-light`</a>[![data-rollover-light](.github/resources/anchor.svg)](#data-rollover-light)|
| | |![data-rollover-regular](icons/o2-new/regular/data-rollover-regular.svg) |![data-rollover-regular](icons/o2/regular/data-rollover-regular.svg) | |<a id='data-rollover-regular'>`data-rollover-regular`</a>[![data-rollover-regular](.github/resources/anchor.svg)](#data-rollover-regular)|
|![data-settings-filled](icons/telefonica/filled/data-settings-filled.svg) | | | | |<a id='data-settings-filled'>`data-settings-filled`</a>[![data-settings-filled](.github/resources/anchor.svg)](#data-settings-filled)|
|![data-settings-light](icons/telefonica/light/data-settings-light.svg) | | | | |<a id='data-settings-light'>`data-settings-light`</a>[![data-settings-light](.github/resources/anchor.svg)](#data-settings-light)|
|![data-settings-regular](icons/telefonica/regular/data-settings-regular.svg) | | | | |<a id='data-settings-regular'>`data-settings-regular`</a>[![data-settings-regular](.github/resources/anchor.svg)](#data-settings-regular)|
|![data-shield-filled](icons/telefonica/filled/data-shield-filled.svg) | |![data-shield-filled](icons/o2-new/filled/data-shield-filled.svg) |![data-shield-filled](icons/o2/filled/data-shield-filled.svg) | |<a id='data-shield-filled'>`data-shield-filled`</a>[![data-shield-filled](.github/resources/anchor.svg)](#data-shield-filled)|
|![data-shield-light](icons/telefonica/light/data-shield-light.svg) | |![data-shield-light](icons/o2-new/light/data-shield-light.svg) |![data-shield-light](icons/o2/light/data-shield-light.svg) | |<a id='data-shield-light'>`data-shield-light`</a>[![data-shield-light](.github/resources/anchor.svg)](#data-shield-light)|
|![data-shield-regular](icons/telefonica/regular/data-shield-regular.svg) | |![data-shield-regular](icons/o2-new/regular/data-shield-regular.svg) |![data-shield-regular](icons/o2/regular/data-shield-regular.svg) |![data-shield-regular](icons/blau/regular/data-shield-regular.svg) |<a id='data-shield-regular'>`data-shield-regular`</a>[![data-shield-regular](.github/resources/anchor.svg)](#data-shield-regular)|
| | |![data-unlimited-filled](icons/o2-new/filled/data-unlimited-filled.svg) |![data-unlimited-filled](icons/o2/filled/data-unlimited-filled.svg) | |<a id='data-unlimited-filled'>`data-unlimited-filled`</a>[![data-unlimited-filled](.github/resources/anchor.svg)](#data-unlimited-filled)|
| | |![data-unlimited-light](icons/o2-new/light/data-unlimited-light.svg) |![data-unlimited-light](icons/o2/light/data-unlimited-light.svg) | |<a id='data-unlimited-light'>`data-unlimited-light`</a>[![data-unlimited-light](.github/resources/anchor.svg)](#data-unlimited-light)|
| | |![data-unlimited-regular](icons/o2-new/regular/data-unlimited-regular.svg) |![data-unlimited-regular](icons/o2/regular/data-unlimited-regular.svg) | |<a id='data-unlimited-regular'>`data-unlimited-regular`</a>[![data-unlimited-regular](.github/resources/anchor.svg)](#data-unlimited-regular)|
|![data-virus-filled](icons/telefonica/filled/data-virus-filled.svg) | | | | |<a id='data-virus-filled'>`data-virus-filled`</a>[![data-virus-filled](.github/resources/anchor.svg)](#data-virus-filled)|
|![data-virus-light](icons/telefonica/light/data-virus-light.svg) | | | | |<a id='data-virus-light'>`data-virus-light`</a>[![data-virus-light](.github/resources/anchor.svg)](#data-virus-light)|
|![data-virus-regular](icons/telefonica/regular/data-virus-regular.svg) | | | | |<a id='data-virus-regular'>`data-virus-regular`</a>[![data-virus-regular](.github/resources/anchor.svg)](#data-virus-regular)|
| | |![database-connected-filled](icons/o2-new/filled/database-connected-filled.svg) |![database-connected-filled](icons/o2/filled/database-connected-filled.svg) | |<a id='database-connected-filled'>`database-connected-filled`</a>[![database-connected-filled](.github/resources/anchor.svg)](#database-connected-filled)|
| | |![database-connected-light](icons/o2-new/light/database-connected-light.svg) |![database-connected-light](icons/o2/light/database-connected-light.svg) | |<a id='database-connected-light'>`database-connected-light`</a>[![database-connected-light](.github/resources/anchor.svg)](#database-connected-light)|
| | |![database-connected-regular](icons/o2-new/regular/database-connected-regular.svg) |![database-connected-regular](icons/o2/regular/database-connected-regular.svg) | |<a id='database-connected-regular'>`database-connected-regular`</a>[![database-connected-regular](.github/resources/anchor.svg)](#database-connected-regular)|
|![database-filled](icons/telefonica/filled/database-filled.svg) | |![database-filled](icons/o2-new/filled/database-filled.svg) |![database-filled](icons/o2/filled/database-filled.svg) | |<a id='database-filled'>`database-filled`</a>[![database-filled](.github/resources/anchor.svg)](#database-filled)|
|![database-light](icons/telefonica/light/database-light.svg) | |![database-light](icons/o2-new/light/database-light.svg) |![database-light](icons/o2/light/database-light.svg) | |<a id='database-light'>`database-light`</a>[![database-light](.github/resources/anchor.svg)](#database-light)|
|![database-regular](icons/telefonica/regular/database-regular.svg) | |![database-regular](icons/o2-new/regular/database-regular.svg) |![database-regular](icons/o2/regular/database-regular.svg) | |<a id='database-regular'>`database-regular`</a>[![database-regular](.github/resources/anchor.svg)](#database-regular)|
|![delivery-van-moving-filled](icons/telefonica/filled/delivery-van-moving-filled.svg) | | | | |<a id='delivery-van-moving-filled'>`delivery-van-moving-filled`</a>[![delivery-van-moving-filled](.github/resources/anchor.svg)](#delivery-van-moving-filled)|
|![delivery-van-moving-light](icons/telefonica/light/delivery-van-moving-light.svg) | | | | |<a id='delivery-van-moving-light'>`delivery-van-moving-light`</a>[![delivery-van-moving-light](.github/resources/anchor.svg)](#delivery-van-moving-light)|
|![delivery-van-moving-regular](icons/telefonica/regular/delivery-van-moving-regular.svg) | | | | |<a id='delivery-van-moving-regular'>`delivery-van-moving-regular`</a>[![delivery-van-moving-regular](.github/resources/anchor.svg)](#delivery-van-moving-regular)|
| | |![desk-filled](icons/o2-new/filled/desk-filled.svg) |![desk-filled](icons/o2/filled/desk-filled.svg) | |<a id='desk-filled'>`desk-filled`</a>[![desk-filled](.github/resources/anchor.svg)](#desk-filled)|
| | |![desk-light](icons/o2-new/light/desk-light.svg) |![desk-light](icons/o2/light/desk-light.svg) | |<a id='desk-light'>`desk-light`</a>[![desk-light](.github/resources/anchor.svg)](#desk-light)|
| | |![desk-regular](icons/o2-new/regular/desk-regular.svg) |![desk-regular](icons/o2/regular/desk-regular.svg) | |<a id='desk-regular'>`desk-regular`</a>[![desk-regular](.github/resources/anchor.svg)](#desk-regular)|
| | |![device-signal-filled](icons/o2-new/filled/device-signal-filled.svg) |![device-signal-filled](icons/o2/filled/device-signal-filled.svg) | |<a id='device-signal-filled'>`device-signal-filled`</a>[![device-signal-filled](.github/resources/anchor.svg)](#device-signal-filled)|
| | |![device-signal-light](icons/o2-new/light/device-signal-light.svg) |![device-signal-light](icons/o2/light/device-signal-light.svg) | |<a id='device-signal-light'>`device-signal-light`</a>[![device-signal-light](.github/resources/anchor.svg)](#device-signal-light)|
| | |![device-signal-regular](icons/o2-new/regular/device-signal-regular.svg) |![device-signal-regular](icons/o2/regular/device-signal-regular.svg) | |<a id='device-signal-regular'>`device-signal-regular`</a>[![device-signal-regular](.github/resources/anchor.svg)](#device-signal-regular)|
|![diamond-filled](icons/telefonica/filled/diamond-filled.svg) | | | | |<a id='diamond-filled'>`diamond-filled`</a>[![diamond-filled](.github/resources/anchor.svg)](#diamond-filled)|
|![diamond-light](icons/telefonica/light/diamond-light.svg) | | | | |<a id='diamond-light'>`diamond-light`</a>[![diamond-light](.github/resources/anchor.svg)](#diamond-light)|
|![diamond-regular](icons/telefonica/regular/diamond-regular.svg) | | | | |<a id='diamond-regular'>`diamond-regular`</a>[![diamond-regular](.github/resources/anchor.svg)](#diamond-regular)|
|![digital-library-filled](icons/telefonica/filled/digital-library-filled.svg) | | | | |<a id='digital-library-filled'>`digital-library-filled`</a>[![digital-library-filled](.github/resources/anchor.svg)](#digital-library-filled)|
|![digital-library-light](icons/telefonica/light/digital-library-light.svg) | | | | |<a id='digital-library-light'>`digital-library-light`</a>[![digital-library-light](.github/resources/anchor.svg)](#digital-library-light)|
|![digital-library-regular](icons/telefonica/regular/digital-library-regular.svg) | | | | |<a id='digital-library-regular'>`digital-library-regular`</a>[![digital-library-regular](.github/resources/anchor.svg)](#digital-library-regular)|
|![disable-filled](icons/telefonica/filled/disable-filled.svg) | | | | |<a id='disable-filled'>`disable-filled`</a>[![disable-filled](.github/resources/anchor.svg)](#disable-filled)|
|![disable-light](icons/telefonica/light/disable-light.svg) | | | | |<a id='disable-light'>`disable-light`</a>[![disable-light](.github/resources/anchor.svg)](#disable-light)|
|![disable-regular](icons/telefonica/regular/disable-regular.svg) | | | | |<a id='disable-regular'>`disable-regular`</a>[![disable-regular](.github/resources/anchor.svg)](#disable-regular)|
| | |![disabled-filled](icons/o2-new/filled/disabled-filled.svg) |![disabled-filled](icons/o2/filled/disabled-filled.svg) | |<a id='disabled-filled'>`disabled-filled`</a>[![disabled-filled](.github/resources/anchor.svg)](#disabled-filled)|
| | |![disabled-light](icons/o2-new/light/disabled-light.svg) |![disabled-light](icons/o2/light/disabled-light.svg) | |<a id='disabled-light'>`disabled-light`</a>[![disabled-light](.github/resources/anchor.svg)](#disabled-light)|
| | |![disabled-regular](icons/o2-new/regular/disabled-regular.svg) |![disabled-regular](icons/o2/regular/disabled-regular.svg) | |<a id='disabled-regular'>`disabled-regular`</a>[![disabled-regular](.github/resources/anchor.svg)](#disabled-regular)|
|![disconnect-filled](icons/telefonica/filled/disconnect-filled.svg) | | | | |<a id='disconnect-filled'>`disconnect-filled`</a>[![disconnect-filled](.github/resources/anchor.svg)](#disconnect-filled)|
|![disconnect-light](icons/telefonica/light/disconnect-light.svg) | | | | |<a id='disconnect-light'>`disconnect-light`</a>[![disconnect-light](.github/resources/anchor.svg)](#disconnect-light)|
|![disconnect-regular](icons/telefonica/regular/disconnect-regular.svg) | | | | |<a id='disconnect-regular'>`disconnect-regular`</a>[![disconnect-regular](.github/resources/anchor.svg)](#disconnect-regular)|
| | |![disturb-filled](icons/o2-new/filled/disturb-filled.svg) |![disturb-filled](icons/o2/filled/disturb-filled.svg) | |<a id='disturb-filled'>`disturb-filled`</a>[![disturb-filled](.github/resources/anchor.svg)](#disturb-filled)|
| | |![disturb-light](icons/o2-new/light/disturb-light.svg) |![disturb-light](icons/o2/light/disturb-light.svg) | |<a id='disturb-light'>`disturb-light`</a>[![disturb-light](.github/resources/anchor.svg)](#disturb-light)|
| | |![disturb-regular](icons/o2-new/regular/disturb-regular.svg) |![disturb-regular](icons/o2/regular/disturb-regular.svg) | |<a id='disturb-regular'>`disturb-regular`</a>[![disturb-regular](.github/resources/anchor.svg)](#disturb-regular)|
|![dna-filled](icons/telefonica/filled/dna-filled.svg) | | | | |<a id='dna-filled'>`dna-filled`</a>[![dna-filled](.github/resources/anchor.svg)](#dna-filled)|
|![dna-light](icons/telefonica/light/dna-light.svg) | | | | |<a id='dna-light'>`dna-light`</a>[![dna-light](.github/resources/anchor.svg)](#dna-light)|
|![dna-regular](icons/telefonica/regular/dna-regular.svg) | | | | |<a id='dna-regular'>`dna-regular`</a>[![dna-regular](.github/resources/anchor.svg)](#dna-regular)|
|![document-other-filled](icons/telefonica/filled/document-other-filled.svg) | | | | |<a id='document-other-filled'>`document-other-filled`</a>[![document-other-filled](.github/resources/anchor.svg)](#document-other-filled)|
|![document-other-light](icons/telefonica/light/document-other-light.svg) | | | | |<a id='document-other-light'>`document-other-light`</a>[![document-other-light](.github/resources/anchor.svg)](#document-other-light)|
|![document-other-regular](icons/telefonica/regular/document-other-regular.svg) | | | | |<a id='document-other-regular'>`document-other-regular`</a>[![document-other-regular](.github/resources/anchor.svg)](#document-other-regular)|
|![documents-filled](icons/telefonica/filled/documents-filled.svg) | | | | |<a id='documents-filled'>`documents-filled`</a>[![documents-filled](.github/resources/anchor.svg)](#documents-filled)|
|![documents-light](icons/telefonica/light/documents-light.svg) | | | | |<a id='documents-light'>`documents-light`</a>[![documents-light](.github/resources/anchor.svg)](#documents-light)|
|![documents-regular](icons/telefonica/regular/documents-regular.svg) | | | | |<a id='documents-regular'>`documents-regular`</a>[![documents-regular](.github/resources/anchor.svg)](#documents-regular)|
| |![dog-filled](icons/vivo-new/filled/dog-filled.svg) | | | |<a id='dog-filled'>`dog-filled`</a>[![dog-filled](.github/resources/anchor.svg)](#dog-filled)|
| |![dog-light](icons/vivo-new/light/dog-light.svg) | | | |<a id='dog-light'>`dog-light`</a>[![dog-light](.github/resources/anchor.svg)](#dog-light)|
| |![dog-regular](icons/vivo-new/regular/dog-regular.svg) | | | |<a id='dog-regular'>`dog-regular`</a>[![dog-regular](.github/resources/anchor.svg)](#dog-regular)|
|![dollar-symbol-circle-filled](icons/telefonica/filled/dollar-symbol-circle-filled.svg) | | | | |<a id='dollar-symbol-circle-filled'>`dollar-symbol-circle-filled`</a>[![dollar-symbol-circle-filled](.github/resources/anchor.svg)](#dollar-symbol-circle-filled)|
|![dollar-symbol-circle-light](icons/telefonica/light/dollar-symbol-circle-light.svg) |![dollar-symbol-circle-light](icons/vivo-new/light/dollar-symbol-circle-light.svg) | | | |<a id='dollar-symbol-circle-light'>`dollar-symbol-circle-light`</a>[![dollar-symbol-circle-light](.github/resources/anchor.svg)](#dollar-symbol-circle-light)|
|![dollar-symbol-circle-regular](icons/telefonica/regular/dollar-symbol-circle-regular.svg) |![dollar-symbol-circle-regular](icons/vivo-new/regular/dollar-symbol-circle-regular.svg) | | | |<a id='dollar-symbol-circle-regular'>`dollar-symbol-circle-regular`</a>[![dollar-symbol-circle-regular](.github/resources/anchor.svg)](#dollar-symbol-circle-regular)|
|![dollar-symbol-filled](icons/telefonica/filled/dollar-symbol-filled.svg) | | | | |<a id='dollar-symbol-filled'>`dollar-symbol-filled`</a>[![dollar-symbol-filled](.github/resources/anchor.svg)](#dollar-symbol-filled)|
|![dollar-symbol-light](icons/telefonica/light/dollar-symbol-light.svg) | | | | |<a id='dollar-symbol-light'>`dollar-symbol-light`</a>[![dollar-symbol-light](.github/resources/anchor.svg)](#dollar-symbol-light)|
|![dollar-symbol-regular](icons/telefonica/regular/dollar-symbol-regular.svg) | | | | |<a id='dollar-symbol-regular'>`dollar-symbol-regular`</a>[![dollar-symbol-regular](.github/resources/anchor.svg)](#dollar-symbol-regular)|
| |![door-lock-regular](icons/vivo-new/regular/door-lock-regular.svg) | | | |<a id='door-lock-regular'>`door-lock-regular`</a>[![door-lock-regular](.github/resources/anchor.svg)](#door-lock-regular)|
|![download-app-filled](icons/telefonica/filled/download-app-filled.svg) | | | | |<a id='download-app-filled'>`download-app-filled`</a>[![download-app-filled](.github/resources/anchor.svg)](#download-app-filled)|
|![download-app-light](icons/telefonica/light/download-app-light.svg) | | | | |<a id='download-app-light'>`download-app-light`</a>[![download-app-light](.github/resources/anchor.svg)](#download-app-light)|
|![download-app-regular](icons/telefonica/regular/download-app-regular.svg) | | | | |<a id='download-app-regular'>`download-app-regular`</a>[![download-app-regular](.github/resources/anchor.svg)](#download-app-regular)|
|![download-cloud-filled](icons/telefonica/filled/download-cloud-filled.svg) | | | | |<a id='download-cloud-filled'>`download-cloud-filled`</a>[![download-cloud-filled](.github/resources/anchor.svg)](#download-cloud-filled)|
|![download-cloud-light](icons/telefonica/light/download-cloud-light.svg) | | | | |<a id='download-cloud-light'>`download-cloud-light`</a>[![download-cloud-light](.github/resources/anchor.svg)](#download-cloud-light)|
|![download-cloud-regular](icons/telefonica/regular/download-cloud-regular.svg) | | | |![download-cloud-regular](icons/blau/regular/download-cloud-regular.svg) |<a id='download-cloud-regular'>`download-cloud-regular`</a>[![download-cloud-regular](.github/resources/anchor.svg)](#download-cloud-regular)|
|![download-filled](icons/telefonica/filled/download-filled.svg) | | | | |<a id='download-filled'>`download-filled`</a>[![download-filled](.github/resources/anchor.svg)](#download-filled)|
|![download-light](icons/telefonica/light/download-light.svg) | | | | |<a id='download-light'>`download-light`</a>[![download-light](.github/resources/anchor.svg)](#download-light)|
|![download-regular](icons/telefonica/regular/download-regular.svg) | | | |![download-regular](icons/blau/regular/download-regular.svg) |<a id='download-regular'>`download-regular`</a>[![download-regular](.github/resources/anchor.svg)](#download-regular)|
|![drink-filled](icons/telefonica/filled/drink-filled.svg) | | | | |<a id='drink-filled'>`drink-filled`</a>[![drink-filled](.github/resources/anchor.svg)](#drink-filled)|
|![drink-light](icons/telefonica/light/drink-light.svg) | | | | |<a id='drink-light'>`drink-light`</a>[![drink-light](.github/resources/anchor.svg)](#drink-light)|
|![drink-regular](icons/telefonica/regular/drink-regular.svg) | | | | |<a id='drink-regular'>`drink-regular`</a>[![drink-regular](.github/resources/anchor.svg)](#drink-regular)|
|![dumbbell-filled](icons/telefonica/filled/dumbbell-filled.svg) | | | | |<a id='dumbbell-filled'>`dumbbell-filled`</a>[![dumbbell-filled](.github/resources/anchor.svg)](#dumbbell-filled)|
|![dumbbell-light](icons/telefonica/light/dumbbell-light.svg) | | | | |<a id='dumbbell-light'>`dumbbell-light`</a>[![dumbbell-light](.github/resources/anchor.svg)](#dumbbell-light)|
|![dumbbell-regular](icons/telefonica/regular/dumbbell-regular.svg) | | | | |<a id='dumbbell-regular'>`dumbbell-regular`</a>[![dumbbell-regular](.github/resources/anchor.svg)](#dumbbell-regular)|
| | |![ear-plug-filled](icons/o2-new/filled/ear-plug-filled.svg) |![ear-plug-filled](icons/o2/filled/ear-plug-filled.svg) | |<a id='ear-plug-filled'>`ear-plug-filled`</a>[![ear-plug-filled](.github/resources/anchor.svg)](#ear-plug-filled)|
| | |![ear-plug-regular](icons/o2-new/regular/ear-plug-regular.svg) |![ear-plug-regular](icons/o2/regular/ear-plug-regular.svg) | |<a id='ear-plug-regular'>`ear-plug-regular`</a>[![ear-plug-regular](.github/resources/anchor.svg)](#ear-plug-regular)|
|![eco-filled](icons/telefonica/filled/eco-filled.svg) | |![eco-filled](icons/o2-new/filled/eco-filled.svg) |![eco-filled](icons/o2/filled/eco-filled.svg) | |<a id='eco-filled'>`eco-filled`</a>[![eco-filled](.github/resources/anchor.svg)](#eco-filled)|
|![eco-light](icons/telefonica/light/eco-light.svg) | |![eco-light](icons/o2-new/light/eco-light.svg) |![eco-light](icons/o2/light/eco-light.svg) | |<a id='eco-light'>`eco-light`</a>[![eco-light](.github/resources/anchor.svg)](#eco-light)|
|![eco-regular](icons/telefonica/regular/eco-regular.svg) | |![eco-regular](icons/o2-new/regular/eco-regular.svg) |![eco-regular](icons/o2/regular/eco-regular.svg) | |<a id='eco-regular'>`eco-regular`</a>[![eco-regular](.github/resources/anchor.svg)](#eco-regular)|
|![edit-filled](icons/telefonica/filled/edit-filled.svg) | | | | |<a id='edit-filled'>`edit-filled`</a>[![edit-filled](.github/resources/anchor.svg)](#edit-filled)|
|![edit-light](icons/telefonica/light/edit-light.svg) | | | | |<a id='edit-light'>`edit-light`</a>[![edit-light](.github/resources/anchor.svg)](#edit-light)|
|![edit-paper-light](icons/telefonica/light/edit-paper-light.svg) | | | | |<a id='edit-paper-light'>`edit-paper-light`</a>[![edit-paper-light](.github/resources/anchor.svg)](#edit-paper-light)|
|![edit-paper-regular](icons/telefonica/regular/edit-paper-regular.svg) | | | | |<a id='edit-paper-regular'>`edit-paper-regular`</a>[![edit-paper-regular](.github/resources/anchor.svg)](#edit-paper-regular)|
|![edit-pencil-light](icons/telefonica/light/edit-pencil-light.svg) |![edit-pencil-light](icons/vivo-new/light/edit-pencil-light.svg) | | | |<a id='edit-pencil-light'>`edit-pencil-light`</a>[![edit-pencil-light](.github/resources/anchor.svg)](#edit-pencil-light)|
|![edit-pencil-regular](icons/telefonica/regular/edit-pencil-regular.svg) |![edit-pencil-regular](icons/vivo-new/regular/edit-pencil-regular.svg) | | |![edit-pencil-regular](icons/blau/regular/edit-pencil-regular.svg) |<a id='edit-pencil-regular'>`edit-pencil-regular`</a>[![edit-pencil-regular](.github/resources/anchor.svg)](#edit-pencil-regular)|
|![edit-regular](icons/telefonica/regular/edit-regular.svg) | | | | |<a id='edit-regular'>`edit-regular`</a>[![edit-regular](.github/resources/anchor.svg)](#edit-regular)|
|![electrocardiogram-filled](icons/telefonica/filled/electrocardiogram-filled.svg) | |![electrocardiogram-filled](icons/o2-new/filled/electrocardiogram-filled.svg) |![electrocardiogram-filled](icons/o2/filled/electrocardiogram-filled.svg) | |<a id='electrocardiogram-filled'>`electrocardiogram-filled`</a>[![electrocardiogram-filled](.github/resources/anchor.svg)](#electrocardiogram-filled)|
|![electrocardiogram-light](icons/telefonica/light/electrocardiogram-light.svg) | |![electrocardiogram-light](icons/o2-new/light/electrocardiogram-light.svg) |![electrocardiogram-light](icons/o2/light/electrocardiogram-light.svg) | |<a id='electrocardiogram-light'>`electrocardiogram-light`</a>[![electrocardiogram-light](.github/resources/anchor.svg)](#electrocardiogram-light)|
|![electrocardiogram-regular](icons/telefonica/regular/electrocardiogram-regular.svg) | |![electrocardiogram-regular](icons/o2-new/regular/electrocardiogram-regular.svg) |![electrocardiogram-regular](icons/o2/regular/electrocardiogram-regular.svg) | |<a id='electrocardiogram-regular'>`electrocardiogram-regular`</a>[![electrocardiogram-regular](.github/resources/anchor.svg)](#electrocardiogram-regular)|
|![email-filled](icons/telefonica/filled/email-filled.svg) | |![email-filled](icons/o2-new/filled/email-filled.svg) |![email-filled](icons/o2/filled/email-filled.svg) | |<a id='email-filled'>`email-filled`</a>[![email-filled](.github/resources/anchor.svg)](#email-filled)|
|![email-light](icons/telefonica/light/email-light.svg) | |![email-light](icons/o2-new/light/email-light.svg) |![email-light](icons/o2/light/email-light.svg) | |<a id='email-light'>`email-light`</a>[![email-light](.github/resources/anchor.svg)](#email-light)|
|![email-regular](icons/telefonica/regular/email-regular.svg) | |![email-regular](icons/o2-new/regular/email-regular.svg) |![email-regular](icons/o2/regular/email-regular.svg) |![email-regular](icons/blau/regular/email-regular.svg) |<a id='email-regular'>`email-regular`</a>[![email-regular](.github/resources/anchor.svg)](#email-regular)|
| | |![email-send-filled](icons/o2-new/filled/email-send-filled.svg) |![email-send-filled](icons/o2/filled/email-send-filled.svg) | |<a id='email-send-filled'>`email-send-filled`</a>[![email-send-filled](.github/resources/anchor.svg)](#email-send-filled)|
| | |![email-send-light](icons/o2-new/light/email-send-light.svg) |![email-send-light](icons/o2/light/email-send-light.svg) | |<a id='email-send-light'>`email-send-light`</a>[![email-send-light](.github/resources/anchor.svg)](#email-send-light)|
| | |![email-send-regular](icons/o2-new/regular/email-send-regular.svg) |![email-send-regular](icons/o2/regular/email-send-regular.svg) | |<a id='email-send-regular'>`email-send-regular`</a>[![email-send-regular](.github/resources/anchor.svg)](#email-send-regular)|
|![email-virus-filled](icons/telefonica/filled/email-virus-filled.svg) | | | | |<a id='email-virus-filled'>`email-virus-filled`</a>[![email-virus-filled](.github/resources/anchor.svg)](#email-virus-filled)|
|![email-virus-light](icons/telefonica/light/email-virus-light.svg) | | | | |<a id='email-virus-light'>`email-virus-light`</a>[![email-virus-light](.github/resources/anchor.svg)](#email-virus-light)|
|![email-virus-regular](icons/telefonica/regular/email-virus-regular.svg) | | | | |<a id='email-virus-regular'>`email-virus-regular`</a>[![email-virus-regular](.github/resources/anchor.svg)](#email-virus-regular)|
|![emergency-cross-filled](icons/telefonica/filled/emergency-cross-filled.svg) | | | | |<a id='emergency-cross-filled'>`emergency-cross-filled`</a>[![emergency-cross-filled](.github/resources/anchor.svg)](#emergency-cross-filled)|
|![emergency-cross-light](icons/telefonica/light/emergency-cross-light.svg) | | | | |<a id='emergency-cross-light'>`emergency-cross-light`</a>[![emergency-cross-light](.github/resources/anchor.svg)](#emergency-cross-light)|
|![emergency-cross-regular](icons/telefonica/regular/emergency-cross-regular.svg) | | | | |<a id='emergency-cross-regular'>`emergency-cross-regular`</a>[![emergency-cross-regular](.github/resources/anchor.svg)](#emergency-cross-regular)|
|![emergency-cross-with-circle-filled](icons/telefonica/filled/emergency-cross-with-circle-filled.svg) | | | | |<a id='emergency-cross-with-circle-filled'>`emergency-cross-with-circle-filled`</a>[![emergency-cross-with-circle-filled](.github/resources/anchor.svg)](#emergency-cross-with-circle-filled)|
|![emergency-cross-with-circle-light](icons/telefonica/light/emergency-cross-with-circle-light.svg) | | | | |<a id='emergency-cross-with-circle-light'>`emergency-cross-with-circle-light`</a>[![emergency-cross-with-circle-light](.github/resources/anchor.svg)](#emergency-cross-with-circle-light)|
|![emergency-cross-with-circle-regular](icons/telefonica/regular/emergency-cross-with-circle-regular.svg) | | | | |<a id='emergency-cross-with-circle-regular'>`emergency-cross-with-circle-regular`</a>[![emergency-cross-with-circle-regular](.github/resources/anchor.svg)](#emergency-cross-with-circle-regular)|
|![error-filled](icons/telefonica/filled/error-filled.svg) | | | | |<a id='error-filled'>`error-filled`</a>[![error-filled](.github/resources/anchor.svg)](#error-filled)|
|![error-light](icons/telefonica/light/error-light.svg) | | | | |<a id='error-light'>`error-light`</a>[![error-light](.github/resources/anchor.svg)](#error-light)|
|![error-regular](icons/telefonica/regular/error-regular.svg) | | | | |<a id='error-regular'>`error-regular`</a>[![error-regular](.github/resources/anchor.svg)](#error-regular)|
| | |![escalator-filled](icons/o2-new/filled/escalator-filled.svg) |![escalator-filled](icons/o2/filled/escalator-filled.svg) | |<a id='escalator-filled'>`escalator-filled`</a>[![escalator-filled](.github/resources/anchor.svg)](#escalator-filled)|
| | |![escalator-light](icons/o2-new/light/escalator-light.svg) |![escalator-light](icons/o2/light/escalator-light.svg) | |<a id='escalator-light'>`escalator-light`</a>[![escalator-light](.github/resources/anchor.svg)](#escalator-light)|
| | |![escalator-regular](icons/o2-new/regular/escalator-regular.svg) |![escalator-regular](icons/o2/regular/escalator-regular.svg) | |<a id='escalator-regular'>`escalator-regular`</a>[![escalator-regular](.github/resources/anchor.svg)](#escalator-regular)|
|![esim-filled](icons/telefonica/filled/esim-filled.svg) | |![esim-filled](icons/o2-new/filled/esim-filled.svg) |![esim-filled](icons/o2/filled/esim-filled.svg) | |<a id='esim-filled'>`esim-filled`</a>[![esim-filled](.github/resources/anchor.svg)](#esim-filled)|
|![esim-light](icons/telefonica/light/esim-light.svg) | |![esim-light](icons/o2-new/light/esim-light.svg) |![esim-light](icons/o2/light/esim-light.svg) | |<a id='esim-light'>`esim-light`</a>[![esim-light](.github/resources/anchor.svg)](#esim-light)|
|![esim-regular](icons/telefonica/regular/esim-regular.svg) | |![esim-regular](icons/o2-new/regular/esim-regular.svg) |![esim-regular](icons/o2/regular/esim-regular.svg) | |<a id='esim-regular'>`esim-regular`</a>[![esim-regular](.github/resources/anchor.svg)](#esim-regular)|
| |![ethernet-filled](icons/vivo-new/filled/ethernet-filled.svg) | | | |<a id='ethernet-filled'>`ethernet-filled`</a>[![ethernet-filled](.github/resources/anchor.svg)](#ethernet-filled)|
| |![ethernet-light](icons/vivo-new/light/ethernet-light.svg) | | | |<a id='ethernet-light'>`ethernet-light`</a>[![ethernet-light](.github/resources/anchor.svg)](#ethernet-light)|
| |![ethernet-regular](icons/vivo-new/regular/ethernet-regular.svg) | | | |<a id='ethernet-regular'>`ethernet-regular`</a>[![ethernet-regular](.github/resources/anchor.svg)](#ethernet-regular)|
|![euro-symbol-circle-filled](icons/telefonica/filled/euro-symbol-circle-filled.svg) | |![euro-symbol-circle-filled](icons/o2-new/filled/euro-symbol-circle-filled.svg) |![euro-symbol-circle-filled](icons/o2/filled/euro-symbol-circle-filled.svg) | |<a id='euro-symbol-circle-filled'>`euro-symbol-circle-filled`</a>[![euro-symbol-circle-filled](.github/resources/anchor.svg)](#euro-symbol-circle-filled)|
|![euro-symbol-circle-light](icons/telefonica/light/euro-symbol-circle-light.svg) | |![euro-symbol-circle-light](icons/o2-new/light/euro-symbol-circle-light.svg) |![euro-symbol-circle-light](icons/o2/light/euro-symbol-circle-light.svg) | |<a id='euro-symbol-circle-light'>`euro-symbol-circle-light`</a>[![euro-symbol-circle-light](.github/resources/anchor.svg)](#euro-symbol-circle-light)|
|![euro-symbol-circle-regular](icons/telefonica/regular/euro-symbol-circle-regular.svg) | |![euro-symbol-circle-regular](icons/o2-new/regular/euro-symbol-circle-regular.svg) |![euro-symbol-circle-regular](icons/o2/regular/euro-symbol-circle-regular.svg) | |<a id='euro-symbol-circle-regular'>`euro-symbol-circle-regular`</a>[![euro-symbol-circle-regular](.github/resources/anchor.svg)](#euro-symbol-circle-regular)|
|![euro-symbol-filled](icons/telefonica/filled/euro-symbol-filled.svg) | | | | |<a id='euro-symbol-filled'>`euro-symbol-filled`</a>[![euro-symbol-filled](.github/resources/anchor.svg)](#euro-symbol-filled)|
|![euro-symbol-light](icons/telefonica/light/euro-symbol-light.svg) | | | | |<a id='euro-symbol-light'>`euro-symbol-light`</a>[![euro-symbol-light](.github/resources/anchor.svg)](#euro-symbol-light)|
|![euro-symbol-regular](icons/telefonica/regular/euro-symbol-regular.svg) | | | |![euro-symbol-regular](icons/blau/regular/euro-symbol-regular.svg) |<a id='euro-symbol-regular'>`euro-symbol-regular`</a>[![euro-symbol-regular](.github/resources/anchor.svg)](#euro-symbol-regular)|
|![exchange-filled](icons/telefonica/filled/exchange-filled.svg) | | | | |<a id='exchange-filled'>`exchange-filled`</a>[![exchange-filled](.github/resources/anchor.svg)](#exchange-filled)|
|![exchange-light](icons/telefonica/light/exchange-light.svg) | | | | |<a id='exchange-light'>`exchange-light`</a>[![exchange-light](.github/resources/anchor.svg)](#exchange-light)|
|![exchange-regular](icons/telefonica/regular/exchange-regular.svg) | | | | |<a id='exchange-regular'>`exchange-regular`</a>[![exchange-regular](.github/resources/anchor.svg)](#exchange-regular)|
| | |![exit-door-filled](icons/o2-new/filled/exit-door-filled.svg) |![exit-door-filled](icons/o2/filled/exit-door-filled.svg) | |<a id='exit-door-filled'>`exit-door-filled`</a>[![exit-door-filled](.github/resources/anchor.svg)](#exit-door-filled)|
| | |![exit-door-light](icons/o2-new/light/exit-door-light.svg) |![exit-door-light](icons/o2/light/exit-door-light.svg) | |<a id='exit-door-light'>`exit-door-light`</a>[![exit-door-light](.github/resources/anchor.svg)](#exit-door-light)|
| | |![exit-door-regular](icons/o2-new/regular/exit-door-regular.svg) |![exit-door-regular](icons/o2/regular/exit-door-regular.svg) | |<a id='exit-door-regular'>`exit-door-regular`</a>[![exit-door-regular](.github/resources/anchor.svg)](#exit-door-regular)|
|![exit-fullscreen-light](icons/telefonica/light/exit-fullscreen-light.svg) | | | | |<a id='exit-fullscreen-light'>`exit-fullscreen-light`</a>[![exit-fullscreen-light](.github/resources/anchor.svg)](#exit-fullscreen-light)|
|![exit-fullscreen-regular](icons/telefonica/regular/exit-fullscreen-regular.svg) | | | | |<a id='exit-fullscreen-regular'>`exit-fullscreen-regular`</a>[![exit-fullscreen-regular](.github/resources/anchor.svg)](#exit-fullscreen-regular)|
|![export-light](icons/telefonica/light/export-light.svg) | | | | |<a id='export-light'>`export-light`</a>[![export-light](.github/resources/anchor.svg)](#export-light)|
|![export-regular](icons/telefonica/regular/export-regular.svg) | | | | |<a id='export-regular'>`export-regular`</a>[![export-regular](.github/resources/anchor.svg)](#export-regular)|
| | |![eye-filled](icons/o2-new/filled/eye-filled.svg) |![eye-filled](icons/o2/filled/eye-filled.svg) | |<a id='eye-filled'>`eye-filled`</a>[![eye-filled](.github/resources/anchor.svg)](#eye-filled)|
|![eye-light](icons/telefonica/light/eye-light.svg) | |![eye-light](icons/o2-new/light/eye-light.svg) |![eye-light](icons/o2/light/eye-light.svg) | |<a id='eye-light'>`eye-light`</a>[![eye-light](.github/resources/anchor.svg)](#eye-light)|
|![eye-off-filled](icons/telefonica/filled/eye-off-filled.svg) | |![eye-off-filled](icons/o2-new/filled/eye-off-filled.svg) |![eye-off-filled](icons/o2/filled/eye-off-filled.svg) | |<a id='eye-off-filled'>`eye-off-filled`</a>[![eye-off-filled](.github/resources/anchor.svg)](#eye-off-filled)|
|![eye-off-light](icons/telefonica/light/eye-off-light.svg) | |![eye-off-light](icons/o2-new/light/eye-off-light.svg) |![eye-off-light](icons/o2/light/eye-off-light.svg) | |<a id='eye-off-light'>`eye-off-light`</a>[![eye-off-light](.github/resources/anchor.svg)](#eye-off-light)|
|![eye-off-regular](icons/telefonica/regular/eye-off-regular.svg) | |![eye-off-regular](icons/o2-new/regular/eye-off-regular.svg) |![eye-off-regular](icons/o2/regular/eye-off-regular.svg) | |<a id='eye-off-regular'>`eye-off-regular`</a>[![eye-off-regular](.github/resources/anchor.svg)](#eye-off-regular)|
|![eye-regular](icons/telefonica/regular/eye-regular.svg) | |![eye-regular](icons/o2-new/regular/eye-regular.svg) |![eye-regular](icons/o2/regular/eye-regular.svg) |![eye-regular](icons/blau/regular/eye-regular.svg) |<a id='eye-regular'>`eye-regular`</a>[![eye-regular](.github/resources/anchor.svg)](#eye-regular)|
|![face-happy-filled](icons/telefonica/filled/face-happy-filled.svg) |![face-happy-filled](icons/vivo-new/filled/face-happy-filled.svg) |![face-happy-filled](icons/o2-new/filled/face-happy-filled.svg) |![face-happy-filled](icons/o2/filled/face-happy-filled.svg) |![face-happy-filled](icons/blau/filled/face-happy-filled.svg) |<a id='face-happy-filled'>`face-happy-filled`</a>[![face-happy-filled](.github/resources/anchor.svg)](#face-happy-filled)|
|![face-happy-light](icons/telefonica/light/face-happy-light.svg) |![face-happy-light](icons/vivo-new/light/face-happy-light.svg) |![face-happy-light](icons/o2-new/light/face-happy-light.svg) |![face-happy-light](icons/o2/light/face-happy-light.svg) | |<a id='face-happy-light'>`face-happy-light`</a>[![face-happy-light](.github/resources/anchor.svg)](#face-happy-light)|
|![face-happy-regular](icons/telefonica/regular/face-happy-regular.svg) |![face-happy-regular](icons/vivo-new/regular/face-happy-regular.svg) |![face-happy-regular](icons/o2-new/regular/face-happy-regular.svg) |![face-happy-regular](icons/o2/regular/face-happy-regular.svg) |![face-happy-regular](icons/blau/regular/face-happy-regular.svg) |<a id='face-happy-regular'>`face-happy-regular`</a>[![face-happy-regular](.github/resources/anchor.svg)](#face-happy-regular)|
|![face-neutral-filled](icons/telefonica/filled/face-neutral-filled.svg) |![face-neutral-filled](icons/vivo-new/filled/face-neutral-filled.svg) |![face-neutral-filled](icons/o2-new/filled/face-neutral-filled.svg) |![face-neutral-filled](icons/o2/filled/face-neutral-filled.svg) |![face-neutral-filled](icons/blau/filled/face-neutral-filled.svg) |<a id='face-neutral-filled'>`face-neutral-filled`</a>[![face-neutral-filled](.github/resources/anchor.svg)](#face-neutral-filled)|
|![face-neutral-light](icons/telefonica/light/face-neutral-light.svg) |![face-neutral-light](icons/vivo-new/light/face-neutral-light.svg) |![face-neutral-light](icons/o2-new/light/face-neutral-light.svg) |![face-neutral-light](icons/o2/light/face-neutral-light.svg) | |<a id='face-neutral-light'>`face-neutral-light`</a>[![face-neutral-light](.github/resources/anchor.svg)](#face-neutral-light)|
| | | |![face-neutral-light](icons/o2/regular/face-neutral-light.svg) | |<a id='face-neutral-light'>`face-neutral-light`</a>[![face-neutral-light](.github/resources/anchor.svg)](#face-neutral-light)|
|![face-neutral-regular](icons/telefonica/regular/face-neutral-regular.svg) |![face-neutral-regular](icons/vivo-new/regular/face-neutral-regular.svg) |![face-neutral-regular](icons/o2-new/regular/face-neutral-regular.svg) | |![face-neutral-regular](icons/blau/regular/face-neutral-regular.svg) |<a id='face-neutral-regular'>`face-neutral-regular`</a>[![face-neutral-regular](.github/resources/anchor.svg)](#face-neutral-regular)|
|![face-sad-filled](icons/telefonica/filled/face-sad-filled.svg) |![face-sad-filled](icons/vivo-new/filled/face-sad-filled.svg) |![face-sad-filled](icons/o2-new/filled/face-sad-filled.svg) |![face-sad-filled](icons/o2/filled/face-sad-filled.svg) |![face-sad-filled](icons/blau/filled/face-sad-filled.svg) |<a id='face-sad-filled'>`face-sad-filled`</a>[![face-sad-filled](.github/resources/anchor.svg)](#face-sad-filled)|
|![face-sad-light](icons/telefonica/light/face-sad-light.svg) |![face-sad-light](icons/vivo-new/light/face-sad-light.svg) |![face-sad-light](icons/o2-new/light/face-sad-light.svg) |![face-sad-light](icons/o2/light/face-sad-light.svg) | |<a id='face-sad-light'>`face-sad-light`</a>[![face-sad-light](.github/resources/anchor.svg)](#face-sad-light)|
| | | |![face-sad-light](icons/o2/regular/face-sad-light.svg) | |<a id='face-sad-light'>`face-sad-light`</a>[![face-sad-light](.github/resources/anchor.svg)](#face-sad-light)|
|![face-sad-regular](icons/telefonica/regular/face-sad-regular.svg) |![face-sad-regular](icons/vivo-new/regular/face-sad-regular.svg) |![face-sad-regular](icons/o2-new/regular/face-sad-regular.svg) | |![face-sad-regular](icons/blau/regular/face-sad-regular.svg) |<a id='face-sad-regular'>`face-sad-regular`</a>[![face-sad-regular](.github/resources/anchor.svg)](#face-sad-regular)|
|![face-slightly-sad-filled](icons/telefonica/filled/face-slightly-sad-filled.svg) |![face-slightly-sad-filled](icons/vivo-new/filled/face-slightly-sad-filled.svg) |![face-slightly-sad-filled](icons/o2-new/filled/face-slightly-sad-filled.svg) |![face-slightly-sad-filled](icons/o2/filled/face-slightly-sad-filled.svg) |![face-slightly-sad-filled](icons/blau/filled/face-slightly-sad-filled.svg) |<a id='face-slightly-sad-filled'>`face-slightly-sad-filled`</a>[![face-slightly-sad-filled](.github/resources/anchor.svg)](#face-slightly-sad-filled)|
|![face-slightly-sad-light](icons/telefonica/light/face-slightly-sad-light.svg) |![face-slightly-sad-light](icons/vivo-new/light/face-slightly-sad-light.svg) |![face-slightly-sad-light](icons/o2-new/light/face-slightly-sad-light.svg) |![face-slightly-sad-light](icons/o2/light/face-slightly-sad-light.svg) | |<a id='face-slightly-sad-light'>`face-slightly-sad-light`</a>[![face-slightly-sad-light](.github/resources/anchor.svg)](#face-slightly-sad-light)|
| | | |![face-slightly-sad-light](icons/o2/regular/face-slightly-sad-light.svg) | |<a id='face-slightly-sad-light'>`face-slightly-sad-light`</a>[![face-slightly-sad-light](.github/resources/anchor.svg)](#face-slightly-sad-light)|
|![face-slightly-sad-regular](icons/telefonica/regular/face-slightly-sad-regular.svg) |![face-slightly-sad-regular](icons/vivo-new/regular/face-slightly-sad-regular.svg) |![face-slightly-sad-regular](icons/o2-new/regular/face-slightly-sad-regular.svg) | |![face-slightly-sad-regular](icons/blau/regular/face-slightly-sad-regular.svg) |<a id='face-slightly-sad-regular'>`face-slightly-sad-regular`</a>[![face-slightly-sad-regular](.github/resources/anchor.svg)](#face-slightly-sad-regular)|
|![face-super-happy-filled](icons/telefonica/filled/face-super-happy-filled.svg) |![face-super-happy-filled](icons/vivo-new/filled/face-super-happy-filled.svg) |![face-super-happy-filled](icons/o2-new/filled/face-super-happy-filled.svg) |![face-super-happy-filled](icons/o2/filled/face-super-happy-filled.svg) |![face-super-happy-filled](icons/blau/filled/face-super-happy-filled.svg) |<a id='face-super-happy-filled'>`face-super-happy-filled`</a>[![face-super-happy-filled](.github/resources/anchor.svg)](#face-super-happy-filled)|
|![face-super-happy-light](icons/telefonica/light/face-super-happy-light.svg) |![face-super-happy-light](icons/vivo-new/light/face-super-happy-light.svg) |![face-super-happy-light](icons/o2-new/light/face-super-happy-light.svg) |![face-super-happy-light](icons/o2/light/face-super-happy-light.svg) | |<a id='face-super-happy-light'>`face-super-happy-light`</a>[![face-super-happy-light](.github/resources/anchor.svg)](#face-super-happy-light)|
| | | |![face-super-happy-light](icons/o2/regular/face-super-happy-light.svg) | |<a id='face-super-happy-light'>`face-super-happy-light`</a>[![face-super-happy-light](.github/resources/anchor.svg)](#face-super-happy-light)|
|![face-super-happy-regular](icons/telefonica/regular/face-super-happy-regular.svg) |![face-super-happy-regular](icons/vivo-new/regular/face-super-happy-regular.svg) |![face-super-happy-regular](icons/o2-new/regular/face-super-happy-regular.svg) | |![face-super-happy-regular](icons/blau/regular/face-super-happy-regular.svg) |<a id='face-super-happy-regular'>`face-super-happy-regular`</a>[![face-super-happy-regular](.github/resources/anchor.svg)](#face-super-happy-regular)|
|![family-filled](icons/telefonica/filled/family-filled.svg) | |![family-filled](icons/o2-new/filled/family-filled.svg) |![family-filled](icons/o2/filled/family-filled.svg) | |<a id='family-filled'>`family-filled`</a>[![family-filled](.github/resources/anchor.svg)](#family-filled)|
|![family-light](icons/telefonica/light/family-light.svg) | |![family-light](icons/o2-new/light/family-light.svg) |![family-light](icons/o2/light/family-light.svg) | |<a id='family-light'>`family-light`</a>[![family-light](.github/resources/anchor.svg)](#family-light)|
|![family-regular](icons/telefonica/regular/family-regular.svg) | |![family-regular](icons/o2-new/regular/family-regular.svg) |![family-regular](icons/o2/regular/family-regular.svg) | |<a id='family-regular'>`family-regular`</a>[![family-regular](.github/resources/anchor.svg)](#family-regular)|
|![fast-forward-filled](icons/telefonica/filled/fast-forward-filled.svg) | |![fast-forward-filled](icons/o2-new/filled/fast-forward-filled.svg) |![fast-forward-filled](icons/o2/filled/fast-forward-filled.svg) | |<a id='fast-forward-filled'>`fast-forward-filled`</a>[![fast-forward-filled](.github/resources/anchor.svg)](#fast-forward-filled)|
|![fast-forward-light](icons/telefonica/light/fast-forward-light.svg) | |![fast-forward-light](icons/o2-new/light/fast-forward-light.svg) |![fast-forward-light](icons/o2/light/fast-forward-light.svg) | |<a id='fast-forward-light'>`fast-forward-light`</a>[![fast-forward-light](.github/resources/anchor.svg)](#fast-forward-light)|
|![fast-forward-regular](icons/telefonica/regular/fast-forward-regular.svg) | |![fast-forward-regular](icons/o2-new/regular/fast-forward-regular.svg) |![fast-forward-regular](icons/o2/regular/fast-forward-regular.svg) | |<a id='fast-forward-regular'>`fast-forward-regular`</a>[![fast-forward-regular](.github/resources/anchor.svg)](#fast-forward-regular)|
|![file-avi-filled](icons/telefonica/filled/file-avi-filled.svg) | | | | |<a id='file-avi-filled'>`file-avi-filled`</a>[![file-avi-filled](.github/resources/anchor.svg)](#file-avi-filled)|
|![file-avi-light](icons/telefonica/light/file-avi-light.svg) | | | | |<a id='file-avi-light'>`file-avi-light`</a>[![file-avi-light](.github/resources/anchor.svg)](#file-avi-light)|
|![file-avi-regular](icons/telefonica/regular/file-avi-regular.svg) | | | | |<a id='file-avi-regular'>`file-avi-regular`</a>[![file-avi-regular](.github/resources/anchor.svg)](#file-avi-regular)|
|![file-blocked-filled](icons/telefonica/filled/file-blocked-filled.svg) | | | | |<a id='file-blocked-filled'>`file-blocked-filled`</a>[![file-blocked-filled](.github/resources/anchor.svg)](#file-blocked-filled)|
|![file-blocked-light](icons/telefonica/light/file-blocked-light.svg) | | | | |<a id='file-blocked-light'>`file-blocked-light`</a>[![file-blocked-light](.github/resources/anchor.svg)](#file-blocked-light)|
|![file-blocked-regular](icons/telefonica/regular/file-blocked-regular.svg) | | | | |<a id='file-blocked-regular'>`file-blocked-regular`</a>[![file-blocked-regular](.github/resources/anchor.svg)](#file-blocked-regular)|
|![file-box-filled](icons/telefonica/filled/file-box-filled.svg) | | | | |<a id='file-box-filled'>`file-box-filled`</a>[![file-box-filled](.github/resources/anchor.svg)](#file-box-filled)|
|![file-box-light](icons/telefonica/light/file-box-light.svg) | | | | |<a id='file-box-light'>`file-box-light`</a>[![file-box-light](.github/resources/anchor.svg)](#file-box-light)|
|![file-box-regular](icons/telefonica/regular/file-box-regular.svg) | | | | |<a id='file-box-regular'>`file-box-regular`</a>[![file-box-regular](.github/resources/anchor.svg)](#file-box-regular)|
|![file-compressed-filled](icons/telefonica/filled/file-compressed-filled.svg) | | | | |<a id='file-compressed-filled'>`file-compressed-filled`</a>[![file-compressed-filled](.github/resources/anchor.svg)](#file-compressed-filled)|
|![file-compressed-light](icons/telefonica/light/file-compressed-light.svg) | | | | |<a id='file-compressed-light'>`file-compressed-light`</a>[![file-compressed-light](.github/resources/anchor.svg)](#file-compressed-light)|
|![file-compressed-regular](icons/telefonica/regular/file-compressed-regular.svg) | | | | |<a id='file-compressed-regular'>`file-compressed-regular`</a>[![file-compressed-regular](.github/resources/anchor.svg)](#file-compressed-regular)|
|![file-css-filled](icons/telefonica/filled/file-css-filled.svg) | | | | |<a id='file-css-filled'>`file-css-filled`</a>[![file-css-filled](.github/resources/anchor.svg)](#file-css-filled)|
|![file-css-light](icons/telefonica/light/file-css-light.svg) | | | | |<a id='file-css-light'>`file-css-light`</a>[![file-css-light](.github/resources/anchor.svg)](#file-css-light)|
|![file-css-regular](icons/telefonica/regular/file-css-regular.svg) | | | | |<a id='file-css-regular'>`file-css-regular`</a>[![file-css-regular](.github/resources/anchor.svg)](#file-css-regular)|
|![file-encrypted-filled](icons/telefonica/filled/file-encrypted-filled.svg) | | | | |<a id='file-encrypted-filled'>`file-encrypted-filled`</a>[![file-encrypted-filled](.github/resources/anchor.svg)](#file-encrypted-filled)|
|![file-encrypted-light](icons/telefonica/light/file-encrypted-light.svg) | | | | |<a id='file-encrypted-light'>`file-encrypted-light`</a>[![file-encrypted-light](.github/resources/anchor.svg)](#file-encrypted-light)|
|![file-encrypted-regular](icons/telefonica/regular/file-encrypted-regular.svg) | | | | |<a id='file-encrypted-regular'>`file-encrypted-regular`</a>[![file-encrypted-regular](.github/resources/anchor.svg)](#file-encrypted-regular)|
|![file-enex-filled](icons/telefonica/filled/file-enex-filled.svg) | | | | |<a id='file-enex-filled'>`file-enex-filled`</a>[![file-enex-filled](.github/resources/anchor.svg)](#file-enex-filled)|
|![file-enex-light](icons/telefonica/light/file-enex-light.svg) | | | | |<a id='file-enex-light'>`file-enex-light`</a>[![file-enex-light](.github/resources/anchor.svg)](#file-enex-light)|
|![file-enex-regular](icons/telefonica/regular/file-enex-regular.svg) | | | | |<a id='file-enex-regular'>`file-enex-regular`</a>[![file-enex-regular](.github/resources/anchor.svg)](#file-enex-regular)|
|![file-error-filled](icons/telefonica/filled/file-error-filled.svg) | | | | |<a id='file-error-filled'>`file-error-filled`</a>[![file-error-filled](.github/resources/anchor.svg)](#file-error-filled)|
|![file-error-light](icons/telefonica/light/file-error-light.svg) | | | | |<a id='file-error-light'>`file-error-light`</a>[![file-error-light](.github/resources/anchor.svg)](#file-error-light)|
|![file-error-regular](icons/telefonica/regular/file-error-regular.svg) | | | | |<a id='file-error-regular'>`file-error-regular`</a>[![file-error-regular](.github/resources/anchor.svg)](#file-error-regular)|
|![file-html-filled](icons/telefonica/filled/file-html-filled.svg) | | | | |<a id='file-html-filled'>`file-html-filled`</a>[![file-html-filled](.github/resources/anchor.svg)](#file-html-filled)|
|![file-html-light](icons/telefonica/light/file-html-light.svg) | | | | |<a id='file-html-light'>`file-html-light`</a>[![file-html-light](.github/resources/anchor.svg)](#file-html-light)|
|![file-html-regular](icons/telefonica/regular/file-html-regular.svg) | | | | |<a id='file-html-regular'>`file-html-regular`</a>[![file-html-regular](.github/resources/anchor.svg)](#file-html-regular)|
|![file-illustrator-filled](icons/telefonica/filled/file-illustrator-filled.svg) | | | | |<a id='file-illustrator-filled'>`file-illustrator-filled`</a>[![file-illustrator-filled](.github/resources/anchor.svg)](#file-illustrator-filled)|
|![file-illustrator-light](icons/telefonica/light/file-illustrator-light.svg) | | | | |<a id='file-illustrator-light'>`file-illustrator-light`</a>[![file-illustrator-light](.github/resources/anchor.svg)](#file-illustrator-light)|
|![file-illustrator-regular](icons/telefonica/regular/file-illustrator-regular.svg) | | | | |<a id='file-illustrator-regular'>`file-illustrator-regular`</a>[![file-illustrator-regular](.github/resources/anchor.svg)](#file-illustrator-regular)|
|![file-image-filled](icons/telefonica/filled/file-image-filled.svg) | | | | |<a id='file-image-filled'>`file-image-filled`</a>[![file-image-filled](.github/resources/anchor.svg)](#file-image-filled)|
|![file-image-light](icons/telefonica/light/file-image-light.svg) | | | | |<a id='file-image-light'>`file-image-light`</a>[![file-image-light](.github/resources/anchor.svg)](#file-image-light)|
|![file-image-regular](icons/telefonica/regular/file-image-regular.svg) | | | | |<a id='file-image-regular'>`file-image-regular`</a>[![file-image-regular](.github/resources/anchor.svg)](#file-image-regular)|
|![file-jpeg-filled](icons/telefonica/filled/file-jpeg-filled.svg) | | | | |<a id='file-jpeg-filled'>`file-jpeg-filled`</a>[![file-jpeg-filled](.github/resources/anchor.svg)](#file-jpeg-filled)|
|![file-jpeg-light](icons/telefonica/light/file-jpeg-light.svg) | | | | |<a id='file-jpeg-light'>`file-jpeg-light`</a>[![file-jpeg-light](.github/resources/anchor.svg)](#file-jpeg-light)|
|![file-jpeg-regular](icons/telefonica/regular/file-jpeg-regular.svg) | | | | |<a id='file-jpeg-regular'>`file-jpeg-regular`</a>[![file-jpeg-regular](.github/resources/anchor.svg)](#file-jpeg-regular)|
|![file-mp3-filled](icons/telefonica/filled/file-mp3-filled.svg) | | | | |<a id='file-mp3-filled'>`file-mp3-filled`</a>[![file-mp3-filled](.github/resources/anchor.svg)](#file-mp3-filled)|
|![file-mp3-light](icons/telefonica/light/file-mp3-light.svg) | | | | |<a id='file-mp3-light'>`file-mp3-light`</a>[![file-mp3-light](.github/resources/anchor.svg)](#file-mp3-light)|
|![file-mp3-regular](icons/telefonica/regular/file-mp3-regular.svg) | | | | |<a id='file-mp3-regular'>`file-mp3-regular`</a>[![file-mp3-regular](.github/resources/anchor.svg)](#file-mp3-regular)|
|![file-mp4-filled](icons/telefonica/filled/file-mp4-filled.svg) | | | | |<a id='file-mp4-filled'>`file-mp4-filled`</a>[![file-mp4-filled](.github/resources/anchor.svg)](#file-mp4-filled)|
|![file-mp4-light](icons/telefonica/light/file-mp4-light.svg) | | | | |<a id='file-mp4-light'>`file-mp4-light`</a>[![file-mp4-light](.github/resources/anchor.svg)](#file-mp4-light)|
|![file-mp4-regular](icons/telefonica/regular/file-mp4-regular.svg) | | | | |<a id='file-mp4-regular'>`file-mp4-regular`</a>[![file-mp4-regular](.github/resources/anchor.svg)](#file-mp4-regular)|
|![file-music-filled](icons/telefonica/filled/file-music-filled.svg) | | | | |<a id='file-music-filled'>`file-music-filled`</a>[![file-music-filled](.github/resources/anchor.svg)](#file-music-filled)|
|![file-music-light](icons/telefonica/light/file-music-light.svg) | | | | |<a id='file-music-light'>`file-music-light`</a>[![file-music-light](.github/resources/anchor.svg)](#file-music-light)|
|![file-music-regular](icons/telefonica/regular/file-music-regular.svg) | | | | |<a id='file-music-regular'>`file-music-regular`</a>[![file-music-regular](.github/resources/anchor.svg)](#file-music-regular)|
|![file-ok-filled](icons/telefonica/filled/file-ok-filled.svg) | | | | |<a id='file-ok-filled'>`file-ok-filled`</a>[![file-ok-filled](.github/resources/anchor.svg)](#file-ok-filled)|
|![file-ok-light](icons/telefonica/light/file-ok-light.svg) | | | | |<a id='file-ok-light'>`file-ok-light`</a>[![file-ok-light](.github/resources/anchor.svg)](#file-ok-light)|
|![file-ok-regular](icons/telefonica/regular/file-ok-regular.svg) | | | | |<a id='file-ok-regular'>`file-ok-regular`</a>[![file-ok-regular](.github/resources/anchor.svg)](#file-ok-regular)|
|![file-pdf-filled](icons/telefonica/filled/file-pdf-filled.svg) | | | | |<a id='file-pdf-filled'>`file-pdf-filled`</a>[![file-pdf-filled](.github/resources/anchor.svg)](#file-pdf-filled)|
|![file-pdf-light](icons/telefonica/light/file-pdf-light.svg) | | | | |<a id='file-pdf-light'>`file-pdf-light`</a>[![file-pdf-light](.github/resources/anchor.svg)](#file-pdf-light)|
|![file-pdf-regular](icons/telefonica/regular/file-pdf-regular.svg) | | | | |<a id='file-pdf-regular'>`file-pdf-regular`</a>[![file-pdf-regular](.github/resources/anchor.svg)](#file-pdf-regular)|
|![file-png-filled](icons/telefonica/filled/file-png-filled.svg) | | | | |<a id='file-png-filled'>`file-png-filled`</a>[![file-png-filled](.github/resources/anchor.svg)](#file-png-filled)|
|![file-png-light](icons/telefonica/light/file-png-light.svg) | | | | |<a id='file-png-light'>`file-png-light`</a>[![file-png-light](.github/resources/anchor.svg)](#file-png-light)|
|![file-png-regular](icons/telefonica/regular/file-png-regular.svg) | | | | |<a id='file-png-regular'>`file-png-regular`</a>[![file-png-regular](.github/resources/anchor.svg)](#file-png-regular)|
|![file-ppt-filled](icons/telefonica/filled/file-ppt-filled.svg) | | | | |<a id='file-ppt-filled'>`file-ppt-filled`</a>[![file-ppt-filled](.github/resources/anchor.svg)](#file-ppt-filled)|
|![file-ppt-light](icons/telefonica/light/file-ppt-light.svg) | | | | |<a id='file-ppt-light'>`file-ppt-light`</a>[![file-ppt-light](.github/resources/anchor.svg)](#file-ppt-light)|
|![file-ppt-regular](icons/telefonica/regular/file-ppt-regular.svg) | | | | |<a id='file-ppt-regular'>`file-ppt-regular`</a>[![file-ppt-regular](.github/resources/anchor.svg)](#file-ppt-regular)|
|![file-psd-filled](icons/telefonica/filled/file-psd-filled.svg) | | | | |<a id='file-psd-filled'>`file-psd-filled`</a>[![file-psd-filled](.github/resources/anchor.svg)](#file-psd-filled)|
|![file-psd-light](icons/telefonica/light/file-psd-light.svg) | | | | |<a id='file-psd-light'>`file-psd-light`</a>[![file-psd-light](.github/resources/anchor.svg)](#file-psd-light)|
|![file-psd-regular](icons/telefonica/regular/file-psd-regular.svg) | | | | |<a id='file-psd-regular'>`file-psd-regular`</a>[![file-psd-regular](.github/resources/anchor.svg)](#file-psd-regular)|
|![file-sketch-filled](icons/telefonica/filled/file-sketch-filled.svg) | | | | |<a id='file-sketch-filled'>`file-sketch-filled`</a>[![file-sketch-filled](.github/resources/anchor.svg)](#file-sketch-filled)|
|![file-sketch-light](icons/telefonica/light/file-sketch-light.svg) | | | | |<a id='file-sketch-light'>`file-sketch-light`</a>[![file-sketch-light](.github/resources/anchor.svg)](#file-sketch-light)|
|![file-sketch-regular](icons/telefonica/regular/file-sketch-regular.svg) | | | | |<a id='file-sketch-regular'>`file-sketch-regular`</a>[![file-sketch-regular](.github/resources/anchor.svg)](#file-sketch-regular)|
|![file-zip-filled](icons/telefonica/filled/file-zip-filled.svg) | | | | |<a id='file-zip-filled'>`file-zip-filled`</a>[![file-zip-filled](.github/resources/anchor.svg)](#file-zip-filled)|
|![file-zip-light](icons/telefonica/light/file-zip-light.svg) | | | | |<a id='file-zip-light'>`file-zip-light`</a>[![file-zip-light](.github/resources/anchor.svg)](#file-zip-light)|
|![file-zip-regular](icons/telefonica/regular/file-zip-regular.svg) | | | | |<a id='file-zip-regular'>`file-zip-regular`</a>[![file-zip-regular](.github/resources/anchor.svg)](#file-zip-regular)|
|![files-digital-filled](icons/telefonica/filled/files-digital-filled.svg) | | | | |<a id='files-digital-filled'>`files-digital-filled`</a>[![files-digital-filled](.github/resources/anchor.svg)](#files-digital-filled)|
|![files-digital-light](icons/telefonica/light/files-digital-light.svg) | | | | |<a id='files-digital-light'>`files-digital-light`</a>[![files-digital-light](.github/resources/anchor.svg)](#files-digital-light)|
|![files-digital-regular](icons/telefonica/regular/files-digital-regular.svg) | | | | |<a id='files-digital-regular'>`files-digital-regular`</a>[![files-digital-regular](.github/resources/anchor.svg)](#files-digital-regular)|
| | |![find-store-filled](icons/o2-new/filled/find-store-filled.svg) |![find-store-filled](icons/o2/filled/find-store-filled.svg) | |<a id='find-store-filled'>`find-store-filled`</a>[![find-store-filled](.github/resources/anchor.svg)](#find-store-filled)|
| | |![find-store-light](icons/o2-new/light/find-store-light.svg) |![find-store-light](icons/o2/light/find-store-light.svg) | |<a id='find-store-light'>`find-store-light`</a>[![find-store-light](.github/resources/anchor.svg)](#find-store-light)|
| | |![find-store-regular](icons/o2-new/regular/find-store-regular.svg) |![find-store-regular](icons/o2/regular/find-store-regular.svg) | |<a id='find-store-regular'>`find-store-regular`</a>[![find-store-regular](.github/resources/anchor.svg)](#find-store-regular)|
|![fingerprint-filled](icons/telefonica/filled/fingerprint-filled.svg) | | | | |<a id='fingerprint-filled'>`fingerprint-filled`</a>[![fingerprint-filled](.github/resources/anchor.svg)](#fingerprint-filled)|
|![fingerprint-regular](icons/telefonica/regular/fingerprint-regular.svg) | | | | |<a id='fingerprint-regular'>`fingerprint-regular`</a>[![fingerprint-regular](.github/resources/anchor.svg)](#fingerprint-regular)|
|![fire-filled](icons/telefonica/filled/fire-filled.svg) | | | | |<a id='fire-filled'>`fire-filled`</a>[![fire-filled](.github/resources/anchor.svg)](#fire-filled)|
|![fire-light](icons/telefonica/light/fire-light.svg) | | | | |<a id='fire-light'>`fire-light`</a>[![fire-light](.github/resources/anchor.svg)](#fire-light)|
|![fire-regular](icons/telefonica/regular/fire-regular.svg) | | | | |<a id='fire-regular'>`fire-regular`</a>[![fire-regular](.github/resources/anchor.svg)](#fire-regular)|
|![firewall-filled](icons/telefonica/filled/firewall-filled.svg) | |![firewall-filled](icons/o2-new/filled/firewall-filled.svg) |![firewall-filled](icons/o2/filled/firewall-filled.svg) | |<a id='firewall-filled'>`firewall-filled`</a>[![firewall-filled](.github/resources/anchor.svg)](#firewall-filled)|
|![firewall-light](icons/telefonica/light/firewall-light.svg) | |![firewall-light](icons/o2-new/light/firewall-light.svg) |![firewall-light](icons/o2/light/firewall-light.svg) | |<a id='firewall-light'>`firewall-light`</a>[![firewall-light](.github/resources/anchor.svg)](#firewall-light)|
|![firewall-regular](icons/telefonica/regular/firewall-regular.svg) | |![firewall-regular](icons/o2-new/regular/firewall-regular.svg) |![firewall-regular](icons/o2/regular/firewall-regular.svg) | |<a id='firewall-regular'>`firewall-regular`</a>[![firewall-regular](.github/resources/anchor.svg)](#firewall-regular)|
|![first-aid-kit-filled](icons/telefonica/filled/first-aid-kit-filled.svg) | | | | |<a id='first-aid-kit-filled'>`first-aid-kit-filled`</a>[![first-aid-kit-filled](.github/resources/anchor.svg)](#first-aid-kit-filled)|
|![first-aid-kit-light](icons/telefonica/light/first-aid-kit-light.svg) | | | | |<a id='first-aid-kit-light'>`first-aid-kit-light`</a>[![first-aid-kit-light](.github/resources/anchor.svg)](#first-aid-kit-light)|
|![first-aid-kit-regular](icons/telefonica/regular/first-aid-kit-regular.svg) | | | | |<a id='first-aid-kit-regular'>`first-aid-kit-regular`</a>[![first-aid-kit-regular](.github/resources/anchor.svg)](#first-aid-kit-regular)|
| | |![fixed-internet-filled](icons/o2-new/filled/fixed-internet-filled.svg) |![fixed-internet-filled](icons/o2/filled/fixed-internet-filled.svg) | |<a id='fixed-internet-filled'>`fixed-internet-filled`</a>[![fixed-internet-filled](.github/resources/anchor.svg)](#fixed-internet-filled)|
| | |![fixed-internet-light](icons/o2-new/light/fixed-internet-light.svg) |![fixed-internet-light](icons/o2/light/fixed-internet-light.svg) | |<a id='fixed-internet-light'>`fixed-internet-light`</a>[![fixed-internet-light](.github/resources/anchor.svg)](#fixed-internet-light)|
| | |![fixed-internet-regular](icons/o2-new/regular/fixed-internet-regular.svg) |![fixed-internet-regular](icons/o2/regular/fixed-internet-regular.svg) | |<a id='fixed-internet-regular'>`fixed-internet-regular`</a>[![fixed-internet-regular](.github/resources/anchor.svg)](#fixed-internet-regular)|
|![flag-filled](icons/telefonica/filled/flag-filled.svg) | | | | |<a id='flag-filled'>`flag-filled`</a>[![flag-filled](.github/resources/anchor.svg)](#flag-filled)|
|![flag-light](icons/telefonica/light/flag-light.svg) | | | | |<a id='flag-light'>`flag-light`</a>[![flag-light](.github/resources/anchor.svg)](#flag-light)|
|![flag-regular](icons/telefonica/regular/flag-regular.svg) | | | |![flag-regular](icons/blau/regular/flag-regular.svg) |<a id='flag-regular'>`flag-regular`</a>[![flag-regular](.github/resources/anchor.svg)](#flag-regular)|
| | |![floorplan-filled](icons/o2-new/filled/floorplan-filled.svg) |![floorplan-filled](icons/o2/filled/floorplan-filled.svg) | |<a id='floorplan-filled'>`floorplan-filled`</a>[![floorplan-filled](.github/resources/anchor.svg)](#floorplan-filled)|
| | |![floorplan-light](icons/o2-new/light/floorplan-light.svg) |![floorplan-light](icons/o2/light/floorplan-light.svg) | |<a id='floorplan-light'>`floorplan-light`</a>[![floorplan-light](.github/resources/anchor.svg)](#floorplan-light)|
| | |![floorplan-regular](icons/o2-new/regular/floorplan-regular.svg) |![floorplan-regular](icons/o2/regular/floorplan-regular.svg) | |<a id='floorplan-regular'>`floorplan-regular`</a>[![floorplan-regular](.github/resources/anchor.svg)](#floorplan-regular)|
| | |![floppy-disk-filled](icons/o2-new/filled/floppy-disk-filled.svg) | | |<a id='floppy-disk-filled'>`floppy-disk-filled`</a>[![floppy-disk-filled](.github/resources/anchor.svg)](#floppy-disk-filled)|
| | |![floppy-disk-light](icons/o2-new/light/floppy-disk-light.svg) | | |<a id='floppy-disk-light'>`floppy-disk-light`</a>[![floppy-disk-light](.github/resources/anchor.svg)](#floppy-disk-light)|
| | |![floppy-disk-regular](icons/o2-new/regular/floppy-disk-regular.svg) | | |<a id='floppy-disk-regular'>`floppy-disk-regular`</a>[![floppy-disk-regular](.github/resources/anchor.svg)](#floppy-disk-regular)|
|![flower-filled](icons/telefonica/filled/flower-filled.svg) | | | | |<a id='flower-filled'>`flower-filled`</a>[![flower-filled](.github/resources/anchor.svg)](#flower-filled)|
|![flower-light](icons/telefonica/light/flower-light.svg) | | | | |<a id='flower-light'>`flower-light`</a>[![flower-light](.github/resources/anchor.svg)](#flower-light)|
|![flower-regular](icons/telefonica/regular/flower-regular.svg) | | | | |<a id='flower-regular'>`flower-regular`</a>[![flower-regular](.github/resources/anchor.svg)](#flower-regular)|
|![folder-encrypted-filled](icons/telefonica/filled/folder-encrypted-filled.svg) | | | | |<a id='folder-encrypted-filled'>`folder-encrypted-filled`</a>[![folder-encrypted-filled](.github/resources/anchor.svg)](#folder-encrypted-filled)|
|![folder-encrypted-light](icons/telefonica/light/folder-encrypted-light.svg) | | | | |<a id='folder-encrypted-light'>`folder-encrypted-light`</a>[![folder-encrypted-light](.github/resources/anchor.svg)](#folder-encrypted-light)|
|![folder-encrypted-regular](icons/telefonica/regular/folder-encrypted-regular.svg) | | | | |<a id='folder-encrypted-regular'>`folder-encrypted-regular`</a>[![folder-encrypted-regular](.github/resources/anchor.svg)](#folder-encrypted-regular)|
|![folder-filled](icons/telefonica/filled/folder-filled.svg) | |![folder-filled](icons/o2-new/filled/folder-filled.svg) |![folder-filled](icons/o2/filled/folder-filled.svg) | |<a id='folder-filled'>`folder-filled`</a>[![folder-filled](.github/resources/anchor.svg)](#folder-filled)|
|![folder-light](icons/telefonica/light/folder-light.svg) | |![folder-light](icons/o2-new/light/folder-light.svg) |![folder-light](icons/o2/light/folder-light.svg) | |<a id='folder-light'>`folder-light`</a>[![folder-light](.github/resources/anchor.svg)](#folder-light)|
|![folder-regular](icons/telefonica/regular/folder-regular.svg) | |![folder-regular](icons/o2-new/regular/folder-regular.svg) |![folder-regular](icons/o2/regular/folder-regular.svg) | |<a id='folder-regular'>`folder-regular`</a>[![folder-regular](.github/resources/anchor.svg)](#folder-regular)|
|![football-ball-filled](icons/telefonica/filled/football-ball-filled.svg) | |![football-ball-filled](icons/o2-new/filled/football-ball-filled.svg) |![football-ball-filled](icons/o2/filled/football-ball-filled.svg) | |<a id='football-ball-filled'>`football-ball-filled`</a>[![football-ball-filled](.github/resources/anchor.svg)](#football-ball-filled)|
|![football-ball-light](icons/telefonica/light/football-ball-light.svg) | |![football-ball-light](icons/o2-new/light/football-ball-light.svg) |![football-ball-light](icons/o2/light/football-ball-light.svg) | |<a id='football-ball-light'>`football-ball-light`</a>[![football-ball-light](.github/resources/anchor.svg)](#football-ball-light)|
|![football-ball-regular](icons/telefonica/regular/football-ball-regular.svg) | |![football-ball-regular](icons/o2-new/regular/football-ball-regular.svg) |![football-ball-regular](icons/o2/regular/football-ball-regular.svg) | |<a id='football-ball-regular'>`football-ball-regular`</a>[![football-ball-regular](.github/resources/anchor.svg)](#football-ball-regular)|
|![fragrance-filled](icons/telefonica/filled/fragrance-filled.svg) | | | | |<a id='fragrance-filled'>`fragrance-filled`</a>[![fragrance-filled](.github/resources/anchor.svg)](#fragrance-filled)|
|![fragrance-light](icons/telefonica/light/fragrance-light.svg) | | | | |<a id='fragrance-light'>`fragrance-light`</a>[![fragrance-light](.github/resources/anchor.svg)](#fragrance-light)|
|![fragrance-regular](icons/telefonica/regular/fragrance-regular.svg) | | | | |<a id='fragrance-regular'>`fragrance-regular`</a>[![fragrance-regular](.github/resources/anchor.svg)](#fragrance-regular)|
|![fullscreen-light](icons/telefonica/light/fullscreen-light.svg) | | | | |<a id='fullscreen-light'>`fullscreen-light`</a>[![fullscreen-light](.github/resources/anchor.svg)](#fullscreen-light)|
|![fullscreen-regular](icons/telefonica/regular/fullscreen-regular.svg) | | | | |<a id='fullscreen-regular'>`fullscreen-regular`</a>[![fullscreen-regular](.github/resources/anchor.svg)](#fullscreen-regular)|
|![funnel-filled](icons/telefonica/filled/funnel-filled.svg) | |![funnel-filled](icons/o2-new/filled/funnel-filled.svg) |![funnel-filled](icons/o2/filled/funnel-filled.svg) | |<a id='funnel-filled'>`funnel-filled`</a>[![funnel-filled](.github/resources/anchor.svg)](#funnel-filled)|
|![funnel-light](icons/telefonica/light/funnel-light.svg) | |![funnel-light](icons/o2-new/light/funnel-light.svg) |![funnel-light](icons/o2/light/funnel-light.svg) | |<a id='funnel-light'>`funnel-light`</a>[![funnel-light](.github/resources/anchor.svg)](#funnel-light)|
|![funnel-regular](icons/telefonica/regular/funnel-regular.svg) | |![funnel-regular](icons/o2-new/regular/funnel-regular.svg) |![funnel-regular](icons/o2/regular/funnel-regular.svg) | |<a id='funnel-regular'>`funnel-regular`</a>[![funnel-regular](.github/resources/anchor.svg)](#funnel-regular)|
| | |![fusion-filled](icons/o2-new/filled/fusion-filled.svg) |![fusion-filled](icons/o2/filled/fusion-filled.svg) | |<a id='fusion-filled'>`fusion-filled`</a>[![fusion-filled](.github/resources/anchor.svg)](#fusion-filled)|
| | |![fusion-light](icons/o2-new/light/fusion-light.svg) |![fusion-light](icons/o2/light/fusion-light.svg) | |<a id='fusion-light'>`fusion-light`</a>[![fusion-light](.github/resources/anchor.svg)](#fusion-light)|
| | |![fusion-regular](icons/o2-new/regular/fusion-regular.svg) |![fusion-regular](icons/o2/regular/fusion-regular.svg) | |<a id='fusion-regular'>`fusion-regular`</a>[![fusion-regular](.github/resources/anchor.svg)](#fusion-regular)|
|![garage-filled](icons/telefonica/filled/garage-filled.svg) | | | | |<a id='garage-filled'>`garage-filled`</a>[![garage-filled](.github/resources/anchor.svg)](#garage-filled)|
|![garage-light](icons/telefonica/light/garage-light.svg) | | | | |<a id='garage-light'>`garage-light`</a>[![garage-light](.github/resources/anchor.svg)](#garage-light)|
|![garage-regular](icons/telefonica/regular/garage-regular.svg) | | | | |<a id='garage-regular'>`garage-regular`</a>[![garage-regular](.github/resources/anchor.svg)](#garage-regular)|
|![gas-station-filled](icons/telefonica/filled/gas-station-filled.svg) | | | | |<a id='gas-station-filled'>`gas-station-filled`</a>[![gas-station-filled](.github/resources/anchor.svg)](#gas-station-filled)|
|![gas-station-light](icons/telefonica/light/gas-station-light.svg) | | | | |<a id='gas-station-light'>`gas-station-light`</a>[![gas-station-light](.github/resources/anchor.svg)](#gas-station-light)|
|![gas-station-regular](icons/telefonica/regular/gas-station-regular.svg) | | | | |<a id='gas-station-regular'>`gas-station-regular`</a>[![gas-station-regular](.github/resources/anchor.svg)](#gas-station-regular)|
|![gift-filled](icons/telefonica/filled/gift-filled.svg) |![gift-filled](icons/vivo-new/filled/gift-filled.svg) |![gift-filled](icons/o2-new/filled/gift-filled.svg) |![gift-filled](icons/o2/filled/gift-filled.svg) | |<a id='gift-filled'>`gift-filled`</a>[![gift-filled](.github/resources/anchor.svg)](#gift-filled)|
|![gift-light](icons/telefonica/light/gift-light.svg) |![gift-light](icons/vivo-new/light/gift-light.svg) |![gift-light](icons/o2-new/light/gift-light.svg) |![gift-light](icons/o2/light/gift-light.svg) | |<a id='gift-light'>`gift-light`</a>[![gift-light](.github/resources/anchor.svg)](#gift-light)|
|![gift-regular](icons/telefonica/regular/gift-regular.svg) |![gift-regular](icons/vivo-new/regular/gift-regular.svg) |![gift-regular](icons/o2-new/regular/gift-regular.svg) |![gift-regular](icons/o2/regular/gift-regular.svg) | |<a id='gift-regular'>`gift-regular`</a>[![gift-regular](.github/resources/anchor.svg)](#gift-regular)|
|![group-filled](icons/telefonica/filled/group-filled.svg) | | | | |<a id='group-filled'>`group-filled`</a>[![group-filled](.github/resources/anchor.svg)](#group-filled)|
|![group-light](icons/telefonica/light/group-light.svg) | | | | |<a id='group-light'>`group-light`</a>[![group-light](.github/resources/anchor.svg)](#group-light)|
|![group-regular](icons/telefonica/regular/group-regular.svg) | | | | |<a id='group-regular'>`group-regular`</a>[![group-regular](.github/resources/anchor.svg)](#group-regular)|
| | |![guarantee-filled](icons/o2-new/filled/guarantee-filled.svg) |![guarantee-filled](icons/o2/filled/guarantee-filled.svg) | |<a id='guarantee-filled'>`guarantee-filled`</a>[![guarantee-filled](.github/resources/anchor.svg)](#guarantee-filled)|
| | |![guarantee-light](icons/o2-new/light/guarantee-light.svg) |![guarantee-light](icons/o2/light/guarantee-light.svg) | |<a id='guarantee-light'>`guarantee-light`</a>[![guarantee-light](.github/resources/anchor.svg)](#guarantee-light)|
| | |![guarantee-regular](icons/o2-new/regular/guarantee-regular.svg) |![guarantee-regular](icons/o2/regular/guarantee-regular.svg) | |<a id='guarantee-regular'>`guarantee-regular`</a>[![guarantee-regular](.github/resources/anchor.svg)](#guarantee-regular)|
| | |![guru-filled](icons/o2-new/filled/guru-filled.svg) |![guru-filled](icons/o2/filled/guru-filled.svg) | |<a id='guru-filled'>`guru-filled`</a>[![guru-filled](.github/resources/anchor.svg)](#guru-filled)|
| | |![guru-light](icons/o2-new/light/guru-light.svg) |![guru-light](icons/o2/light/guru-light.svg) | |<a id='guru-light'>`guru-light`</a>[![guru-light](.github/resources/anchor.svg)](#guru-light)|
| | |![guru-regular](icons/o2-new/regular/guru-regular.svg) |![guru-regular](icons/o2/regular/guru-regular.svg) | |<a id='guru-regular'>`guru-regular`</a>[![guru-regular](.github/resources/anchor.svg)](#guru-regular)|
|![hamburger-filled](icons/telefonica/filled/hamburger-filled.svg) | | | | |<a id='hamburger-filled'>`hamburger-filled`</a>[![hamburger-filled](.github/resources/anchor.svg)](#hamburger-filled)|
|![hamburger-light](icons/telefonica/light/hamburger-light.svg) | | | | |<a id='hamburger-light'>`hamburger-light`</a>[![hamburger-light](.github/resources/anchor.svg)](#hamburger-light)|
|![hamburger-regular](icons/telefonica/regular/hamburger-regular.svg) | | | | |<a id='hamburger-regular'>`hamburger-regular`</a>[![hamburger-regular](.github/resources/anchor.svg)](#hamburger-regular)|
| | |![hand-connected-filled](icons/o2-new/filled/hand-connected-filled.svg) |![hand-connected-filled](icons/o2/filled/hand-connected-filled.svg) | |<a id='hand-connected-filled'>`hand-connected-filled`</a>[![hand-connected-filled](.github/resources/anchor.svg)](#hand-connected-filled)|
| | |![hand-connected-light](icons/o2-new/light/hand-connected-light.svg) |![hand-connected-light](icons/o2/light/hand-connected-light.svg) | |<a id='hand-connected-light'>`hand-connected-light`</a>[![hand-connected-light](.github/resources/anchor.svg)](#hand-connected-light)|
| | |![hand-connected-regular](icons/o2-new/regular/hand-connected-regular.svg) |![hand-connected-regular](icons/o2/regular/hand-connected-regular.svg) | |<a id='hand-connected-regular'>`hand-connected-regular`</a>[![hand-connected-regular](.github/resources/anchor.svg)](#hand-connected-regular)|
|![hand-down-filled](icons/telefonica/filled/hand-down-filled.svg) | | | | |<a id='hand-down-filled'>`hand-down-filled`</a>[![hand-down-filled](.github/resources/anchor.svg)](#hand-down-filled)|
|![hand-down-light](icons/telefonica/light/hand-down-light.svg) | | | | |<a id='hand-down-light'>`hand-down-light`</a>[![hand-down-light](.github/resources/anchor.svg)](#hand-down-light)|
|![hand-down-regular](icons/telefonica/regular/hand-down-regular.svg) | | | | |<a id='hand-down-regular'>`hand-down-regular`</a>[![hand-down-regular](.github/resources/anchor.svg)](#hand-down-regular)|
| | |![hand-free-filled](icons/o2-new/filled/hand-free-filled.svg) |![hand-free-filled](icons/o2/filled/hand-free-filled.svg) | |<a id='hand-free-filled'>`hand-free-filled`</a>[![hand-free-filled](.github/resources/anchor.svg)](#hand-free-filled)|
| | |![hand-free-light](icons/o2-new/light/hand-free-light.svg) |![hand-free-light](icons/o2/light/hand-free-light.svg) | |<a id='hand-free-light'>`hand-free-light`</a>[![hand-free-light](.github/resources/anchor.svg)](#hand-free-light)|
| | |![hand-free-regular](icons/o2-new/regular/hand-free-regular.svg) |![hand-free-regular](icons/o2/regular/hand-free-regular.svg) | |<a id='hand-free-regular'>`hand-free-regular`</a>[![hand-free-regular](.github/resources/anchor.svg)](#hand-free-regular)|
|![hand-left-filled](icons/telefonica/filled/hand-left-filled.svg) | | | | |<a id='hand-left-filled'>`hand-left-filled`</a>[![hand-left-filled](.github/resources/anchor.svg)](#hand-left-filled)|
|![hand-left-light](icons/telefonica/light/hand-left-light.svg) | | | | |<a id='hand-left-light'>`hand-left-light`</a>[![hand-left-light](.github/resources/anchor.svg)](#hand-left-light)|
|![hand-left-regular](icons/telefonica/regular/hand-left-regular.svg) | | | | |<a id='hand-left-regular'>`hand-left-regular`</a>[![hand-left-regular](.github/resources/anchor.svg)](#hand-left-regular)|
|![hand-right-filled](icons/telefonica/filled/hand-right-filled.svg) | | | | |<a id='hand-right-filled'>`hand-right-filled`</a>[![hand-right-filled](.github/resources/anchor.svg)](#hand-right-filled)|
|![hand-right-light](icons/telefonica/light/hand-right-light.svg) | | | | |<a id='hand-right-light'>`hand-right-light`</a>[![hand-right-light](.github/resources/anchor.svg)](#hand-right-light)|
|![hand-right-regular](icons/telefonica/regular/hand-right-regular.svg) | | | | |<a id='hand-right-regular'>`hand-right-regular`</a>[![hand-right-regular](.github/resources/anchor.svg)](#hand-right-regular)|
| | |![hand-snap-filled](icons/o2-new/filled/hand-snap-filled.svg) |![hand-snap-filled](icons/o2/filled/hand-snap-filled.svg) | |<a id='hand-snap-filled'>`hand-snap-filled`</a>[![hand-snap-filled](.github/resources/anchor.svg)](#hand-snap-filled)|
| | |![hand-snap-light](icons/o2-new/light/hand-snap-light.svg) |![hand-snap-light](icons/o2/light/hand-snap-light.svg) | |<a id='hand-snap-light'>`hand-snap-light`</a>[![hand-snap-light](.github/resources/anchor.svg)](#hand-snap-light)|
| | |![hand-snap-regular](icons/o2-new/regular/hand-snap-regular.svg) |![hand-snap-regular](icons/o2/regular/hand-snap-regular.svg) | |<a id='hand-snap-regular'>`hand-snap-regular`</a>[![hand-snap-regular](.github/resources/anchor.svg)](#hand-snap-regular)|
|![hand-up-filled](icons/telefonica/filled/hand-up-filled.svg) | | | | |<a id='hand-up-filled'>`hand-up-filled`</a>[![hand-up-filled](.github/resources/anchor.svg)](#hand-up-filled)|
|![hand-up-light](icons/telefonica/light/hand-up-light.svg) | | | | |<a id='hand-up-light'>`hand-up-light`</a>[![hand-up-light](.github/resources/anchor.svg)](#hand-up-light)|
|![hand-up-regular](icons/telefonica/regular/hand-up-regular.svg) | | | | |<a id='hand-up-regular'>`hand-up-regular`</a>[![hand-up-regular](.github/resources/anchor.svg)](#hand-up-regular)|
|![hard-disk-filled](icons/telefonica/filled/hard-disk-filled.svg) | | | | |<a id='hard-disk-filled'>`hard-disk-filled`</a>[![hard-disk-filled](.github/resources/anchor.svg)](#hard-disk-filled)|
|![hard-disk-light](icons/telefonica/light/hard-disk-light.svg) | | | | |<a id='hard-disk-light'>`hard-disk-light`</a>[![hard-disk-light](.github/resources/anchor.svg)](#hard-disk-light)|
|![hard-disk-regular](icons/telefonica/regular/hard-disk-regular.svg) | | | | |<a id='hard-disk-regular'>`hard-disk-regular`</a>[![hard-disk-regular](.github/resources/anchor.svg)](#hard-disk-regular)|
| | |![hd-filled](icons/o2-new/filled/hd-filled.svg) |![hd-filled](icons/o2/filled/hd-filled.svg) | |<a id='hd-filled'>`hd-filled`</a>[![hd-filled](.github/resources/anchor.svg)](#hd-filled)|
| | |![hd-light](icons/o2-new/light/hd-light.svg) |![hd-light](icons/o2/light/hd-light.svg) | |<a id='hd-light'>`hd-light`</a>[![hd-light](.github/resources/anchor.svg)](#hd-light)|
| | |![hd-regular](icons/o2-new/regular/hd-regular.svg) |![hd-regular](icons/o2/regular/hd-regular.svg) | |<a id='hd-regular'>`hd-regular`</a>[![hd-regular](.github/resources/anchor.svg)](#hd-regular)|
| | |![headphone-bluetooth-filled](icons/o2-new/filled/headphone-bluetooth-filled.svg) |![headphone-bluetooth-filled](icons/o2/filled/headphone-bluetooth-filled.svg) | |<a id='headphone-bluetooth-filled'>`headphone-bluetooth-filled`</a>[![headphone-bluetooth-filled](.github/resources/anchor.svg)](#headphone-bluetooth-filled)|
| | |![headphone-bluetooth-light](icons/o2-new/light/headphone-bluetooth-light.svg) |![headphone-bluetooth-light](icons/o2/light/headphone-bluetooth-light.svg) | |<a id='headphone-bluetooth-light'>`headphone-bluetooth-light`</a>[![headphone-bluetooth-light](.github/resources/anchor.svg)](#headphone-bluetooth-light)|
| | |![headphone-bluetooth-regular](icons/o2-new/regular/headphone-bluetooth-regular.svg) |![headphone-bluetooth-regular](icons/o2/regular/headphone-bluetooth-regular.svg) | |<a id='headphone-bluetooth-regular'>`headphone-bluetooth-regular`</a>[![headphone-bluetooth-regular](.github/resources/anchor.svg)](#headphone-bluetooth-regular)|
|![headphones-filled](icons/telefonica/filled/headphones-filled.svg) | |![headphones-filled](icons/o2-new/filled/headphones-filled.svg) |![headphones-filled](icons/o2/filled/headphones-filled.svg) | |<a id='headphones-filled'>`headphones-filled`</a>[![headphones-filled](.github/resources/anchor.svg)](#headphones-filled)|
|![headphones-light](icons/telefonica/light/headphones-light.svg) | |![headphones-light](icons/o2-new/light/headphones-light.svg) |![headphones-light](icons/o2/light/headphones-light.svg) | |<a id='headphones-light'>`headphones-light`</a>[![headphones-light](.github/resources/anchor.svg)](#headphones-light)|
|![headphones-regular](icons/telefonica/regular/headphones-regular.svg) | |![headphones-regular](icons/o2-new/regular/headphones-regular.svg) |![headphones-regular](icons/o2/regular/headphones-regular.svg) | |<a id='headphones-regular'>`headphones-regular`</a>[![headphones-regular](.github/resources/anchor.svg)](#headphones-regular)|
|![heart-bubble-filled](icons/telefonica/filled/heart-bubble-filled.svg) | | | | |<a id='heart-bubble-filled'>`heart-bubble-filled`</a>[![heart-bubble-filled](.github/resources/anchor.svg)](#heart-bubble-filled)|
|![heart-bubble-light](icons/telefonica/light/heart-bubble-light.svg) | | | | |<a id='heart-bubble-light'>`heart-bubble-light`</a>[![heart-bubble-light](.github/resources/anchor.svg)](#heart-bubble-light)|
|![heart-bubble-regular](icons/telefonica/regular/heart-bubble-regular.svg) | | | | |<a id='heart-bubble-regular'>`heart-bubble-regular`</a>[![heart-bubble-regular](.github/resources/anchor.svg)](#heart-bubble-regular)|
|![heart-filled](icons/telefonica/filled/heart-filled.svg) |![heart-filled](icons/vivo-new/filled/heart-filled.svg) |![heart-filled](icons/o2-new/filled/heart-filled.svg) |![heart-filled](icons/o2/filled/heart-filled.svg) | |<a id='heart-filled'>`heart-filled`</a>[![heart-filled](.github/resources/anchor.svg)](#heart-filled)|
|![heart-light](icons/telefonica/light/heart-light.svg) |![heart-light](icons/vivo-new/light/heart-light.svg) |![heart-light](icons/o2-new/light/heart-light.svg) |![heart-light](icons/o2/light/heart-light.svg) | |<a id='heart-light'>`heart-light`</a>[![heart-light](.github/resources/anchor.svg)](#heart-light)|
|![heart-regular](icons/telefonica/regular/heart-regular.svg) |![heart-regular](icons/vivo-new/regular/heart-regular.svg) |![heart-regular](icons/o2-new/regular/heart-regular.svg) |![heart-regular](icons/o2/regular/heart-regular.svg) | |<a id='heart-regular'>`heart-regular`</a>[![heart-regular](.github/resources/anchor.svg)](#heart-regular)|
| |![high-priority-filled](icons/vivo-new/filled/high-priority-filled.svg) | | | |<a id='high-priority-filled'>`high-priority-filled`</a>[![high-priority-filled](.github/resources/anchor.svg)](#high-priority-filled)|
| |![high-priority-light](icons/vivo-new/light/high-priority-light.svg) | | | |<a id='high-priority-light'>`high-priority-light`</a>[![high-priority-light](.github/resources/anchor.svg)](#high-priority-light)|
| |![high-priority-regular](icons/vivo-new/regular/high-priority-regular.svg) | | | |<a id='high-priority-regular'>`high-priority-regular`</a>[![high-priority-regular](.github/resources/anchor.svg)](#high-priority-regular)|
| | |![hockey-filled](icons/o2-new/filled/hockey-filled.svg) |![hockey-filled](icons/o2/filled/hockey-filled.svg) | |<a id='hockey-filled'>`hockey-filled`</a>[![hockey-filled](.github/resources/anchor.svg)](#hockey-filled)|
| | |![hockey-light](icons/o2-new/light/hockey-light.svg) |![hockey-light](icons/o2/light/hockey-light.svg) | |<a id='hockey-light'>`hockey-light`</a>[![hockey-light](.github/resources/anchor.svg)](#hockey-light)|
| | |![hockey-regular](icons/o2-new/regular/hockey-regular.svg) |![hockey-regular](icons/o2/regular/hockey-regular.svg) | |<a id='hockey-regular'>`hockey-regular`</a>[![hockey-regular](.github/resources/anchor.svg)](#hockey-regular)|
|![home-filled](icons/telefonica/filled/home-filled.svg) |![home-filled](icons/vivo-new/filled/home-filled.svg) |![home-filled](icons/o2-new/filled/home-filled.svg) |![home-filled](icons/o2/filled/home-filled.svg) | |<a id='home-filled'>`home-filled`</a>[![home-filled](.github/resources/anchor.svg)](#home-filled)|
|![home-light](icons/telefonica/light/home-light.svg) |![home-light](icons/vivo-new/light/home-light.svg) |![home-light](icons/o2-new/light/home-light.svg) |![home-light](icons/o2/light/home-light.svg) | |<a id='home-light'>`home-light`</a>[![home-light](.github/resources/anchor.svg)](#home-light)|
|![home-regular](icons/telefonica/regular/home-regular.svg) |![home-regular](icons/vivo-new/regular/home-regular.svg) |![home-regular](icons/o2-new/regular/home-regular.svg) |![home-regular](icons/o2/regular/home-regular.svg) |![home-regular](icons/blau/regular/home-regular.svg) |<a id='home-regular'>`home-regular`</a>[![home-regular](.github/resources/anchor.svg)](#home-regular)|
|![home-wifi-filled](icons/telefonica/filled/home-wifi-filled.svg) |![home-wifi-filled](icons/vivo-new/filled/home-wifi-filled.svg) | | | |<a id='home-wifi-filled'>`home-wifi-filled`</a>[![home-wifi-filled](.github/resources/anchor.svg)](#home-wifi-filled)|
|![home-wifi-light](icons/telefonica/light/home-wifi-light.svg) |![home-wifi-light](icons/vivo-new/light/home-wifi-light.svg) | | | |<a id='home-wifi-light'>`home-wifi-light`</a>[![home-wifi-light](.github/resources/anchor.svg)](#home-wifi-light)|
|![home-wifi-regular](icons/telefonica/regular/home-wifi-regular.svg) |![home-wifi-regular](icons/vivo-new/regular/home-wifi-regular.svg) | | | |<a id='home-wifi-regular'>`home-wifi-regular`</a>[![home-wifi-regular](.github/resources/anchor.svg)](#home-wifi-regular)|
| | |![homespot-filled](icons/o2-new/filled/homespot-filled.svg) |![homespot-filled](icons/o2/filled/homespot-filled.svg) | |<a id='homespot-filled'>`homespot-filled`</a>[![homespot-filled](.github/resources/anchor.svg)](#homespot-filled)|
| | |![homespot-light](icons/o2-new/light/homespot-light.svg) |![homespot-light](icons/o2/light/homespot-light.svg) | |<a id='homespot-light'>`homespot-light`</a>[![homespot-light](.github/resources/anchor.svg)](#homespot-light)|
| | |![homespot-regular](icons/o2-new/regular/homespot-regular.svg) |![homespot-regular](icons/o2/regular/homespot-regular.svg) | |<a id='homespot-regular'>`homespot-regular`</a>[![homespot-regular](.github/resources/anchor.svg)](#homespot-regular)|
|![hospital-filled](icons/telefonica/filled/hospital-filled.svg) | | | | |<a id='hospital-filled'>`hospital-filled`</a>[![hospital-filled](.github/resources/anchor.svg)](#hospital-filled)|
|![hospital-light](icons/telefonica/light/hospital-light.svg) | | | | |<a id='hospital-light'>`hospital-light`</a>[![hospital-light](.github/resources/anchor.svg)](#hospital-light)|
|![hospital-regular](icons/telefonica/regular/hospital-regular.svg) | | | | |<a id='hospital-regular'>`hospital-regular`</a>[![hospital-regular](.github/resources/anchor.svg)](#hospital-regular)|
|![hotel-filled](icons/telefonica/filled/hotel-filled.svg) | | | | |<a id='hotel-filled'>`hotel-filled`</a>[![hotel-filled](.github/resources/anchor.svg)](#hotel-filled)|
|![hotel-light](icons/telefonica/light/hotel-light.svg) | | | | |<a id='hotel-light'>`hotel-light`</a>[![hotel-light](.github/resources/anchor.svg)](#hotel-light)|
|![hotel-regular](icons/telefonica/regular/hotel-regular.svg) | | | | |<a id='hotel-regular'>`hotel-regular`</a>[![hotel-regular](.github/resources/anchor.svg)](#hotel-regular)|
| | |![hotline-filled](icons/o2-new/filled/hotline-filled.svg) |![hotline-filled](icons/o2/filled/hotline-filled.svg) | |<a id='hotline-filled'>`hotline-filled`</a>[![hotline-filled](.github/resources/anchor.svg)](#hotline-filled)|
| | |![hotline-light](icons/o2-new/light/hotline-light.svg) |![hotline-light](icons/o2/light/hotline-light.svg) | |<a id='hotline-light'>`hotline-light`</a>[![hotline-light](.github/resources/anchor.svg)](#hotline-light)|
| | |![hotline-regular](icons/o2-new/regular/hotline-regular.svg) |![hotline-regular](icons/o2/regular/hotline-regular.svg) | |<a id='hotline-regular'>`hotline-regular`</a>[![hotline-regular](.github/resources/anchor.svg)](#hotline-regular)|
|![id-card-filled](icons/telefonica/filled/id-card-filled.svg) | | | | |<a id='id-card-filled'>`id-card-filled`</a>[![id-card-filled](.github/resources/anchor.svg)](#id-card-filled)|
|![id-card-light](icons/telefonica/light/id-card-light.svg) | | | | |<a id='id-card-light'>`id-card-light`</a>[![id-card-light](.github/resources/anchor.svg)](#id-card-light)|
|![id-card-regular](icons/telefonica/regular/id-card-regular.svg) | | | | |<a id='id-card-regular'>`id-card-regular`</a>[![id-card-regular](.github/resources/anchor.svg)](#id-card-regular)|
|![image-filled](icons/telefonica/filled/image-filled.svg) | | | | |<a id='image-filled'>`image-filled`</a>[![image-filled](.github/resources/anchor.svg)](#image-filled)|
|![image-light](icons/telefonica/light/image-light.svg) | | | | |<a id='image-light'>`image-light`</a>[![image-light](.github/resources/anchor.svg)](#image-light)|
|![image-regular](icons/telefonica/regular/image-regular.svg) | | | | |<a id='image-regular'>`image-regular`</a>[![image-regular](.github/resources/anchor.svg)](#image-regular)|
| | |![import-filled](icons/o2-new/filled/import-filled.svg) |![import-filled](icons/o2/filled/import-filled.svg) | |<a id='import-filled'>`import-filled`</a>[![import-filled](.github/resources/anchor.svg)](#import-filled)|
|![import-light](icons/telefonica/light/import-light.svg) | |![import-light](icons/o2-new/light/import-light.svg) |![import-light](icons/o2/light/import-light.svg) | |<a id='import-light'>`import-light`</a>[![import-light](.github/resources/anchor.svg)](#import-light)|
|![import-regular](icons/telefonica/regular/import-regular.svg) | |![import-regular](icons/o2-new/regular/import-regular.svg) |![import-regular](icons/o2/regular/import-regular.svg) | |<a id='import-regular'>`import-regular`</a>[![import-regular](.github/resources/anchor.svg)](#import-regular)|
|![infinity-light](icons/telefonica/light/infinity-light.svg) | | | | |<a id='infinity-light'>`infinity-light`</a>[![infinity-light](.github/resources/anchor.svg)](#infinity-light)|
|![infinity-regular](icons/telefonica/regular/infinity-regular.svg) | | | | |<a id='infinity-regular'>`infinity-regular`</a>[![infinity-regular](.github/resources/anchor.svg)](#infinity-regular)|
|![information-regular](icons/telefonica/regular/information-regular.svg) | | | | |<a id='information-regular'>`information-regular`</a>[![information-regular](.github/resources/anchor.svg)](#information-regular)|
|![information-user-filled](icons/telefonica/filled/information-user-filled.svg) | |![information-user-filled](icons/o2-new/filled/information-user-filled.svg) |![information-user-filled](icons/o2/filled/information-user-filled.svg) | |<a id='information-user-filled'>`information-user-filled`</a>[![information-user-filled](.github/resources/anchor.svg)](#information-user-filled)|
|![information-user-light](icons/telefonica/light/information-user-light.svg) | |![information-user-light](icons/o2-new/light/information-user-light.svg) |![information-user-light](icons/o2/light/information-user-light.svg) | |<a id='information-user-light'>`information-user-light`</a>[![information-user-light](.github/resources/anchor.svg)](#information-user-light)|
|![information-user-regular](icons/telefonica/regular/information-user-regular.svg) | |![information-user-regular](icons/o2-new/regular/information-user-regular.svg) |![information-user-regular](icons/o2/regular/information-user-regular.svg) |![information-user-regular](icons/blau/regular/information-user-regular.svg) |<a id='information-user-regular'>`information-user-regular`</a>[![information-user-regular](.github/resources/anchor.svg)](#information-user-regular)|
| | |![internet-device-filled](icons/o2-new/filled/internet-device-filled.svg) |![internet-device-filled](icons/o2/filled/internet-device-filled.svg) | |<a id='internet-device-filled'>`internet-device-filled`</a>[![internet-device-filled](.github/resources/anchor.svg)](#internet-device-filled)|
| | |![internet-device-light](icons/o2-new/light/internet-device-light.svg) |![internet-device-light](icons/o2/light/internet-device-light.svg) | |<a id='internet-device-light'>`internet-device-light`</a>[![internet-device-light](.github/resources/anchor.svg)](#internet-device-light)|
| | |![internet-device-regular](icons/o2-new/regular/internet-device-regular.svg) |![internet-device-regular](icons/o2/regular/internet-device-regular.svg) | |<a id='internet-device-regular'>`internet-device-regular`</a>[![internet-device-regular](.github/resources/anchor.svg)](#internet-device-regular)|
|![internet-filled](icons/telefonica/filled/internet-filled.svg) | |![internet-filled](icons/o2-new/filled/internet-filled.svg) |![internet-filled](icons/o2/filled/internet-filled.svg) | |<a id='internet-filled'>`internet-filled`</a>[![internet-filled](.github/resources/anchor.svg)](#internet-filled)|
|![internet-light](icons/telefonica/light/internet-light.svg) | |![internet-light](icons/o2-new/light/internet-light.svg) |![internet-light](icons/o2/light/internet-light.svg) | |<a id='internet-light'>`internet-light`</a>[![internet-light](.github/resources/anchor.svg)](#internet-light)|
|![internet-pendrive-filled](icons/telefonica/filled/internet-pendrive-filled.svg) | | | | |<a id='internet-pendrive-filled'>`internet-pendrive-filled`</a>[![internet-pendrive-filled](.github/resources/anchor.svg)](#internet-pendrive-filled)|
|![internet-pendrive-light](icons/telefonica/light/internet-pendrive-light.svg) | | | | |<a id='internet-pendrive-light'>`internet-pendrive-light`</a>[![internet-pendrive-light](.github/resources/anchor.svg)](#internet-pendrive-light)|
|![internet-pendrive-regular](icons/telefonica/regular/internet-pendrive-regular.svg) | | | | |<a id='internet-pendrive-regular'>`internet-pendrive-regular`</a>[![internet-pendrive-regular](.github/resources/anchor.svg)](#internet-pendrive-regular)|
|![internet-regular](icons/telefonica/regular/internet-regular.svg) | |![internet-regular](icons/o2-new/regular/internet-regular.svg) |![internet-regular](icons/o2/regular/internet-regular.svg) |![internet-regular](icons/blau/regular/internet-regular.svg) |<a id='internet-regular'>`internet-regular`</a>[![internet-regular](.github/resources/anchor.svg)](#internet-regular)|
|![intranet-filled](icons/telefonica/filled/intranet-filled.svg) | |![intranet-filled](icons/o2-new/filled/intranet-filled.svg) |![intranet-filled](icons/o2/filled/intranet-filled.svg) | |<a id='intranet-filled'>`intranet-filled`</a>[![intranet-filled](.github/resources/anchor.svg)](#intranet-filled)|
|![intranet-light](icons/telefonica/light/intranet-light.svg) | |![intranet-light](icons/o2-new/light/intranet-light.svg) |![intranet-light](icons/o2/light/intranet-light.svg) | |<a id='intranet-light'>`intranet-light`</a>[![intranet-light](.github/resources/anchor.svg)](#intranet-light)|
|![intranet-regular](icons/telefonica/regular/intranet-regular.svg) | |![intranet-regular](icons/o2-new/regular/intranet-regular.svg) |![intranet-regular](icons/o2/regular/intranet-regular.svg) | |<a id='intranet-regular'>`intranet-regular`</a>[![intranet-regular](.github/resources/anchor.svg)](#intranet-regular)|
|![invoice-digital-filled](icons/telefonica/filled/invoice-digital-filled.svg) | | | | |<a id='invoice-digital-filled'>`invoice-digital-filled`</a>[![invoice-digital-filled](.github/resources/anchor.svg)](#invoice-digital-filled)|
|![invoice-digital-light](icons/telefonica/light/invoice-digital-light.svg) | | | | |<a id='invoice-digital-light'>`invoice-digital-light`</a>[![invoice-digital-light](.github/resources/anchor.svg)](#invoice-digital-light)|
|![invoice-digital-regular](icons/telefonica/regular/invoice-digital-regular.svg) | | | | |<a id='invoice-digital-regular'>`invoice-digital-regular`</a>[![invoice-digital-regular](.github/resources/anchor.svg)](#invoice-digital-regular)|
| | |![invoice-euro-filled](icons/o2-new/filled/invoice-euro-filled.svg) |![invoice-euro-filled](icons/o2/filled/invoice-euro-filled.svg) | |<a id='invoice-euro-filled'>`invoice-euro-filled`</a>[![invoice-euro-filled](.github/resources/anchor.svg)](#invoice-euro-filled)|
| | |![invoice-euro-light](icons/o2-new/light/invoice-euro-light.svg) |![invoice-euro-light](icons/o2/light/invoice-euro-light.svg) | |<a id='invoice-euro-light'>`invoice-euro-light`</a>[![invoice-euro-light](.github/resources/anchor.svg)](#invoice-euro-light)|
| | |![invoice-euro-regular](icons/o2-new/regular/invoice-euro-regular.svg) |![invoice-euro-regular](icons/o2/regular/invoice-euro-regular.svg) |![invoice-euro-regular](icons/blau/regular/invoice-euro-regular.svg) |<a id='invoice-euro-regular'>`invoice-euro-regular`</a>[![invoice-euro-regular](.github/resources/anchor.svg)](#invoice-euro-regular)|
|![invoice-plan-file-filled](icons/telefonica/filled/invoice-plan-file-filled.svg) | |![invoice-plan-file-filled](icons/o2-new/filled/invoice-plan-file-filled.svg) |![invoice-plan-file-filled](icons/o2/filled/invoice-plan-file-filled.svg) | |<a id='invoice-plan-file-filled'>`invoice-plan-file-filled`</a>[![invoice-plan-file-filled](.github/resources/anchor.svg)](#invoice-plan-file-filled)|
|![invoice-plan-file-light](icons/telefonica/light/invoice-plan-file-light.svg) | |![invoice-plan-file-light](icons/o2-new/light/invoice-plan-file-light.svg) |![invoice-plan-file-light](icons/o2/light/invoice-plan-file-light.svg) | |<a id='invoice-plan-file-light'>`invoice-plan-file-light`</a>[![invoice-plan-file-light](.github/resources/anchor.svg)](#invoice-plan-file-light)|
|![invoice-plan-file-regular](icons/telefonica/regular/invoice-plan-file-regular.svg) | |![invoice-plan-file-regular](icons/o2-new/regular/invoice-plan-file-regular.svg) |![invoice-plan-file-regular](icons/o2/regular/invoice-plan-file-regular.svg) |![invoice-plan-file-regular](icons/blau/regular/invoice-plan-file-regular.svg) |<a id='invoice-plan-file-regular'>`invoice-plan-file-regular`</a>[![invoice-plan-file-regular](.github/resources/anchor.svg)](#invoice-plan-file-regular)|
| | |![iot-sensor-co2-filled](icons/o2-new/filled/iot-sensor-co2-filled.svg) |![iot-sensor-co2-filled](icons/o2/filled/iot-sensor-co2-filled.svg) | |<a id='iot-sensor-co2-filled'>`iot-sensor-co2-filled`</a>[![iot-sensor-co2-filled](.github/resources/anchor.svg)](#iot-sensor-co2-filled)|
| | |![iot-sensor-co2-light](icons/o2-new/light/iot-sensor-co2-light.svg) |![iot-sensor-co2-light](icons/o2/light/iot-sensor-co2-light.svg) | |<a id='iot-sensor-co2-light'>`iot-sensor-co2-light`</a>[![iot-sensor-co2-light](.github/resources/anchor.svg)](#iot-sensor-co2-light)|
| | |![iot-sensor-co2-regular](icons/o2-new/regular/iot-sensor-co2-regular.svg) |![iot-sensor-co2-regular](icons/o2/regular/iot-sensor-co2-regular.svg) | |<a id='iot-sensor-co2-regular'>`iot-sensor-co2-regular`</a>[![iot-sensor-co2-regular](.github/resources/anchor.svg)](#iot-sensor-co2-regular)|
| | |![iot-sensor-humidity-filled](icons/o2-new/filled/iot-sensor-humidity-filled.svg) |![iot-sensor-humidity-filled](icons/o2/filled/iot-sensor-humidity-filled.svg) | |<a id='iot-sensor-humidity-filled'>`iot-sensor-humidity-filled`</a>[![iot-sensor-humidity-filled](.github/resources/anchor.svg)](#iot-sensor-humidity-filled)|
| | |![iot-sensor-humidity-light](icons/o2-new/light/iot-sensor-humidity-light.svg) |![iot-sensor-humidity-light](icons/o2/light/iot-sensor-humidity-light.svg) | |<a id='iot-sensor-humidity-light'>`iot-sensor-humidity-light`</a>[![iot-sensor-humidity-light](.github/resources/anchor.svg)](#iot-sensor-humidity-light)|
| | |![iot-sensor-humidity-regular](icons/o2-new/regular/iot-sensor-humidity-regular.svg) |![iot-sensor-humidity-regular](icons/o2/regular/iot-sensor-humidity-regular.svg) | |<a id='iot-sensor-humidity-regular'>`iot-sensor-humidity-regular`</a>[![iot-sensor-humidity-regular](.github/resources/anchor.svg)](#iot-sensor-humidity-regular)|
| | |![iot-sensor-temperature-filled](icons/o2-new/filled/iot-sensor-temperature-filled.svg) |![iot-sensor-temperature-filled](icons/o2/filled/iot-sensor-temperature-filled.svg) | |<a id='iot-sensor-temperature-filled'>`iot-sensor-temperature-filled`</a>[![iot-sensor-temperature-filled](.github/resources/anchor.svg)](#iot-sensor-temperature-filled)|
| | |![iot-sensor-temperature-light](icons/o2-new/light/iot-sensor-temperature-light.svg) |![iot-sensor-temperature-light](icons/o2/light/iot-sensor-temperature-light.svg) | |<a id='iot-sensor-temperature-light'>`iot-sensor-temperature-light`</a>[![iot-sensor-temperature-light](.github/resources/anchor.svg)](#iot-sensor-temperature-light)|
| | |![iot-sensor-temperature-regular](icons/o2-new/regular/iot-sensor-temperature-regular.svg) |![iot-sensor-temperature-regular](icons/o2/regular/iot-sensor-temperature-regular.svg) | |<a id='iot-sensor-temperature-regular'>`iot-sensor-temperature-regular`</a>[![iot-sensor-temperature-regular](.github/resources/anchor.svg)](#iot-sensor-temperature-regular)|
|![justice-filled](icons/telefonica/filled/justice-filled.svg) | |![justice-filled](icons/o2-new/filled/justice-filled.svg) |![justice-filled](icons/o2/filled/justice-filled.svg) | |<a id='justice-filled'>`justice-filled`</a>[![justice-filled](.github/resources/anchor.svg)](#justice-filled)|
|![justice-light](icons/telefonica/light/justice-light.svg) | |![justice-light](icons/o2-new/light/justice-light.svg) |![justice-light](icons/o2/light/justice-light.svg) | |<a id='justice-light'>`justice-light`</a>[![justice-light](.github/resources/anchor.svg)](#justice-light)|
|![justice-regular](icons/telefonica/regular/justice-regular.svg) | |![justice-regular](icons/o2-new/regular/justice-regular.svg) |![justice-regular](icons/o2/regular/justice-regular.svg) | |<a id='justice-regular'>`justice-regular`</a>[![justice-regular](.github/resources/anchor.svg)](#justice-regular)|
|![kebab-menu-light](icons/telefonica/light/kebab-menu-light.svg) | | | | |<a id='kebab-menu-light'>`kebab-menu-light`</a>[![kebab-menu-light](.github/resources/anchor.svg)](#kebab-menu-light)|
|![key-filled](icons/telefonica/filled/key-filled.svg) | | | | |<a id='key-filled'>`key-filled`</a>[![key-filled](.github/resources/anchor.svg)](#key-filled)|
|![key-light](icons/telefonica/light/key-light.svg) | | | | |<a id='key-light'>`key-light`</a>[![key-light](.github/resources/anchor.svg)](#key-light)|
|![key-regular](icons/telefonica/regular/key-regular.svg) | | | | |<a id='key-regular'>`key-regular`</a>[![key-regular](.github/resources/anchor.svg)](#key-regular)|
| | |![keyboard-filled](icons/o2-new/filled/keyboard-filled.svg) |![keyboard-filled](icons/o2/filled/keyboard-filled.svg) | |<a id='keyboard-filled'>`keyboard-filled`</a>[![keyboard-filled](.github/resources/anchor.svg)](#keyboard-filled)|
| | |![keyboard-light](icons/o2-new/light/keyboard-light.svg) |![keyboard-light](icons/o2/light/keyboard-light.svg) | |<a id='keyboard-light'>`keyboard-light`</a>[![keyboard-light](.github/resources/anchor.svg)](#keyboard-light)|
| | |![keyboard-regular](icons/o2-new/regular/keyboard-regular.svg) |![keyboard-regular](icons/o2/regular/keyboard-regular.svg) | |<a id='keyboard-regular'>`keyboard-regular`</a>[![keyboard-regular](.github/resources/anchor.svg)](#keyboard-regular)|
| | |![landline-filled](icons/o2-new/filled/landline-filled.svg) |![landline-filled](icons/o2/filled/landline-filled.svg) | |<a id='landline-filled'>`landline-filled`</a>[![landline-filled](.github/resources/anchor.svg)](#landline-filled)|
| | |![landline-light](icons/o2-new/light/landline-light.svg) |![landline-light](icons/o2/light/landline-light.svg) | |<a id='landline-light'>`landline-light`</a>[![landline-light](.github/resources/anchor.svg)](#landline-light)|
| | |![landline-regular](icons/o2-new/regular/landline-regular.svg) |![landline-regular](icons/o2/regular/landline-regular.svg) | |<a id='landline-regular'>`landline-regular`</a>[![landline-regular](.github/resources/anchor.svg)](#landline-regular)|
| | |![language-filled](icons/o2-new/filled/language-filled.svg) |![language-filled](icons/o2/filled/language-filled.svg) | |<a id='language-filled'>`language-filled`</a>[![language-filled](.github/resources/anchor.svg)](#language-filled)|
| | |![language-light](icons/o2-new/light/language-light.svg) |![language-light](icons/o2/light/language-light.svg) | |<a id='language-light'>`language-light`</a>[![language-light](.github/resources/anchor.svg)](#language-light)|
| | |![language-regular](icons/o2-new/regular/language-regular.svg) |![language-regular](icons/o2/regular/language-regular.svg) | |<a id='language-regular'>`language-regular`</a>[![language-regular](.github/resources/anchor.svg)](#language-regular)|
|![laptop-charging-filled](icons/telefonica/filled/laptop-charging-filled.svg) | | | | |<a id='laptop-charging-filled'>`laptop-charging-filled`</a>[![laptop-charging-filled](.github/resources/anchor.svg)](#laptop-charging-filled)|
|![laptop-charging-light](icons/telefonica/light/laptop-charging-light.svg) | | | | |<a id='laptop-charging-light'>`laptop-charging-light`</a>[![laptop-charging-light](.github/resources/anchor.svg)](#laptop-charging-light)|
| | |![laptop-check-filled](icons/o2-new/filled/laptop-check-filled.svg) |![laptop-check-filled](icons/o2/filled/laptop-check-filled.svg) | |<a id='laptop-check-filled'>`laptop-check-filled`</a>[![laptop-check-filled](.github/resources/anchor.svg)](#laptop-check-filled)|
| | |![laptop-check-light](icons/o2-new/light/laptop-check-light.svg) |![laptop-check-light](icons/o2/light/laptop-check-light.svg) | |<a id='laptop-check-light'>`laptop-check-light`</a>[![laptop-check-light](.github/resources/anchor.svg)](#laptop-check-light)|
| | |![laptop-check-regular](icons/o2-new/regular/laptop-check-regular.svg) |![laptop-check-regular](icons/o2/regular/laptop-check-regular.svg) | |<a id='laptop-check-regular'>`laptop-check-regular`</a>[![laptop-check-regular](.github/resources/anchor.svg)](#laptop-check-regular)|
| | |![laptop-filled](icons/o2-new/filled/laptop-filled.svg) |![laptop-filled](icons/o2/filled/laptop-filled.svg) | |<a id='laptop-filled'>`laptop-filled`</a>[![laptop-filled](.github/resources/anchor.svg)](#laptop-filled)|
| | |![laptop-goto-filled](icons/o2-new/filled/laptop-goto-filled.svg) |![laptop-goto-filled](icons/o2/filled/laptop-goto-filled.svg) | |<a id='laptop-goto-filled'>`laptop-goto-filled`</a>[![laptop-goto-filled](.github/resources/anchor.svg)](#laptop-goto-filled)|
| | |![laptop-goto-light](icons/o2-new/light/laptop-goto-light.svg) |![laptop-goto-light](icons/o2/light/laptop-goto-light.svg) | |<a id='laptop-goto-light'>`laptop-goto-light`</a>[![laptop-goto-light](.github/resources/anchor.svg)](#laptop-goto-light)|
| | |![laptop-goto-regular](icons/o2-new/regular/laptop-goto-regular.svg) |![laptop-goto-regular](icons/o2/regular/laptop-goto-regular.svg) | |<a id='laptop-goto-regular'>`laptop-goto-regular`</a>[![laptop-goto-regular](.github/resources/anchor.svg)](#laptop-goto-regular)|
| | |![laptop-light](icons/o2-new/light/laptop-light.svg) |![laptop-light](icons/o2/light/laptop-light.svg) | |<a id='laptop-light'>`laptop-light`</a>[![laptop-light](.github/resources/anchor.svg)](#laptop-light)|
| | |![laptop-regular](icons/o2-new/regular/laptop-regular.svg) | | |<a id='laptop-regular'>`laptop-regular`</a>[![laptop-regular](.github/resources/anchor.svg)](#laptop-regular)|
|![layers-filled](icons/telefonica/filled/layers-filled.svg) | | | | |<a id='layers-filled'>`layers-filled`</a>[![layers-filled](.github/resources/anchor.svg)](#layers-filled)|
|![layers-light](icons/telefonica/light/layers-light.svg) | | | | |<a id='layers-light'>`layers-light`</a>[![layers-light](.github/resources/anchor.svg)](#layers-light)|
|![layers-regular](icons/telefonica/regular/layers-regular.svg) | | | | |<a id='layers-regular'>`layers-regular`</a>[![layers-regular](.github/resources/anchor.svg)](#layers-regular)|
|![learn-data-filled](icons/telefonica/filled/learn-data-filled.svg) | | | | |<a id='learn-data-filled'>`learn-data-filled`</a>[![learn-data-filled](.github/resources/anchor.svg)](#learn-data-filled)|
|![learn-data-light](icons/telefonica/light/learn-data-light.svg) | | | | |<a id='learn-data-light'>`learn-data-light`</a>[![learn-data-light](.github/resources/anchor.svg)](#learn-data-light)|
|![learn-data-regular](icons/telefonica/regular/learn-data-regular.svg) | | | | |<a id='learn-data-regular'>`learn-data-regular`</a>[![learn-data-regular](.github/resources/anchor.svg)](#learn-data-regular)|
| | |![lidar-filled](icons/o2-new/filled/lidar-filled.svg) |![lidar-filled](icons/o2/filled/lidar-filled.svg) | |<a id='lidar-filled'>`lidar-filled`</a>[![lidar-filled](.github/resources/anchor.svg)](#lidar-filled)|
| | |![lidar-light](icons/o2-new/light/lidar-light.svg) |![lidar-light](icons/o2/light/lidar-light.svg) | |<a id='lidar-light'>`lidar-light`</a>[![lidar-light](.github/resources/anchor.svg)](#lidar-light)|
| | |![lidar-regular](icons/o2-new/regular/lidar-regular.svg) |![lidar-regular](icons/o2/regular/lidar-regular.svg) | |<a id='lidar-regular'>`lidar-regular`</a>[![lidar-regular](.github/resources/anchor.svg)](#lidar-regular)|
|![lifeguard-float-filled](icons/telefonica/filled/lifeguard-float-filled.svg) | | | | |<a id='lifeguard-float-filled'>`lifeguard-float-filled`</a>[![lifeguard-float-filled](.github/resources/anchor.svg)](#lifeguard-float-filled)|
|![lifeguard-float-light](icons/telefonica/light/lifeguard-float-light.svg) | | | | |<a id='lifeguard-float-light'>`lifeguard-float-light`</a>[![lifeguard-float-light](.github/resources/anchor.svg)](#lifeguard-float-light)|
|![lifeguard-float-regular](icons/telefonica/regular/lifeguard-float-regular.svg) | | | | |<a id='lifeguard-float-regular'>`lifeguard-float-regular`</a>[![lifeguard-float-regular](.github/resources/anchor.svg)](#lifeguard-float-regular)|
| | |![lifts-filled](icons/o2-new/filled/lifts-filled.svg) |![lifts-filled](icons/o2/filled/lifts-filled.svg) | |<a id='lifts-filled'>`lifts-filled`</a>[![lifts-filled](.github/resources/anchor.svg)](#lifts-filled)|
| | |![lifts-light](icons/o2-new/light/lifts-light.svg) |![lifts-light](icons/o2/light/lifts-light.svg) | |<a id='lifts-light'>`lifts-light`</a>[![lifts-light](.github/resources/anchor.svg)](#lifts-light)|
| | |![lifts-regular](icons/o2-new/regular/lifts-regular.svg) |![lifts-regular](icons/o2/regular/lifts-regular.svg) | |<a id='lifts-regular'>`lifts-regular`</a>[![lifts-regular](.github/resources/anchor.svg)](#lifts-regular)|
| |![light-switch-regular](icons/vivo-new/regular/light-switch-regular.svg) | | | |<a id='light-switch-regular'>`light-switch-regular`</a>[![light-switch-regular](.github/resources/anchor.svg)](#light-switch-regular)|
|![lightbulb-filled](icons/telefonica/filled/lightbulb-filled.svg) | |![lightbulb-filled](icons/o2-new/filled/lightbulb-filled.svg) |![lightbulb-filled](icons/o2/filled/lightbulb-filled.svg) | |<a id='lightbulb-filled'>`lightbulb-filled`</a>[![lightbulb-filled](.github/resources/anchor.svg)](#lightbulb-filled)|
|![lightbulb-light](icons/telefonica/light/lightbulb-light.svg) | |![lightbulb-light](icons/o2-new/light/lightbulb-light.svg) |![lightbulb-light](icons/o2/light/lightbulb-light.svg) | |<a id='lightbulb-light'>`lightbulb-light`</a>[![lightbulb-light](.github/resources/anchor.svg)](#lightbulb-light)|
|![lightbulb-regular](icons/telefonica/regular/lightbulb-regular.svg) |![lightbulb-regular](icons/vivo-new/regular/lightbulb-regular.svg) |![lightbulb-regular](icons/o2-new/regular/lightbulb-regular.svg) |![lightbulb-regular](icons/o2/regular/lightbulb-regular.svg) | |<a id='lightbulb-regular'>`lightbulb-regular`</a>[![lightbulb-regular](.github/resources/anchor.svg)](#lightbulb-regular)|
|![lightning-filled](icons/telefonica/filled/lightning-filled.svg) | | | | |<a id='lightning-filled'>`lightning-filled`</a>[![lightning-filled](.github/resources/anchor.svg)](#lightning-filled)|
|![lightning-light](icons/telefonica/light/lightning-light.svg) | | | | |<a id='lightning-light'>`lightning-light`</a>[![lightning-light](.github/resources/anchor.svg)](#lightning-light)|
|![lightning-regular](icons/telefonica/regular/lightning-regular.svg) | | | | |<a id='lightning-regular'>`lightning-regular`</a>[![lightning-regular](.github/resources/anchor.svg)](#lightning-regular)|
|![link-filled](icons/telefonica/filled/link-filled.svg) | | | | |<a id='link-filled'>`link-filled`</a>[![link-filled](.github/resources/anchor.svg)](#link-filled)|
|![link-regular](icons/telefonica/regular/link-regular.svg) | | | | |<a id='link-regular'>`link-regular`</a>[![link-regular](.github/resources/anchor.svg)](#link-regular)|
|![list-document-filled](icons/telefonica/filled/list-document-filled.svg) | |![list-document-filled](icons/o2-new/filled/list-document-filled.svg) |![list-document-filled](icons/o2/filled/list-document-filled.svg) | |<a id='list-document-filled'>`list-document-filled`</a>[![list-document-filled](.github/resources/anchor.svg)](#list-document-filled)|
|![list-document-light](icons/telefonica/light/list-document-light.svg) | |![list-document-light](icons/o2-new/light/list-document-light.svg) |![list-document-light](icons/o2/light/list-document-light.svg) | |<a id='list-document-light'>`list-document-light`</a>[![list-document-light](.github/resources/anchor.svg)](#list-document-light)|
|![list-document-regular](icons/telefonica/regular/list-document-regular.svg) | |![list-document-regular](icons/o2-new/regular/list-document-regular.svg) |![list-document-regular](icons/o2/regular/list-document-regular.svg) | |<a id='list-document-regular'>`list-document-regular`</a>[![list-document-regular](.github/resources/anchor.svg)](#list-document-regular)|
| | |![list-filled](icons/o2-new/filled/list-filled.svg) |![list-filled](icons/o2/filled/list-filled.svg) | |<a id='list-filled'>`list-filled`</a>[![list-filled](.github/resources/anchor.svg)](#list-filled)|
|![list-light](icons/telefonica/light/list-light.svg) | |![list-light](icons/o2-new/light/list-light.svg) |![list-light](icons/o2/light/list-light.svg) | |<a id='list-light'>`list-light`</a>[![list-light](.github/resources/anchor.svg)](#list-light)|
|![list-regular](icons/telefonica/regular/list-regular.svg) | |![list-regular](icons/o2-new/regular/list-regular.svg) |![list-regular](icons/o2/regular/list-regular.svg) | |<a id='list-regular'>`list-regular`</a>[![list-regular](.github/resources/anchor.svg)](#list-regular)|
| |![loan-filled](icons/vivo-new/filled/loan-filled.svg) | | | |<a id='loan-filled'>`loan-filled`</a>[![loan-filled](.github/resources/anchor.svg)](#loan-filled)|
| |![loan-light](icons/vivo-new/light/loan-light.svg) | | | |<a id='loan-light'>`loan-light`</a>[![loan-light](.github/resources/anchor.svg)](#loan-light)|
| |![loan-regular](icons/vivo-new/regular/loan-regular.svg) | | | |<a id='loan-regular'>`loan-regular`</a>[![loan-regular](.github/resources/anchor.svg)](#loan-regular)|
|![location-filled](icons/telefonica/filled/location-filled.svg) | |![location-filled](icons/o2-new/filled/location-filled.svg) |![location-filled](icons/o2/filled/location-filled.svg) | |<a id='location-filled'>`location-filled`</a>[![location-filled](.github/resources/anchor.svg)](#location-filled)|
|![location-light](icons/telefonica/light/location-light.svg) | |![location-light](icons/o2-new/light/location-light.svg) |![location-light](icons/o2/light/location-light.svg) | |<a id='location-light'>`location-light`</a>[![location-light](.github/resources/anchor.svg)](#location-light)|
|![location-map-filled](icons/telefonica/filled/location-map-filled.svg) | |![location-map-filled](icons/o2-new/filled/location-map-filled.svg) |![location-map-filled](icons/o2/filled/location-map-filled.svg) | |<a id='location-map-filled'>`location-map-filled`</a>[![location-map-filled](.github/resources/anchor.svg)](#location-map-filled)|
|![location-map-light](icons/telefonica/light/location-map-light.svg) | |![location-map-light](icons/o2-new/light/location-map-light.svg) |![location-map-light](icons/o2/light/location-map-light.svg) | |<a id='location-map-light'>`location-map-light`</a>[![location-map-light](.github/resources/anchor.svg)](#location-map-light)|
|![location-map-regular](icons/telefonica/regular/location-map-regular.svg) | |![location-map-regular](icons/o2-new/regular/location-map-regular.svg) |![location-map-regular](icons/o2/regular/location-map-regular.svg) | |<a id='location-map-regular'>`location-map-regular`</a>[![location-map-regular](.github/resources/anchor.svg)](#location-map-regular)|
|![location-regular](icons/telefonica/regular/location-regular.svg) | |![location-regular](icons/o2-new/regular/location-regular.svg) |![location-regular](icons/o2/regular/location-regular.svg) | |<a id='location-regular'>`location-regular`</a>[![location-regular](.github/resources/anchor.svg)](#location-regular)|
|![lock-closed-filled](icons/telefonica/filled/lock-closed-filled.svg) | |![lock-closed-filled](icons/o2-new/filled/lock-closed-filled.svg) |![lock-closed-filled](icons/o2/filled/lock-closed-filled.svg) | |<a id='lock-closed-filled'>`lock-closed-filled`</a>[![lock-closed-filled](.github/resources/anchor.svg)](#lock-closed-filled)|
|![lock-closed-light](icons/telefonica/light/lock-closed-light.svg) | |![lock-closed-light](icons/o2-new/light/lock-closed-light.svg) |![lock-closed-light](icons/o2/light/lock-closed-light.svg) | |<a id='lock-closed-light'>`lock-closed-light`</a>[![lock-closed-light](.github/resources/anchor.svg)](#lock-closed-light)|