diff --git a/.github/md-generator/generate_markdown.py b/.github/md-generator/generate_markdown.py
index fc3f053db7..3fdfb1e825 100644
--- a/.github/md-generator/generate_markdown.py
+++ b/.github/md-generator/generate_markdown.py
@@ -241,22 +241,22 @@ def main(root_folder):
icon_data = process_icon_sets(folders, all_concepts)
bars = generate_bar_representation(icon_data, all_concepts)
- markdown_content = ""
+ readme_content = ""
# Add documentation
documentation = "![Mistica Icons](.github/resources/mistica-icons-light.svg#gh-light-mode-only)" + BREAK + "![Mistica Icons](.github/resources/mistica-icons-dark.svg#gh-dark-mode-only)" + BREAK + BREAK + "Mística Icons is a multibrand icon system that contains all icons that is working in [Mistica Design System](https://github.com/Telefonica/mistica) now. " + BREAK + BREAK + "Mistica support [Brand Factory icons](https://brandfactory.telefonica.com/document/1086#/nuestra-identidad/iconos). This set of icons are a big list of different icons and style that Brand Team worked to be used through Telefonica applications." + BREAK + BREAK + "If you have any question, please you can ask directly in the app of Microsoft Teams, in [Mistica Team](https://teams.microsoft.com/l/team/19%3ad2e3607a32ec411b8bf492f43cd0fe0c%40thread.tacv2/conversations?groupId=e265fe99-929f-45d1-8154-699649674a40&tenantId=9744600e-3e04-492e-baa1-25ec245c6f10). " + \
BREAK + BREAK + "## Documentation" + BREAK + BREAK + "### Develop" + BREAK + BREAK + "#### iOS and Android" + BREAK + BREAK + "You can get .pdf or .svg files from this repo." + BREAK + BREAK + "#### Web" + BREAK + BREAK + \
"Visit [Mistica Storybook](https://mistica-web.vercel.app/?path=/story/icons-catalog--catalog) to get all the detail about using Mistica Icons Library" + BREAK + BREAK + "### Design" + BREAK + BREAK + "Use Mística icons library in Figma!" + BREAK + BREAK
- markdown_content += documentation + BREAK
+ readme_content += documentation + BREAK
- markdown_content += "## Equivalence status\n\n"
+ readme_content += "## Equivalence status\n\n"
for bar in bars:
- markdown_content += bar + "\n"
- markdown_content += " " + BREAK
+ readme_content += bar + "\n"
+ readme_content += " " + BREAK
# Add equivalence status table
markdown_table = generate_markdown_table(icon_data, folders)
- markdown_content += markdown_table + "\n"
+ readme_content += markdown_table + "\n"
legend = (
"**Concepts**: Counts the different names of icons in the set excluding any variations in style or weight. "
@@ -272,14 +272,25 @@ def main(root_folder):
"**Missing**: Missing icons with respect to other sets."
)
- markdown_content += legend + "\n"
-
- markdown_content += "## Icon equivalence\n\n"
+ icon_table_readme = (
+ "## Icon table equivalence\n\n"
+ + "This table shows the equivalence of icons between the different brands.\n\n"
+ + "[View icon table →](ICON_TABLE.md)\n\n"
+ + "[![Icon Table Preview](.github/resources/icon_table.png)](ICON_TABLE.md)"
+ )
+ readme_content += legend + "\n\n" + icon_table_readme + "\n\n"
+
+
+ icon_table_content = ""
+ icon_table_content += "# Icon table equivalence\n\n"
icon_table_output = generate_icon_table(root_folder)
- markdown_content += icon_table_output + "\n"
+ icon_table_content += icon_table_output + "\n"
with open("./README.md", "w") as file:
- file.write(markdown_content)
+ file.write(readme_content)
+
+ with open("./ICON_TABLE.md", "w") as file:
+ file.write(icon_table_content)
if __name__ == "__main__":
root_folder = "icons"
diff --git a/.github/resources/icon_table.png b/.github/resources/icon_table.png
new file mode 100644
index 0000000000..9364b35a76
Binary files /dev/null and b/.github/resources/icon_table.png differ
diff --git a/.github/workflows/figma-export.yml b/.github/workflows/figma-export.yml
index 20829f23be..4de0380ff1 100644
--- a/.github/workflows/figma-export.yml
+++ b/.github/workflows/figma-export.yml
@@ -126,7 +126,7 @@ jobs:
pr_title: "Update Figma icons"
pr_body: "
New version of icons exported from [Mistica Icons](${{env.MISTICA_ICONS_FILE_URL}}), [O2](${{env.O2_FILE_URL}}), [O2-new](${{env.O2_NEW_FILE_URL}}), [Blau](${{env.BLAU_FILE_URL}}) & [Vivo](${{env.VIVO_FILE_URL}}) \n
- - [ ] [Review readme import-figma-icons](https://github.com/Telefonica/mistica-icons/tree/import-figma-icons)"
+ - [ ] [Review icon table in import-figma-icons](https://github.com/Telefonica/mistica-icons/tree/import-figma-icons)"
pr_draft: ${{ github.event.inputs.draft }}
github_token: ${{ secrets.NOVUM_PRIVATE_REPOS }}
@@ -197,7 +197,7 @@ jobs:
pr_title: "Update Mística icons"
pr_body: "
New version of icons exported from [Mistica Icons](${{env.MISTICA_ICONS_FILE_URL}}) \n
- - [ ] [Review readme import-figma-icons](https://github.com/Telefonica/mistica-icons/tree/import-figma-icons)"
+ - [ ] [Review icon table in import-figma-icons](https://github.com/Telefonica/mistica-icons/tree/import-figma-icons)"
pr_draft: ${{ github.event.inputs.draft }}
github_token: ${{ secrets.NOVUM_PRIVATE_REPOS }}
@@ -268,7 +268,7 @@ jobs:
pr_title: "Update O2 icons"
pr_body: "
New version of icons exported from [O2](${{env.O2_FILE_URL}}) \n
- - [ ] [Review readme import-figma-icons](https://github.com/Telefonica/mistica-icons/tree/import-figma-icons)"
+ - [ ] [Review icon table in import-figma-icons](https://github.com/Telefonica/mistica-icons/tree/import-figma-icons)"
pr_draft: ${{ github.event.inputs.draft }}
github_token: ${{ secrets.NOVUM_PRIVATE_REPOS }}
@@ -339,7 +339,7 @@ jobs:
pr_title: "Update O2-new icons"
pr_body: "
New version of icons exported from [O2-new](${{env.O2_FILE_URL}}) \n
- - [ ] [Review readme import-figma-icons](https://github.com/Telefonica/mistica-icons/tree/import-figma-icons)"
+ - [ ] [Review icon table in import-figma-icons](https://github.com/Telefonica/mistica-icons/tree/import-figma-icons)"
pr_draft: ${{ github.event.inputs.draft }}
github_token: ${{ secrets.NOVUM_PRIVATE_REPOS }}
@@ -408,7 +408,7 @@ jobs:
pr_title: "Update Blau icons"
pr_body: "
New version of icons exported from [Blau](${{env.BLAU_FILE_URL}}) \n
- - [ ] [Review readme import-figma-icons](https://github.com/Telefonica/mistica-icons/tree/import-figma-icons)"
+ - [ ] [Review icon table in import-figma-icons](https://github.com/Telefonica/mistica-icons/tree/import-figma-icons)"
pr_draft: ${{ github.event.inputs.draft }}
github_token: ${{ secrets.NOVUM_PRIVATE_REPOS }}
@@ -479,12 +479,12 @@ jobs:
pr_title: "Update Vivo icons"
pr_body: "
New version of icons exported from [Vivo](${{env.VIVO_FILE_URL}}) \n
- - [ ] [Review readme import-figma-icons](https://github.com/Telefonica/mistica-icons/tree/import-figma-icons)"
+ - [ ] [Review icon table in import-figma-icons](https://github.com/Telefonica/mistica-icons/tree/import-figma-icons)"
pr_draft: ${{ github.event.inputs.draft }}
github_token: ${{ secrets.NOVUM_PRIVATE_REPOS }}
# pr_body: "
# New version of icons exported from [Mistica Icons][mistica-icons] & [O2][o2-icons] n\
-# - [ ] [Review readme import-figma-icons][readme] n\
+# - [ ] [Review icon table in import-figma-icons][readme] n\
# [mistica-icons]: https://www.figma.com/file/${{env.TELEFONICA_FIGMA_ID}}/Mistica'-Icons?node-id=0%3A71 n\
# [o2-icons]: https://www.figma.com/file/${{env.O2_FIGMA_ID}}/?node-id=611%3A3298 n\
diff --git a/ICON_TABLE.md b/ICON_TABLE.md
new file mode 100644
index 0000000000..4505bd122d
--- /dev/null
+++ b/ICON_TABLE.md
@@ -0,0 +1,1751 @@
+# Icon table equivalence
+
+
+| telefonica | vivo-new | o2-new | o2 | blau | icon name |
+| :---: | :---: | :---: | :---: | :---: |:--- |
+| | | | |![2g-filled](icons/blau/filled/2g-filled.svg) |`2g-filled`[![2g-filled](.github/resources/anchor.svg)](#2g-filled)|
+| | | | |![2g-regular](icons/blau/regular/2g-regular.svg) |`2g-regular`[![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) | |`3d-view-filled`[![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) | |`3d-view-light`[![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) | |`3d-view-regular`[![3d-view-regular](.github/resources/anchor.svg)](#3d-view-regular)|
+| | | | |![3g-filled](icons/blau/filled/3g-filled.svg) |`3g-filled`[![3g-filled](.github/resources/anchor.svg)](#3g-filled)|
+| | | | |![3g-regular](icons/blau/regular/3g-regular.svg) |`3g-regular`[![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) |`4g-filled`[![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) | |`4g-light`[![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) |`4g-regular`[![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) |`5g-filled`[![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) | |`5g-light`[![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) |`5g-regular`[![5g-regular](.github/resources/anchor.svg)](#5g-regular)|
+|![academic-filled](icons/telefonica/filled/academic-filled.svg) | | | | |`academic-filled`[![academic-filled](.github/resources/anchor.svg)](#academic-filled)|
+|![academic-light](icons/telefonica/light/academic-light.svg) | | | | |`academic-light`[![academic-light](.github/resources/anchor.svg)](#academic-light)|
+|![academic-regular](icons/telefonica/regular/academic-regular.svg) | | | | |`academic-regular`[![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) | |`accessories-filled`[![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) | |`accessories-light`[![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) | |`accessories-regular`[![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) | |`add-bill-euro-filled`[![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) | |`add-bill-euro-light`[![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) | |`add-bill-euro-regular`[![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) | |`add-bill-pound-filled`[![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) | |`add-bill-pound-light`[![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) | |`add-bill-pound-regular`[![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) | |`add-bolton-filled`[![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) | |`add-bolton-light`[![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) | |`add-bolton-regular`[![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) | |`add-more-circle-filled`[![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) | |`add-more-circle-light`[![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) |`add-more-circle-regular`[![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) | |`add-more-filled`[![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) | |`add-more-light`[![add-more-light](.github/resources/anchor.svg)](#add-more-light)|
+|![add-more-location-filled](icons/telefonica/filled/add-more-location-filled.svg) | | | | |`add-more-location-filled`[![add-more-location-filled](.github/resources/anchor.svg)](#add-more-location-filled)|
+|![add-more-location-regular](icons/telefonica/regular/add-more-location-regular.svg) | | | | |`add-more-location-regular`[![add-more-location-regular](.github/resources/anchor.svg)](#add-more-location-regular)|
+|![add-more-query-filled](icons/telefonica/filled/add-more-query-filled.svg) | | | | |`add-more-query-filled`[![add-more-query-filled](.github/resources/anchor.svg)](#add-more-query-filled)|
+|![add-more-query-light](icons/telefonica/light/add-more-query-light.svg) | | | | |`add-more-query-light`[![add-more-query-light](.github/resources/anchor.svg)](#add-more-query-light)|
+|![add-more-query-regular](icons/telefonica/regular/add-more-query-regular.svg) | | | | |`add-more-query-regular`[![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) |`add-more-regular`[![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) | |`add-phone-filled`[![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) | |`add-phone-light`[![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) | |`add-phone-regular`[![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) | |`airtime-filled`[![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) | |`airtime-light`[![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) | |`airtime-regular`[![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) | |`alarm-clock-filled`[![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) | |`alarm-clock-light`[![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) | |`alarm-clock-regular`[![alarm-clock-regular](.github/resources/anchor.svg)](#alarm-clock-regular)|
+|![alarm-light-cross-filled](icons/telefonica/filled/alarm-light-cross-filled.svg) | | | | |`alarm-light-cross-filled`[![alarm-light-cross-filled](.github/resources/anchor.svg)](#alarm-light-cross-filled)|
+|![alarm-light-cross-light](icons/telefonica/light/alarm-light-cross-light.svg) | | | | |`alarm-light-cross-light`[![alarm-light-cross-light](.github/resources/anchor.svg)](#alarm-light-cross-light)|
+|![alarm-light-cross-regular](icons/telefonica/regular/alarm-light-cross-regular.svg) | | | | |`alarm-light-cross-regular`[![alarm-light-cross-regular](.github/resources/anchor.svg)](#alarm-light-cross-regular)|
+|![alarm-light-filled](icons/telefonica/filled/alarm-light-filled.svg) | | | | |`alarm-light-filled`[![alarm-light-filled](.github/resources/anchor.svg)](#alarm-light-filled)|
+|![alarm-light-light](icons/telefonica/light/alarm-light-light.svg) | | | | |`alarm-light-light`[![alarm-light-light](.github/resources/anchor.svg)](#alarm-light-light)|
+|![alarm-light-regular](icons/telefonica/regular/alarm-light-regular.svg) | | | | |`alarm-light-regular`[![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) | |`alert-filled`[![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) | |`alert-light`[![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) | |`alert-regular`[![alert-regular](.github/resources/anchor.svg)](#alert-regular)|
+|![ambulance-filled](icons/telefonica/filled/ambulance-filled.svg) | | | | |`ambulance-filled`[![ambulance-filled](.github/resources/anchor.svg)](#ambulance-filled)|
+|![ambulance-light](icons/telefonica/light/ambulance-light.svg) | | | | |`ambulance-light`[![ambulance-light](.github/resources/anchor.svg)](#ambulance-light)|
+|![ambulance-regular](icons/telefonica/regular/ambulance-regular.svg) | | | | |`ambulance-regular`[![ambulance-regular](.github/resources/anchor.svg)](#ambulance-regular)|
+| |![amplifier-signal-filled](icons/vivo-new/filled/amplifier-signal-filled.svg) | | | |`amplifier-signal-filled`[![amplifier-signal-filled](.github/resources/anchor.svg)](#amplifier-signal-filled)|
+| |![amplifier-signal-light](icons/vivo-new/light/amplifier-signal-light.svg) | | | |`amplifier-signal-light`[![amplifier-signal-light](.github/resources/anchor.svg)](#amplifier-signal-light)|
+| |![amplifier-signal-regular](icons/vivo-new/regular/amplifier-signal-regular.svg) | | | |`amplifier-signal-regular`[![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) | |`angel-filled`[![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) | |`angel-light`[![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) | |`angel-regular`[![angel-regular](.github/resources/anchor.svg)](#angel-regular)|
+|![antenna-filled](icons/telefonica/filled/antenna-filled.svg) | | | | |`antenna-filled`[![antenna-filled](.github/resources/anchor.svg)](#antenna-filled)|
+|![antenna-light](icons/telefonica/light/antenna-light.svg) | | | | |`antenna-light`[![antenna-light](.github/resources/anchor.svg)](#antenna-light)|
+|![antenna-regular](icons/telefonica/regular/antenna-regular.svg) | | | | |`antenna-regular`[![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) | |`apartment-building-filled`[![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) | |`apartment-building-light`[![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) | |`apartment-building-regular`[![apartment-building-regular](.github/resources/anchor.svg)](#apartment-building-regular)|
+|![api-filled](icons/telefonica/filled/api-filled.svg) | | | | |`api-filled`[![api-filled](.github/resources/anchor.svg)](#api-filled)|
+|![api-light](icons/telefonica/light/api-light.svg) | | | | |`api-light`[![api-light](.github/resources/anchor.svg)](#api-light)|
+|![api-regular](icons/telefonica/regular/api-regular.svg) | | | | |`api-regular`[![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) | |`app-icon-filled`[![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) | |`app-icon-light`[![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) | |`app-icon-regular`[![app-icon-regular](.github/resources/anchor.svg)](#app-icon-regular)|
+|![appointment-filled](icons/telefonica/filled/appointment-filled.svg) | | | | |`appointment-filled`[![appointment-filled](.github/resources/anchor.svg)](#appointment-filled)|
+|![appointment-light](icons/telefonica/light/appointment-light.svg) | | | | |`appointment-light`[![appointment-light](.github/resources/anchor.svg)](#appointment-light)|
+|![appointment-regular](icons/telefonica/regular/appointment-regular.svg) | | | | |`appointment-regular`[![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) | |`apps-business-filled`[![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) | |`apps-business-light`[![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) | |`apps-business-regular`[![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) | |`apps-filled`[![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) | |`apps-light`[![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) | |`apps-regular`[![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) | |`arrow-down-filled`[![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) | |`arrow-down-left-filled`[![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) | |`arrow-down-left-light`[![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) | |`arrow-down-left-regular`[![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) | |`arrow-down-light`[![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) | |`arrow-down-regular`[![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) | |`arrow-down-right-filled`[![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) | |`arrow-down-right-light`[![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) | |`arrow-down-right-regular`[![arrow-down-right-regular](.github/resources/anchor.svg)](#arrow-down-right-regular)|
+|![arrow-drop-down-filled](icons/telefonica/filled/arrow-drop-down-filled.svg) | | | | |`arrow-drop-down-filled`[![arrow-drop-down-filled](.github/resources/anchor.svg)](#arrow-drop-down-filled)|
+|![arrow-drop-up-filled](icons/telefonica/filled/arrow-drop-up-filled.svg) | | | | |`arrow-drop-up-filled`[![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) | |`arrow-left-filled`[![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) | |`arrow-left-light`[![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) | |`arrow-left-regular`[![arrow-left-regular](.github/resources/anchor.svg)](#arrow-left-regular)|
+|![arrow-line-down-left-light](icons/telefonica/light/arrow-line-down-left-light.svg) | | | | |`arrow-line-down-left-light`[![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) | | | | |`arrow-line-down-left-regular`[![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) | | | | |`arrow-line-down-light`[![arrow-line-down-light](.github/resources/anchor.svg)](#arrow-line-down-light)|
+|![arrow-line-down-regular](icons/telefonica/regular/arrow-line-down-regular.svg) | | | | |`arrow-line-down-regular`[![arrow-line-down-regular](.github/resources/anchor.svg)](#arrow-line-down-regular)|
+|![arrow-line-left-light](icons/telefonica/light/arrow-line-left-light.svg) | | | | |`arrow-line-left-light`[![arrow-line-left-light](.github/resources/anchor.svg)](#arrow-line-left-light)|
+|![arrow-line-left-regular](icons/telefonica/regular/arrow-line-left-regular.svg) | | | | |`arrow-line-left-regular`[![arrow-line-left-regular](.github/resources/anchor.svg)](#arrow-line-left-regular)|
+|![arrow-line-right-light](icons/telefonica/light/arrow-line-right-light.svg) | | | | |`arrow-line-right-light`[![arrow-line-right-light](.github/resources/anchor.svg)](#arrow-line-right-light)|
+|![arrow-line-right-regular](icons/telefonica/regular/arrow-line-right-regular.svg) | | | | |`arrow-line-right-regular`[![arrow-line-right-regular](.github/resources/anchor.svg)](#arrow-line-right-regular)|
+|![arrow-line-up-light](icons/telefonica/light/arrow-line-up-light.svg) | | | | |`arrow-line-up-light`[![arrow-line-up-light](.github/resources/anchor.svg)](#arrow-line-up-light)|
+|![arrow-line-up-regular](icons/telefonica/regular/arrow-line-up-regular.svg) | | | | |`arrow-line-up-regular`[![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) | | | | |`arrow-line-up-right-light`[![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) | | | | |`arrow-line-up-right-regular`[![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) | |`arrow-right-filled`[![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) | |`arrow-right-light`[![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) | |`arrow-right-regular`[![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) | |`arrow-up-down-filled`[![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) | |`arrow-up-down-light`[![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) |`arrow-up-down-regular`[![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) | |`arrow-up-filled`[![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) | |`arrow-up-left-filled`[![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) | |`arrow-up-left-light`[![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) |`arrow-up-left-regular`[![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) | |`arrow-up-light`[![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) |`arrow-up-regular`[![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) | |`arrow-up-right-filled`[![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) | |`arrow-up-right-light`[![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) | |`arrow-up-right-regular`[![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) | |`arrows-left-and-right-filled`[![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) | |`arrows-left-and-right-light`[![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) | |`arrows-left-and-right-regular`[![arrows-left-and-right-regular](.github/resources/anchor.svg)](#arrows-left-and-right-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) | |`audio-filled`[![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) | |`audio-light`[![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) | |`audio-regular`[![audio-regular](.github/resources/anchor.svg)](#audio-regular)|
+|![aura-filled](icons/telefonica/filled/aura-filled.svg) | | | | |`aura-filled`[![aura-filled](.github/resources/anchor.svg)](#aura-filled)|
+|![authentication-failure-filled](icons/telefonica/filled/authentication-failure-filled.svg) | | | | |`authentication-failure-filled`[![authentication-failure-filled](.github/resources/anchor.svg)](#authentication-failure-filled)|
+|![authentication-failure-regular](icons/telefonica/regular/authentication-failure-regular.svg) | | | | |`authentication-failure-regular`[![authentication-failure-regular](.github/resources/anchor.svg)](#authentication-failure-regular)|
+|![authentication-success-filled](icons/telefonica/filled/authentication-success-filled.svg) | | | | |`authentication-success-filled`[![authentication-success-filled](.github/resources/anchor.svg)](#authentication-success-filled)|
+|![authentication-success-light](icons/telefonica/light/authentication-success-light.svg) | | | | |`authentication-success-light`[![authentication-success-light](.github/resources/anchor.svg)](#authentication-success-light)|
+|![authentication-success-regular](icons/telefonica/regular/authentication-success-regular.svg) | | | | |`authentication-success-regular`[![authentication-success-regular](.github/resources/anchor.svg)](#authentication-success-regular)|
+|![bacteria-filled](icons/telefonica/filled/bacteria-filled.svg) | | | | |`bacteria-filled`[![bacteria-filled](.github/resources/anchor.svg)](#bacteria-filled)|
+|![bacteria-light](icons/telefonica/light/bacteria-light.svg) | | | | |`bacteria-light`[![bacteria-light](.github/resources/anchor.svg)](#bacteria-light)|
+|![bacteria-regular](icons/telefonica/regular/bacteria-regular.svg) | | | | |`bacteria-regular`[![bacteria-regular](.github/resources/anchor.svg)](#bacteria-regular)|
+|![balance-filled](icons/telefonica/filled/balance-filled.svg) | | | | |`balance-filled`[![balance-filled](.github/resources/anchor.svg)](#balance-filled)|
+|![balance-light](icons/telefonica/light/balance-light.svg) | | | | |`balance-light`[![balance-light](.github/resources/anchor.svg)](#balance-light)|
+|![balance-regular](icons/telefonica/regular/balance-regular.svg) | | | | |`balance-regular`[![balance-regular](.github/resources/anchor.svg)](#balance-regular)|
+|![band-aid-filled](icons/telefonica/filled/band-aid-filled.svg) | | | | |`band-aid-filled`[![band-aid-filled](.github/resources/anchor.svg)](#band-aid-filled)|
+|![band-aid-light](icons/telefonica/light/band-aid-light.svg) | | | | |`band-aid-light`[![band-aid-light](.github/resources/anchor.svg)](#band-aid-light)|
+|![band-aid-regular](icons/telefonica/regular/band-aid-regular.svg) | | | | |`band-aid-regular`[![band-aid-regular](.github/resources/anchor.svg)](#band-aid-regular)|
+|![bar-chart-filled](icons/telefonica/filled/bar-chart-filled.svg) | | | | |`bar-chart-filled`[![bar-chart-filled](.github/resources/anchor.svg)](#bar-chart-filled)|
+|![bar-chart-light](icons/telefonica/light/bar-chart-light.svg) | | | | |`bar-chart-light`[![bar-chart-light](.github/resources/anchor.svg)](#bar-chart-light)|
+|![bar-chart-regular](icons/telefonica/regular/bar-chart-regular.svg) | | | | |`bar-chart-regular`[![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) | |`barcode-filled`[![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) | |`barcode-light`[![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) | |`barcode-regular`[![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) | |`battery-charging-filled`[![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) | |`battery-charging-light`[![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) | |`battery-charging-regular`[![battery-charging-regular](.github/resources/anchor.svg)](#battery-charging-regular)|
+|![battery-full-filled](icons/telefonica/filled/battery-full-filled.svg) | | | | |`battery-full-filled`[![battery-full-filled](.github/resources/anchor.svg)](#battery-full-filled)|
+|![battery-full-regular](icons/telefonica/regular/battery-full-regular.svg) | | | | |`battery-full-regular`[![battery-full-regular](.github/resources/anchor.svg)](#battery-full-regular)|
+|![battery-light](icons/telefonica/light/battery-light.svg) | | | | |`battery-light`[![battery-light](.github/resources/anchor.svg)](#battery-light)|
+|![battery-low-filled](icons/telefonica/filled/battery-low-filled.svg) | | | | |`battery-low-filled`[![battery-low-filled](.github/resources/anchor.svg)](#battery-low-filled)|
+|![battery-low-regular](icons/telefonica/regular/battery-low-regular.svg) | | | | |`battery-low-regular`[![battery-low-regular](.github/resources/anchor.svg)](#battery-low-regular)|
+|![battery-medium-filled](icons/telefonica/filled/battery-medium-filled.svg) | | | | |`battery-medium-filled`[![battery-medium-filled](.github/resources/anchor.svg)](#battery-medium-filled)|
+|![battery-medium-regular](icons/telefonica/regular/battery-medium-regular.svg) | | | | |`battery-medium-regular`[![battery-medium-regular](.github/resources/anchor.svg)](#battery-medium-regular)|
+|![battery-regular](icons/telefonica/regular/battery-regular.svg) | | | | |`battery-regular`[![battery-regular](.github/resources/anchor.svg)](#battery-regular)|
+|![beach-umbrella-filled](icons/telefonica/filled/beach-umbrella-filled.svg) | | | | |`beach-umbrella-filled`[![beach-umbrella-filled](.github/resources/anchor.svg)](#beach-umbrella-filled)|
+|![beach-umbrella-light](icons/telefonica/light/beach-umbrella-light.svg) | | | | |`beach-umbrella-light`[![beach-umbrella-light](.github/resources/anchor.svg)](#beach-umbrella-light)|
+|![beach-umbrella-regular](icons/telefonica/regular/beach-umbrella-regular.svg) | | | | |`beach-umbrella-regular`[![beach-umbrella-regular](.github/resources/anchor.svg)](#beach-umbrella-regular)|
+|![bell-add-more-filled](icons/telefonica/filled/bell-add-more-filled.svg) | | | | |`bell-add-more-filled`[![bell-add-more-filled](.github/resources/anchor.svg)](#bell-add-more-filled)|
+|![bell-add-more-light](icons/telefonica/light/bell-add-more-light.svg) | | | | |`bell-add-more-light`[![bell-add-more-light](.github/resources/anchor.svg)](#bell-add-more-light)|
+|![bell-add-more-regular](icons/telefonica/regular/bell-add-more-regular.svg) | | | | |`bell-add-more-regular`[![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) | |`bell-filled`[![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) | |`bell-light`[![bell-light](.github/resources/anchor.svg)](#bell-light)|
+|![bell-off-filled](icons/telefonica/filled/bell-off-filled.svg) | | | | |`bell-off-filled`[![bell-off-filled](.github/resources/anchor.svg)](#bell-off-filled)|
+|![bell-off-light](icons/telefonica/light/bell-off-light.svg) | | | | |`bell-off-light`[![bell-off-light](.github/resources/anchor.svg)](#bell-off-light)|
+|![bell-off-regular](icons/telefonica/regular/bell-off-regular.svg) | | | | |`bell-off-regular`[![bell-off-regular](.github/resources/anchor.svg)](#bell-off-regular)|
+|![bell-program-filled](icons/telefonica/filled/bell-program-filled.svg) | | | | |`bell-program-filled`[![bell-program-filled](.github/resources/anchor.svg)](#bell-program-filled)|
+|![bell-program-light](icons/telefonica/light/bell-program-light.svg) | | | | |`bell-program-light`[![bell-program-light](.github/resources/anchor.svg)](#bell-program-light)|
+|![bell-program-regular](icons/telefonica/regular/bell-program-regular.svg) | | | | |`bell-program-regular`[![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) |`bell-regular`[![bell-regular](.github/resources/anchor.svg)](#bell-regular)|
+|![bicycle-bike-filled](icons/telefonica/filled/bicycle-bike-filled.svg) | | | | |`bicycle-bike-filled`[![bicycle-bike-filled](.github/resources/anchor.svg)](#bicycle-bike-filled)|
+|![bicycle-bike-light](icons/telefonica/light/bicycle-bike-light.svg) | | | | |`bicycle-bike-light`[![bicycle-bike-light](.github/resources/anchor.svg)](#bicycle-bike-light)|
+|![bicycle-bike-regular](icons/telefonica/regular/bicycle-bike-regular.svg) | | | | |`bicycle-bike-regular`[![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) | |`bill-invoice-pound-filled`[![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) | |`bill-invoice-pound-light`[![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) | |`bill-invoice-pound-regular`[![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) | |`bill-queries-euro-filled`[![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) | |`bill-queries-euro-light`[![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) | |`bill-queries-euro-regular`[![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) | |`bill-queries-pound-filled`[![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) | |`bill-queries-pound-light`[![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) | |`bill-queries-pound-regular`[![bill-queries-pound-regular](.github/resources/anchor.svg)](#bill-queries-pound-regular)|
+|![blog-filled](icons/telefonica/filled/blog-filled.svg) | | | | |`blog-filled`[![blog-filled](.github/resources/anchor.svg)](#blog-filled)|
+|![blog-light](icons/telefonica/light/blog-light.svg) | | | | |`blog-light`[![blog-light](.github/resources/anchor.svg)](#blog-light)|
+|![blog-regular](icons/telefonica/regular/blog-regular.svg) | | | | |`blog-regular`[![blog-regular](.github/resources/anchor.svg)](#blog-regular)|
+|![boat-filled](icons/telefonica/filled/boat-filled.svg) | | | | |`boat-filled`[![boat-filled](.github/resources/anchor.svg)](#boat-filled)|
+|![boat-light](icons/telefonica/light/boat-light.svg) | | | | |`boat-light`[![boat-light](.github/resources/anchor.svg)](#boat-light)|
+|![boat-regular](icons/telefonica/regular/boat-regular.svg) | | | | |`boat-regular`[![boat-regular](.github/resources/anchor.svg)](#boat-regular)|
+|![book-filled](icons/telefonica/filled/book-filled.svg) | | | | |`book-filled`[![book-filled](.github/resources/anchor.svg)](#book-filled)|
+|![book-light](icons/telefonica/light/book-light.svg) | | | | |`book-light`[![book-light](.github/resources/anchor.svg)](#book-light)|
+|![book-regular](icons/telefonica/regular/book-regular.svg) | | | | |`book-regular`[![book-regular](.github/resources/anchor.svg)](#book-regular)|
+|![bookmark-filled](icons/telefonica/filled/bookmark-filled.svg) | | | | |`bookmark-filled`[![bookmark-filled](.github/resources/anchor.svg)](#bookmark-filled)|
+|![bookmark-light](icons/telefonica/light/bookmark-light.svg) | | | | |`bookmark-light`[![bookmark-light](.github/resources/anchor.svg)](#bookmark-light)|
+|![bookmark-regular](icons/telefonica/regular/bookmark-regular.svg) | | | | |`bookmark-regular`[![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) | |`box-filled`[![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) | |`box-light`[![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) | |`box-location-filled`[![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) | |`box-location-light`[![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) | |`box-location-regular`[![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) | |`box-regular`[![box-regular](.github/resources/anchor.svg)](#box-regular)|
+| |![box-star-filled](icons/vivo-new/filled/box-star-filled.svg) | | | |`box-star-filled`[![box-star-filled](.github/resources/anchor.svg)](#box-star-filled)|
+| |![box-star-light](icons/vivo-new/light/box-star-light.svg) | | | |`box-star-light`[![box-star-light](.github/resources/anchor.svg)](#box-star-light)|
+| |![box-star-regular](icons/vivo-new/regular/box-star-regular.svg) | | | |`box-star-regular`[![box-star-regular](.github/resources/anchor.svg)](#box-star-regular)|
+|![brain-filled](icons/telefonica/filled/brain-filled.svg) | | | | |`brain-filled`[![brain-filled](.github/resources/anchor.svg)](#brain-filled)|
+|![brain-light](icons/telefonica/light/brain-light.svg) | | | | |`brain-light`[![brain-light](.github/resources/anchor.svg)](#brain-light)|
+|![brain-regular](icons/telefonica/regular/brain-regular.svg) | | | | |`brain-regular`[![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) | |`briefcase-business-filled`[![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) | |`briefcase-business-light`[![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) | |`briefcase-business-regular`[![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) | |`briefcase-filled`[![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) | |`briefcase-light`[![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) |`briefcase-regular`[![briefcase-regular](.github/resources/anchor.svg)](#briefcase-regular)|
+|![broadband-filled](icons/telefonica/filled/broadband-filled.svg) | | | | |`broadband-filled`[![broadband-filled](.github/resources/anchor.svg)](#broadband-filled)|
+|![broadband-light](icons/telefonica/light/broadband-light.svg) | | | | |`broadband-light`[![broadband-light](.github/resources/anchor.svg)](#broadband-light)|
+|![broadband-regular](icons/telefonica/regular/broadband-regular.svg) | | | | |`broadband-regular`[![broadband-regular](.github/resources/anchor.svg)](#broadband-regular)|
+|![bug-filled](icons/telefonica/filled/bug-filled.svg) | | | | |`bug-filled`[![bug-filled](.github/resources/anchor.svg)](#bug-filled)|
+|![bug-light](icons/telefonica/light/bug-light.svg) | | | | |`bug-light`[![bug-light](.github/resources/anchor.svg)](#bug-light)|
+|![bug-regular](icons/telefonica/regular/bug-regular.svg) | | | | |`bug-regular`[![bug-regular](.github/resources/anchor.svg)](#bug-regular)|
+|![bus-filled](icons/telefonica/filled/bus-filled.svg) | | | | |`bus-filled`[![bus-filled](.github/resources/anchor.svg)](#bus-filled)|
+|![bus-light](icons/telefonica/light/bus-light.svg) | | | | |`bus-light`[![bus-light](.github/resources/anchor.svg)](#bus-light)|
+|![bus-regular](icons/telefonica/regular/bus-regular.svg) | | | | |`bus-regular`[![bus-regular](.github/resources/anchor.svg)](#bus-regular)|
+|![buy-data-filled](icons/telefonica/filled/buy-data-filled.svg) | | | | |`buy-data-filled`[![buy-data-filled](.github/resources/anchor.svg)](#buy-data-filled)|
+|![buy-data-light](icons/telefonica/light/buy-data-light.svg) | | | | |`buy-data-light`[![buy-data-light](.github/resources/anchor.svg)](#buy-data-light)|
+|![buy-data-regular](icons/telefonica/regular/buy-data-regular.svg) | | | | |`buy-data-regular`[![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) | |`buy-devices-filled`[![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) | |`buy-devices-light`[![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) | |`buy-devices-regular`[![buy-devices-regular](.github/resources/anchor.svg)](#buy-devices-regular)|
+|![buy-home-products-filled](icons/telefonica/filled/buy-home-products-filled.svg) | | | | |`buy-home-products-filled`[![buy-home-products-filled](.github/resources/anchor.svg)](#buy-home-products-filled)|
+|![buy-home-products-light](icons/telefonica/light/buy-home-products-light.svg) | | | | |`buy-home-products-light`[![buy-home-products-light](.github/resources/anchor.svg)](#buy-home-products-light)|
+|![buy-home-products-regular](icons/telefonica/regular/buy-home-products-regular.svg) | | | | |`buy-home-products-regular`[![buy-home-products-regular](.github/resources/anchor.svg)](#buy-home-products-regular)|
+|![buy-plans-filled](icons/telefonica/filled/buy-plans-filled.svg) | | | | |`buy-plans-filled`[![buy-plans-filled](.github/resources/anchor.svg)](#buy-plans-filled)|
+|![buy-plans-light](icons/telefonica/light/buy-plans-light.svg) | | | | |`buy-plans-light`[![buy-plans-light](.github/resources/anchor.svg)](#buy-plans-light)|
+|![buy-plans-regular](icons/telefonica/regular/buy-plans-regular.svg) | | | | |`buy-plans-regular`[![buy-plans-regular](.github/resources/anchor.svg)](#buy-plans-regular)|
+|![cafe-filled](icons/telefonica/filled/cafe-filled.svg) | | | | |`cafe-filled`[![cafe-filled](.github/resources/anchor.svg)](#cafe-filled)|
+|![cafe-light](icons/telefonica/light/cafe-light.svg) | | | | |`cafe-light`[![cafe-light](.github/resources/anchor.svg)](#cafe-light)|
+|![cafe-regular](icons/telefonica/regular/cafe-regular.svg) | | | | |`cafe-regular`[![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) | |`calendar-euro-filled`[![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) | |`calendar-euro-light`[![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) | |`calendar-euro-regular`[![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) | |`calendar-filled`[![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) | |`calendar-light`[![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) | |`calendar-pound-filled`[![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) | |`calendar-pound-light`[![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) | |`calendar-pound-regular`[![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) | |`calendar-regular`[![calendar-regular](.github/resources/anchor.svg)](#calendar-regular)|
+|![call-details-filled](icons/telefonica/filled/call-details-filled.svg) | | | | |`call-details-filled`[![call-details-filled](.github/resources/anchor.svg)](#call-details-filled)|
+|![call-details-light](icons/telefonica/light/call-details-light.svg) | | | | |`call-details-light`[![call-details-light](.github/resources/anchor.svg)](#call-details-light)|
+|![call-details-regular](icons/telefonica/regular/call-details-regular.svg) | | | | |`call-details-regular`[![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) | |`call-landline-filled`[![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) | |`call-landline-light`[![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) |`call-landline-regular`[![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) | |`callback-filled`[![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) | |`callback-light`[![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) | |`callback-regular`[![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) | |`cancel-filled`[![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) | |`cancel-light`[![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) |`cancel-regular`[![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) | |`cancellation-filled`[![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) | |`cancellation-light`[![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) | |`cancellation-regular`[![cancellation-regular](.github/resources/anchor.svg)](#cancellation-regular)|
+|![car-filled](icons/telefonica/filled/car-filled.svg) | | | | |`car-filled`[![car-filled](.github/resources/anchor.svg)](#car-filled)|
+|![car-light](icons/telefonica/light/car-light.svg) | | | | |`car-light`[![car-light](.github/resources/anchor.svg)](#car-light)|
+|![car-moving-filled](icons/telefonica/filled/car-moving-filled.svg) | | | | |`car-moving-filled`[![car-moving-filled](.github/resources/anchor.svg)](#car-moving-filled)|
+|![car-moving-light](icons/telefonica/light/car-moving-light.svg) | | | | |`car-moving-light`[![car-moving-light](.github/resources/anchor.svg)](#car-moving-light)|
+|![car-moving-regular](icons/telefonica/regular/car-moving-regular.svg) | | | | |`car-moving-regular`[![car-moving-regular](.github/resources/anchor.svg)](#car-moving-regular)|
+|![car-regular](icons/telefonica/regular/car-regular.svg) | | | | |`car-regular`[![car-regular](.github/resources/anchor.svg)](#car-regular)|
+|![car-with-clock-filled](icons/telefonica/filled/car-with-clock-filled.svg) | | | | |`car-with-clock-filled`[![car-with-clock-filled](.github/resources/anchor.svg)](#car-with-clock-filled)|
+|![car-with-clock-light](icons/telefonica/light/car-with-clock-light.svg) | | | | |`car-with-clock-light`[![car-with-clock-light](.github/resources/anchor.svg)](#car-with-clock-light)|
+|![car-with-clock-regular](icons/telefonica/regular/car-with-clock-regular.svg) | | | | |`car-with-clock-regular`[![car-with-clock-regular](.github/resources/anchor.svg)](#car-with-clock-regular)|
+| |![care-bike-regular](icons/vivo-new/regular/care-bike-regular.svg) | | | |`care-bike-regular`[![care-bike-regular](.github/resources/anchor.svg)](#care-bike-regular)|
+| |![care-briefcase-regular](icons/vivo-new/regular/care-briefcase-regular.svg) | | | |`care-briefcase-regular`[![care-briefcase-regular](.github/resources/anchor.svg)](#care-briefcase-regular)|
+| |![care-check-regular](icons/vivo-new/regular/care-check-regular.svg) | | | |`care-check-regular`[![care-check-regular](.github/resources/anchor.svg)](#care-check-regular)|
+|![care-filled](icons/telefonica/filled/care-filled.svg) | | | | |`care-filled`[![care-filled](.github/resources/anchor.svg)](#care-filled)|
+|![care-health-filled](icons/telefonica/filled/care-health-filled.svg) | | | | |`care-health-filled`[![care-health-filled](.github/resources/anchor.svg)](#care-health-filled)|
+|![care-health-light](icons/telefonica/light/care-health-light.svg) | | | | |`care-health-light`[![care-health-light](.github/resources/anchor.svg)](#care-health-light)|
+|![care-health-regular](icons/telefonica/regular/care-health-regular.svg) | | | | |`care-health-regular`[![care-health-regular](.github/resources/anchor.svg)](#care-health-regular)|
+| |![care-home-regular](icons/vivo-new/regular/care-home-regular.svg) | | | |`care-home-regular`[![care-home-regular](.github/resources/anchor.svg)](#care-home-regular)|
+| |![care-laptop-regular](icons/vivo-new/regular/care-laptop-regular.svg) | | | |`care-laptop-regular`[![care-laptop-regular](.github/resources/anchor.svg)](#care-laptop-regular)|
+|![care-light](icons/telefonica/light/care-light.svg) | | | | |`care-light`[![care-light](.github/resources/anchor.svg)](#care-light)|
+| |![care-mobile-regular](icons/vivo-new/regular/care-mobile-regular.svg) | | | |`care-mobile-regular`[![care-mobile-regular](.github/resources/anchor.svg)](#care-mobile-regular)|
+| |![care-pet-regular](icons/vivo-new/regular/care-pet-regular.svg) | | | |`care-pet-regular`[![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) | | | |`care-regular`[![care-regular](.github/resources/anchor.svg)](#care-regular)|
+|![care-shield-filled](icons/telefonica/filled/care-shield-filled.svg) | | | | |`care-shield-filled`[![care-shield-filled](.github/resources/anchor.svg)](#care-shield-filled)|
+|![care-shield-light](icons/telefonica/light/care-shield-light.svg) | | | | |`care-shield-light`[![care-shield-light](.github/resources/anchor.svg)](#care-shield-light)|
+|![care-shield-regular](icons/telefonica/regular/care-shield-regular.svg) | | | | |`care-shield-regular`[![care-shield-regular](.github/resources/anchor.svg)](#care-shield-regular)|
+| |![care-win-regular](icons/vivo-new/regular/care-win-regular.svg) | | | |`care-win-regular`[![care-win-regular](.github/resources/anchor.svg)](#care-win-regular)|
+|![casino-filled](icons/telefonica/filled/casino-filled.svg) | | | | |`casino-filled`[![casino-filled](.github/resources/anchor.svg)](#casino-filled)|
+|![casino-light](icons/telefonica/light/casino-light.svg) | | | | |`casino-light`[![casino-light](.github/resources/anchor.svg)](#casino-light)|
+|![casino-regular](icons/telefonica/regular/casino-regular.svg) | | | | |`casino-regular`[![casino-regular](.github/resources/anchor.svg)](#casino-regular)|
+| |![cat-filled](icons/vivo-new/filled/cat-filled.svg) | | | |`cat-filled`[![cat-filled](.github/resources/anchor.svg)](#cat-filled)|
+| |![cat-light](icons/vivo-new/light/cat-light.svg) | | | |`cat-light`[![cat-light](.github/resources/anchor.svg)](#cat-light)|
+| |![cat-regular](icons/vivo-new/regular/cat-regular.svg) | | | |`cat-regular`[![cat-regular](.github/resources/anchor.svg)](#cat-regular)|
+|![certificate-filled](icons/telefonica/filled/certificate-filled.svg) | | | | |`certificate-filled`[![certificate-filled](.github/resources/anchor.svg)](#certificate-filled)|
+|![certificate-light](icons/telefonica/light/certificate-light.svg) | | | | |`certificate-light`[![certificate-light](.github/resources/anchor.svg)](#certificate-light)|
+|![certificate-regular](icons/telefonica/regular/certificate-regular.svg) | | | | |`certificate-regular`[![certificate-regular](.github/resources/anchor.svg)](#certificate-regular)|
+|![change-plan-filled](icons/telefonica/filled/change-plan-filled.svg) | | | | |`change-plan-filled`[![change-plan-filled](.github/resources/anchor.svg)](#change-plan-filled)|
+|![change-plan-light](icons/telefonica/light/change-plan-light.svg) | | | | |`change-plan-light`[![change-plan-light](.github/resources/anchor.svg)](#change-plan-light)|
+|![change-plan-regular](icons/telefonica/regular/change-plan-regular.svg) | | | | |`change-plan-regular`[![change-plan-regular](.github/resources/anchor.svg)](#change-plan-regular)|
+|![change-wifi-password-filled](icons/telefonica/filled/change-wifi-password-filled.svg) | | | | |`change-wifi-password-filled`[![change-wifi-password-filled](.github/resources/anchor.svg)](#change-wifi-password-filled)|
+|![change-wifi-password-light](icons/telefonica/light/change-wifi-password-light.svg) | | | | |`change-wifi-password-light`[![change-wifi-password-light](.github/resources/anchor.svg)](#change-wifi-password-light)|
+|![change-wifi-password-regular](icons/telefonica/regular/change-wifi-password-regular.svg) | | | | |`change-wifi-password-regular`[![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) | |`chart-device-filled`[![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) | |`chart-device-light`[![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) | |`chart-device-regular`[![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) | |`chat-filled`[![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) | |`chat-light`[![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) |`chat-regular`[![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) | |`check-filled`[![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) | |`check-light`[![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) |`check-regular`[![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) | |`checked-filled`[![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) | |`checked-light`[![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) |`checked-regular`[![checked-regular](.github/resources/anchor.svg)](#checked-regular)|
+|![chemistry-filled](icons/telefonica/filled/chemistry-filled.svg) | | | | |`chemistry-filled`[![chemistry-filled](.github/resources/anchor.svg)](#chemistry-filled)|
+|![chemistry-light](icons/telefonica/light/chemistry-light.svg) | | | | |`chemistry-light`[![chemistry-light](.github/resources/anchor.svg)](#chemistry-light)|
+|![chemistry-regular](icons/telefonica/regular/chemistry-regular.svg) | | | | |`chemistry-regular`[![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) | |`chevron-down-light`[![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) |`chevron-down-regular`[![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) | |`chevron-left-light`[![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) |`chevron-left-regular`[![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) | |`chevron-right-light`[![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) |`chevron-right-regular`[![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) | |`chevron-up-light`[![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) |`chevron-up-regular`[![chevron-up-regular](.github/resources/anchor.svg)](#chevron-up-regular)|
+|![child-filled](icons/telefonica/filled/child-filled.svg) | | | | |`child-filled`[![child-filled](.github/resources/anchor.svg)](#child-filled)|
+|![child-light](icons/telefonica/light/child-light.svg) | | | | |`child-light`[![child-light](.github/resources/anchor.svg)](#child-light)|
+|![child-regular](icons/telefonica/regular/child-regular.svg) | | | | |`child-regular`[![child-regular](.github/resources/anchor.svg)](#child-regular)|
+|![chip-device-filled](icons/telefonica/filled/chip-device-filled.svg) | | | | |`chip-device-filled`[![chip-device-filled](.github/resources/anchor.svg)](#chip-device-filled)|
+|![chip-device-light](icons/telefonica/light/chip-device-light.svg) | | | | |`chip-device-light`[![chip-device-light](.github/resources/anchor.svg)](#chip-device-light)|
+|![chip-device-regular](icons/telefonica/regular/chip-device-regular.svg) | | | | |`chip-device-regular`[![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) | |`chip-sim-card-filled`[![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) | |`chip-sim-card-light`[![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) |`chip-sim-card-regular`[![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) | |`circuits-filled`[![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) | |`circuits-light`[![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) | |`circuits-regular`[![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) | |`cleaning-filled`[![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) | |`cleaning-light`[![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) | |`cleaning-regular`[![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) | |`click-and-collect-filled`[![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) | |`click-and-collect-light`[![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) | |`click-and-collect-regular`[![click-and-collect-regular](.github/resources/anchor.svg)](#click-and-collect-regular)|
+|![click-to-call-filled](icons/telefonica/filled/click-to-call-filled.svg) | | | | |`click-to-call-filled`[![click-to-call-filled](.github/resources/anchor.svg)](#click-to-call-filled)|
+|![click-to-call-light](icons/telefonica/light/click-to-call-light.svg) | | | | |`click-to-call-light`[![click-to-call-light](.github/resources/anchor.svg)](#click-to-call-light)|
+|![click-to-call-regular](icons/telefonica/regular/click-to-call-regular.svg) | | | | |`click-to-call-regular`[![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) | |`clip-filled`[![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) | |`clip-light`[![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) | |`clip-regular`[![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) | |`clipboard-filled`[![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) | |`clipboard-light`[![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) | |`clipboard-regular`[![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) | |`cloakroom-filled`[![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) | |`cloakroom-light`[![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) | |`cloakroom-regular`[![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) | |`close-light`[![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) | |`close-regular`[![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) | |`cloud-distribution-alternative-filled`[![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) | |`cloud-distribution-alternative-light`[![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) | |`cloud-distribution-alternative-regular`[![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) | |`cloud-distribution-filled`[![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) | |`cloud-distribution-light`[![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) | |`cloud-distribution-regular`[![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) | |`cloud-filled`[![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) | |`cloud-friends-filled`[![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) | |`cloud-friends-light`[![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) | |`cloud-friends-regular`[![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) | |`cloud-light`[![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) | |`cloud-regular`[![cloud-regular](.github/resources/anchor.svg)](#cloud-regular)|
+|![cloud-upload-filled](icons/telefonica/filled/cloud-upload-filled.svg) | | | | |`cloud-upload-filled`[![cloud-upload-filled](.github/resources/anchor.svg)](#cloud-upload-filled)|
+|![cloud-upload-light](icons/telefonica/light/cloud-upload-light.svg) | | | | |`cloud-upload-light`[![cloud-upload-light](.github/resources/anchor.svg)](#cloud-upload-light)|
+|![cloud-upload-regular](icons/telefonica/regular/cloud-upload-regular.svg) | | | | |`cloud-upload-regular`[![cloud-upload-regular](.github/resources/anchor.svg)](#cloud-upload-regular)|
+|![clover-filled](icons/telefonica/filled/clover-filled.svg) | | | | |`clover-filled`[![clover-filled](.github/resources/anchor.svg)](#clover-filled)|
+|![clover-light](icons/telefonica/light/clover-light.svg) | | | | |`clover-light`[![clover-light](.github/resources/anchor.svg)](#clover-light)|
+|![clover-regular](icons/telefonica/regular/clover-regular.svg) | | | | |`clover-regular`[![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) | |`cocktail-filled`[![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) | |`cocktail-light`[![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) | |`cocktail-regular`[![cocktail-regular](.github/resources/anchor.svg)](#cocktail-regular)|
+|![code-filled](icons/telefonica/filled/code-filled.svg) | | | | |`code-filled`[![code-filled](.github/resources/anchor.svg)](#code-filled)|
+|![code-light](icons/telefonica/light/code-light.svg) | | | | |`code-light`[![code-light](.github/resources/anchor.svg)](#code-light)|
+|![code-regular](icons/telefonica/regular/code-regular.svg) | | | | |`code-regular`[![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) | |`coffee-tea-filled`[![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) | |`coffee-tea-light`[![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) | |`coffee-tea-regular`[![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) | |`coins-filled`[![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) | |`coins-light`[![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) | |`coins-regular`[![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) | |[![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) | |[![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) | |[![comment-regular](.github/resources/anchor.svg)](#comment-regular)|
+|![computer-academic-filled](icons/telefonica/filled/computer-academic-filled.svg) | | | | |`computer-academic-filled`[![computer-academic-filled](.github/resources/anchor.svg)](#computer-academic-filled)|
+|![computer-academic-regular](icons/telefonica/regular/computer-academic-regular.svg) | | | | |`computer-academic-regular`[![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) | |`computer-filled`[![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) | |`computer-light`[![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) |`computer-regular`[![computer-regular](.github/resources/anchor.svg)](#computer-regular)|
+|![computer-user-filled](icons/telefonica/filled/computer-user-filled.svg) | | | | |`computer-user-filled`[![computer-user-filled](.github/resources/anchor.svg)](#computer-user-filled)|
+|![computer-user-light](icons/telefonica/light/computer-user-light.svg) | | | | |`computer-user-light`[![computer-user-light](.github/resources/anchor.svg)](#computer-user-light)|
+|![computer-user-regular](icons/telefonica/regular/computer-user-regular.svg) | | | | |`computer-user-regular`[![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) | |`conference-call-filled`[![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) | |`conference-call-light`[![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) | |`conference-call-regular`[![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) | |`conference-filled`[![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) | |`conference-light`[![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) | |`conference-regular`[![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) | |`configure-device-filled`[![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) | |`configure-device-light`[![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) | |`configure-device-regular`[![configure-device-regular](.github/resources/anchor.svg)](#configure-device-regular)|
+|![configure-modem-filled](icons/telefonica/filled/configure-modem-filled.svg) | | | | |`configure-modem-filled`[![configure-modem-filled](.github/resources/anchor.svg)](#configure-modem-filled)|
+|![configure-modem-light](icons/telefonica/light/configure-modem-light.svg) | | | | |`configure-modem-light`[![configure-modem-light](.github/resources/anchor.svg)](#configure-modem-light)|
+|![configure-modem-regular](icons/telefonica/regular/configure-modem-regular.svg) | | | | |`configure-modem-regular`[![configure-modem-regular](.github/resources/anchor.svg)](#configure-modem-regular)|
+|![configure-tv-decoder-filled](icons/telefonica/filled/configure-tv-decoder-filled.svg) | | | | |`configure-tv-decoder-filled`[![configure-tv-decoder-filled](.github/resources/anchor.svg)](#configure-tv-decoder-filled)|
+|![configure-tv-decoder-light](icons/telefonica/light/configure-tv-decoder-light.svg) | | | | |`configure-tv-decoder-light`[![configure-tv-decoder-light](.github/resources/anchor.svg)](#configure-tv-decoder-light)|
+|![configure-tv-decoder-regular](icons/telefonica/regular/configure-tv-decoder-regular.svg) | | | | |`configure-tv-decoder-regular`[![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) | |`connected-car-filled`[![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) | |`connected-car-light`[![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) | |`connected-car-regular`[![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) | |`connections-filled`[![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) | |`connections-light`[![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) | |`connections-regular`[![connections-regular](.github/resources/anchor.svg)](#connections-regular)|
+|![contact-book-filled](icons/telefonica/filled/contact-book-filled.svg) | | | | |`contact-book-filled`[![contact-book-filled](.github/resources/anchor.svg)](#contact-book-filled)|
+|![contact-book-light](icons/telefonica/light/contact-book-light.svg) | | | | |`contact-book-light`[![contact-book-light](.github/resources/anchor.svg)](#contact-book-light)|
+|![contact-book-regular](icons/telefonica/regular/contact-book-regular.svg) | | | | |`contact-book-regular`[![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) | |`contact-us-filled`[![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) | |`contact-us-light`[![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) | |`contact-us-regular`[![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) | |`contactless-payments-euro-filled`[![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) | |`contactless-payments-euro-light`[![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) | |`contactless-payments-euro-regular`[![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) | |`contactless-payments-pound-filled`[![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) | |`contactless-payments-pound-light`[![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) | |`contactless-payments-pound-regular`[![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) | |`controls-filled`[![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) | |`controls-light`[![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) | |`controls-regular`[![controls-regular](.github/resources/anchor.svg)](#controls-regular)|
+|![cooking-filled](icons/telefonica/filled/cooking-filled.svg) | | | | |`cooking-filled`[![cooking-filled](.github/resources/anchor.svg)](#cooking-filled)|
+|![cooking-light](icons/telefonica/light/cooking-light.svg) | | | | |`cooking-light`[![cooking-light](.github/resources/anchor.svg)](#cooking-light)|
+|![cooking-regular](icons/telefonica/regular/cooking-regular.svg) | | | | |`cooking-regular`[![cooking-regular](.github/resources/anchor.svg)](#cooking-regular)|
+|![copy-filled](icons/telefonica/filled/copy-filled.svg) | | | | |`copy-filled`[![copy-filled](.github/resources/anchor.svg)](#copy-filled)|
+|![copy-light](icons/telefonica/light/copy-light.svg) | | | | |`copy-light`[![copy-light](.github/resources/anchor.svg)](#copy-light)|
+|![copy-regular](icons/telefonica/regular/copy-regular.svg) | | | | |`copy-regular`[![copy-regular](.github/resources/anchor.svg)](#copy-regular)|
+|![cough-syrup-filled](icons/telefonica/filled/cough-syrup-filled.svg) | | | | |`cough-syrup-filled`[![cough-syrup-filled](.github/resources/anchor.svg)](#cough-syrup-filled)|
+|![cough-syrup-light](icons/telefonica/light/cough-syrup-light.svg) | | | | |`cough-syrup-light`[![cough-syrup-light](.github/resources/anchor.svg)](#cough-syrup-light)|
+|![cough-syrup-regular](icons/telefonica/regular/cough-syrup-regular.svg) | | | | |`cough-syrup-regular`[![cough-syrup-regular](.github/resources/anchor.svg)](#cough-syrup-regular)|
+|![cowboy-lasso-light](icons/telefonica/light/cowboy-lasso-light.svg) | | | | |`cowboy-lasso-light`[![cowboy-lasso-light](.github/resources/anchor.svg)](#cowboy-lasso-light)|
+|![cowboy-lasso-regular](icons/telefonica/regular/cowboy-lasso-regular.svg) | | | | |`cowboy-lasso-regular`[![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) | |`credit-balance-euro-filled`[![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) | |`credit-balance-euro-light`[![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) | |`credit-balance-euro-regular`[![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) | |`credit-balance-pound-filled`[![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) | |`credit-balance-pound-light`[![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) | |`credit-balance-pound-regular`[![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) | |`credit-card-filled`[![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) | |`credit-card-light`[![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) |`credit-card-regular`[![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) | |`credit-card-visa-filled`[![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) | |`credit-card-visa-light`[![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) | |`credit-card-visa-regular`[![credit-card-visa-regular](.github/resources/anchor.svg)](#credit-card-visa-regular)|
+| |![curtain-regular](icons/vivo-new/regular/curtain-regular.svg) | | | |`curtain-regular`[![curtain-regular](.github/resources/anchor.svg)](#curtain-regular)|
+|![cut-filled](icons/telefonica/filled/cut-filled.svg) | | | | |`cut-filled`[![cut-filled](.github/resources/anchor.svg)](#cut-filled)|
+|![cut-light](icons/telefonica/light/cut-light.svg) | | | | |`cut-light`[![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) | |`dartboard-filled`[![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) | |`dartboard-light`[![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) | |`dartboard-regular`[![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) | |`data-10-gb-filled`[![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) | |`data-10-gb-light`[![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) | |`data-10-gb-regular`[![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) | |`data-100-gb-filled`[![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) | |`data-100-gb-light`[![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) | |`data-100-gb-regular`[![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) | |`data-30-gb-filled`[![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) | |`data-30-gb-light`[![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) | |`data-30-gb-regular`[![data-30-gb-regular](.github/resources/anchor.svg)](#data-30-gb-regular)|
+|![data-alert-filled](icons/telefonica/filled/data-alert-filled.svg) | | | | |`data-alert-filled`[![data-alert-filled](.github/resources/anchor.svg)](#data-alert-filled)|
+|![data-alert-light](icons/telefonica/light/data-alert-light.svg) | | | | |`data-alert-light`[![data-alert-light](.github/resources/anchor.svg)](#data-alert-light)|
+|![data-alert-regular](icons/telefonica/regular/data-alert-regular.svg) | | | | |`data-alert-regular`[![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) | |`data-bonus-filled`[![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) | |`data-bonus-light`[![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) | |`data-bonus-regular`[![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) | |`data-centre-filled`[![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) | |`data-centre-light`[![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) | |`data-centre-regular`[![data-centre-regular](.github/resources/anchor.svg)](#data-centre-regular)|
+|![data-checked-filled](icons/telefonica/filled/data-checked-filled.svg) | | | | |`data-checked-filled`[![data-checked-filled](.github/resources/anchor.svg)](#data-checked-filled)|
+|![data-checked-light](icons/telefonica/light/data-checked-light.svg) | | | | |`data-checked-light`[![data-checked-light](.github/resources/anchor.svg)](#data-checked-light)|
+|![data-checked-regular](icons/telefonica/regular/data-checked-regular.svg) | | | | |`data-checked-regular`[![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) | |`data-cloud-filled`[![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) | |`data-cloud-light`[![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) | |`data-cloud-regular`[![data-cloud-regular](.github/resources/anchor.svg)](#data-cloud-regular)|
+|![data-distribution-filled](icons/telefonica/filled/data-distribution-filled.svg) | | | | |`data-distribution-filled`[![data-distribution-filled](.github/resources/anchor.svg)](#data-distribution-filled)|
+|![data-distribution-light](icons/telefonica/light/data-distribution-light.svg) | | | | |`data-distribution-light`[![data-distribution-light](.github/resources/anchor.svg)](#data-distribution-light)|
+|![data-distribution-regular](icons/telefonica/regular/data-distribution-regular.svg) | | | | |`data-distribution-regular`[![data-distribution-regular](.github/resources/anchor.svg)](#data-distribution-regular)|
+|![data-filled](icons/telefonica/filled/data-filled.svg) | | | | |`data-filled`[![data-filled](.github/resources/anchor.svg)](#data-filled)|
+|![data-light](icons/telefonica/light/data-light.svg) | | | | |`data-light`[![data-light](.github/resources/anchor.svg)](#data-light)|
+|![data-network-filled](icons/telefonica/filled/data-network-filled.svg) | | | | |`data-network-filled`[![data-network-filled](.github/resources/anchor.svg)](#data-network-filled)|
+|![data-network-light](icons/telefonica/light/data-network-light.svg) | | | | |`data-network-light`[![data-network-light](.github/resources/anchor.svg)](#data-network-light)|
+|![data-network-regular](icons/telefonica/regular/data-network-regular.svg) | | | | |`data-network-regular`[![data-network-regular](.github/resources/anchor.svg)](#data-network-regular)|
+|![data-regular](icons/telefonica/regular/data-regular.svg) | | | | |`data-regular`[![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) | |`data-rollover-filled`[![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) | |`data-rollover-light`[![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) | |`data-rollover-regular`[![data-rollover-regular](.github/resources/anchor.svg)](#data-rollover-regular)|
+|![data-settings-filled](icons/telefonica/filled/data-settings-filled.svg) | | | | |`data-settings-filled`[![data-settings-filled](.github/resources/anchor.svg)](#data-settings-filled)|
+|![data-settings-light](icons/telefonica/light/data-settings-light.svg) | | | | |`data-settings-light`[![data-settings-light](.github/resources/anchor.svg)](#data-settings-light)|
+|![data-settings-regular](icons/telefonica/regular/data-settings-regular.svg) | | | | |`data-settings-regular`[![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) | |`data-shield-filled`[![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) | |`data-shield-light`[![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) |`data-shield-regular`[![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) | |`data-unlimited-filled`[![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) | |`data-unlimited-light`[![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) | |`data-unlimited-regular`[![data-unlimited-regular](.github/resources/anchor.svg)](#data-unlimited-regular)|
+|![data-virus-filled](icons/telefonica/filled/data-virus-filled.svg) | | | | |`data-virus-filled`[![data-virus-filled](.github/resources/anchor.svg)](#data-virus-filled)|
+|![data-virus-light](icons/telefonica/light/data-virus-light.svg) | | | | |`data-virus-light`[![data-virus-light](.github/resources/anchor.svg)](#data-virus-light)|
+|![data-virus-regular](icons/telefonica/regular/data-virus-regular.svg) | | | | |`data-virus-regular`[![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) | |`database-connected-filled`[![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) | |`database-connected-light`[![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) | |`database-connected-regular`[![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) | |`database-filled`[![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) | |`database-light`[![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) | |`database-regular`[![database-regular](.github/resources/anchor.svg)](#database-regular)|
+|![delivery-van-moving-filled](icons/telefonica/filled/delivery-van-moving-filled.svg) | | | | |`delivery-van-moving-filled`[![delivery-van-moving-filled](.github/resources/anchor.svg)](#delivery-van-moving-filled)|
+|![delivery-van-moving-light](icons/telefonica/light/delivery-van-moving-light.svg) | | | | |`delivery-van-moving-light`[![delivery-van-moving-light](.github/resources/anchor.svg)](#delivery-van-moving-light)|
+|![delivery-van-moving-regular](icons/telefonica/regular/delivery-van-moving-regular.svg) | | | | |`delivery-van-moving-regular`[![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) | |`desk-filled`[![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) | |`desk-light`[![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) | |`desk-regular`[![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) | |`device-signal-filled`[![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) | |`device-signal-light`[![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) | |`device-signal-regular`[![device-signal-regular](.github/resources/anchor.svg)](#device-signal-regular)|
+|![diamond-filled](icons/telefonica/filled/diamond-filled.svg) | | | | |`diamond-filled`[![diamond-filled](.github/resources/anchor.svg)](#diamond-filled)|
+|![diamond-light](icons/telefonica/light/diamond-light.svg) | | | | |`diamond-light`[![diamond-light](.github/resources/anchor.svg)](#diamond-light)|
+|![diamond-regular](icons/telefonica/regular/diamond-regular.svg) | | | | |`diamond-regular`[![diamond-regular](.github/resources/anchor.svg)](#diamond-regular)|
+|![digital-library-filled](icons/telefonica/filled/digital-library-filled.svg) | | | | |`digital-library-filled`[![digital-library-filled](.github/resources/anchor.svg)](#digital-library-filled)|
+|![digital-library-light](icons/telefonica/light/digital-library-light.svg) | | | | |`digital-library-light`[![digital-library-light](.github/resources/anchor.svg)](#digital-library-light)|
+|![digital-library-regular](icons/telefonica/regular/digital-library-regular.svg) | | | | |`digital-library-regular`[![digital-library-regular](.github/resources/anchor.svg)](#digital-library-regular)|
+|![disable-filled](icons/telefonica/filled/disable-filled.svg) | | | | |`disable-filled`[![disable-filled](.github/resources/anchor.svg)](#disable-filled)|
+|![disable-light](icons/telefonica/light/disable-light.svg) | | | | |`disable-light`[![disable-light](.github/resources/anchor.svg)](#disable-light)|
+|![disable-regular](icons/telefonica/regular/disable-regular.svg) | | | | |`disable-regular`[![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) | |`disabled-filled`[![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) | |`disabled-light`[![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) | |`disabled-regular`[![disabled-regular](.github/resources/anchor.svg)](#disabled-regular)|
+|![disconnect-filled](icons/telefonica/filled/disconnect-filled.svg) | | | | |`disconnect-filled`[![disconnect-filled](.github/resources/anchor.svg)](#disconnect-filled)|
+|![disconnect-light](icons/telefonica/light/disconnect-light.svg) | | | | |`disconnect-light`[![disconnect-light](.github/resources/anchor.svg)](#disconnect-light)|
+|![disconnect-regular](icons/telefonica/regular/disconnect-regular.svg) | | | | |`disconnect-regular`[![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) | |`disturb-filled`[![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) | |`disturb-light`[![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) | |`disturb-regular`[![disturb-regular](.github/resources/anchor.svg)](#disturb-regular)|
+|![dna-filled](icons/telefonica/filled/dna-filled.svg) | | | | |`dna-filled`[![dna-filled](.github/resources/anchor.svg)](#dna-filled)|
+|![dna-light](icons/telefonica/light/dna-light.svg) | | | | |`dna-light`[![dna-light](.github/resources/anchor.svg)](#dna-light)|
+|![dna-regular](icons/telefonica/regular/dna-regular.svg) | | | | |`dna-regular`[![dna-regular](.github/resources/anchor.svg)](#dna-regular)|
+|![document-other-filled](icons/telefonica/filled/document-other-filled.svg) | | | | |`document-other-filled`[![document-other-filled](.github/resources/anchor.svg)](#document-other-filled)|
+|![document-other-light](icons/telefonica/light/document-other-light.svg) | | | | |`document-other-light`[![document-other-light](.github/resources/anchor.svg)](#document-other-light)|
+|![document-other-regular](icons/telefonica/regular/document-other-regular.svg) | | | | |`document-other-regular`[![document-other-regular](.github/resources/anchor.svg)](#document-other-regular)|
+|![documents-filled](icons/telefonica/filled/documents-filled.svg) | | | | |`documents-filled`[![documents-filled](.github/resources/anchor.svg)](#documents-filled)|
+|![documents-light](icons/telefonica/light/documents-light.svg) | | | | |`documents-light`[![documents-light](.github/resources/anchor.svg)](#documents-light)|
+|![documents-regular](icons/telefonica/regular/documents-regular.svg) | | | | |`documents-regular`[![documents-regular](.github/resources/anchor.svg)](#documents-regular)|
+| |![dog-filled](icons/vivo-new/filled/dog-filled.svg) | | | |`dog-filled`[![dog-filled](.github/resources/anchor.svg)](#dog-filled)|
+| |![dog-light](icons/vivo-new/light/dog-light.svg) | | | |`dog-light`[![dog-light](.github/resources/anchor.svg)](#dog-light)|
+| |![dog-regular](icons/vivo-new/regular/dog-regular.svg) | | | |`dog-regular`[![dog-regular](.github/resources/anchor.svg)](#dog-regular)|
+|![dollar-symbol-circle-filled](icons/telefonica/filled/dollar-symbol-circle-filled.svg) | | | | |`dollar-symbol-circle-filled`[![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) | | | |`dollar-symbol-circle-light`[![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) | | | |`dollar-symbol-circle-regular`[![dollar-symbol-circle-regular](.github/resources/anchor.svg)](#dollar-symbol-circle-regular)|
+|![dollar-symbol-filled](icons/telefonica/filled/dollar-symbol-filled.svg) | | | | |`dollar-symbol-filled`[![dollar-symbol-filled](.github/resources/anchor.svg)](#dollar-symbol-filled)|
+|![dollar-symbol-light](icons/telefonica/light/dollar-symbol-light.svg) | | | | |`dollar-symbol-light`[![dollar-symbol-light](.github/resources/anchor.svg)](#dollar-symbol-light)|
+|![dollar-symbol-regular](icons/telefonica/regular/dollar-symbol-regular.svg) | | | | |`dollar-symbol-regular`[![dollar-symbol-regular](.github/resources/anchor.svg)](#dollar-symbol-regular)|
+| |![door-lock-regular](icons/vivo-new/regular/door-lock-regular.svg) | | | |`door-lock-regular`[![door-lock-regular](.github/resources/anchor.svg)](#door-lock-regular)|
+|![download-app-filled](icons/telefonica/filled/download-app-filled.svg) | | | | |`download-app-filled`[![download-app-filled](.github/resources/anchor.svg)](#download-app-filled)|
+|![download-app-light](icons/telefonica/light/download-app-light.svg) | | | | |`download-app-light`[![download-app-light](.github/resources/anchor.svg)](#download-app-light)|
+|![download-app-regular](icons/telefonica/regular/download-app-regular.svg) | | | | |`download-app-regular`[![download-app-regular](.github/resources/anchor.svg)](#download-app-regular)|
+|![download-cloud-filled](icons/telefonica/filled/download-cloud-filled.svg) | | | | |`download-cloud-filled`[![download-cloud-filled](.github/resources/anchor.svg)](#download-cloud-filled)|
+|![download-cloud-light](icons/telefonica/light/download-cloud-light.svg) | | | | |`download-cloud-light`[![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) |`download-cloud-regular`[![download-cloud-regular](.github/resources/anchor.svg)](#download-cloud-regular)|
+|![download-filled](icons/telefonica/filled/download-filled.svg) | | | | |`download-filled`[![download-filled](.github/resources/anchor.svg)](#download-filled)|
+|![download-light](icons/telefonica/light/download-light.svg) | | | | |`download-light`[![download-light](.github/resources/anchor.svg)](#download-light)|
+|![download-regular](icons/telefonica/regular/download-regular.svg) | | | |![download-regular](icons/blau/regular/download-regular.svg) |`download-regular`[![download-regular](.github/resources/anchor.svg)](#download-regular)|
+|![drink-filled](icons/telefonica/filled/drink-filled.svg) | | | | |`drink-filled`[![drink-filled](.github/resources/anchor.svg)](#drink-filled)|
+|![drink-light](icons/telefonica/light/drink-light.svg) | | | | |`drink-light`[![drink-light](.github/resources/anchor.svg)](#drink-light)|
+|![drink-regular](icons/telefonica/regular/drink-regular.svg) | | | | |`drink-regular`[![drink-regular](.github/resources/anchor.svg)](#drink-regular)|
+|![dumbbell-filled](icons/telefonica/filled/dumbbell-filled.svg) | | | | |`dumbbell-filled`[![dumbbell-filled](.github/resources/anchor.svg)](#dumbbell-filled)|
+|![dumbbell-light](icons/telefonica/light/dumbbell-light.svg) | | | | |`dumbbell-light`[![dumbbell-light](.github/resources/anchor.svg)](#dumbbell-light)|
+|![dumbbell-regular](icons/telefonica/regular/dumbbell-regular.svg) | | | | |`dumbbell-regular`[![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) | |`ear-plug-filled`[![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) | |`ear-plug-regular`[![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) | |`eco-filled`[![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) | |`eco-light`[![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) | |`eco-regular`[![eco-regular](.github/resources/anchor.svg)](#eco-regular)|
+|![edit-filled](icons/telefonica/filled/edit-filled.svg) | | | | |`edit-filled`[![edit-filled](.github/resources/anchor.svg)](#edit-filled)|
+|![edit-light](icons/telefonica/light/edit-light.svg) | | | | |`edit-light`[![edit-light](.github/resources/anchor.svg)](#edit-light)|
+|![edit-paper-light](icons/telefonica/light/edit-paper-light.svg) | | | | |`edit-paper-light`[![edit-paper-light](.github/resources/anchor.svg)](#edit-paper-light)|
+|![edit-paper-regular](icons/telefonica/regular/edit-paper-regular.svg) | | | | |`edit-paper-regular`[![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) | | | |`edit-pencil-light`[![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) |`edit-pencil-regular`[![edit-pencil-regular](.github/resources/anchor.svg)](#edit-pencil-regular)|
+|![edit-regular](icons/telefonica/regular/edit-regular.svg) | | | | |`edit-regular`[![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) | |`electrocardiogram-filled`[![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) | |`electrocardiogram-light`[![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) | |`electrocardiogram-regular`[![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) | |`email-filled`[![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) | |`email-light`[![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) |`email-regular`[![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) | |`email-send-filled`[![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) | |`email-send-light`[![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) | |`email-send-regular`[![email-send-regular](.github/resources/anchor.svg)](#email-send-regular)|
+|![email-virus-filled](icons/telefonica/filled/email-virus-filled.svg) | | | | |`email-virus-filled`[![email-virus-filled](.github/resources/anchor.svg)](#email-virus-filled)|
+|![email-virus-light](icons/telefonica/light/email-virus-light.svg) | | | | |`email-virus-light`[![email-virus-light](.github/resources/anchor.svg)](#email-virus-light)|
+|![email-virus-regular](icons/telefonica/regular/email-virus-regular.svg) | | | | |`email-virus-regular`[![email-virus-regular](.github/resources/anchor.svg)](#email-virus-regular)|
+|![emergency-cross-filled](icons/telefonica/filled/emergency-cross-filled.svg) | | | | |`emergency-cross-filled`[![emergency-cross-filled](.github/resources/anchor.svg)](#emergency-cross-filled)|
+|![emergency-cross-light](icons/telefonica/light/emergency-cross-light.svg) | | | | |`emergency-cross-light`[![emergency-cross-light](.github/resources/anchor.svg)](#emergency-cross-light)|
+|![emergency-cross-regular](icons/telefonica/regular/emergency-cross-regular.svg) | | | | |`emergency-cross-regular`[![emergency-cross-regular](.github/resources/anchor.svg)](#emergency-cross-regular)|
+|![emergency-cross-with-circle-filled](icons/telefonica/filled/emergency-cross-with-circle-filled.svg) | | | | |`emergency-cross-with-circle-filled`[![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) | | | | |`emergency-cross-with-circle-light`[![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) | | | | |`emergency-cross-with-circle-regular`[![emergency-cross-with-circle-regular](.github/resources/anchor.svg)](#emergency-cross-with-circle-regular)|
+|![error-filled](icons/telefonica/filled/error-filled.svg) | | | | |`error-filled`[![error-filled](.github/resources/anchor.svg)](#error-filled)|
+|![error-light](icons/telefonica/light/error-light.svg) | | | | |`error-light`[![error-light](.github/resources/anchor.svg)](#error-light)|
+|![error-regular](icons/telefonica/regular/error-regular.svg) | | | | |`error-regular`[![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) | |`escalator-filled`[![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) | |`escalator-light`[![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) | |`escalator-regular`[![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) | |`esim-filled`[![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) | |`esim-light`[![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) | |`esim-regular`[![esim-regular](.github/resources/anchor.svg)](#esim-regular)|
+| |![ethernet-filled](icons/vivo-new/filled/ethernet-filled.svg) | | | |`ethernet-filled`[![ethernet-filled](.github/resources/anchor.svg)](#ethernet-filled)|
+| |![ethernet-light](icons/vivo-new/light/ethernet-light.svg) | | | |`ethernet-light`[![ethernet-light](.github/resources/anchor.svg)](#ethernet-light)|
+| |![ethernet-regular](icons/vivo-new/regular/ethernet-regular.svg) | | | |`ethernet-regular`[![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) | |`euro-symbol-circle-filled`[![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) | |`euro-symbol-circle-light`[![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) | |`euro-symbol-circle-regular`[![euro-symbol-circle-regular](.github/resources/anchor.svg)](#euro-symbol-circle-regular)|
+|![euro-symbol-filled](icons/telefonica/filled/euro-symbol-filled.svg) | | | | |`euro-symbol-filled`[![euro-symbol-filled](.github/resources/anchor.svg)](#euro-symbol-filled)|
+|![euro-symbol-light](icons/telefonica/light/euro-symbol-light.svg) | | | | |`euro-symbol-light`[![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) |`euro-symbol-regular`[![euro-symbol-regular](.github/resources/anchor.svg)](#euro-symbol-regular)|
+|![exchange-filled](icons/telefonica/filled/exchange-filled.svg) | | | | |`exchange-filled`[![exchange-filled](.github/resources/anchor.svg)](#exchange-filled)|
+|![exchange-light](icons/telefonica/light/exchange-light.svg) | | | | |`exchange-light`[![exchange-light](.github/resources/anchor.svg)](#exchange-light)|
+|![exchange-regular](icons/telefonica/regular/exchange-regular.svg) | | | | |`exchange-regular`[![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) | |`exit-door-filled`[![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) | |`exit-door-light`[![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) | |`exit-door-regular`[![exit-door-regular](.github/resources/anchor.svg)](#exit-door-regular)|
+|![exit-fullscreen-light](icons/telefonica/light/exit-fullscreen-light.svg) | | | | |`exit-fullscreen-light`[![exit-fullscreen-light](.github/resources/anchor.svg)](#exit-fullscreen-light)|
+|![exit-fullscreen-regular](icons/telefonica/regular/exit-fullscreen-regular.svg) | | | | |`exit-fullscreen-regular`[![exit-fullscreen-regular](.github/resources/anchor.svg)](#exit-fullscreen-regular)|
+|![export-light](icons/telefonica/light/export-light.svg) | | | | |`export-light`[![export-light](.github/resources/anchor.svg)](#export-light)|
+|![export-regular](icons/telefonica/regular/export-regular.svg) | | | | |`export-regular`[![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) | |`eye-filled`[![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) | |`eye-light`[![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) | |`eye-off-filled`[![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) | |`eye-off-light`[![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) | |`eye-off-regular`[![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) |`eye-regular`[![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) |`face-happy-filled`[![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) | |`face-happy-light`[![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) |`face-happy-regular`[![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) |`face-neutral-filled`[![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) | |`face-neutral-light`[![face-neutral-light](.github/resources/anchor.svg)](#face-neutral-light)|
+| | | |![face-neutral-light](icons/o2/regular/face-neutral-light.svg) | |`face-neutral-light`[![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) |`face-neutral-regular`[![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) |`face-sad-filled`[![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) | |`face-sad-light`[![face-sad-light](.github/resources/anchor.svg)](#face-sad-light)|
+| | | |![face-sad-light](icons/o2/regular/face-sad-light.svg) | |`face-sad-light`[![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) |`face-sad-regular`[![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) |`face-slightly-sad-filled`[![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) | |`face-slightly-sad-light`[![face-slightly-sad-light](.github/resources/anchor.svg)](#face-slightly-sad-light)|
+| | | |![face-slightly-sad-light](icons/o2/regular/face-slightly-sad-light.svg) | |`face-slightly-sad-light`[![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) |`face-slightly-sad-regular`[![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) |`face-super-happy-filled`[![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) | |`face-super-happy-light`[![face-super-happy-light](.github/resources/anchor.svg)](#face-super-happy-light)|
+| | | |![face-super-happy-light](icons/o2/regular/face-super-happy-light.svg) | |`face-super-happy-light`[![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) |`face-super-happy-regular`[![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) | |`family-filled`[![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) | |`family-light`[![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) | |`family-regular`[![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) | |`fast-forward-filled`[![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) | |`fast-forward-light`[![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) | |`fast-forward-regular`[![fast-forward-regular](.github/resources/anchor.svg)](#fast-forward-regular)|
+|![file-avi-filled](icons/telefonica/filled/file-avi-filled.svg) | | | | |`file-avi-filled`[![file-avi-filled](.github/resources/anchor.svg)](#file-avi-filled)|
+|![file-avi-light](icons/telefonica/light/file-avi-light.svg) | | | | |`file-avi-light`[![file-avi-light](.github/resources/anchor.svg)](#file-avi-light)|
+|![file-avi-regular](icons/telefonica/regular/file-avi-regular.svg) | | | | |`file-avi-regular`[![file-avi-regular](.github/resources/anchor.svg)](#file-avi-regular)|
+|![file-blocked-filled](icons/telefonica/filled/file-blocked-filled.svg) | | | | |`file-blocked-filled`[![file-blocked-filled](.github/resources/anchor.svg)](#file-blocked-filled)|
+|![file-blocked-light](icons/telefonica/light/file-blocked-light.svg) | | | | |`file-blocked-light`[![file-blocked-light](.github/resources/anchor.svg)](#file-blocked-light)|
+|![file-blocked-regular](icons/telefonica/regular/file-blocked-regular.svg) | | | | |`file-blocked-regular`[![file-blocked-regular](.github/resources/anchor.svg)](#file-blocked-regular)|
+|![file-box-filled](icons/telefonica/filled/file-box-filled.svg) | | | | |`file-box-filled`[![file-box-filled](.github/resources/anchor.svg)](#file-box-filled)|
+|![file-box-light](icons/telefonica/light/file-box-light.svg) | | | | |`file-box-light`[![file-box-light](.github/resources/anchor.svg)](#file-box-light)|
+|![file-box-regular](icons/telefonica/regular/file-box-regular.svg) | | | | |`file-box-regular`[![file-box-regular](.github/resources/anchor.svg)](#file-box-regular)|
+|![file-compressed-filled](icons/telefonica/filled/file-compressed-filled.svg) | | | | |`file-compressed-filled`[![file-compressed-filled](.github/resources/anchor.svg)](#file-compressed-filled)|
+|![file-compressed-light](icons/telefonica/light/file-compressed-light.svg) | | | | |`file-compressed-light`[![file-compressed-light](.github/resources/anchor.svg)](#file-compressed-light)|
+|![file-compressed-regular](icons/telefonica/regular/file-compressed-regular.svg) | | | | |`file-compressed-regular`[![file-compressed-regular](.github/resources/anchor.svg)](#file-compressed-regular)|
+|![file-css-filled](icons/telefonica/filled/file-css-filled.svg) | | | | |`file-css-filled`[![file-css-filled](.github/resources/anchor.svg)](#file-css-filled)|
+|![file-css-light](icons/telefonica/light/file-css-light.svg) | | | | |`file-css-light`[![file-css-light](.github/resources/anchor.svg)](#file-css-light)|
+|![file-css-regular](icons/telefonica/regular/file-css-regular.svg) | | | | |`file-css-regular`[![file-css-regular](.github/resources/anchor.svg)](#file-css-regular)|
+|![file-encrypted-filled](icons/telefonica/filled/file-encrypted-filled.svg) | | | | |`file-encrypted-filled`[![file-encrypted-filled](.github/resources/anchor.svg)](#file-encrypted-filled)|
+|![file-encrypted-light](icons/telefonica/light/file-encrypted-light.svg) | | | | |`file-encrypted-light`[![file-encrypted-light](.github/resources/anchor.svg)](#file-encrypted-light)|
+|![file-encrypted-regular](icons/telefonica/regular/file-encrypted-regular.svg) | | | | |`file-encrypted-regular`[![file-encrypted-regular](.github/resources/anchor.svg)](#file-encrypted-regular)|
+|![file-enex-filled](icons/telefonica/filled/file-enex-filled.svg) | | | | |`file-enex-filled`[![file-enex-filled](.github/resources/anchor.svg)](#file-enex-filled)|
+|![file-enex-light](icons/telefonica/light/file-enex-light.svg) | | | | |`file-enex-light`[![file-enex-light](.github/resources/anchor.svg)](#file-enex-light)|
+|![file-enex-regular](icons/telefonica/regular/file-enex-regular.svg) | | | | |`file-enex-regular`[![file-enex-regular](.github/resources/anchor.svg)](#file-enex-regular)|
+|![file-error-filled](icons/telefonica/filled/file-error-filled.svg) | | | | |`file-error-filled`[![file-error-filled](.github/resources/anchor.svg)](#file-error-filled)|
+|![file-error-light](icons/telefonica/light/file-error-light.svg) | | | | |`file-error-light`[![file-error-light](.github/resources/anchor.svg)](#file-error-light)|
+|![file-error-regular](icons/telefonica/regular/file-error-regular.svg) | | | | |`file-error-regular`[![file-error-regular](.github/resources/anchor.svg)](#file-error-regular)|
+|![file-html-filled](icons/telefonica/filled/file-html-filled.svg) | | | | |`file-html-filled`[![file-html-filled](.github/resources/anchor.svg)](#file-html-filled)|
+|![file-html-light](icons/telefonica/light/file-html-light.svg) | | | | |`file-html-light`[![file-html-light](.github/resources/anchor.svg)](#file-html-light)|
+|![file-html-regular](icons/telefonica/regular/file-html-regular.svg) | | | | |`file-html-regular`[![file-html-regular](.github/resources/anchor.svg)](#file-html-regular)|
+|![file-illustrator-filled](icons/telefonica/filled/file-illustrator-filled.svg) | | | | |`file-illustrator-filled`[![file-illustrator-filled](.github/resources/anchor.svg)](#file-illustrator-filled)|
+|![file-illustrator-light](icons/telefonica/light/file-illustrator-light.svg) | | | | |`file-illustrator-light`[![file-illustrator-light](.github/resources/anchor.svg)](#file-illustrator-light)|
+|![file-illustrator-regular](icons/telefonica/regular/file-illustrator-regular.svg) | | | | |`file-illustrator-regular`[![file-illustrator-regular](.github/resources/anchor.svg)](#file-illustrator-regular)|
+|![file-image-filled](icons/telefonica/filled/file-image-filled.svg) | | | | |`file-image-filled`[![file-image-filled](.github/resources/anchor.svg)](#file-image-filled)|
+|![file-image-light](icons/telefonica/light/file-image-light.svg) | | | | |`file-image-light`[![file-image-light](.github/resources/anchor.svg)](#file-image-light)|
+|![file-image-regular](icons/telefonica/regular/file-image-regular.svg) | | | | |`file-image-regular`[![file-image-regular](.github/resources/anchor.svg)](#file-image-regular)|
+|![file-jpeg-filled](icons/telefonica/filled/file-jpeg-filled.svg) | | | | |`file-jpeg-filled`[![file-jpeg-filled](.github/resources/anchor.svg)](#file-jpeg-filled)|
+|![file-jpeg-light](icons/telefonica/light/file-jpeg-light.svg) | | | | |`file-jpeg-light`[![file-jpeg-light](.github/resources/anchor.svg)](#file-jpeg-light)|
+|![file-jpeg-regular](icons/telefonica/regular/file-jpeg-regular.svg) | | | | |`file-jpeg-regular`[![file-jpeg-regular](.github/resources/anchor.svg)](#file-jpeg-regular)|
+|![file-mp3-filled](icons/telefonica/filled/file-mp3-filled.svg) | | | | |`file-mp3-filled`[![file-mp3-filled](.github/resources/anchor.svg)](#file-mp3-filled)|
+|![file-mp3-light](icons/telefonica/light/file-mp3-light.svg) | | | | |`file-mp3-light`[![file-mp3-light](.github/resources/anchor.svg)](#file-mp3-light)|
+|![file-mp3-regular](icons/telefonica/regular/file-mp3-regular.svg) | | | | |`file-mp3-regular`[![file-mp3-regular](.github/resources/anchor.svg)](#file-mp3-regular)|
+|![file-mp4-filled](icons/telefonica/filled/file-mp4-filled.svg) | | | | |`file-mp4-filled`[![file-mp4-filled](.github/resources/anchor.svg)](#file-mp4-filled)|
+|![file-mp4-light](icons/telefonica/light/file-mp4-light.svg) | | | | |`file-mp4-light`[![file-mp4-light](.github/resources/anchor.svg)](#file-mp4-light)|
+|![file-mp4-regular](icons/telefonica/regular/file-mp4-regular.svg) | | | | |`file-mp4-regular`[![file-mp4-regular](.github/resources/anchor.svg)](#file-mp4-regular)|
+|![file-music-filled](icons/telefonica/filled/file-music-filled.svg) | | | | |`file-music-filled`[![file-music-filled](.github/resources/anchor.svg)](#file-music-filled)|
+|![file-music-light](icons/telefonica/light/file-music-light.svg) | | | | |`file-music-light`[![file-music-light](.github/resources/anchor.svg)](#file-music-light)|
+|![file-music-regular](icons/telefonica/regular/file-music-regular.svg) | | | | |`file-music-regular`[![file-music-regular](.github/resources/anchor.svg)](#file-music-regular)|
+|![file-ok-filled](icons/telefonica/filled/file-ok-filled.svg) | | | | |`file-ok-filled`[![file-ok-filled](.github/resources/anchor.svg)](#file-ok-filled)|
+|![file-ok-light](icons/telefonica/light/file-ok-light.svg) | | | | |`file-ok-light`[![file-ok-light](.github/resources/anchor.svg)](#file-ok-light)|
+|![file-ok-regular](icons/telefonica/regular/file-ok-regular.svg) | | | | |`file-ok-regular`[![file-ok-regular](.github/resources/anchor.svg)](#file-ok-regular)|
+|![file-pdf-filled](icons/telefonica/filled/file-pdf-filled.svg) | | | | |`file-pdf-filled`[![file-pdf-filled](.github/resources/anchor.svg)](#file-pdf-filled)|
+|![file-pdf-light](icons/telefonica/light/file-pdf-light.svg) | | | | |`file-pdf-light`[![file-pdf-light](.github/resources/anchor.svg)](#file-pdf-light)|
+|![file-pdf-regular](icons/telefonica/regular/file-pdf-regular.svg) | | | | |`file-pdf-regular`[![file-pdf-regular](.github/resources/anchor.svg)](#file-pdf-regular)|
+|![file-png-filled](icons/telefonica/filled/file-png-filled.svg) | | | | |`file-png-filled`[![file-png-filled](.github/resources/anchor.svg)](#file-png-filled)|
+|![file-png-light](icons/telefonica/light/file-png-light.svg) | | | | |`file-png-light`[![file-png-light](.github/resources/anchor.svg)](#file-png-light)|
+|![file-png-regular](icons/telefonica/regular/file-png-regular.svg) | | | | |`file-png-regular`[![file-png-regular](.github/resources/anchor.svg)](#file-png-regular)|
+|![file-ppt-filled](icons/telefonica/filled/file-ppt-filled.svg) | | | | |`file-ppt-filled`[![file-ppt-filled](.github/resources/anchor.svg)](#file-ppt-filled)|
+|![file-ppt-light](icons/telefonica/light/file-ppt-light.svg) | | | | |`file-ppt-light`[![file-ppt-light](.github/resources/anchor.svg)](#file-ppt-light)|
+|![file-ppt-regular](icons/telefonica/regular/file-ppt-regular.svg) | | | | |`file-ppt-regular`[![file-ppt-regular](.github/resources/anchor.svg)](#file-ppt-regular)|
+|![file-psd-filled](icons/telefonica/filled/file-psd-filled.svg) | | | | |`file-psd-filled`[![file-psd-filled](.github/resources/anchor.svg)](#file-psd-filled)|
+|![file-psd-light](icons/telefonica/light/file-psd-light.svg) | | | | |`file-psd-light`[![file-psd-light](.github/resources/anchor.svg)](#file-psd-light)|
+|![file-psd-regular](icons/telefonica/regular/file-psd-regular.svg) | | | | |`file-psd-regular`[![file-psd-regular](.github/resources/anchor.svg)](#file-psd-regular)|
+|![file-sketch-filled](icons/telefonica/filled/file-sketch-filled.svg) | | | | |`file-sketch-filled`[![file-sketch-filled](.github/resources/anchor.svg)](#file-sketch-filled)|
+|![file-sketch-light](icons/telefonica/light/file-sketch-light.svg) | | | | |`file-sketch-light`[![file-sketch-light](.github/resources/anchor.svg)](#file-sketch-light)|
+|![file-sketch-regular](icons/telefonica/regular/file-sketch-regular.svg) | | | | |`file-sketch-regular`[![file-sketch-regular](.github/resources/anchor.svg)](#file-sketch-regular)|
+|![file-zip-filled](icons/telefonica/filled/file-zip-filled.svg) | | | | |`file-zip-filled`[![file-zip-filled](.github/resources/anchor.svg)](#file-zip-filled)|
+|![file-zip-light](icons/telefonica/light/file-zip-light.svg) | | | | |`file-zip-light`[![file-zip-light](.github/resources/anchor.svg)](#file-zip-light)|
+|![file-zip-regular](icons/telefonica/regular/file-zip-regular.svg) | | | | |`file-zip-regular`[![file-zip-regular](.github/resources/anchor.svg)](#file-zip-regular)|
+|![files-digital-filled](icons/telefonica/filled/files-digital-filled.svg) | | | | |`files-digital-filled`[![files-digital-filled](.github/resources/anchor.svg)](#files-digital-filled)|
+|![files-digital-light](icons/telefonica/light/files-digital-light.svg) | | | | |`files-digital-light`[![files-digital-light](.github/resources/anchor.svg)](#files-digital-light)|
+|![files-digital-regular](icons/telefonica/regular/files-digital-regular.svg) | | | | |`files-digital-regular`[![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) | |`find-store-filled`[![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) | |`find-store-light`[![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) | |`find-store-regular`[![find-store-regular](.github/resources/anchor.svg)](#find-store-regular)|
+|![fingerprint-filled](icons/telefonica/filled/fingerprint-filled.svg) | | | | |`fingerprint-filled`[![fingerprint-filled](.github/resources/anchor.svg)](#fingerprint-filled)|
+|![fingerprint-regular](icons/telefonica/regular/fingerprint-regular.svg) | | | | |`fingerprint-regular`[![fingerprint-regular](.github/resources/anchor.svg)](#fingerprint-regular)|
+|![fire-filled](icons/telefonica/filled/fire-filled.svg) | | | | |`fire-filled`[![fire-filled](.github/resources/anchor.svg)](#fire-filled)|
+|![fire-light](icons/telefonica/light/fire-light.svg) | | | | |`fire-light`[![fire-light](.github/resources/anchor.svg)](#fire-light)|
+|![fire-regular](icons/telefonica/regular/fire-regular.svg) | | | | |`fire-regular`[![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) | |`firewall-filled`[![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) | |`firewall-light`[![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) | |`firewall-regular`[![firewall-regular](.github/resources/anchor.svg)](#firewall-regular)|
+|![first-aid-kit-filled](icons/telefonica/filled/first-aid-kit-filled.svg) | | | | |`first-aid-kit-filled`[![first-aid-kit-filled](.github/resources/anchor.svg)](#first-aid-kit-filled)|
+|![first-aid-kit-light](icons/telefonica/light/first-aid-kit-light.svg) | | | | |`first-aid-kit-light`[![first-aid-kit-light](.github/resources/anchor.svg)](#first-aid-kit-light)|
+|![first-aid-kit-regular](icons/telefonica/regular/first-aid-kit-regular.svg) | | | | |`first-aid-kit-regular`[![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) | |`fixed-internet-filled`[![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) | |`fixed-internet-light`[![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) | |`fixed-internet-regular`[![fixed-internet-regular](.github/resources/anchor.svg)](#fixed-internet-regular)|
+|![flag-filled](icons/telefonica/filled/flag-filled.svg) | | | | |`flag-filled`[![flag-filled](.github/resources/anchor.svg)](#flag-filled)|
+|![flag-light](icons/telefonica/light/flag-light.svg) | | | | |`flag-light`[![flag-light](.github/resources/anchor.svg)](#flag-light)|
+|![flag-regular](icons/telefonica/regular/flag-regular.svg) | | | |![flag-regular](icons/blau/regular/flag-regular.svg) |`flag-regular`[![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) | |`floorplan-filled`[![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) | |`floorplan-light`[![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) | |`floorplan-regular`[![floorplan-regular](.github/resources/anchor.svg)](#floorplan-regular)|
+|![flower-filled](icons/telefonica/filled/flower-filled.svg) | | | | |`flower-filled`[![flower-filled](.github/resources/anchor.svg)](#flower-filled)|
+|![flower-light](icons/telefonica/light/flower-light.svg) | | | | |`flower-light`[![flower-light](.github/resources/anchor.svg)](#flower-light)|
+|![flower-regular](icons/telefonica/regular/flower-regular.svg) | | | | |`flower-regular`[![flower-regular](.github/resources/anchor.svg)](#flower-regular)|
+|![folder-encrypted-filled](icons/telefonica/filled/folder-encrypted-filled.svg) | | | | |`folder-encrypted-filled`[![folder-encrypted-filled](.github/resources/anchor.svg)](#folder-encrypted-filled)|
+|![folder-encrypted-light](icons/telefonica/light/folder-encrypted-light.svg) | | | | |`folder-encrypted-light`[![folder-encrypted-light](.github/resources/anchor.svg)](#folder-encrypted-light)|
+|![folder-encrypted-regular](icons/telefonica/regular/folder-encrypted-regular.svg) | | | | |`folder-encrypted-regular`[![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) | |`folder-filled`[![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) | |`folder-light`[![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) | |`folder-regular`[![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) | |[![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) | |[![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) | |[![football-ball-regular](.github/resources/anchor.svg)](#football-ball-regular)|
+|![fragrance-filled](icons/telefonica/filled/fragrance-filled.svg) | | | | |`fragrance-filled`[![fragrance-filled](.github/resources/anchor.svg)](#fragrance-filled)|
+|![fragrance-light](icons/telefonica/light/fragrance-light.svg) | | | | |`fragrance-light`[![fragrance-light](.github/resources/anchor.svg)](#fragrance-light)|
+|![fragrance-regular](icons/telefonica/regular/fragrance-regular.svg) | | | | |`fragrance-regular`[![fragrance-regular](.github/resources/anchor.svg)](#fragrance-regular)|
+|![fullscreen-light](icons/telefonica/light/fullscreen-light.svg) | | | | |`fullscreen-light`[![fullscreen-light](.github/resources/anchor.svg)](#fullscreen-light)|
+|![fullscreen-regular](icons/telefonica/regular/fullscreen-regular.svg) | | | | |`fullscreen-regular`[![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) | |`funnel-filled`[![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) | |`funnel-light`[![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) | |`funnel-regular`[![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) | |`fusion-filled`[![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) | |`fusion-light`[![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) | |`fusion-regular`[![fusion-regular](.github/resources/anchor.svg)](#fusion-regular)|
+|![garage-filled](icons/telefonica/filled/garage-filled.svg) | | | | |`garage-filled`[![garage-filled](.github/resources/anchor.svg)](#garage-filled)|
+|![garage-light](icons/telefonica/light/garage-light.svg) | | | | |`garage-light`[![garage-light](.github/resources/anchor.svg)](#garage-light)|
+|![garage-regular](icons/telefonica/regular/garage-regular.svg) | | | | |`garage-regular`[![garage-regular](.github/resources/anchor.svg)](#garage-regular)|
+|![gas-station-filled](icons/telefonica/filled/gas-station-filled.svg) | | | | |`gas-station-filled`[![gas-station-filled](.github/resources/anchor.svg)](#gas-station-filled)|
+|![gas-station-light](icons/telefonica/light/gas-station-light.svg) | | | | |`gas-station-light`[![gas-station-light](.github/resources/anchor.svg)](#gas-station-light)|
+|![gas-station-regular](icons/telefonica/regular/gas-station-regular.svg) | | | | |`gas-station-regular`[![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) | |`gift-filled`[![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) | |`gift-light`[![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) | |`gift-regular`[![gift-regular](.github/resources/anchor.svg)](#gift-regular)|
+|![group-filled](icons/telefonica/filled/group-filled.svg) | | | | |`group-filled`[![group-filled](.github/resources/anchor.svg)](#group-filled)|
+|![group-light](icons/telefonica/light/group-light.svg) | | | | |`group-light`[![group-light](.github/resources/anchor.svg)](#group-light)|
+|![group-regular](icons/telefonica/regular/group-regular.svg) | | | | |`group-regular`[![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) | |`guarantee-filled`[![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) | |`guarantee-light`[![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) | |`guarantee-regular`[![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) | |`guru-filled`[![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) | |`guru-light`[![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) | |`guru-regular`[![guru-regular](.github/resources/anchor.svg)](#guru-regular)|
+|![hamburger-filled](icons/telefonica/filled/hamburger-filled.svg) | | | | |`hamburger-filled`[![hamburger-filled](.github/resources/anchor.svg)](#hamburger-filled)|
+|![hamburger-light](icons/telefonica/light/hamburger-light.svg) | | | | |`hamburger-light`[![hamburger-light](.github/resources/anchor.svg)](#hamburger-light)|
+|![hamburger-regular](icons/telefonica/regular/hamburger-regular.svg) | | | | |`hamburger-regular`[![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) | |`hand-connected-filled`[![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) | |`hand-connected-light`[![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) | |`hand-connected-regular`[![hand-connected-regular](.github/resources/anchor.svg)](#hand-connected-regular)|
+|![hand-down-filled](icons/telefonica/filled/hand-down-filled.svg) | | | | |`hand-down-filled`[![hand-down-filled](.github/resources/anchor.svg)](#hand-down-filled)|
+|![hand-down-light](icons/telefonica/light/hand-down-light.svg) | | | | |`hand-down-light`[![hand-down-light](.github/resources/anchor.svg)](#hand-down-light)|
+|![hand-down-regular](icons/telefonica/regular/hand-down-regular.svg) | | | | |`hand-down-regular`[![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) | |`hand-free-filled`[![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) | |`hand-free-light`[![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) | |`hand-free-regular`[![hand-free-regular](.github/resources/anchor.svg)](#hand-free-regular)|
+|![hand-left-filled](icons/telefonica/filled/hand-left-filled.svg) | | | | |`hand-left-filled`[![hand-left-filled](.github/resources/anchor.svg)](#hand-left-filled)|
+|![hand-left-light](icons/telefonica/light/hand-left-light.svg) | | | | |`hand-left-light`[![hand-left-light](.github/resources/anchor.svg)](#hand-left-light)|
+|![hand-left-regular](icons/telefonica/regular/hand-left-regular.svg) | | | | |`hand-left-regular`[![hand-left-regular](.github/resources/anchor.svg)](#hand-left-regular)|
+|![hand-right-filled](icons/telefonica/filled/hand-right-filled.svg) | | | | |`hand-right-filled`[![hand-right-filled](.github/resources/anchor.svg)](#hand-right-filled)|
+|![hand-right-light](icons/telefonica/light/hand-right-light.svg) | | | | |`hand-right-light`[![hand-right-light](.github/resources/anchor.svg)](#hand-right-light)|
+|![hand-right-regular](icons/telefonica/regular/hand-right-regular.svg) | | | | |`hand-right-regular`[![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) | |`hand-snap-filled`[![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) | |`hand-snap-light`[![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) | |`hand-snap-regular`[![hand-snap-regular](.github/resources/anchor.svg)](#hand-snap-regular)|
+|![hand-up-filled](icons/telefonica/filled/hand-up-filled.svg) | | | | |`hand-up-filled`[![hand-up-filled](.github/resources/anchor.svg)](#hand-up-filled)|
+|![hand-up-light](icons/telefonica/light/hand-up-light.svg) | | | | |`hand-up-light`[![hand-up-light](.github/resources/anchor.svg)](#hand-up-light)|
+|![hand-up-regular](icons/telefonica/regular/hand-up-regular.svg) | | | | |`hand-up-regular`[![hand-up-regular](.github/resources/anchor.svg)](#hand-up-regular)|
+|![hard-disk-filled](icons/telefonica/filled/hard-disk-filled.svg) | | | | |`hard-disk-filled`[![hard-disk-filled](.github/resources/anchor.svg)](#hard-disk-filled)|
+|![hard-disk-light](icons/telefonica/light/hard-disk-light.svg) | | | | |`hard-disk-light`[![hard-disk-light](.github/resources/anchor.svg)](#hard-disk-light)|
+|![hard-disk-regular](icons/telefonica/regular/hard-disk-regular.svg) | | | | |`hard-disk-regular`[![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) | |`hd-filled`[![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) | |`hd-light`[![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) | |`hd-regular`[![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) | |`headphone-bluetooth-filled`[![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) | |`headphone-bluetooth-light`[![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) | |`headphone-bluetooth-regular`[![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) | |`headphones-filled`[![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) | |`headphones-light`[![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) | |`headphones-regular`[![headphones-regular](.github/resources/anchor.svg)](#headphones-regular)|
+|![heart-bubble-filled](icons/telefonica/filled/heart-bubble-filled.svg) | | | | |`heart-bubble-filled`[![heart-bubble-filled](.github/resources/anchor.svg)](#heart-bubble-filled)|
+|![heart-bubble-light](icons/telefonica/light/heart-bubble-light.svg) | | | | |`heart-bubble-light`[![heart-bubble-light](.github/resources/anchor.svg)](#heart-bubble-light)|
+|![heart-bubble-regular](icons/telefonica/regular/heart-bubble-regular.svg) | | | | |`heart-bubble-regular`[![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) | |`heart-filled`[![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) | |`heart-light`[![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) | |`heart-regular`[![heart-regular](.github/resources/anchor.svg)](#heart-regular)|
+| |![high-priority-filled](icons/vivo-new/filled/high-priority-filled.svg) | | | |`high-priority-filled`[![high-priority-filled](.github/resources/anchor.svg)](#high-priority-filled)|
+| |![high-priority-light](icons/vivo-new/light/high-priority-light.svg) | | | |`high-priority-light`[![high-priority-light](.github/resources/anchor.svg)](#high-priority-light)|
+| |![high-priority-regular](icons/vivo-new/regular/high-priority-regular.svg) | | | |`high-priority-regular`[![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) | |`hockey-filled`[![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) | |`hockey-light`[![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) | |`hockey-regular`[![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) | |`home-filled`[![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) | |`home-light`[![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) |`home-regular`[![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) | | | |`home-wifi-filled`[![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) | | | |`home-wifi-light`[![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) | | | |`home-wifi-regular`[![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) | |`homespot-filled`[![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) | |`homespot-light`[![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) | |`homespot-regular`[![homespot-regular](.github/resources/anchor.svg)](#homespot-regular)|
+|![hospital-filled](icons/telefonica/filled/hospital-filled.svg) | | | | |`hospital-filled`[![hospital-filled](.github/resources/anchor.svg)](#hospital-filled)|
+|![hospital-light](icons/telefonica/light/hospital-light.svg) | | | | |`hospital-light`[![hospital-light](.github/resources/anchor.svg)](#hospital-light)|
+|![hospital-regular](icons/telefonica/regular/hospital-regular.svg) | | | | |`hospital-regular`[![hospital-regular](.github/resources/anchor.svg)](#hospital-regular)|
+|![hotel-filled](icons/telefonica/filled/hotel-filled.svg) | | | | |`hotel-filled`[![hotel-filled](.github/resources/anchor.svg)](#hotel-filled)|
+|![hotel-light](icons/telefonica/light/hotel-light.svg) | | | | |`hotel-light`[![hotel-light](.github/resources/anchor.svg)](#hotel-light)|
+|![hotel-regular](icons/telefonica/regular/hotel-regular.svg) | | | | |`hotel-regular`[![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) | |`hotline-filled`[![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) | |`hotline-light`[![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) | |`hotline-regular`[![hotline-regular](.github/resources/anchor.svg)](#hotline-regular)|
+|![id-card-filled](icons/telefonica/filled/id-card-filled.svg) | | | | |`id-card-filled`[![id-card-filled](.github/resources/anchor.svg)](#id-card-filled)|
+|![id-card-light](icons/telefonica/light/id-card-light.svg) | | | | |`id-card-light`[![id-card-light](.github/resources/anchor.svg)](#id-card-light)|
+|![id-card-regular](icons/telefonica/regular/id-card-regular.svg) | | | | |`id-card-regular`[![id-card-regular](.github/resources/anchor.svg)](#id-card-regular)|
+|![image-filled](icons/telefonica/filled/image-filled.svg) | | | | |`image-filled`[![image-filled](.github/resources/anchor.svg)](#image-filled)|
+|![image-light](icons/telefonica/light/image-light.svg) | | | | |`image-light`[![image-light](.github/resources/anchor.svg)](#image-light)|
+|![image-regular](icons/telefonica/regular/image-regular.svg) | | | | |`image-regular`[![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) | |`import-filled`[![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) | |`import-light`[![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) | |`import-regular`[![import-regular](.github/resources/anchor.svg)](#import-regular)|
+|![infinity-light](icons/telefonica/light/infinity-light.svg) | | | | |`infinity-light`[![infinity-light](.github/resources/anchor.svg)](#infinity-light)|
+|![infinity-regular](icons/telefonica/regular/infinity-regular.svg) | | | | |`infinity-regular`[![infinity-regular](.github/resources/anchor.svg)](#infinity-regular)|
+|![information-regular](icons/telefonica/regular/information-regular.svg) | | | | |`information-regular`[![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) | |`information-user-filled`[![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) | |`information-user-light`[![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) |`information-user-regular`[![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) | |`internet-device-filled`[![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) | |`internet-device-light`[![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) | |`internet-device-regular`[![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) | |`internet-filled`[![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) | |`internet-light`[![internet-light](.github/resources/anchor.svg)](#internet-light)|
+|![internet-pendrive-filled](icons/telefonica/filled/internet-pendrive-filled.svg) | | | | |`internet-pendrive-filled`[![internet-pendrive-filled](.github/resources/anchor.svg)](#internet-pendrive-filled)|
+|![internet-pendrive-light](icons/telefonica/light/internet-pendrive-light.svg) | | | | |`internet-pendrive-light`[![internet-pendrive-light](.github/resources/anchor.svg)](#internet-pendrive-light)|
+|![internet-pendrive-regular](icons/telefonica/regular/internet-pendrive-regular.svg) | | | | |`internet-pendrive-regular`[![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) |`internet-regular`[![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) | |`intranet-filled`[![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) | |`intranet-light`[![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) | |`intranet-regular`[![intranet-regular](.github/resources/anchor.svg)](#intranet-regular)|
+|![invoice-digital-filled](icons/telefonica/filled/invoice-digital-filled.svg) | | | | |`invoice-digital-filled`[![invoice-digital-filled](.github/resources/anchor.svg)](#invoice-digital-filled)|
+|![invoice-digital-light](icons/telefonica/light/invoice-digital-light.svg) | | | | |`invoice-digital-light`[![invoice-digital-light](.github/resources/anchor.svg)](#invoice-digital-light)|
+|![invoice-digital-regular](icons/telefonica/regular/invoice-digital-regular.svg) | | | | |`invoice-digital-regular`[![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) | |`invoice-euro-filled`[![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) | |`invoice-euro-light`[![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) |`invoice-euro-regular`[![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) | |`invoice-plan-file-filled`[![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) | |`invoice-plan-file-light`[![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) |`invoice-plan-file-regular`[![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) | |`iot-sensor-co2-filled`[![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) | |`iot-sensor-co2-light`[![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) | |`iot-sensor-co2-regular`[![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) | |`iot-sensor-humidity-filled`[![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) | |`iot-sensor-humidity-light`[![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) | |`iot-sensor-humidity-regular`[![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) | |`iot-sensor-temperature-filled`[![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) | |`iot-sensor-temperature-light`[![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) | |`iot-sensor-temperature-regular`[![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) | |`justice-filled`[![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) | |`justice-light`[![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) | |`justice-regular`[![justice-regular](.github/resources/anchor.svg)](#justice-regular)|
+|![kebab-menu-light](icons/telefonica/light/kebab-menu-light.svg) | | | | |[![kebab-menu-light](.github/resources/anchor.svg)](#kebab-menu-light)|
+|![key-filled](icons/telefonica/filled/key-filled.svg) | | | | |`key-filled`[![key-filled](.github/resources/anchor.svg)](#key-filled)|
+|![key-light](icons/telefonica/light/key-light.svg) | | | | |`key-light`[![key-light](.github/resources/anchor.svg)](#key-light)|
+|![key-regular](icons/telefonica/regular/key-regular.svg) | | | | |`key-regular`[![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) | |`keyboard-filled`[![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) | |`keyboard-light`[![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) | |`keyboard-regular`[![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) | |`landline-filled`[![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) | |`landline-light`[![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) | |`landline-regular`[![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) | |`language-filled`[![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) | |`language-light`[![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) | |`language-regular`[![language-regular](.github/resources/anchor.svg)](#language-regular)|
+|![laptop-charging-filled](icons/telefonica/filled/laptop-charging-filled.svg) | | | | |`laptop-charging-filled`[![laptop-charging-filled](.github/resources/anchor.svg)](#laptop-charging-filled)|
+|![laptop-charging-light](icons/telefonica/light/laptop-charging-light.svg) | | | | |`laptop-charging-light`[![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) | |`laptop-check-filled`[![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) | |`laptop-check-light`[![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) | |`laptop-check-regular`[![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) | |`laptop-filled`[![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) | |`laptop-goto-filled`[![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) | |`laptop-goto-light`[![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) | |`laptop-goto-regular`[![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) | |`laptop-light`[![laptop-light](.github/resources/anchor.svg)](#laptop-light)|
+| | |![laptop-regular](icons/o2-new/regular/laptop-regular.svg) | | |`laptop-regular`[![laptop-regular](.github/resources/anchor.svg)](#laptop-regular)|
+|![layers-filled](icons/telefonica/filled/layers-filled.svg) | | | | |`layers-filled`[![layers-filled](.github/resources/anchor.svg)](#layers-filled)|
+|![layers-light](icons/telefonica/light/layers-light.svg) | | | | |`layers-light`[![layers-light](.github/resources/anchor.svg)](#layers-light)|
+|![layers-regular](icons/telefonica/regular/layers-regular.svg) | | | | |`layers-regular`[![layers-regular](.github/resources/anchor.svg)](#layers-regular)|
+|![learn-data-filled](icons/telefonica/filled/learn-data-filled.svg) | | | | |`learn-data-filled`[![learn-data-filled](.github/resources/anchor.svg)](#learn-data-filled)|
+|![learn-data-light](icons/telefonica/light/learn-data-light.svg) | | | | |`learn-data-light`[![learn-data-light](.github/resources/anchor.svg)](#learn-data-light)|
+|![learn-data-regular](icons/telefonica/regular/learn-data-regular.svg) | | | | |`learn-data-regular`[![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) | |`lidar-filled`[![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) | |`lidar-light`[![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) | |`lidar-regular`[![lidar-regular](.github/resources/anchor.svg)](#lidar-regular)|
+|![lifeguard-float-filled](icons/telefonica/filled/lifeguard-float-filled.svg) | | | | |`lifeguard-float-filled`[![lifeguard-float-filled](.github/resources/anchor.svg)](#lifeguard-float-filled)|
+|![lifeguard-float-light](icons/telefonica/light/lifeguard-float-light.svg) | | | | |`lifeguard-float-light`[![lifeguard-float-light](.github/resources/anchor.svg)](#lifeguard-float-light)|
+|![lifeguard-float-regular](icons/telefonica/regular/lifeguard-float-regular.svg) | | | | |`lifeguard-float-regular`[![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) | |`lifts-filled`[![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) | |`lifts-light`[![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) | |`lifts-regular`[![lifts-regular](.github/resources/anchor.svg)](#lifts-regular)|
+| |![light-switch-regular](icons/vivo-new/regular/light-switch-regular.svg) | | | |`light-switch-regular`[![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) | |`lightbulb-filled`[![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) | |`lightbulb-light`[![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) | |`lightbulb-regular`[![lightbulb-regular](.github/resources/anchor.svg)](#lightbulb-regular)|
+|![lightning-filled](icons/telefonica/filled/lightning-filled.svg) | | | | |`lightning-filled`[![lightning-filled](.github/resources/anchor.svg)](#lightning-filled)|
+|![lightning-light](icons/telefonica/light/lightning-light.svg) | | | | |`lightning-light`[![lightning-light](.github/resources/anchor.svg)](#lightning-light)|
+|![lightning-regular](icons/telefonica/regular/lightning-regular.svg) | | | | |`lightning-regular`[![lightning-regular](.github/resources/anchor.svg)](#lightning-regular)|
+|![link-filled](icons/telefonica/filled/link-filled.svg) | | | | |`link-filled`[![link-filled](.github/resources/anchor.svg)](#link-filled)|
+|![link-regular](icons/telefonica/regular/link-regular.svg) | | | | |`link-regular`[![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) | |`list-document-filled`[![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) | |`list-document-light`[![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) | |`list-document-regular`[![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) | |`list-filled`[![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) | |`list-light`[![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) | |`list-regular`[![list-regular](.github/resources/anchor.svg)](#list-regular)|
+| |![loan-filled](icons/vivo-new/filled/loan-filled.svg) | | | |`loan-filled`[![loan-filled](.github/resources/anchor.svg)](#loan-filled)|
+| |![loan-light](icons/vivo-new/light/loan-light.svg) | | | |`loan-light`[![loan-light](.github/resources/anchor.svg)](#loan-light)|
+| |![loan-regular](icons/vivo-new/regular/loan-regular.svg) | | | |`loan-regular`[![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) | |`location-filled`[![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) | |`location-light`[![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) | |`location-map-filled`[![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) | |`location-map-light`[![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) | |`location-map-regular`[![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) | |`location-regular`[![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) | |`lock-closed-filled`[![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) | |`lock-closed-light`[![lock-closed-light](.github/resources/anchor.svg)](#lock-closed-light)|
+|![lock-closed-regular](icons/telefonica/regular/lock-closed-regular.svg) | |![lock-closed-regular](icons/o2-new/regular/lock-closed-regular.svg) |![lock-closed-regular](icons/o2/regular/lock-closed-regular.svg) |![lock-closed-regular](icons/blau/regular/lock-closed-regular.svg) |`lock-closed-regular`[![lock-closed-regular](.github/resources/anchor.svg)](#lock-closed-regular)|
+|![lock-de-data-filled](icons/telefonica/filled/lock-de-data-filled.svg) | | | | |`lock-de-data-filled`[![lock-de-data-filled](.github/resources/anchor.svg)](#lock-de-data-filled)|
+|![lock-de-data-light](icons/telefonica/light/lock-de-data-light.svg) | | | | |`lock-de-data-light`[![lock-de-data-light](.github/resources/anchor.svg)](#lock-de-data-light)|
+|![lock-de-data-regular](icons/telefonica/regular/lock-de-data-regular.svg) | | | | |`lock-de-data-regular`[![lock-de-data-regular](.github/resources/anchor.svg)](#lock-de-data-regular)|
+| | |![lock-eye-closed-filled](icons/o2-new/filled/lock-eye-closed-filled.svg) |![lock-eye-closed-filled](icons/o2/filled/lock-eye-closed-filled.svg) | |`lock-eye-closed-filled`[![lock-eye-closed-filled](.github/resources/anchor.svg)](#lock-eye-closed-filled)|
+| | |![lock-eye-closed-light](icons/o2-new/light/lock-eye-closed-light.svg) |![lock-eye-closed-light](icons/o2/light/lock-eye-closed-light.svg) | |`lock-eye-closed-light`[![lock-eye-closed-light](.github/resources/anchor.svg)](#lock-eye-closed-light)|
+| | |![lock-eye-closed-regular](icons/o2-new/regular/lock-eye-closed-regular.svg) |![lock-eye-closed-regular](icons/o2/regular/lock-eye-closed-regular.svg) | |`lock-eye-closed-regular`[![lock-eye-closed-regular](.github/resources/anchor.svg)](#lock-eye-closed-regular)|
+|![lock-open-filled](icons/telefonica/filled/lock-open-filled.svg) | |![lock-open-filled](icons/o2-new/filled/lock-open-filled.svg) |![lock-open-filled](icons/o2/filled/lock-open-filled.svg) | |`lock-open-filled`[![lock-open-filled](.github/resources/anchor.svg)](#lock-open-filled)|
+|![lock-open-light](icons/telefonica/light/lock-open-light.svg) | |![lock-open-light](icons/o2-new/light/lock-open-light.svg) |![lock-open-light](icons/o2/light/lock-open-light.svg) | |`lock-open-light`[![lock-open-light](.github/resources/anchor.svg)](#lock-open-light)|
+|![lock-open-regular](icons/telefonica/regular/lock-open-regular.svg) | |![lock-open-regular](icons/o2-new/regular/lock-open-regular.svg) |![lock-open-regular](icons/o2/regular/lock-open-regular.svg) |![lock-open-regular](icons/blau/regular/lock-open-regular.svg) |`lock-open-regular`[![lock-open-regular](.github/resources/anchor.svg)](#lock-open-regular)|
+| | |![logout-filled](icons/o2-new/filled/logout-filled.svg) |![logout-filled](icons/o2/filled/logout-filled.svg) | |`logout-filled`[![logout-filled](.github/resources/anchor.svg)](#logout-filled)|
+| | |![logout-light](icons/o2-new/light/logout-light.svg) |![logout-light](icons/o2/light/logout-light.svg) | |`logout-light`[![logout-light](.github/resources/anchor.svg)](#logout-light)|
+|![logout-regular](icons/telefonica/regular/logout-regular.svg) | |![logout-regular](icons/o2-new/regular/logout-regular.svg) |![logout-regular](icons/o2/regular/logout-regular.svg) |![logout-regular](icons/blau/regular/logout-regular.svg) |`logout-regular`[![logout-regular](.github/resources/anchor.svg)](#logout-regular)|
+|![long-distance-call-filled](icons/telefonica/filled/long-distance-call-filled.svg) | | | | |`long-distance-call-filled`[![long-distance-call-filled](.github/resources/anchor.svg)](#long-distance-call-filled)|
+|![long-distance-call-light](icons/telefonica/light/long-distance-call-light.svg) | | | | |`long-distance-call-light`[![long-distance-call-light](.github/resources/anchor.svg)](#long-distance-call-light)|
+|![long-distance-call-regular](icons/telefonica/regular/long-distance-call-regular.svg) | | | | |`long-distance-call-regular`[![long-distance-call-regular](.github/resources/anchor.svg)](#long-distance-call-regular)|
+|![loss-theft-devices-filled](icons/telefonica/filled/loss-theft-devices-filled.svg) | | | | |`loss-theft-devices-filled`[![loss-theft-devices-filled](.github/resources/anchor.svg)](#loss-theft-devices-filled)|
+|![loss-theft-devices-light](icons/telefonica/light/loss-theft-devices-light.svg) | | | | |`loss-theft-devices-light`[![loss-theft-devices-light](.github/resources/anchor.svg)](#loss-theft-devices-light)|
+|![loss-theft-devices-regular](icons/telefonica/regular/loss-theft-devices-regular.svg) | | | | |`loss-theft-devices-regular`[![loss-theft-devices-regular](.github/resources/anchor.svg)](#loss-theft-devices-regular)|
+| | |![lost-found-filled](icons/o2-new/filled/lost-found-filled.svg) |![lost-found-filled](icons/o2/filled/lost-found-filled.svg) | |`lost-found-filled`[![lost-found-filled](.github/resources/anchor.svg)](#lost-found-filled)|
+| | |![lost-found-light](icons/o2-new/light/lost-found-light.svg) |![lost-found-light](icons/o2/light/lost-found-light.svg) | |`lost-found-light`[![lost-found-light](.github/resources/anchor.svg)](#lost-found-light)|
+| | |![lost-found-regular](icons/o2-new/regular/lost-found-regular.svg) |![lost-found-regular](icons/o2/regular/lost-found-regular.svg) | |`lost-found-regular`[![lost-found-regular](.github/resources/anchor.svg)](#lost-found-regular)|
+| |![lotus-filled](icons/vivo-new/filled/lotus-filled.svg) | | | |`lotus-filled`[![lotus-filled](.github/resources/anchor.svg)](#lotus-filled)|
+| |![lotus-light](icons/vivo-new/light/lotus-light.svg) | | | |`lotus-light`[![lotus-light](.github/resources/anchor.svg)](#lotus-light)|
+| |![lotus-regular](icons/vivo-new/regular/lotus-regular.svg) | | | |`lotus-regular`[![lotus-regular](.github/resources/anchor.svg)](#lotus-regular)|
+|![loudspeaker-filled](icons/telefonica/filled/loudspeaker-filled.svg) | | | | |`loudspeaker-filled`[![loudspeaker-filled](.github/resources/anchor.svg)](#loudspeaker-filled)|
+|![loudspeaker-light](icons/telefonica/light/loudspeaker-light.svg) | | | | |`loudspeaker-light`[![loudspeaker-light](.github/resources/anchor.svg)](#loudspeaker-light)|
+|![loudspeaker-regular](icons/telefonica/regular/loudspeaker-regular.svg) | | | | |`loudspeaker-regular`[![loudspeaker-regular](.github/resources/anchor.svg)](#loudspeaker-regular)|
+|![lungs-filled](icons/telefonica/filled/lungs-filled.svg) | | | | |`lungs-filled`[![lungs-filled](.github/resources/anchor.svg)](#lungs-filled)|
+|![lungs-light](icons/telefonica/light/lungs-light.svg) | | | | |`lungs-light`[![lungs-light](.github/resources/anchor.svg)](#lungs-light)|
+|![lungs-regular](icons/telefonica/regular/lungs-regular.svg) | | | | |`lungs-regular`[![lungs-regular](.github/resources/anchor.svg)](#lungs-regular)|
+| | |![managed-lan-filled](icons/o2-new/filled/managed-lan-filled.svg) |![managed-lan-filled](icons/o2/filled/managed-lan-filled.svg) | |`managed-lan-filled`[![managed-lan-filled](.github/resources/anchor.svg)](#managed-lan-filled)|
+| | |![managed-lan-light](icons/o2-new/light/managed-lan-light.svg) |![managed-lan-light](icons/o2/light/managed-lan-light.svg) | |`managed-lan-light`[![managed-lan-light](.github/resources/anchor.svg)](#managed-lan-light)|
+| | |![managed-lan-regular](icons/o2-new/regular/managed-lan-regular.svg) |![managed-lan-regular](icons/o2/regular/managed-lan-regular.svg) | |`managed-lan-regular`[![managed-lan-regular](.github/resources/anchor.svg)](#managed-lan-regular)|
+|![map-filled](icons/telefonica/filled/map-filled.svg) | | | | |`map-filled`[![map-filled](.github/resources/anchor.svg)](#map-filled)|
+|![map-light](icons/telefonica/light/map-light.svg) | | | | |`map-light`[![map-light](.github/resources/anchor.svg)](#map-light)|
+|![map-regular](icons/telefonica/regular/map-regular.svg) | | | | |`map-regular`[![map-regular](.github/resources/anchor.svg)](#map-regular)|
+| | |![mast-filled](icons/o2-new/filled/mast-filled.svg) |![mast-filled](icons/o2/filled/mast-filled.svg) | |`mast-filled`[![mast-filled](.github/resources/anchor.svg)](#mast-filled)|
+| | |![mast-light](icons/o2-new/light/mast-light.svg) |![mast-light](icons/o2/light/mast-light.svg) | |`mast-light`[![mast-light](.github/resources/anchor.svg)](#mast-light)|
+| | |![mast-regular](icons/o2-new/regular/mast-regular.svg) |![mast-regular](icons/o2/regular/mast-regular.svg) | |`mast-regular`[![mast-regular](.github/resources/anchor.svg)](#mast-regular)|
+|![meatball-filled](icons/telefonica/filled/meatball-filled.svg) | | | | |`meatball-filled`[![meatball-filled](.github/resources/anchor.svg)](#meatball-filled)|
+|![medical-history-filled](icons/telefonica/filled/medical-history-filled.svg) | |![medical-history-filled](icons/o2-new/filled/medical-history-filled.svg) |![medical-history-filled](icons/o2/filled/medical-history-filled.svg) | |`medical-history-filled`[![medical-history-filled](.github/resources/anchor.svg)](#medical-history-filled)|
+|![medical-history-light](icons/telefonica/light/medical-history-light.svg) | |![medical-history-light](icons/o2-new/light/medical-history-light.svg) |![medical-history-light](icons/o2/light/medical-history-light.svg) | |`medical-history-light`[![medical-history-light](.github/resources/anchor.svg)](#medical-history-light)|
+|![medical-history-regular](icons/telefonica/regular/medical-history-regular.svg) | |![medical-history-regular](icons/o2-new/regular/medical-history-regular.svg) |![medical-history-regular](icons/o2/regular/medical-history-regular.svg) | |`medical-history-regular`[![medical-history-regular](.github/resources/anchor.svg)](#medical-history-regular)|
+|![menu-light](icons/telefonica/light/menu-light.svg) | | | | |[![menu-light](.github/resources/anchor.svg)](#menu-light)|
+|![menu-regular](icons/telefonica/regular/menu-regular.svg) | | | | |[![menu-regular](.github/resources/anchor.svg)](#menu-regular)|
+|![microchip-filled](icons/telefonica/filled/microchip-filled.svg) | | | | |`microchip-filled`[![microchip-filled](.github/resources/anchor.svg)](#microchip-filled)|
+|![microchip-light](icons/telefonica/light/microchip-light.svg) | | | | |`microchip-light`[![microchip-light](.github/resources/anchor.svg)](#microchip-light)|
+|![microchip-regular](icons/telefonica/regular/microchip-regular.svg) | | | | |`microchip-regular`[![microchip-regular](.github/resources/anchor.svg)](#microchip-regular)|
+|![microphone-filled](icons/telefonica/filled/microphone-filled.svg) | |![microphone-filled](icons/o2-new/filled/microphone-filled.svg) |![microphone-filled](icons/o2/filled/microphone-filled.svg) | |`microphone-filled`[![microphone-filled](.github/resources/anchor.svg)](#microphone-filled)|
+|![microphone-light](icons/telefonica/light/microphone-light.svg) | |![microphone-light](icons/o2-new/light/microphone-light.svg) |![microphone-light](icons/o2/light/microphone-light.svg) | |`microphone-light`[![microphone-light](.github/resources/anchor.svg)](#microphone-light)|
+|![microphone-regular](icons/telefonica/regular/microphone-regular.svg) | |![microphone-regular](icons/o2-new/regular/microphone-regular.svg) |![microphone-regular](icons/o2/regular/microphone-regular.svg) | |`microphone-regular`[![microphone-regular](.github/resources/anchor.svg)](#microphone-regular)|
+|![millennials-filled](icons/telefonica/filled/millennials-filled.svg) | |![millennials-filled](icons/o2-new/filled/millennials-filled.svg) |![millennials-filled](icons/o2/filled/millennials-filled.svg) | |`millennials-filled`[![millennials-filled](.github/resources/anchor.svg)](#millennials-filled)|
+|![millennials-light](icons/telefonica/light/millennials-light.svg) | |![millennials-light](icons/o2-new/light/millennials-light.svg) |![millennials-light](icons/o2/light/millennials-light.svg) | |`millennials-light`[![millennials-light](.github/resources/anchor.svg)](#millennials-light)|
+|![millennials-regular](icons/telefonica/regular/millennials-regular.svg) | |![millennials-regular](icons/o2-new/regular/millennials-regular.svg) |![millennials-regular](icons/o2/regular/millennials-regular.svg) | |`millennials-regular`[![millennials-regular](.github/resources/anchor.svg)](#millennials-regular)|
+| | |![mms-filled](icons/o2-new/filled/mms-filled.svg) |![mms-filled](icons/o2/filled/mms-filled.svg) | |`mms-filled`[![mms-filled](.github/resources/anchor.svg)](#mms-filled)|
+| | |![mms-light](icons/o2-new/light/mms-light.svg) |![mms-light](icons/o2/light/mms-light.svg) | |`mms-light`[![mms-light](.github/resources/anchor.svg)](#mms-light)|
+| | |![mms-regular](icons/o2-new/regular/mms-regular.svg) |![mms-regular](icons/o2/regular/mms-regular.svg) | |`mms-regular`[![mms-regular](.github/resources/anchor.svg)](#mms-regular)|
+| | |![mobile-add-user-filled](icons/o2-new/filled/mobile-add-user-filled.svg) |![mobile-add-user-filled](icons/o2/filled/mobile-add-user-filled.svg) | |`mobile-add-user-filled`[![mobile-add-user-filled](.github/resources/anchor.svg)](#mobile-add-user-filled)|
+| | |![mobile-add-user-light](icons/o2-new/light/mobile-add-user-light.svg) |![mobile-add-user-light](icons/o2/light/mobile-add-user-light.svg) | |`mobile-add-user-light`[![mobile-add-user-light](.github/resources/anchor.svg)](#mobile-add-user-light)|
+| | |![mobile-add-user-regular](icons/o2-new/regular/mobile-add-user-regular.svg) |![mobile-add-user-regular](icons/o2/regular/mobile-add-user-regular.svg) | |`mobile-add-user-regular`[![mobile-add-user-regular](.github/resources/anchor.svg)](#mobile-add-user-regular)|
+| | |![mobile-coverage-filled](icons/o2-new/filled/mobile-coverage-filled.svg) |![mobile-coverage-filled](icons/o2/filled/mobile-coverage-filled.svg) | |`mobile-coverage-filled`[![mobile-coverage-filled](.github/resources/anchor.svg)](#mobile-coverage-filled)|
+| | |![mobile-coverage-light](icons/o2-new/light/mobile-coverage-light.svg) |![mobile-coverage-light](icons/o2/light/mobile-coverage-light.svg) | |`mobile-coverage-light`[![mobile-coverage-light](.github/resources/anchor.svg)](#mobile-coverage-light)|
+| | |![mobile-coverage-regular](icons/o2-new/regular/mobile-coverage-regular.svg) |![mobile-coverage-regular](icons/o2/regular/mobile-coverage-regular.svg) | |`mobile-coverage-regular`[![mobile-coverage-regular](.github/resources/anchor.svg)](#mobile-coverage-regular)|
+|![mobile-device-filled](icons/telefonica/filled/mobile-device-filled.svg) | |![mobile-device-filled](icons/o2-new/filled/mobile-device-filled.svg) |![mobile-device-filled](icons/o2/filled/mobile-device-filled.svg) | |`mobile-device-filled`[![mobile-device-filled](.github/resources/anchor.svg)](#mobile-device-filled)|
+|![mobile-device-light](icons/telefonica/light/mobile-device-light.svg) | |![mobile-device-light](icons/o2-new/light/mobile-device-light.svg) |![mobile-device-light](icons/o2/light/mobile-device-light.svg) | |`mobile-device-light`[![mobile-device-light](.github/resources/anchor.svg)](#mobile-device-light)|
+|![mobile-device-regular](icons/telefonica/regular/mobile-device-regular.svg) | |![mobile-device-regular](icons/o2-new/regular/mobile-device-regular.svg) |![mobile-device-regular](icons/o2/regular/mobile-device-regular.svg) |![mobile-device-regular](icons/blau/regular/mobile-device-regular.svg) |`mobile-device-regular`[![mobile-device-regular](.github/resources/anchor.svg)](#mobile-device-regular)|
+| | |![mobile-euro-filled](icons/o2-new/filled/mobile-euro-filled.svg) |![mobile-euro-filled](icons/o2/filled/mobile-euro-filled.svg) | |`mobile-euro-filled`[![mobile-euro-filled](.github/resources/anchor.svg)](#mobile-euro-filled)|
+| | |![mobile-euro-light](icons/o2-new/light/mobile-euro-light.svg) |![mobile-euro-light](icons/o2/light/mobile-euro-light.svg) | |`mobile-euro-light`[![mobile-euro-light](.github/resources/anchor.svg)](#mobile-euro-light)|
+| | |![mobile-euro-regular](icons/o2-new/regular/mobile-euro-regular.svg) |![mobile-euro-regular](icons/o2/regular/mobile-euro-regular.svg) | |`mobile-euro-regular`[![mobile-euro-regular](.github/resources/anchor.svg)](#mobile-euro-regular)|
+|![mobile-pause-filled](icons/telefonica/filled/mobile-pause-filled.svg) | | | | |`mobile-pause-filled`[![mobile-pause-filled](.github/resources/anchor.svg)](#mobile-pause-filled)|
+|![mobile-pause-light](icons/telefonica/light/mobile-pause-light.svg) | | | | |`mobile-pause-light`[![mobile-pause-light](.github/resources/anchor.svg)](#mobile-pause-light)|
+|![mobile-pause-regular](icons/telefonica/regular/mobile-pause-regular.svg) | | | | |`mobile-pause-regular`[![mobile-pause-regular](.github/resources/anchor.svg)](#mobile-pause-regular)|
+|![mobile-play-filled](icons/telefonica/filled/mobile-play-filled.svg) | | | | |`mobile-play-filled`[![mobile-play-filled](.github/resources/anchor.svg)](#mobile-play-filled)|
+|![mobile-play-light](icons/telefonica/light/mobile-play-light.svg) | | | | |`mobile-play-light`[![mobile-play-light](.github/resources/anchor.svg)](#mobile-play-light)|
+|![mobile-play-regular](icons/telefonica/regular/mobile-play-regular.svg) | | | | |`mobile-play-regular`[![mobile-play-regular](.github/resources/anchor.svg)](#mobile-play-regular)|
+|![mobile-question-filled](icons/telefonica/filled/mobile-question-filled.svg) | | | | |`mobile-question-filled`[![mobile-question-filled](.github/resources/anchor.svg)](#mobile-question-filled)|
+|![mobile-question-light](icons/telefonica/light/mobile-question-light.svg) | | | | |`mobile-question-light`[![mobile-question-light](.github/resources/anchor.svg)](#mobile-question-light)|
+|![mobile-question-regular](icons/telefonica/regular/mobile-question-regular.svg) | | | | |`mobile-question-regular`[![mobile-question-regular](.github/resources/anchor.svg)](#mobile-question-regular)|
+| | |![mobile-shield-filled](icons/o2-new/filled/mobile-shield-filled.svg) |![mobile-shield-filled](icons/o2/filled/mobile-shield-filled.svg) | |`mobile-shield-filled`[![mobile-shield-filled](.github/resources/anchor.svg)](#mobile-shield-filled)|
+| | |![mobile-shield-light](icons/o2-new/light/mobile-shield-light.svg) |![mobile-shield-light](icons/o2/light/mobile-shield-light.svg) | |`mobile-shield-light`[![mobile-shield-light](.github/resources/anchor.svg)](#mobile-shield-light)|
+| | |![mobile-shield-regular](icons/o2-new/regular/mobile-shield-regular.svg) |![mobile-shield-regular](icons/o2/regular/mobile-shield-regular.svg) | |`mobile-shield-regular`[![mobile-shield-regular](.github/resources/anchor.svg)](#mobile-shield-regular)|
+| | |![mobile-usage-filled](icons/o2-new/filled/mobile-usage-filled.svg) |![mobile-usage-filled](icons/o2/filled/mobile-usage-filled.svg) | |`mobile-usage-filled`[![mobile-usage-filled](.github/resources/anchor.svg)](#mobile-usage-filled)|
+| | |![mobile-usage-light](icons/o2-new/light/mobile-usage-light.svg) |![mobile-usage-light](icons/o2/light/mobile-usage-light.svg) | |`mobile-usage-light`[![mobile-usage-light](.github/resources/anchor.svg)](#mobile-usage-light)|
+| | |![mobile-usage-regular](icons/o2-new/regular/mobile-usage-regular.svg) |![mobile-usage-regular](icons/o2/regular/mobile-usage-regular.svg) | |`mobile-usage-regular`[![mobile-usage-regular](.github/resources/anchor.svg)](#mobile-usage-regular)|
+| | |![mobile-user-filled](icons/o2-new/filled/mobile-user-filled.svg) |![mobile-user-filled](icons/o2/filled/mobile-user-filled.svg) | |`mobile-user-filled`[![mobile-user-filled](.github/resources/anchor.svg)](#mobile-user-filled)|
+| | |![mobile-user-light](icons/o2-new/light/mobile-user-light.svg) |![mobile-user-light](icons/o2/light/mobile-user-light.svg) | |`mobile-user-light`[![mobile-user-light](.github/resources/anchor.svg)](#mobile-user-light)|
+| | |![mobile-user-regular](icons/o2-new/regular/mobile-user-regular.svg) |![mobile-user-regular](icons/o2/regular/mobile-user-regular.svg) | |`mobile-user-regular`[![mobile-user-regular](.github/resources/anchor.svg)](#mobile-user-regular)|
+|![money-drop-filled](icons/telefonica/filled/money-drop-filled.svg) | | | | |`money-drop-filled`[![money-drop-filled](.github/resources/anchor.svg)](#money-drop-filled)|
+|![money-drop-light](icons/telefonica/light/money-drop-light.svg) | | | | |`money-drop-light`[![money-drop-light](.github/resources/anchor.svg)](#money-drop-light)|
+|![money-drop-regular](icons/telefonica/regular/money-drop-regular.svg) | | | | |`money-drop-regular`[![money-drop-regular](.github/resources/anchor.svg)](#money-drop-regular)|
+|![money-rise-filled](icons/telefonica/filled/money-rise-filled.svg) | | | | |`money-rise-filled`[![money-rise-filled](.github/resources/anchor.svg)](#money-rise-filled)|
+|![money-rise-light](icons/telefonica/light/money-rise-light.svg) | | | | |`money-rise-light`[![money-rise-light](.github/resources/anchor.svg)](#money-rise-light)|
+|![money-rise-regular](icons/telefonica/regular/money-rise-regular.svg) | | | | |`money-rise-regular`[![money-rise-regular](.github/resources/anchor.svg)](#money-rise-regular)|
+|![moon-filled](icons/telefonica/filled/moon-filled.svg) | | | | |`moon-filled`[![moon-filled](.github/resources/anchor.svg)](#moon-filled)|
+|![moon-light](icons/telefonica/light/moon-light.svg) | | | | |`moon-light`[![moon-light](.github/resources/anchor.svg)](#moon-light)|
+|![moon-regular](icons/telefonica/regular/moon-regular.svg) |![moon-regular](icons/vivo-new/regular/moon-regular.svg) | | | |`moon-regular`[![moon-regular](.github/resources/anchor.svg)](#moon-regular)|
+|![mouse-filled](icons/telefonica/filled/mouse-filled.svg) | | | | |`mouse-filled`[![mouse-filled](.github/resources/anchor.svg)](#mouse-filled)|
+|![mouse-light](icons/telefonica/light/mouse-light.svg) | | | | |`mouse-light`[![mouse-light](.github/resources/anchor.svg)](#mouse-light)|
+|![mouse-regular](icons/telefonica/regular/mouse-regular.svg) | | | | |`mouse-regular`[![mouse-regular](.github/resources/anchor.svg)](#mouse-regular)|
+|![multidevice-filled](icons/telefonica/filled/multidevice-filled.svg) | |![multidevice-filled](icons/o2-new/filled/multidevice-filled.svg) |![multidevice-filled](icons/o2/filled/multidevice-filled.svg) | |`multidevice-filled`[![multidevice-filled](.github/resources/anchor.svg)](#multidevice-filled)|
+|![multidevice-light](icons/telefonica/light/multidevice-light.svg) | |![multidevice-light](icons/o2-new/light/multidevice-light.svg) |![multidevice-light](icons/o2/light/multidevice-light.svg) | |`multidevice-light`[![multidevice-light](.github/resources/anchor.svg)](#multidevice-light)|
+|![multidevice-regular](icons/telefonica/regular/multidevice-regular.svg) | |![multidevice-regular](icons/o2-new/regular/multidevice-regular.svg) |![multidevice-regular](icons/o2/regular/multidevice-regular.svg) |![multidevice-regular](icons/blau/regular/multidevice-regular.svg) |`multidevice-regular`[![multidevice-regular](.github/resources/anchor.svg)](#multidevice-regular)|
+| | |![multisave-filled](icons/o2-new/filled/multisave-filled.svg) |![multisave-filled](icons/o2/filled/multisave-filled.svg) | |`multisave-filled`[![multisave-filled](.github/resources/anchor.svg)](#multisave-filled)|
+| | |![multisave-light](icons/o2-new/light/multisave-light.svg) |![multisave-light](icons/o2/light/multisave-light.svg) | |`multisave-light`[![multisave-light](.github/resources/anchor.svg)](#multisave-light)|
+| | |![multisave-regular](icons/o2-new/regular/multisave-regular.svg) |![multisave-regular](icons/o2/regular/multisave-regular.svg) | |`multisave-regular`[![multisave-regular](.github/resources/anchor.svg)](#multisave-regular)|
+| | |![multisim-filled](icons/o2-new/filled/multisim-filled.svg) |![multisim-filled](icons/o2/filled/multisim-filled.svg) | |`multisim-filled`[![multisim-filled](.github/resources/anchor.svg)](#multisim-filled)|
+| | |![multisim-light](icons/o2-new/light/multisim-light.svg) |![multisim-light](icons/o2/light/multisim-light.svg) | |`multisim-light`[![multisim-light](.github/resources/anchor.svg)](#multisim-light)|
+| | |![multisim-regular](icons/o2-new/regular/multisim-regular.svg) |![multisim-regular](icons/o2/regular/multisim-regular.svg) | |`multisim-regular`[![multisim-regular](.github/resources/anchor.svg)](#multisim-regular)|
+|![museum-filled](icons/telefonica/filled/museum-filled.svg) | | | | |`museum-filled`[![museum-filled](.github/resources/anchor.svg)](#museum-filled)|
+|![museum-light](icons/telefonica/light/museum-light.svg) | | | | |`museum-light`[![museum-light](.github/resources/anchor.svg)](#museum-light)|
+|![museum-regular](icons/telefonica/regular/museum-regular.svg) | | | | |`museum-regular`[![museum-regular](.github/resources/anchor.svg)](#museum-regular)|
+|![music-filled](icons/telefonica/filled/music-filled.svg) | |![music-filled](icons/o2-new/filled/music-filled.svg) |![music-filled](icons/o2/filled/music-filled.svg) | |`music-filled`[![music-filled](.github/resources/anchor.svg)](#music-filled)|
+|![music-light](icons/telefonica/light/music-light.svg) | |![music-light](icons/o2-new/light/music-light.svg) |![music-light](icons/o2/light/music-light.svg) | |`music-light`[![music-light](.github/resources/anchor.svg)](#music-light)|
+|![music-regular](icons/telefonica/regular/music-regular.svg) | |![music-regular](icons/o2-new/regular/music-regular.svg) |![music-regular](icons/o2/regular/music-regular.svg) | |`music-regular`[![music-regular](.github/resources/anchor.svg)](#music-regular)|
+| | |![mute-filled](icons/o2-new/filled/mute-filled.svg) |![mute-filled](icons/o2/filled/mute-filled.svg) | |`mute-filled`[![mute-filled](.github/resources/anchor.svg)](#mute-filled)|
+| | |![mute-light](icons/o2-new/light/mute-light.svg) |![mute-light](icons/o2/light/mute-light.svg) | |`mute-light`[![mute-light](.github/resources/anchor.svg)](#mute-light)|
+| | |![mute-regular](icons/o2-new/regular/mute-regular.svg) |![mute-regular](icons/o2/regular/mute-regular.svg) | |`mute-regular`[![mute-regular](.github/resources/anchor.svg)](#mute-regular)|
+| |![negative-film-regular](icons/vivo-new/regular/negative-film-regular.svg) | | | |`negative-film-regular`[![negative-film-regular](.github/resources/anchor.svg)](#negative-film-regular)|
+| | |![network-hotspot-filled](icons/o2-new/filled/network-hotspot-filled.svg) |![network-hotspot-filled](icons/o2/filled/network-hotspot-filled.svg) | |`network-hotspot-filled`[![network-hotspot-filled](.github/resources/anchor.svg)](#network-hotspot-filled)|
+| | |![network-hotspot-light](icons/o2-new/light/network-hotspot-light.svg) |![network-hotspot-light](icons/o2/light/network-hotspot-light.svg) | |`network-hotspot-light`[![network-hotspot-light](.github/resources/anchor.svg)](#network-hotspot-light)|
+| | |![network-hotspot-regular](icons/o2-new/regular/network-hotspot-regular.svg) |![network-hotspot-regular](icons/o2/regular/network-hotspot-regular.svg) | |`network-hotspot-regular`[![network-hotspot-regular](.github/resources/anchor.svg)](#network-hotspot-regular)|
+|![neural-network-filled](icons/telefonica/filled/neural-network-filled.svg) | | | | |`neural-network-filled`[![neural-network-filled](.github/resources/anchor.svg)](#neural-network-filled)|
+|![neural-network-human-filled](icons/telefonica/filled/neural-network-human-filled.svg) | | | | |`neural-network-human-filled`[![neural-network-human-filled](.github/resources/anchor.svg)](#neural-network-human-filled)|
+|![neural-network-human-regular](icons/telefonica/regular/neural-network-human-regular.svg) | | | | |`neural-network-human-regular`[![neural-network-human-regular](.github/resources/anchor.svg)](#neural-network-human-regular)|
+|![neural-network-light](icons/telefonica/light/neural-network-light.svg) | | | | |`neural-network-light`[![neural-network-light](.github/resources/anchor.svg)](#neural-network-light)|
+|![neural-network-regular](icons/telefonica/regular/neural-network-regular.svg) | | | | |`neural-network-regular`[![neural-network-regular](.github/resources/anchor.svg)](#neural-network-regular)|
+| | |![newsletter-filled](icons/o2-new/filled/newsletter-filled.svg) |![newsletter-filled](icons/o2/filled/newsletter-filled.svg) | |`newsletter-filled`[![newsletter-filled](.github/resources/anchor.svg)](#newsletter-filled)|
+| | |![newsletter-light](icons/o2-new/light/newsletter-light.svg) |![newsletter-light](icons/o2/light/newsletter-light.svg) | |`newsletter-light`[![newsletter-light](.github/resources/anchor.svg)](#newsletter-light)|
+| | |![newsletter-regular](icons/o2-new/regular/newsletter-regular.svg) |![newsletter-regular](icons/o2/regular/newsletter-regular.svg) | |`newsletter-regular`[![newsletter-regular](.github/resources/anchor.svg)](#newsletter-regular)|
+|![no-conexion-filled](icons/telefonica/filled/no-conexion-filled.svg) | | | | |`no-conexion-filled`[![no-conexion-filled](.github/resources/anchor.svg)](#no-conexion-filled)|
+|![no-conexion-light](icons/telefonica/light/no-conexion-light.svg) | | | | |`no-conexion-light`[![no-conexion-light](.github/resources/anchor.svg)](#no-conexion-light)|
+|![no-conexion-regular](icons/telefonica/regular/no-conexion-regular.svg) | | | | |`no-conexion-regular`[![no-conexion-regular](.github/resources/anchor.svg)](#no-conexion-regular)|
+| | |![no-hidden-bills-filled](icons/o2-new/filled/no-hidden-bills-filled.svg) |![no-hidden-bills-filled](icons/o2/filled/no-hidden-bills-filled.svg) | |`no-hidden-bills-filled`[![no-hidden-bills-filled](.github/resources/anchor.svg)](#no-hidden-bills-filled)|
+| | |![no-hidden-bills-light](icons/o2-new/light/no-hidden-bills-light.svg) |![no-hidden-bills-light](icons/o2/light/no-hidden-bills-light.svg) | |`no-hidden-bills-light`[![no-hidden-bills-light](.github/resources/anchor.svg)](#no-hidden-bills-light)|
+| | |![no-hidden-bills-regular](icons/o2-new/regular/no-hidden-bills-regular.svg) |![no-hidden-bills-regular](icons/o2/regular/no-hidden-bills-regular.svg) | |`no-hidden-bills-regular`[![no-hidden-bills-regular](.github/resources/anchor.svg)](#no-hidden-bills-regular)|
+| |![no-photo-camera-filled](icons/vivo-new/filled/no-photo-camera-filled.svg) |![no-photo-camera-filled](icons/o2-new/filled/no-photo-camera-filled.svg) |![no-photo-camera-filled](icons/o2/filled/no-photo-camera-filled.svg) | |`no-photo-camera-filled`[![no-photo-camera-filled](.github/resources/anchor.svg)](#no-photo-camera-filled)|
+| |![no-photo-camera-light](icons/vivo-new/light/no-photo-camera-light.svg) | | | |`no-photo-camera-light`[![no-photo-camera-light](.github/resources/anchor.svg)](#no-photo-camera-light)|
+| |![no-photo-camera-regular](icons/vivo-new/regular/no-photo-camera-regular.svg) |![no-photo-camera-regular](icons/o2-new/regular/no-photo-camera-regular.svg) |![no-photo-camera-regular](icons/o2/regular/no-photo-camera-regular.svg) | |`no-photo-camera-regular`[![no-photo-camera-regular](.github/resources/anchor.svg)](#no-photo-camera-regular)|
+| | |![no-smoking-filled](icons/o2-new/filled/no-smoking-filled.svg) |![no-smoking-filled](icons/o2/filled/no-smoking-filled.svg) | |`no-smoking-filled`[![no-smoking-filled](.github/resources/anchor.svg)](#no-smoking-filled)|
+| | |![no-smoking-regular](icons/o2-new/regular/no-smoking-regular.svg) |![no-smoking-regular](icons/o2/regular/no-smoking-regular.svg) | |`no-smoking-regular`[![no-smoking-regular](.github/resources/anchor.svg)](#no-smoking-regular)|
+| | |![no-tickets-filled](icons/o2-new/filled/no-tickets-filled.svg) |![no-tickets-filled](icons/o2/filled/no-tickets-filled.svg) | |`no-tickets-filled`[![no-tickets-filled](.github/resources/anchor.svg)](#no-tickets-filled)|
+| | |![no-tickets-regular](icons/o2-new/regular/no-tickets-regular.svg) |![no-tickets-regular](icons/o2/regular/no-tickets-regular.svg) | |`no-tickets-regular`[![no-tickets-regular](.github/resources/anchor.svg)](#no-tickets-regular)|
+| | |![non-binary-toilet-filled](icons/o2-new/filled/non-binary-toilet-filled.svg) |![non-binary-toilet-filled](icons/o2/filled/non-binary-toilet-filled.svg) | |`non-binary-toilet-filled`[![non-binary-toilet-filled](.github/resources/anchor.svg)](#non-binary-toilet-filled)|
+| | |![non-binary-toilet-light](icons/o2-new/light/non-binary-toilet-light.svg) |![non-binary-toilet-light](icons/o2/light/non-binary-toilet-light.svg) | |`non-binary-toilet-light`[![non-binary-toilet-light](.github/resources/anchor.svg)](#non-binary-toilet-light)|
+| | |![non-binary-toilet-regular](icons/o2-new/regular/non-binary-toilet-regular.svg) |![non-binary-toilet-regular](icons/o2/regular/non-binary-toilet-regular.svg) | |`non-binary-toilet-regular`[![non-binary-toilet-regular](.github/resources/anchor.svg)](#non-binary-toilet-regular)|
+|![notes-filled](icons/telefonica/filled/notes-filled.svg) | | | | |`notes-filled`[![notes-filled](.github/resources/anchor.svg)](#notes-filled)|
+|![notes-light](icons/telefonica/light/notes-light.svg) | | | | |`notes-light`[![notes-light](.github/resources/anchor.svg)](#notes-light)|
+|![notes-regular](icons/telefonica/regular/notes-regular.svg) | | | | |`notes-regular`[![notes-regular](.github/resources/anchor.svg)](#notes-regular)|
+|![numeric-keypad-filled](icons/telefonica/filled/numeric-keypad-filled.svg) | | | | |`numeric-keypad-filled`[![numeric-keypad-filled](.github/resources/anchor.svg)](#numeric-keypad-filled)|
+|![numeric-keypad-light](icons/telefonica/light/numeric-keypad-light.svg) | | | | |`numeric-keypad-light`[![numeric-keypad-light](.github/resources/anchor.svg)](#numeric-keypad-light)|
+|![numeric-keypad-regular](icons/telefonica/regular/numeric-keypad-regular.svg) | | | |![numeric-keypad-regular](icons/blau/regular/numeric-keypad-regular.svg) |`numeric-keypad-regular`[![numeric-keypad-regular](.github/resources/anchor.svg)](#numeric-keypad-regular)|
+| | |![offer-euro-filled](icons/o2-new/filled/offer-euro-filled.svg) |![offer-euro-filled](icons/o2/filled/offer-euro-filled.svg) | |`offer-euro-filled`[![offer-euro-filled](.github/resources/anchor.svg)](#offer-euro-filled)|
+| | |![offer-euro-light](icons/o2-new/light/offer-euro-light.svg) |![offer-euro-light](icons/o2/light/offer-euro-light.svg) | |`offer-euro-light`[![offer-euro-light](.github/resources/anchor.svg)](#offer-euro-light)|
+| | |![offer-euro-regular](icons/o2-new/regular/offer-euro-regular.svg) |![offer-euro-regular](icons/o2/regular/offer-euro-regular.svg) | |`offer-euro-regular`[![offer-euro-regular](.github/resources/anchor.svg)](#offer-euro-regular)|
+|![offer-filled](icons/telefonica/filled/offer-filled.svg) | |![offer-filled](icons/o2-new/filled/offer-filled.svg) |![offer-filled](icons/o2/filled/offer-filled.svg) | |`offer-filled`[![offer-filled](.github/resources/anchor.svg)](#offer-filled)|
+|![offer-light](icons/telefonica/light/offer-light.svg) | |![offer-light](icons/o2-new/light/offer-light.svg) |![offer-light](icons/o2/light/offer-light.svg) | |`offer-light`[![offer-light](.github/resources/anchor.svg)](#offer-light)|
+|![offer-percent-filled](icons/telefonica/filled/offer-percent-filled.svg) | |![offer-percent-filled](icons/o2-new/filled/offer-percent-filled.svg) |![offer-percent-filled](icons/o2/filled/offer-percent-filled.svg) | |`offer-percent-filled`[![offer-percent-filled](.github/resources/anchor.svg)](#offer-percent-filled)|
+|![offer-percent-light](icons/telefonica/light/offer-percent-light.svg) | |![offer-percent-light](icons/o2-new/light/offer-percent-light.svg) |![offer-percent-light](icons/o2/light/offer-percent-light.svg) | |`offer-percent-light`[![offer-percent-light](.github/resources/anchor.svg)](#offer-percent-light)|
+|![offer-percent-regular](icons/telefonica/regular/offer-percent-regular.svg) | |![offer-percent-regular](icons/o2-new/regular/offer-percent-regular.svg) |![offer-percent-regular](icons/o2/regular/offer-percent-regular.svg) | |`offer-percent-regular`[![offer-percent-regular](.github/resources/anchor.svg)](#offer-percent-regular)|
+| | |![offer-pound-filled](icons/o2-new/filled/offer-pound-filled.svg) |![offer-pound-filled](icons/o2/filled/offer-pound-filled.svg) | |`offer-pound-filled`[![offer-pound-filled](.github/resources/anchor.svg)](#offer-pound-filled)|
+| | |![offer-pound-light](icons/o2-new/light/offer-pound-light.svg) |![offer-pound-light](icons/o2/light/offer-pound-light.svg) | |`offer-pound-light`[![offer-pound-light](.github/resources/anchor.svg)](#offer-pound-light)|
+| | |![offer-pound-regular](icons/o2-new/regular/offer-pound-regular.svg) |![offer-pound-regular](icons/o2/regular/offer-pound-regular.svg) | |`offer-pound-regular`[![offer-pound-regular](.github/resources/anchor.svg)](#offer-pound-regular)|
+|![offer-regular](icons/telefonica/regular/offer-regular.svg) | |![offer-regular](icons/o2-new/regular/offer-regular.svg) |![offer-regular](icons/o2/regular/offer-regular.svg) | |`offer-regular`[![offer-regular](.github/resources/anchor.svg)](#offer-regular)|
+| | |![office-filled](icons/o2-new/filled/office-filled.svg) |![office-filled](icons/o2/filled/office-filled.svg) | |`office-filled`[![office-filled](.github/resources/anchor.svg)](#office-filled)|
+| | |![office-light](icons/o2-new/light/office-light.svg) |![office-light](icons/o2/light/office-light.svg) | |`office-light`[![office-light](.github/resources/anchor.svg)](#office-light)|
+| | |![office-regular](icons/o2-new/regular/office-regular.svg) |![office-regular](icons/o2/regular/office-regular.svg) | |`office-regular`[![office-regular](.github/resources/anchor.svg)](#office-regular)|
+|![on-filled](icons/telefonica/filled/on-filled.svg) | | | | |`on-filled`[![on-filled](.github/resources/anchor.svg)](#on-filled)|
+|![on-light](icons/telefonica/light/on-light.svg) | | | | |`on-light`[![on-light](.github/resources/anchor.svg)](#on-light)|
+|![on-regular](icons/telefonica/regular/on-regular.svg) | | | | |`on-regular`[![on-regular](.github/resources/anchor.svg)](#on-regular)|
+|![online-offer-filled](icons/telefonica/filled/online-offer-filled.svg) | | | | |`online-offer-filled`[![online-offer-filled](.github/resources/anchor.svg)](#online-offer-filled)|
+|![online-offer-light](icons/telefonica/light/online-offer-light.svg) | | | | |`online-offer-light`[![online-offer-light](.github/resources/anchor.svg)](#online-offer-light)|
+|![online-offer-regular](icons/telefonica/regular/online-offer-regular.svg) | | | | |`online-offer-regular`[![online-offer-regular](.github/resources/anchor.svg)](#online-offer-regular)|
+|![online-reload-filled](icons/telefonica/filled/online-reload-filled.svg) | | | | |`online-reload-filled`[![online-reload-filled](.github/resources/anchor.svg)](#online-reload-filled)|
+|![online-reload-light](icons/telefonica/light/online-reload-light.svg) | | | | |`online-reload-light`[![online-reload-light](.github/resources/anchor.svg)](#online-reload-light)|
+|![online-reload-regular](icons/telefonica/regular/online-reload-regular.svg) | | | | |`online-reload-regular`[![online-reload-regular](.github/resources/anchor.svg)](#online-reload-regular)|
+|![open-email-filled](icons/telefonica/filled/open-email-filled.svg) | | | | |`open-email-filled`[![open-email-filled](.github/resources/anchor.svg)](#open-email-filled)|
+|![open-email-light](icons/telefonica/light/open-email-light.svg) | | | | |`open-email-light`[![open-email-light](.github/resources/anchor.svg)](#open-email-light)|
+|![open-email-regular](icons/telefonica/regular/open-email-regular.svg) | | | | |`open-email-regular`[![open-email-regular](.github/resources/anchor.svg)](#open-email-regular)|
+|![open-file-filled](icons/telefonica/filled/open-file-filled.svg) | | | | |`open-file-filled`[![open-file-filled](.github/resources/anchor.svg)](#open-file-filled)|
+|![open-file-light](icons/telefonica/light/open-file-light.svg) | | | | |`open-file-light`[![open-file-light](.github/resources/anchor.svg)](#open-file-light)|
+|![open-file-regular](icons/telefonica/regular/open-file-regular.svg) | | | | |`open-file-regular`[![open-file-regular](.github/resources/anchor.svg)](#open-file-regular)|
+|![open-filled](icons/telefonica/filled/open-filled.svg) | | | | |`open-filled`[![open-filled](.github/resources/anchor.svg)](#open-filled)|
+|![open-light](icons/telefonica/light/open-light.svg) | | | | |`open-light`[![open-light](.github/resources/anchor.svg)](#open-light)|
+|![open-regular](icons/telefonica/regular/open-regular.svg) | | | | |`open-regular`[![open-regular](.github/resources/anchor.svg)](#open-regular)|
+|![optical-fiber-filled](icons/telefonica/filled/optical-fiber-filled.svg) | |![optical-fiber-filled](icons/o2-new/filled/optical-fiber-filled.svg) |![optical-fiber-filled](icons/o2/filled/optical-fiber-filled.svg) | |`optical-fiber-filled`[![optical-fiber-filled](.github/resources/anchor.svg)](#optical-fiber-filled)|
+|![optical-fiber-light](icons/telefonica/light/optical-fiber-light.svg) | |![optical-fiber-light](icons/o2-new/light/optical-fiber-light.svg) |![optical-fiber-light](icons/o2/light/optical-fiber-light.svg) | |`optical-fiber-light`[![optical-fiber-light](.github/resources/anchor.svg)](#optical-fiber-light)|
+|![optical-fiber-regular](icons/telefonica/regular/optical-fiber-regular.svg) | |![optical-fiber-regular](icons/o2-new/regular/optical-fiber-regular.svg) |![optical-fiber-regular](icons/o2/regular/optical-fiber-regular.svg) | |`optical-fiber-regular`[![optical-fiber-regular](.github/resources/anchor.svg)](#optical-fiber-regular)|
+|![outgoing-call-filled](icons/telefonica/filled/outgoing-call-filled.svg) | | | | |`outgoing-call-filled`[![outgoing-call-filled](.github/resources/anchor.svg)](#outgoing-call-filled)|
+|![outgoing-call-light](icons/telefonica/light/outgoing-call-light.svg) | | | | |`outgoing-call-light`[![outgoing-call-light](.github/resources/anchor.svg)](#outgoing-call-light)|
+|![outgoing-call-regular](icons/telefonica/regular/outgoing-call-regular.svg) | | | | |`outgoing-call-regular`[![outgoing-call-regular](.github/resources/anchor.svg)](#outgoing-call-regular)|
+| |![outlet-regular](icons/vivo-new/regular/outlet-regular.svg) | | | |`outlet-regular`[![outlet-regular](.github/resources/anchor.svg)](#outlet-regular)|
+|![pacifier-filled](icons/telefonica/filled/pacifier-filled.svg) | | | | |`pacifier-filled`[![pacifier-filled](.github/resources/anchor.svg)](#pacifier-filled)|
+|![pacifier-light](icons/telefonica/light/pacifier-light.svg) | | | | |`pacifier-light`[![pacifier-light](.github/resources/anchor.svg)](#pacifier-light)|
+|![pacifier-regular](icons/telefonica/regular/pacifier-regular.svg) | | | | |`pacifier-regular`[![pacifier-regular](.github/resources/anchor.svg)](#pacifier-regular)|
+|![package-trolley-filled](icons/telefonica/filled/package-trolley-filled.svg) | | | | |`package-trolley-filled`[![package-trolley-filled](.github/resources/anchor.svg)](#package-trolley-filled)|
+|![package-trolley-light](icons/telefonica/light/package-trolley-light.svg) | | | | |`package-trolley-light`[![package-trolley-light](.github/resources/anchor.svg)](#package-trolley-light)|
+| | | | |![package-trolley-regular](icons/blau/regular/package-trolley-regular.svg) |`package-trolley-regular`[![package-trolley-regular](.github/resources/anchor.svg)](#package-trolley-regular)|
+|![parking-filled](icons/telefonica/filled/parking-filled.svg) | |![parking-filled](icons/o2-new/filled/parking-filled.svg) |![parking-filled](icons/o2/filled/parking-filled.svg) | |`parking-filled`[![parking-filled](.github/resources/anchor.svg)](#parking-filled)|
+|![parking-light](icons/telefonica/light/parking-light.svg) | |![parking-light](icons/o2-new/light/parking-light.svg) |![parking-light](icons/o2/light/parking-light.svg) | |`parking-light`[![parking-light](.github/resources/anchor.svg)](#parking-light)|
+|![parking-regular](icons/telefonica/regular/parking-regular.svg) | |![parking-regular](icons/o2-new/regular/parking-regular.svg) |![parking-regular](icons/o2/regular/parking-regular.svg) | |`parking-regular`[![parking-regular](.github/resources/anchor.svg)](#parking-regular)|
+|![pause-circle-filled](icons/telefonica/filled/pause-circle-filled.svg) | |![pause-circle-filled](icons/o2-new/filled/pause-circle-filled.svg) |![pause-circle-filled](icons/o2/filled/pause-circle-filled.svg) | |`pause-circle-filled`[![pause-circle-filled](.github/resources/anchor.svg)](#pause-circle-filled)|
+|![pause-circle-light](icons/telefonica/light/pause-circle-light.svg) | |![pause-circle-light](icons/o2-new/light/pause-circle-light.svg) |![pause-circle-light](icons/o2/light/pause-circle-light.svg) | |`pause-circle-light`[![pause-circle-light](.github/resources/anchor.svg)](#pause-circle-light)|
+|![pause-circle-regular](icons/telefonica/regular/pause-circle-regular.svg) | |![pause-circle-regular](icons/o2-new/regular/pause-circle-regular.svg) |![pause-circle-regular](icons/o2/regular/pause-circle-regular.svg) | |`pause-circle-regular`[![pause-circle-regular](.github/resources/anchor.svg)](#pause-circle-regular)|
+|![pause-filled](icons/telefonica/filled/pause-filled.svg) | |![pause-filled](icons/o2-new/filled/pause-filled.svg) |![pause-filled](icons/o2/filled/pause-filled.svg) | |`pause-filled`[![pause-filled](.github/resources/anchor.svg)](#pause-filled)|
+|![pause-light](icons/telefonica/light/pause-light.svg) | |![pause-light](icons/o2-new/light/pause-light.svg) |![pause-light](icons/o2/light/pause-light.svg) | |`pause-light`[![pause-light](.github/resources/anchor.svg)](#pause-light)|
+|![pause-regular](icons/telefonica/regular/pause-regular.svg) | |![pause-regular](icons/o2-new/regular/pause-regular.svg) |![pause-regular](icons/o2/regular/pause-regular.svg) | |`pause-regular`[![pause-regular](.github/resources/anchor.svg)](#pause-regular)|
+| | |![pay-as-you-go-euro-filled](icons/o2-new/filled/pay-as-you-go-euro-filled.svg) |![pay-as-you-go-euro-filled](icons/o2/filled/pay-as-you-go-euro-filled.svg) | |`pay-as-you-go-euro-filled`[![pay-as-you-go-euro-filled](.github/resources/anchor.svg)](#pay-as-you-go-euro-filled)|
+| | |![pay-as-you-go-euro-light](icons/o2-new/light/pay-as-you-go-euro-light.svg) |![pay-as-you-go-euro-light](icons/o2/light/pay-as-you-go-euro-light.svg) | |`pay-as-you-go-euro-light`[![pay-as-you-go-euro-light](.github/resources/anchor.svg)](#pay-as-you-go-euro-light)|
+| | |![pay-as-you-go-euro-regular](icons/o2-new/regular/pay-as-you-go-euro-regular.svg) |![pay-as-you-go-euro-regular](icons/o2/regular/pay-as-you-go-euro-regular.svg) | |`pay-as-you-go-euro-regular`[![pay-as-you-go-euro-regular](.github/resources/anchor.svg)](#pay-as-you-go-euro-regular)|
+| | |![pay-as-you-go-pound-filled](icons/o2-new/filled/pay-as-you-go-pound-filled.svg) |![pay-as-you-go-pound-filled](icons/o2/filled/pay-as-you-go-pound-filled.svg) | |`pay-as-you-go-pound-filled`[![pay-as-you-go-pound-filled](.github/resources/anchor.svg)](#pay-as-you-go-pound-filled)|
+| | |![pay-as-you-go-pound-light](icons/o2-new/light/pay-as-you-go-pound-light.svg) |![pay-as-you-go-pound-light](icons/o2/light/pay-as-you-go-pound-light.svg) | |`pay-as-you-go-pound-light`[![pay-as-you-go-pound-light](.github/resources/anchor.svg)](#pay-as-you-go-pound-light)|
+| | |![pay-as-you-go-pound-regular](icons/o2-new/regular/pay-as-you-go-pound-regular.svg) |![pay-as-you-go-pound-regular](icons/o2/regular/pay-as-you-go-pound-regular.svg) | |`pay-as-you-go-pound-regular`[![pay-as-you-go-pound-regular](.github/resources/anchor.svg)](#pay-as-you-go-pound-regular)|
+|![pay-invoice-filled](icons/telefonica/filled/pay-invoice-filled.svg) | |![pay-invoice-filled](icons/o2-new/filled/pay-invoice-filled.svg) |![pay-invoice-filled](icons/o2/filled/pay-invoice-filled.svg) | |`pay-invoice-filled`[![pay-invoice-filled](.github/resources/anchor.svg)](#pay-invoice-filled)|
+|![pay-invoice-light](icons/telefonica/light/pay-invoice-light.svg) | |![pay-invoice-light](icons/o2-new/light/pay-invoice-light.svg) |![pay-invoice-light](icons/o2/light/pay-invoice-light.svg) | |`pay-invoice-light`[![pay-invoice-light](.github/resources/anchor.svg)](#pay-invoice-light)|
+| | |![pay-invoice-pound-filled](icons/o2-new/filled/pay-invoice-pound-filled.svg) |![pay-invoice-pound-filled](icons/o2/filled/pay-invoice-pound-filled.svg) | |`pay-invoice-pound-filled`[![pay-invoice-pound-filled](.github/resources/anchor.svg)](#pay-invoice-pound-filled)|
+| | |![pay-invoice-pound-light](icons/o2-new/light/pay-invoice-pound-light.svg) |![pay-invoice-pound-light](icons/o2/light/pay-invoice-pound-light.svg) | |`pay-invoice-pound-light`[![pay-invoice-pound-light](.github/resources/anchor.svg)](#pay-invoice-pound-light)|
+| | |![pay-invoice-pound-regular](icons/o2-new/regular/pay-invoice-pound-regular.svg) |![pay-invoice-pound-regular](icons/o2/regular/pay-invoice-pound-regular.svg) | |`pay-invoice-pound-regular`[![pay-invoice-pound-regular](.github/resources/anchor.svg)](#pay-invoice-pound-regular)|
+|![pay-invoice-regular](icons/telefonica/regular/pay-invoice-regular.svg) | |![pay-invoice-regular](icons/o2-new/regular/pay-invoice-regular.svg) |![pay-invoice-regular](icons/o2/regular/pay-invoice-regular.svg) | |`pay-invoice-regular`[![pay-invoice-regular](.github/resources/anchor.svg)](#pay-invoice-regular)|
+|![pen-filled](icons/telefonica/filled/pen-filled.svg) | |![pen-filled](icons/o2-new/filled/pen-filled.svg) |![pen-filled](icons/o2/filled/pen-filled.svg) | |`pen-filled`[![pen-filled](.github/resources/anchor.svg)](#pen-filled)|
+|![pen-light](icons/telefonica/light/pen-light.svg) | |![pen-light](icons/o2-new/light/pen-light.svg) |![pen-light](icons/o2/light/pen-light.svg) | |`pen-light`[![pen-light](.github/resources/anchor.svg)](#pen-light)|
+|![pen-regular](icons/telefonica/regular/pen-regular.svg) | |![pen-regular](icons/o2-new/regular/pen-regular.svg) |![pen-regular](icons/o2/regular/pen-regular.svg) |![pen-regular](icons/blau/regular/pen-regular.svg) |`pen-regular`[![pen-regular](.github/resources/anchor.svg)](#pen-regular)|
+|![pendrive-filled](icons/telefonica/filled/pendrive-filled.svg) | | | | |`pendrive-filled`[![pendrive-filled](.github/resources/anchor.svg)](#pendrive-filled)|
+|![pendrive-light](icons/telefonica/light/pendrive-light.svg) | | | | |`pendrive-light`[![pendrive-light](.github/resources/anchor.svg)](#pendrive-light)|
+|![pendrive-regular](icons/telefonica/regular/pendrive-regular.svg) | | | | |`pendrive-regular`[![pendrive-regular](.github/resources/anchor.svg)](#pendrive-regular)|
+|![people-network-filled](icons/telefonica/filled/people-network-filled.svg) | |![people-network-filled](icons/o2-new/filled/people-network-filled.svg) |![people-network-filled](icons/o2/filled/people-network-filled.svg) | |`people-network-filled`[![people-network-filled](.github/resources/anchor.svg)](#people-network-filled)|
+|![people-network-light](icons/telefonica/light/people-network-light.svg) | |![people-network-light](icons/o2-new/light/people-network-light.svg) |![people-network-light](icons/o2/light/people-network-light.svg) | |`people-network-light`[![people-network-light](.github/resources/anchor.svg)](#people-network-light)|
+|![people-network-regular](icons/telefonica/regular/people-network-regular.svg) | |![people-network-regular](icons/o2-new/regular/people-network-regular.svg) |![people-network-regular](icons/o2/regular/people-network-regular.svg) | |`people-network-regular`[![people-network-regular](.github/resources/anchor.svg)](#people-network-regular)|
+|![percent-filled](icons/telefonica/filled/percent-filled.svg) | | | | |`percent-filled`[![percent-filled](.github/resources/anchor.svg)](#percent-filled)|
+|![percent-light](icons/telefonica/light/percent-light.svg) | | | | |`percent-light`[![percent-light](.github/resources/anchor.svg)](#percent-light)|
+|![percent-regular](icons/telefonica/regular/percent-regular.svg) | | | | |`percent-regular`[![percent-regular](.github/resources/anchor.svg)](#percent-regular)|
+|![person-filled](icons/telefonica/filled/person-filled.svg) | |![person-filled](icons/o2-new/filled/person-filled.svg) |![person-filled](icons/o2/filled/person-filled.svg) | |`person-filled`[![person-filled](.github/resources/anchor.svg)](#person-filled)|
+|![person-light](icons/telefonica/light/person-light.svg) | |![person-light](icons/o2-new/light/person-light.svg) |![person-light](icons/o2/light/person-light.svg) | |`person-light`[![person-light](.github/resources/anchor.svg)](#person-light)|
+|![person-regular](icons/telefonica/regular/person-regular.svg) | |![person-regular](icons/o2-new/regular/person-regular.svg) |![person-regular](icons/o2/regular/person-regular.svg) | |`person-regular`[![person-regular](.github/resources/anchor.svg)](#person-regular)|
+|![personal-computer-filled](icons/telefonica/filled/personal-computer-filled.svg) | |![personal-computer-filled](icons/o2-new/filled/personal-computer-filled.svg) |![personal-computer-filled](icons/o2/filled/personal-computer-filled.svg) | |`personal-computer-filled`[![personal-computer-filled](.github/resources/anchor.svg)](#personal-computer-filled)|
+|![personal-computer-light](icons/telefonica/light/personal-computer-light.svg) | |![personal-computer-light](icons/o2-new/light/personal-computer-light.svg) |![personal-computer-light](icons/o2/light/personal-computer-light.svg) | |`personal-computer-light`[![personal-computer-light](.github/resources/anchor.svg)](#personal-computer-light)|
+|![personal-computer-regular](icons/telefonica/regular/personal-computer-regular.svg) | |![personal-computer-regular](icons/o2-new/regular/personal-computer-regular.svg) |![personal-computer-regular](icons/o2/regular/personal-computer-regular.svg) |![personal-computer-regular](icons/blau/regular/personal-computer-regular.svg) |`personal-computer-regular`[![personal-computer-regular](.github/resources/anchor.svg)](#personal-computer-regular)|
+|![pharmacy-filled](icons/telefonica/filled/pharmacy-filled.svg) | | | | |`pharmacy-filled`[![pharmacy-filled](.github/resources/anchor.svg)](#pharmacy-filled)|
+|![pharmacy-light](icons/telefonica/light/pharmacy-light.svg) | | | | |`pharmacy-light`[![pharmacy-light](.github/resources/anchor.svg)](#pharmacy-light)|
+|![pharmacy-regular](icons/telefonica/regular/pharmacy-regular.svg) | | | | |`pharmacy-regular`[![pharmacy-regular](.github/resources/anchor.svg)](#pharmacy-regular)|
+|![photo-camera-filled](icons/telefonica/filled/photo-camera-filled.svg) | |![photo-camera-filled](icons/o2-new/filled/photo-camera-filled.svg) |![photo-camera-filled](icons/o2/filled/photo-camera-filled.svg) | |`photo-camera-filled`[![photo-camera-filled](.github/resources/anchor.svg)](#photo-camera-filled)|
+|![photo-camera-light](icons/telefonica/light/photo-camera-light.svg) | |![photo-camera-light](icons/o2-new/light/photo-camera-light.svg) |![photo-camera-light](icons/o2/light/photo-camera-light.svg) | |`photo-camera-light`[![photo-camera-light](.github/resources/anchor.svg)](#photo-camera-light)|
+|![photo-camera-regular](icons/telefonica/regular/photo-camera-regular.svg) | |![photo-camera-regular](icons/o2-new/regular/photo-camera-regular.svg) |![photo-camera-regular](icons/o2/regular/photo-camera-regular.svg) | |`photo-camera-regular`[![photo-camera-regular](.github/resources/anchor.svg)](#photo-camera-regular)|
+| | |![pickpocket-filled](icons/o2-new/filled/pickpocket-filled.svg) |![pickpocket-filled](icons/o2/filled/pickpocket-filled.svg) | |`pickpocket-filled`[![pickpocket-filled](.github/resources/anchor.svg)](#pickpocket-filled)|
+| | |![pickpocket-regular](icons/o2-new/regular/pickpocket-regular.svg) |![pickpocket-regular](icons/o2/regular/pickpocket-regular.svg) | |`pickpocket-regular`[![pickpocket-regular](.github/resources/anchor.svg)](#pickpocket-regular)|
+|![pill-filled](icons/telefonica/filled/pill-filled.svg) | | | | |`pill-filled`[![pill-filled](.github/resources/anchor.svg)](#pill-filled)|
+|![pill-light](icons/telefonica/light/pill-light.svg) | | | | |`pill-light`[![pill-light](.github/resources/anchor.svg)](#pill-light)|
+|![pill-regular](icons/telefonica/regular/pill-regular.svg) | | | | |`pill-regular`[![pill-regular](.github/resources/anchor.svg)](#pill-regular)|
+|![pills-filled](icons/telefonica/filled/pills-filled.svg) | | | | |`pills-filled`[![pills-filled](.github/resources/anchor.svg)](#pills-filled)|
+|![pills-light](icons/telefonica/light/pills-light.svg) | | | | |`pills-light`[![pills-light](.github/resources/anchor.svg)](#pills-light)|
+|![pills-regular](icons/telefonica/regular/pills-regular.svg) | | | | |`pills-regular`[![pills-regular](.github/resources/anchor.svg)](#pills-regular)|
+|![pin-filled](icons/telefonica/filled/pin-filled.svg) | |![pin-filled](icons/o2-new/filled/pin-filled.svg) |![pin-filled](icons/o2/filled/pin-filled.svg) | |`pin-filled`[![pin-filled](.github/resources/anchor.svg)](#pin-filled)|
+|![pin-light](icons/telefonica/light/pin-light.svg) | |![pin-light](icons/o2-new/light/pin-light.svg) |![pin-light](icons/o2/light/pin-light.svg) | |`pin-light`[![pin-light](.github/resources/anchor.svg)](#pin-light)|
+|![pin-regular](icons/telefonica/regular/pin-regular.svg) | |![pin-regular](icons/o2-new/regular/pin-regular.svg) |![pin-regular](icons/o2/regular/pin-regular.svg) | |`pin-regular`[![pin-regular](.github/resources/anchor.svg)](#pin-regular)|
+|![plane-filled](icons/telefonica/filled/plane-filled.svg) | |![plane-filled](icons/o2-new/filled/plane-filled.svg) |![plane-filled](icons/o2/filled/plane-filled.svg) | |`plane-filled`[![plane-filled](.github/resources/anchor.svg)](#plane-filled)|
+|![plane-light](icons/telefonica/light/plane-light.svg) | |![plane-light](icons/o2-new/light/plane-light.svg) |![plane-light](icons/o2/light/plane-light.svg) | |`plane-light`[![plane-light](.github/resources/anchor.svg)](#plane-light)|
+|![plane-regular](icons/telefonica/regular/plane-regular.svg) | |![plane-regular](icons/o2-new/regular/plane-regular.svg) |![plane-regular](icons/o2/regular/plane-regular.svg) |![plane-regular](icons/blau/regular/plane-regular.svg) |`plane-regular`[![plane-regular](.github/resources/anchor.svg)](#plane-regular)|
+|![plant-filled](icons/telefonica/filled/plant-filled.svg) | | | | |`plant-filled`[![plant-filled](.github/resources/anchor.svg)](#plant-filled)|
+|![plant-light](icons/telefonica/light/plant-light.svg) | | | | |`plant-light`[![plant-light](.github/resources/anchor.svg)](#plant-light)|
+|![plant-regular](icons/telefonica/regular/plant-regular.svg) | | | | |`plant-regular`[![plant-regular](.github/resources/anchor.svg)](#plant-regular)|
+|![play-circle-filled](icons/telefonica/filled/play-circle-filled.svg) | | | | |`play-circle-filled`[![play-circle-filled](.github/resources/anchor.svg)](#play-circle-filled)|
+|![play-circle-light](icons/telefonica/light/play-circle-light.svg) | | | | |`play-circle-light`[![play-circle-light](.github/resources/anchor.svg)](#play-circle-light)|
+|![play-circle-regular](icons/telefonica/regular/play-circle-regular.svg) | | | | |`play-circle-regular`[![play-circle-regular](.github/resources/anchor.svg)](#play-circle-regular)|
+|![play-filled](icons/telefonica/filled/play-filled.svg) | |![play-filled](icons/o2-new/filled/play-filled.svg) |![play-filled](icons/o2/filled/play-filled.svg) | |`play-filled`[![play-filled](.github/resources/anchor.svg)](#play-filled)|
+|![play-light](icons/telefonica/light/play-light.svg) | |![play-light](icons/o2-new/light/play-light.svg) |![play-light](icons/o2/light/play-light.svg) | |`play-light`[![play-light](.github/resources/anchor.svg)](#play-light)|
+|![play-regular](icons/telefonica/regular/play-regular.svg) | |![play-regular](icons/o2-new/regular/play-regular.svg) |![play-regular](icons/o2/regular/play-regular.svg) | |`play-regular`[![play-regular](.github/resources/anchor.svg)](#play-regular)|
+|![plug-filled](icons/telefonica/filled/plug-filled.svg) | |![plug-filled](icons/o2-new/filled/plug-filled.svg) |![plug-filled](icons/o2/filled/plug-filled.svg) | |`plug-filled`[![plug-filled](.github/resources/anchor.svg)](#plug-filled)|
+|![plug-light](icons/telefonica/light/plug-light.svg) | |![plug-light](icons/o2-new/light/plug-light.svg) |![plug-light](icons/o2/light/plug-light.svg) | |`plug-light`[![plug-light](.github/resources/anchor.svg)](#plug-light)|
+|![plug-regular](icons/telefonica/regular/plug-regular.svg) | |![plug-regular](icons/o2-new/regular/plug-regular.svg) |![plug-regular](icons/o2/regular/plug-regular.svg) | |`plug-regular`[![plug-regular](.github/resources/anchor.svg)](#plug-regular)|
+|![podium-filled](icons/telefonica/filled/podium-filled.svg) | | | | |`podium-filled`[![podium-filled](.github/resources/anchor.svg)](#podium-filled)|
+|![podium-light](icons/telefonica/light/podium-light.svg) | | | | |`podium-light`[![podium-light](.github/resources/anchor.svg)](#podium-light)|
+|![podium-regular](icons/telefonica/regular/podium-regular.svg) | | | | |`podium-regular`[![podium-regular](.github/resources/anchor.svg)](#podium-regular)|
+|![poison-filled](icons/telefonica/filled/poison-filled.svg) | | | | |`poison-filled`[![poison-filled](.github/resources/anchor.svg)](#poison-filled)|
+|![poison-light](icons/telefonica/light/poison-light.svg) | | | | |`poison-light`[![poison-light](.github/resources/anchor.svg)](#poison-light)|
+|![poison-regular](icons/telefonica/regular/poison-regular.svg) | | | | |`poison-regular`[![poison-regular](.github/resources/anchor.svg)](#poison-regular)|
+|![portability-filled](icons/telefonica/filled/portability-filled.svg) | | | | |`portability-filled`[![portability-filled](.github/resources/anchor.svg)](#portability-filled)|
+|![portability-light](icons/telefonica/light/portability-light.svg) | | | | |`portability-light`[![portability-light](.github/resources/anchor.svg)](#portability-light)|
+|![portability-regular](icons/telefonica/regular/portability-regular.svg) | | | | |`portability-regular`[![portability-regular](.github/resources/anchor.svg)](#portability-regular)|
+|![postpay-filled](icons/telefonica/filled/postpay-filled.svg) | | | | |`postpay-filled`[![postpay-filled](.github/resources/anchor.svg)](#postpay-filled)|
+|![postpay-light](icons/telefonica/light/postpay-light.svg) | | | | |`postpay-light`[![postpay-light](.github/resources/anchor.svg)](#postpay-light)|
+|![postpay-regular](icons/telefonica/regular/postpay-regular.svg) | | | | |`postpay-regular`[![postpay-regular](.github/resources/anchor.svg)](#postpay-regular)|
+|![pound-symbol-circle-filled](icons/telefonica/filled/pound-symbol-circle-filled.svg) | |![pound-symbol-circle-filled](icons/o2-new/filled/pound-symbol-circle-filled.svg) |![pound-symbol-circle-filled](icons/o2/filled/pound-symbol-circle-filled.svg) | |`pound-symbol-circle-filled`[![pound-symbol-circle-filled](.github/resources/anchor.svg)](#pound-symbol-circle-filled)|
+|![pound-symbol-circle-light](icons/telefonica/light/pound-symbol-circle-light.svg) | |![pound-symbol-circle-light](icons/o2-new/light/pound-symbol-circle-light.svg) |![pound-symbol-circle-light](icons/o2/light/pound-symbol-circle-light.svg) | |`pound-symbol-circle-light`[![pound-symbol-circle-light](.github/resources/anchor.svg)](#pound-symbol-circle-light)|
+|![pound-symbol-circle-regular](icons/telefonica/regular/pound-symbol-circle-regular.svg) | |![pound-symbol-circle-regular](icons/o2-new/regular/pound-symbol-circle-regular.svg) |![pound-symbol-circle-regular](icons/o2/regular/pound-symbol-circle-regular.svg) | |`pound-symbol-circle-regular`[![pound-symbol-circle-regular](.github/resources/anchor.svg)](#pound-symbol-circle-regular)|
+|![power-filled](icons/telefonica/filled/power-filled.svg) | |![power-filled](icons/o2-new/filled/power-filled.svg) |![power-filled](icons/o2/filled/power-filled.svg) | |`power-filled`[![power-filled](.github/resources/anchor.svg)](#power-filled)|
+|![power-light](icons/telefonica/light/power-light.svg) | |![power-light](icons/o2-new/light/power-light.svg) |![power-light](icons/o2/light/power-light.svg) | |`power-light`[![power-light](.github/resources/anchor.svg)](#power-light)|
+|![power-regular](icons/telefonica/regular/power-regular.svg) |![power-regular](icons/vivo-new/regular/power-regular.svg) |![power-regular](icons/o2-new/regular/power-regular.svg) |![power-regular](icons/o2/regular/power-regular.svg) | |`power-regular`[![power-regular](.github/resources/anchor.svg)](#power-regular)|
+| | |![pre-order-filled](icons/o2-new/filled/pre-order-filled.svg) |![pre-order-filled](icons/o2/filled/pre-order-filled.svg) | |`pre-order-filled`[![pre-order-filled](.github/resources/anchor.svg)](#pre-order-filled)|
+| | |![pre-order-light](icons/o2-new/light/pre-order-light.svg) |![pre-order-light](icons/o2/light/pre-order-light.svg) | |`pre-order-light`[![pre-order-light](.github/resources/anchor.svg)](#pre-order-light)|
+| | |![pre-order-regular](icons/o2-new/regular/pre-order-regular.svg) |![pre-order-regular](icons/o2/regular/pre-order-regular.svg) | |`pre-order-regular`[![pre-order-regular](.github/resources/anchor.svg)](#pre-order-regular)|
+|![prepaid-filled](icons/telefonica/filled/prepaid-filled.svg) | |![prepaid-filled](icons/o2-new/filled/prepaid-filled.svg) |![prepaid-filled](icons/o2/filled/prepaid-filled.svg) | |`prepaid-filled`[![prepaid-filled](.github/resources/anchor.svg)](#prepaid-filled)|
+|![prepaid-light](icons/telefonica/light/prepaid-light.svg) | |![prepaid-light](icons/o2-new/light/prepaid-light.svg) |![prepaid-light](icons/o2/light/prepaid-light.svg) | |`prepaid-light`[![prepaid-light](.github/resources/anchor.svg)](#prepaid-light)|
+|![prepaid-regular](icons/telefonica/regular/prepaid-regular.svg) | |![prepaid-regular](icons/o2-new/regular/prepaid-regular.svg) |![prepaid-regular](icons/o2/regular/prepaid-regular.svg) | |`prepaid-regular`[![prepaid-regular](.github/resources/anchor.svg)](#prepaid-regular)|
+|![presentation-filled](icons/telefonica/filled/presentation-filled.svg) | | | | |`presentation-filled`[![presentation-filled](.github/resources/anchor.svg)](#presentation-filled)|
+|![presentation-light](icons/telefonica/light/presentation-light.svg) | | | | |`presentation-light`[![presentation-light](.github/resources/anchor.svg)](#presentation-light)|
+|![presentation-regular](icons/telefonica/regular/presentation-regular.svg) | | | | |`presentation-regular`[![presentation-regular](.github/resources/anchor.svg)](#presentation-regular)|
+|![price-drop-filled](icons/telefonica/filled/price-drop-filled.svg) | | | | |`price-drop-filled`[![price-drop-filled](.github/resources/anchor.svg)](#price-drop-filled)|
+|![price-drop-light](icons/telefonica/light/price-drop-light.svg) | | | | |`price-drop-light`[![price-drop-light](.github/resources/anchor.svg)](#price-drop-light)|
+|![price-drop-regular](icons/telefonica/regular/price-drop-regular.svg) | | | | |`price-drop-regular`[![price-drop-regular](.github/resources/anchor.svg)](#price-drop-regular)|
+| | |![printer-filled](icons/o2-new/filled/printer-filled.svg) |![printer-filled](icons/o2/filled/printer-filled.svg) | |`printer-filled`[![printer-filled](.github/resources/anchor.svg)](#printer-filled)|
+| | |![printer-light](icons/o2-new/light/printer-light.svg) |![printer-light](icons/o2/light/printer-light.svg) | |`printer-light`[![printer-light](.github/resources/anchor.svg)](#printer-light)|
+| | |![printer-regular](icons/o2-new/regular/printer-regular.svg) |![printer-regular](icons/o2/regular/printer-regular.svg) | |`printer-regular`[![printer-regular](.github/resources/anchor.svg)](#printer-regular)|
+|![process-loading-filled](icons/telefonica/filled/process-loading-filled.svg) | |![process-loading-filled](icons/o2-new/filled/process-loading-filled.svg) |![process-loading-filled](icons/o2/filled/process-loading-filled.svg) | |`process-loading-filled`[![process-loading-filled](.github/resources/anchor.svg)](#process-loading-filled)|
+|![process-loading-light](icons/telefonica/light/process-loading-light.svg) | |![process-loading-light](icons/o2-new/light/process-loading-light.svg) |![process-loading-light](icons/o2/light/process-loading-light.svg) | |`process-loading-light`[![process-loading-light](.github/resources/anchor.svg)](#process-loading-light)|
+|![process-loading-regular](icons/telefonica/regular/process-loading-regular.svg) | |![process-loading-regular](icons/o2-new/regular/process-loading-regular.svg) |![process-loading-regular](icons/o2/regular/process-loading-regular.svg) | |`process-loading-regular`[![process-loading-regular](.github/resources/anchor.svg)](#process-loading-regular)|
+|![puzzle-filled](icons/telefonica/filled/puzzle-filled.svg) | | | | |`puzzle-filled`[![puzzle-filled](.github/resources/anchor.svg)](#puzzle-filled)|
+|![puzzle-light](icons/telefonica/light/puzzle-light.svg) | | | | |`puzzle-light`[![puzzle-light](.github/resources/anchor.svg)](#puzzle-light)|
+|![puzzle-regular](icons/telefonica/regular/puzzle-regular.svg) | | | | |`puzzle-regular`[![puzzle-regular](.github/resources/anchor.svg)](#puzzle-regular)|
+| |![qr-code-filled](icons/vivo-new/filled/qr-code-filled.svg) | | | |`qr-code-filled`[![qr-code-filled](.github/resources/anchor.svg)](#qr-code-filled)|
+| |![qr-code-light](icons/vivo-new/light/qr-code-light.svg) | | | |`qr-code-light`[![qr-code-light](.github/resources/anchor.svg)](#qr-code-light)|
+| |![qr-code-regular](icons/vivo-new/regular/qr-code-regular.svg) | | | |`qr-code-regular`[![qr-code-regular](.github/resources/anchor.svg)](#qr-code-regular)|
+|![question-filled](icons/telefonica/filled/question-filled.svg) | |![question-filled](icons/o2-new/filled/question-filled.svg) |![question-filled](icons/o2/filled/question-filled.svg) | |`question-filled`[![question-filled](.github/resources/anchor.svg)](#question-filled)|
+|![question-light](icons/telefonica/light/question-light.svg) | |![question-light](icons/o2-new/light/question-light.svg) |![question-light](icons/o2/light/question-light.svg) | |`question-light`[![question-light](.github/resources/anchor.svg)](#question-light)|
+|![question-regular](icons/telefonica/regular/question-regular.svg) | |![question-regular](icons/o2-new/regular/question-regular.svg) |![question-regular](icons/o2/regular/question-regular.svg) |![question-regular](icons/blau/regular/question-regular.svg) |`question-regular`[![question-regular](.github/resources/anchor.svg)](#question-regular)|
+| | |![queue-filled](icons/o2-new/filled/queue-filled.svg) |![queue-filled](icons/o2/filled/queue-filled.svg) | |`queue-filled`[![queue-filled](.github/resources/anchor.svg)](#queue-filled)|
+| | |![queue-light](icons/o2-new/light/queue-light.svg) |![queue-light](icons/o2/light/queue-light.svg) | |`queue-light`[![queue-light](.github/resources/anchor.svg)](#queue-light)|
+| | |![queue-regular](icons/o2-new/regular/queue-regular.svg) |![queue-regular](icons/o2/regular/queue-regular.svg) | |`queue-regular`[![queue-regular](.github/resources/anchor.svg)](#queue-regular)|
+| |![rain-regular](icons/vivo-new/regular/rain-regular.svg) | | | |`rain-regular`[![rain-regular](.github/resources/anchor.svg)](#rain-regular)|
+|![rating-filled](icons/telefonica/filled/rating-filled.svg) | |![rating-filled](icons/o2-new/filled/rating-filled.svg) |![rating-filled](icons/o2/filled/rating-filled.svg) | |`rating-filled`[![rating-filled](.github/resources/anchor.svg)](#rating-filled)|
+|![rating-light](icons/telefonica/light/rating-light.svg) | |![rating-light](icons/o2-new/light/rating-light.svg) |![rating-light](icons/o2/light/rating-light.svg) | |`rating-light`[![rating-light](.github/resources/anchor.svg)](#rating-light)|
+|![rating-regular](icons/telefonica/regular/rating-regular.svg) | |![rating-regular](icons/o2-new/regular/rating-regular.svg) |![rating-regular](icons/o2/regular/rating-regular.svg) | |`rating-regular`[![rating-regular](.github/resources/anchor.svg)](#rating-regular)|
+| |![reading-qr-filled](icons/vivo-new/filled/reading-qr-filled.svg) | | | |`reading-qr-filled`[![reading-qr-filled](.github/resources/anchor.svg)](#reading-qr-filled)|
+| |![reading-qr-light](icons/vivo-new/light/reading-qr-light.svg) | | | |`reading-qr-light`[![reading-qr-light](.github/resources/anchor.svg)](#reading-qr-light)|
+| |![reading-qr-regular](icons/vivo-new/regular/reading-qr-regular.svg) | | | |`reading-qr-regular`[![reading-qr-regular](.github/resources/anchor.svg)](#reading-qr-regular)|
+| | |![recording-filled](icons/o2-new/filled/recording-filled.svg) |![recording-filled](icons/o2/filled/recording-filled.svg) | |`recording-filled`[![recording-filled](.github/resources/anchor.svg)](#recording-filled)|
+| | |![recording-light](icons/o2-new/light/recording-light.svg) |![recording-light](icons/o2/light/recording-light.svg) | |`recording-light`[![recording-light](.github/resources/anchor.svg)](#recording-light)|
+| | |![recording-regular](icons/o2-new/regular/recording-regular.svg) |![recording-regular](icons/o2/regular/recording-regular.svg) | |`recording-regular`[![recording-regular](.github/resources/anchor.svg)](#recording-regular)|
+| | |![recycle-filled](icons/o2-new/filled/recycle-filled.svg) |![recycle-filled](icons/o2/filled/recycle-filled.svg) | |`recycle-filled`[![recycle-filled](.github/resources/anchor.svg)](#recycle-filled)|
+| | |![recycle-light](icons/o2-new/light/recycle-light.svg) |![recycle-light](icons/o2/light/recycle-light.svg) | |`recycle-light`[![recycle-light](.github/resources/anchor.svg)](#recycle-light)|
+| | |![recycle-regular](icons/o2-new/regular/recycle-regular.svg) |![recycle-regular](icons/o2/regular/recycle-regular.svg) | |`recycle-regular`[![recycle-regular](.github/resources/anchor.svg)](#recycle-regular)|
+| | |![refresh-filled](icons/o2-new/filled/refresh-filled.svg) |![refresh-filled](icons/o2/filled/refresh-filled.svg) | |`refresh-filled`[![refresh-filled](.github/resources/anchor.svg)](#refresh-filled)|
+|![reload-light](icons/telefonica/light/reload-light.svg) |![reload-light](icons/vivo-new/light/reload-light.svg) |![reload-light](icons/o2-new/light/reload-light.svg) |![reload-light](icons/o2/light/reload-light.svg) | |`reload-light`[![reload-light](.github/resources/anchor.svg)](#reload-light)|
+|![reload-regular](icons/telefonica/regular/reload-regular.svg) |![reload-regular](icons/vivo-new/regular/reload-regular.svg) |![reload-regular](icons/o2-new/regular/reload-regular.svg) |![reload-regular](icons/o2/regular/reload-regular.svg) | |`reload-regular`[![reload-regular](.github/resources/anchor.svg)](#reload-regular)|
+|![renovate-device-change-mobile-filled](icons/telefonica/filled/renovate-device-change-mobile-filled.svg) | |![renovate-device-change-mobile-filled](icons/o2-new/filled/renovate-device-change-mobile-filled.svg) |![renovate-device-change-mobile-filled](icons/o2/filled/renovate-device-change-mobile-filled.svg) | |`renovate-device-change-mobile-filled`[![renovate-device-change-mobile-filled](.github/resources/anchor.svg)](#renovate-device-change-mobile-filled)|
+|![renovate-device-change-mobile-light](icons/telefonica/light/renovate-device-change-mobile-light.svg) | |![renovate-device-change-mobile-light](icons/o2-new/light/renovate-device-change-mobile-light.svg) |![renovate-device-change-mobile-light](icons/o2/light/renovate-device-change-mobile-light.svg) | |`renovate-device-change-mobile-light`[![renovate-device-change-mobile-light](.github/resources/anchor.svg)](#renovate-device-change-mobile-light)|
+|![renovate-device-change-mobile-regular](icons/telefonica/regular/renovate-device-change-mobile-regular.svg) | |![renovate-device-change-mobile-regular](icons/o2-new/regular/renovate-device-change-mobile-regular.svg) |![renovate-device-change-mobile-regular](icons/o2/regular/renovate-device-change-mobile-regular.svg) | |`renovate-device-change-mobile-regular`[![renovate-device-change-mobile-regular](.github/resources/anchor.svg)](#renovate-device-change-mobile-regular)|
+| | |![repeat-filled](icons/o2-new/filled/repeat-filled.svg) |![repeat-filled](icons/o2/filled/repeat-filled.svg) | |`repeat-filled`[![repeat-filled](.github/resources/anchor.svg)](#repeat-filled)|
+| | |![repeat-light](icons/o2-new/light/repeat-light.svg) |![repeat-light](icons/o2/light/repeat-light.svg) | |`repeat-light`[![repeat-light](.github/resources/anchor.svg)](#repeat-light)|
+| | |![repeat-regular](icons/o2-new/regular/repeat-regular.svg) |![repeat-regular](icons/o2/regular/repeat-regular.svg) | |`repeat-regular`[![repeat-regular](.github/resources/anchor.svg)](#repeat-regular)|
+| | |![repeater-filled](icons/o2-new/filled/repeater-filled.svg) |![repeater-filled](icons/o2/filled/repeater-filled.svg) | |`repeater-filled`[![repeater-filled](.github/resources/anchor.svg)](#repeater-filled)|
+| | |![repeater-light](icons/o2-new/light/repeater-light.svg) |![repeater-light](icons/o2/light/repeater-light.svg) | |`repeater-light`[![repeater-light](.github/resources/anchor.svg)](#repeater-light)|
+| | |![repeater-regular](icons/o2-new/regular/repeater-regular.svg) |![repeater-regular](icons/o2/regular/repeater-regular.svg) | |`repeater-regular`[![repeater-regular](.github/resources/anchor.svg)](#repeater-regular)|
+| | |![report-filled](icons/o2-new/filled/report-filled.svg) |![report-filled](icons/o2/filled/report-filled.svg) | |`report-filled`[![report-filled](.github/resources/anchor.svg)](#report-filled)|
+| | |![report-light](icons/o2-new/light/report-light.svg) |![report-light](icons/o2/light/report-light.svg) | |`report-light`[![report-light](.github/resources/anchor.svg)](#report-light)|
+| | |![report-regular](icons/o2-new/regular/report-regular.svg) |![report-regular](icons/o2/regular/report-regular.svg) | |`report-regular`[![report-regular](.github/resources/anchor.svg)](#report-regular)|
+|![restaurant-filled](icons/telefonica/filled/restaurant-filled.svg) | |![restaurant-filled](icons/o2-new/filled/restaurant-filled.svg) |![restaurant-filled](icons/o2/filled/restaurant-filled.svg) | |`restaurant-filled`[![restaurant-filled](.github/resources/anchor.svg)](#restaurant-filled)|
+|![restaurant-light](icons/telefonica/light/restaurant-light.svg) | |![restaurant-light](icons/o2-new/light/restaurant-light.svg) |![restaurant-light](icons/o2/light/restaurant-light.svg) | |`restaurant-light`[![restaurant-light](.github/resources/anchor.svg)](#restaurant-light)|
+|![restaurant-regular](icons/telefonica/regular/restaurant-regular.svg) | |![restaurant-regular](icons/o2-new/regular/restaurant-regular.svg) |![restaurant-regular](icons/o2/regular/restaurant-regular.svg) | |`restaurant-regular`[![restaurant-regular](.github/resources/anchor.svg)](#restaurant-regular)|
+|![rewind-filled](icons/telefonica/filled/rewind-filled.svg) | |![rewind-filled](icons/o2-new/filled/rewind-filled.svg) |![rewind-filled](icons/o2/filled/rewind-filled.svg) | |`rewind-filled`[![rewind-filled](.github/resources/anchor.svg)](#rewind-filled)|
+|![rewind-light](icons/telefonica/light/rewind-light.svg) | |![rewind-light](icons/o2-new/light/rewind-light.svg) |![rewind-light](icons/o2/light/rewind-light.svg) | |`rewind-light`[![rewind-light](.github/resources/anchor.svg)](#rewind-light)|
+|![rewind-regular](icons/telefonica/regular/rewind-regular.svg) | |![rewind-regular](icons/o2-new/regular/rewind-regular.svg) |![rewind-regular](icons/o2/regular/rewind-regular.svg) | |`rewind-regular`[![rewind-regular](.github/resources/anchor.svg)](#rewind-regular)|
+|![road-sign-filled](icons/telefonica/filled/road-sign-filled.svg) | | | | |`road-sign-filled`[![road-sign-filled](.github/resources/anchor.svg)](#road-sign-filled)|
+|![road-sign-light](icons/telefonica/light/road-sign-light.svg) | | | | |`road-sign-light`[![road-sign-light](.github/resources/anchor.svg)](#road-sign-light)|
+|![road-sign-regular](icons/telefonica/regular/road-sign-regular.svg) | | | | |`road-sign-regular`[![road-sign-regular](.github/resources/anchor.svg)](#road-sign-regular)|
+|![robot-filled](icons/telefonica/filled/robot-filled.svg) | |![robot-filled](icons/o2-new/filled/robot-filled.svg) |![robot-filled](icons/o2/filled/robot-filled.svg) | |`robot-filled`[![robot-filled](.github/resources/anchor.svg)](#robot-filled)|
+|![robot-light](icons/telefonica/light/robot-light.svg) | |![robot-light](icons/o2-new/light/robot-light.svg) |![robot-light](icons/o2/light/robot-light.svg) | |`robot-light`[![robot-light](.github/resources/anchor.svg)](#robot-light)|
+|![robot-regular](icons/telefonica/regular/robot-regular.svg) | |![robot-regular](icons/o2-new/regular/robot-regular.svg) |![robot-regular](icons/o2/regular/robot-regular.svg) | |`robot-regular`[![robot-regular](.github/resources/anchor.svg)](#robot-regular)|
+| |![robot-vacuum-regular](icons/vivo-new/regular/robot-vacuum-regular.svg) | | | |`robot-vacuum-regular`[![robot-vacuum-regular](.github/resources/anchor.svg)](#robot-vacuum-regular)|
+|![rocket-filled](icons/telefonica/filled/rocket-filled.svg) | |![rocket-filled](icons/o2-new/filled/rocket-filled.svg) |![rocket-filled](icons/o2/filled/rocket-filled.svg) | |`rocket-filled`[![rocket-filled](.github/resources/anchor.svg)](#rocket-filled)|
+|![rocket-light](icons/telefonica/light/rocket-light.svg) | |![rocket-light](icons/o2-new/light/rocket-light.svg) |![rocket-light](icons/o2/light/rocket-light.svg) | |`rocket-light`[![rocket-light](.github/resources/anchor.svg)](#rocket-light)|
+|![rocket-regular](icons/telefonica/regular/rocket-regular.svg) | |![rocket-regular](icons/o2-new/regular/rocket-regular.svg) |![rocket-regular](icons/o2/regular/rocket-regular.svg) | |`rocket-regular`[![rocket-regular](.github/resources/anchor.svg)](#rocket-regular)|
+|![rook-filled](icons/telefonica/filled/rook-filled.svg) | | | | |`rook-filled`[![rook-filled](.github/resources/anchor.svg)](#rook-filled)|
+|![rook-light](icons/telefonica/light/rook-light.svg) | | | | |`rook-light`[![rook-light](.github/resources/anchor.svg)](#rook-light)|
+|![rook-regular](icons/telefonica/regular/rook-regular.svg) | | | | |`rook-regular`[![rook-regular](.github/resources/anchor.svg)](#rook-regular)|
+|![route-filled](icons/telefonica/filled/route-filled.svg) | | | | |`route-filled`[![route-filled](.github/resources/anchor.svg)](#route-filled)|
+|![route-light](icons/telefonica/light/route-light.svg) | | | | |`route-light`[![route-light](.github/resources/anchor.svg)](#route-light)|
+|![route-regular](icons/telefonica/regular/route-regular.svg) | | | | |`route-regular`[![route-regular](.github/resources/anchor.svg)](#route-regular)|
+|![router-filled](icons/telefonica/filled/router-filled.svg) | |![router-filled](icons/o2-new/filled/router-filled.svg) |![router-filled](icons/o2/filled/router-filled.svg) | |`router-filled`[![router-filled](.github/resources/anchor.svg)](#router-filled)|
+|![router-light](icons/telefonica/light/router-light.svg) | |![router-light](icons/o2-new/light/router-light.svg) |![router-light](icons/o2/light/router-light.svg) | |`router-light`[![router-light](.github/resources/anchor.svg)](#router-light)|
+|![router-regular](icons/telefonica/regular/router-regular.svg) |![router-regular](icons/vivo-new/regular/router-regular.svg) |![router-regular](icons/o2-new/regular/router-regular.svg) |![router-regular](icons/o2/regular/router-regular.svg) | |`router-regular`[![router-regular](.github/resources/anchor.svg)](#router-regular)|
+| |![routine-filled](icons/vivo-new/filled/routine-filled.svg) | | | |`routine-filled`[![routine-filled](.github/resources/anchor.svg)](#routine-filled)|
+| |![routine-light](icons/vivo-new/light/routine-light.svg) | | | |`routine-light`[![routine-light](.github/resources/anchor.svg)](#routine-light)|
+| |![routine-regular](icons/vivo-new/regular/routine-regular.svg) | | | |`routine-regular`[![routine-regular](.github/resources/anchor.svg)](#routine-regular)|
+|![ruler-filled](icons/telefonica/filled/ruler-filled.svg) | | | | |`ruler-filled`[![ruler-filled](.github/resources/anchor.svg)](#ruler-filled)|
+|![ruler-light](icons/telefonica/light/ruler-light.svg) | | | | |`ruler-light`[![ruler-light](.github/resources/anchor.svg)](#ruler-light)|
+|![ruler-regular](icons/telefonica/regular/ruler-regular.svg) | | | | |`ruler-regular`[![ruler-regular](.github/resources/anchor.svg)](#ruler-regular)|
+|![safety-belt-filled](icons/telefonica/filled/safety-belt-filled.svg) | | | | |`safety-belt-filled`[![safety-belt-filled](.github/resources/anchor.svg)](#safety-belt-filled)|
+|![safety-belt-light](icons/telefonica/light/safety-belt-light.svg) | | | | |`safety-belt-light`[![safety-belt-light](.github/resources/anchor.svg)](#safety-belt-light)|
+|![safety-belt-regular](icons/telefonica/regular/safety-belt-regular.svg) | | | | |`safety-belt-regular`[![safety-belt-regular](.github/resources/anchor.svg)](#safety-belt-regular)|
+|![search-cloud-filled](icons/telefonica/filled/search-cloud-filled.svg) | | | | |`search-cloud-filled`[![search-cloud-filled](.github/resources/anchor.svg)](#search-cloud-filled)|
+|![search-cloud-light](icons/telefonica/light/search-cloud-light.svg) | | | | |`search-cloud-light`[![search-cloud-light](.github/resources/anchor.svg)](#search-cloud-light)|
+|![search-cloud-regular](icons/telefonica/regular/search-cloud-regular.svg) | | | | |`search-cloud-regular`[![search-cloud-regular](.github/resources/anchor.svg)](#search-cloud-regular)|
+|![search-database-filled](icons/telefonica/filled/search-database-filled.svg) | | | | |`search-database-filled`[![search-database-filled](.github/resources/anchor.svg)](#search-database-filled)|
+|![search-database-light](icons/telefonica/light/search-database-light.svg) | | | | |`search-database-light`[![search-database-light](.github/resources/anchor.svg)](#search-database-light)|
+|![search-database-regular](icons/telefonica/regular/search-database-regular.svg) | | | | |`search-database-regular`[![search-database-regular](.github/resources/anchor.svg)](#search-database-regular)|
+|![search-file-filled](icons/telefonica/filled/search-file-filled.svg) | | | | |`search-file-filled`[![search-file-filled](.github/resources/anchor.svg)](#search-file-filled)|
+|![search-file-light](icons/telefonica/light/search-file-light.svg) | | | | |`search-file-light`[![search-file-light](.github/resources/anchor.svg)](#search-file-light)|
+|![search-file-regular](icons/telefonica/regular/search-file-regular.svg) | | | | |`search-file-regular`[![search-file-regular](.github/resources/anchor.svg)](#search-file-regular)|
+|![search-filled](icons/telefonica/filled/search-filled.svg) | |![search-filled](icons/o2-new/filled/search-filled.svg) |![search-filled](icons/o2/filled/search-filled.svg) | |`search-filled`[![search-filled](.github/resources/anchor.svg)](#search-filled)|
+|![search-light](icons/telefonica/light/search-light.svg) | |![search-light](icons/o2-new/light/search-light.svg) |![search-light](icons/o2/light/search-light.svg) | |`search-light`[![search-light](.github/resources/anchor.svg)](#search-light)|
+|![search-money-filled](icons/telefonica/filled/search-money-filled.svg) | | | | |`search-money-filled`[![search-money-filled](.github/resources/anchor.svg)](#search-money-filled)|
+|![search-money-light](icons/telefonica/light/search-money-light.svg) | | | | |`search-money-light`[![search-money-light](.github/resources/anchor.svg)](#search-money-light)|
+|![search-money-regular](icons/telefonica/regular/search-money-regular.svg) | | | | |`search-money-regular`[![search-money-regular](.github/resources/anchor.svg)](#search-money-regular)|
+|![search-regular](icons/telefonica/regular/search-regular.svg) | |![search-regular](icons/o2-new/regular/search-regular.svg) |![search-regular](icons/o2/regular/search-regular.svg) |![search-regular](icons/blau/regular/search-regular.svg) |`search-regular`[![search-regular](.github/resources/anchor.svg)](#search-regular)|
+| | |![send-euro-filled](icons/o2-new/filled/send-euro-filled.svg) |![send-euro-filled](icons/o2/filled/send-euro-filled.svg) | |`send-euro-filled`[![send-euro-filled](.github/resources/anchor.svg)](#send-euro-filled)|
+| | |![send-euro-light](icons/o2-new/light/send-euro-light.svg) |![send-euro-light](icons/o2/light/send-euro-light.svg) | |`send-euro-light`[![send-euro-light](.github/resources/anchor.svg)](#send-euro-light)|
+| | |![send-euro-regular](icons/o2-new/regular/send-euro-regular.svg) |![send-euro-regular](icons/o2/regular/send-euro-regular.svg) | |`send-euro-regular`[![send-euro-regular](.github/resources/anchor.svg)](#send-euro-regular)|
+|![send-filled](icons/telefonica/filled/send-filled.svg) | |![send-filled](icons/o2-new/filled/send-filled.svg) |![send-filled](icons/o2/filled/send-filled.svg) | |`send-filled`[![send-filled](.github/resources/anchor.svg)](#send-filled)|
+|![send-light](icons/telefonica/light/send-light.svg) | |![send-light](icons/o2-new/light/send-light.svg) |![send-light](icons/o2/light/send-light.svg) | |`send-light`[![send-light](.github/resources/anchor.svg)](#send-light)|
+| | |![send-pound-filled](icons/o2-new/filled/send-pound-filled.svg) |![send-pound-filled](icons/o2/filled/send-pound-filled.svg) | |`send-pound-filled`[![send-pound-filled](.github/resources/anchor.svg)](#send-pound-filled)|
+| | |![send-pound-light](icons/o2-new/light/send-pound-light.svg) |![send-pound-light](icons/o2/light/send-pound-light.svg) | |`send-pound-light`[![send-pound-light](.github/resources/anchor.svg)](#send-pound-light)|
+| | |![send-pound-regular](icons/o2-new/regular/send-pound-regular.svg) |![send-pound-regular](icons/o2/regular/send-pound-regular.svg) | |`send-pound-regular`[![send-pound-regular](.github/resources/anchor.svg)](#send-pound-regular)|
+|![send-regular](icons/telefonica/regular/send-regular.svg) | |![send-regular](icons/o2-new/regular/send-regular.svg) |![send-regular](icons/o2/regular/send-regular.svg) | |`send-regular`[![send-regular](.github/resources/anchor.svg)](#send-regular)|
+|![settings-cloud-filled](icons/telefonica/filled/settings-cloud-filled.svg) | | | | |`settings-cloud-filled`[![settings-cloud-filled](.github/resources/anchor.svg)](#settings-cloud-filled)|
+|![settings-cloud-light](icons/telefonica/light/settings-cloud-light.svg) | | | | |`settings-cloud-light`[![settings-cloud-light](.github/resources/anchor.svg)](#settings-cloud-light)|
+|![settings-cloud-regular](icons/telefonica/regular/settings-cloud-regular.svg) | | | | |`settings-cloud-regular`[![settings-cloud-regular](.github/resources/anchor.svg)](#settings-cloud-regular)|
+|![settings-filled](icons/telefonica/filled/settings-filled.svg) | |![settings-filled](icons/o2-new/filled/settings-filled.svg) |![settings-filled](icons/o2/filled/settings-filled.svg) | |`settings-filled`[![settings-filled](.github/resources/anchor.svg)](#settings-filled)|
+|![settings-light](icons/telefonica/light/settings-light.svg) | |![settings-light](icons/o2-new/light/settings-light.svg) |![settings-light](icons/o2/light/settings-light.svg) | |`settings-light`[![settings-light](.github/resources/anchor.svg)](#settings-light)|
+|![settings-regular](icons/telefonica/regular/settings-regular.svg) | |![settings-regular](icons/o2-new/regular/settings-regular.svg) |![settings-regular](icons/o2/regular/settings-regular.svg) | |`settings-regular`[![settings-regular](.github/resources/anchor.svg)](#settings-regular)|
+|![settings-web-filled](icons/telefonica/filled/settings-web-filled.svg) | | | | |`settings-web-filled`[![settings-web-filled](.github/resources/anchor.svg)](#settings-web-filled)|
+|![settings-web-light](icons/telefonica/light/settings-web-light.svg) | | | | |`settings-web-light`[![settings-web-light](.github/resources/anchor.svg)](#settings-web-light)|
+|![settings-web-regular](icons/telefonica/regular/settings-web-regular.svg) | | | | |`settings-web-regular`[![settings-web-regular](.github/resources/anchor.svg)](#settings-web-regular)|
+| | |![share-devices-filled](icons/o2-new/filled/share-devices-filled.svg) |![share-devices-filled](icons/o2/filled/share-devices-filled.svg) | |`share-devices-filled`[![share-devices-filled](.github/resources/anchor.svg)](#share-devices-filled)|
+| | |![share-devices-light](icons/o2-new/light/share-devices-light.svg) |![share-devices-light](icons/o2/light/share-devices-light.svg) | |`share-devices-light`[![share-devices-light](.github/resources/anchor.svg)](#share-devices-light)|
+| | |![share-devices-regular](icons/o2-new/regular/share-devices-regular.svg) |![share-devices-regular](icons/o2/regular/share-devices-regular.svg) | |`share-devices-regular`[![share-devices-regular](.github/resources/anchor.svg)](#share-devices-regular)|
+|![share-filled](icons/telefonica/filled/share-filled.svg) |![share-filled](icons/vivo-new/filled/share-filled.svg) |![share-filled](icons/o2-new/filled/share-filled.svg) |![share-filled](icons/o2/filled/share-filled.svg) | |`share-filled`[![share-filled](.github/resources/anchor.svg)](#share-filled)|
+|![share-light](icons/telefonica/light/share-light.svg) |![share-light](icons/vivo-new/light/share-light.svg) |![share-light](icons/o2-new/light/share-light.svg) |![share-light](icons/o2/light/share-light.svg) | |`share-light`[![share-light](.github/resources/anchor.svg)](#share-light)|
+|![share-regular](icons/telefonica/regular/share-regular.svg) |![share-regular](icons/vivo-new/regular/share-regular.svg) |![share-regular](icons/o2-new/regular/share-regular.svg) |![share-regular](icons/o2/regular/share-regular.svg) | |`share-regular`[![share-regular](.github/resources/anchor.svg)](#share-regular)|
+|![shared-data-filled](icons/telefonica/filled/shared-data-filled.svg) | | | | |`shared-data-filled`[![shared-data-filled](.github/resources/anchor.svg)](#shared-data-filled)|
+|![shared-data-light](icons/telefonica/light/shared-data-light.svg) | | | | |`shared-data-light`[![shared-data-light](.github/resources/anchor.svg)](#shared-data-light)|
+|![shared-data-regular](icons/telefonica/regular/shared-data-regular.svg) | | | | |`shared-data-regular`[![shared-data-regular](.github/resources/anchor.svg)](#shared-data-regular)|
+|![shared-mobile-data-filled](icons/telefonica/filled/shared-mobile-data-filled.svg) | | | | |`shared-mobile-data-filled`[![shared-mobile-data-filled](.github/resources/anchor.svg)](#shared-mobile-data-filled)|
+|![shared-mobile-data-light](icons/telefonica/light/shared-mobile-data-light.svg) | | | | |`shared-mobile-data-light`[![shared-mobile-data-light](.github/resources/anchor.svg)](#shared-mobile-data-light)|
+|![shared-mobile-data-regular](icons/telefonica/regular/shared-mobile-data-regular.svg) | | | | |`shared-mobile-data-regular`[![shared-mobile-data-regular](.github/resources/anchor.svg)](#shared-mobile-data-regular)|
+|![shield-antivirus-filled](icons/telefonica/filled/shield-antivirus-filled.svg) | | | | |`shield-antivirus-filled`[![shield-antivirus-filled](.github/resources/anchor.svg)](#shield-antivirus-filled)|
+|![shield-antivirus-light](icons/telefonica/light/shield-antivirus-light.svg) | | | | |`shield-antivirus-light`[![shield-antivirus-light](.github/resources/anchor.svg)](#shield-antivirus-light)|
+|![shield-antivirus-regular](icons/telefonica/regular/shield-antivirus-regular.svg) | | | | |`shield-antivirus-regular`[![shield-antivirus-regular](.github/resources/anchor.svg)](#shield-antivirus-regular)|
+|![shield-checked-ok-filled](icons/telefonica/filled/shield-checked-ok-filled.svg) | |![shield-checked-ok-filled](icons/o2-new/filled/shield-checked-ok-filled.svg) |![shield-checked-ok-filled](icons/o2/filled/shield-checked-ok-filled.svg) | |`shield-checked-ok-filled`[![shield-checked-ok-filled](.github/resources/anchor.svg)](#shield-checked-ok-filled)|
+|![shield-checked-ok-light](icons/telefonica/light/shield-checked-ok-light.svg) | |![shield-checked-ok-light](icons/o2-new/light/shield-checked-ok-light.svg) |![shield-checked-ok-light](icons/o2/light/shield-checked-ok-light.svg) | |`shield-checked-ok-light`[![shield-checked-ok-light](.github/resources/anchor.svg)](#shield-checked-ok-light)|
+|![shield-checked-ok-regular](icons/telefonica/regular/shield-checked-ok-regular.svg) | |![shield-checked-ok-regular](icons/o2-new/regular/shield-checked-ok-regular.svg) |![shield-checked-ok-regular](icons/o2/regular/shield-checked-ok-regular.svg) | |`shield-checked-ok-regular`[![shield-checked-ok-regular](.github/resources/anchor.svg)](#shield-checked-ok-regular)|
+|![shield-cross-filled](icons/telefonica/filled/shield-cross-filled.svg) | |![shield-cross-filled](icons/o2-new/filled/shield-cross-filled.svg) |![shield-cross-filled](icons/o2/filled/shield-cross-filled.svg) | |`shield-cross-filled`[![shield-cross-filled](.github/resources/anchor.svg)](#shield-cross-filled)|
+|![shield-cross-light](icons/telefonica/light/shield-cross-light.svg) | |![shield-cross-light](icons/o2-new/light/shield-cross-light.svg) |![shield-cross-light](icons/o2/light/shield-cross-light.svg) | |`shield-cross-light`[![shield-cross-light](.github/resources/anchor.svg)](#shield-cross-light)|
+|![shield-cross-regular](icons/telefonica/regular/shield-cross-regular.svg) | |![shield-cross-regular](icons/o2-new/regular/shield-cross-regular.svg) |![shield-cross-regular](icons/o2/regular/shield-cross-regular.svg) | |`shield-cross-regular`[![shield-cross-regular](.github/resources/anchor.svg)](#shield-cross-regular)|
+|![shield-filled](icons/telefonica/filled/shield-filled.svg) | | | | |`shield-filled`[![shield-filled](.github/resources/anchor.svg)](#shield-filled)|
+|![shield-light](icons/telefonica/light/shield-light.svg) | | | | |`shield-light`[![shield-light](.github/resources/anchor.svg)](#shield-light)|
+|![shield-regular](icons/telefonica/regular/shield-regular.svg) | | | | |`shield-regular`[![shield-regular](.github/resources/anchor.svg)](#shield-regular)|
+|![shop-filled](icons/telefonica/filled/shop-filled.svg) | |![shop-filled](icons/o2-new/filled/shop-filled.svg) |![shop-filled](icons/o2/filled/shop-filled.svg) | |`shop-filled`[![shop-filled](.github/resources/anchor.svg)](#shop-filled)|
+|![shop-light](icons/telefonica/light/shop-light.svg) | |![shop-light](icons/o2-new/light/shop-light.svg) |![shop-light](icons/o2/light/shop-light.svg) | |`shop-light`[![shop-light](.github/resources/anchor.svg)](#shop-light)|
+|![shop-regular](icons/telefonica/regular/shop-regular.svg) | |![shop-regular](icons/o2-new/regular/shop-regular.svg) |![shop-regular](icons/o2/regular/shop-regular.svg) | |`shop-regular`[![shop-regular](.github/resources/anchor.svg)](#shop-regular)|
+| |![shopping-bag-filled](icons/vivo-new/filled/shopping-bag-filled.svg) | | | |`shopping-bag-filled`[![shopping-bag-filled](.github/resources/anchor.svg)](#shopping-bag-filled)|
+| |![shopping-bag-light](icons/vivo-new/light/shopping-bag-light.svg) | | | |`shopping-bag-light`[![shopping-bag-light](.github/resources/anchor.svg)](#shopping-bag-light)|
+| |![shopping-bag-regular](icons/vivo-new/regular/shopping-bag-regular.svg) | | | |`shopping-bag-regular`[![shopping-bag-regular](.github/resources/anchor.svg)](#shopping-bag-regular)|
+|![shopping-cart-filled](icons/telefonica/filled/shopping-cart-filled.svg) | |![shopping-cart-filled](icons/o2-new/filled/shopping-cart-filled.svg) |![shopping-cart-filled](icons/o2/filled/shopping-cart-filled.svg) | |`shopping-cart-filled`[![shopping-cart-filled](.github/resources/anchor.svg)](#shopping-cart-filled)|
+|![shopping-cart-light](icons/telefonica/light/shopping-cart-light.svg) | |![shopping-cart-light](icons/o2-new/light/shopping-cart-light.svg) |![shopping-cart-light](icons/o2/light/shopping-cart-light.svg) | |`shopping-cart-light`[![shopping-cart-light](.github/resources/anchor.svg)](#shopping-cart-light)|
+|![shopping-cart-regular](icons/telefonica/regular/shopping-cart-regular.svg) | |![shopping-cart-regular](icons/o2-new/regular/shopping-cart-regular.svg) |![shopping-cart-regular](icons/o2/regular/shopping-cart-regular.svg) |![shopping-cart-regular](icons/blau/regular/shopping-cart-regular.svg) |`shopping-cart-regular`[![shopping-cart-regular](.github/resources/anchor.svg)](#shopping-cart-regular)|
+|![shower-filled](icons/telefonica/filled/shower-filled.svg) | | | | |`shower-filled`[![shower-filled](.github/resources/anchor.svg)](#shower-filled)|
+|![shower-light](icons/telefonica/light/shower-light.svg) | | | | |`shower-light`[![shower-light](.github/resources/anchor.svg)](#shower-light)|
+|![shower-regular](icons/telefonica/regular/shower-regular.svg) | | | | |`shower-regular`[![shower-regular](.github/resources/anchor.svg)](#shower-regular)|
+| |![shuffle-circle-filled](icons/vivo-new/filled/shuffle-circle-filled.svg) | | | |`shuffle-circle-filled`[![shuffle-circle-filled](.github/resources/anchor.svg)](#shuffle-circle-filled)|
+| |![shuffle-circle-light](icons/vivo-new/light/shuffle-circle-light.svg) | | | |`shuffle-circle-light`[![shuffle-circle-light](.github/resources/anchor.svg)](#shuffle-circle-light)|
+| |![shuffle-circle-regular](icons/vivo-new/regular/shuffle-circle-regular.svg) | | | |`shuffle-circle-regular`[![shuffle-circle-regular](.github/resources/anchor.svg)](#shuffle-circle-regular)|
+| | |![silence-filled](icons/o2-new/filled/silence-filled.svg) |![silence-filled](icons/o2/filled/silence-filled.svg) | |`silence-filled`[![silence-filled](.github/resources/anchor.svg)](#silence-filled)|
+| | |![silence-regular](icons/o2-new/regular/silence-regular.svg) |![silence-regular](icons/o2/regular/silence-regular.svg) | |`silence-regular`[![silence-regular](.github/resources/anchor.svg)](#silence-regular)|
+|![singleparent-family-filled](icons/telefonica/filled/singleparent-family-filled.svg) | | | | |`singleparent-family-filled`[![singleparent-family-filled](.github/resources/anchor.svg)](#singleparent-family-filled)|
+|![singleparent-family-light](icons/telefonica/light/singleparent-family-light.svg) | | | | |`singleparent-family-light`[![singleparent-family-light](.github/resources/anchor.svg)](#singleparent-family-light)|
+|![singleparent-family-regular](icons/telefonica/regular/singleparent-family-regular.svg) | | | | |`singleparent-family-regular`[![singleparent-family-regular](.github/resources/anchor.svg)](#singleparent-family-regular)|
+|![skull-filled](icons/telefonica/filled/skull-filled.svg) | | | | |`skull-filled`[![skull-filled](.github/resources/anchor.svg)](#skull-filled)|
+|![skull-light](icons/telefonica/light/skull-light.svg) | | | | |`skull-light`[![skull-light](.github/resources/anchor.svg)](#skull-light)|
+|![skull-regular](icons/telefonica/regular/skull-regular.svg) | | | | |`skull-regular`[![skull-regular](.github/resources/anchor.svg)](#skull-regular)|
+|![smart-wifi-filled](icons/telefonica/filled/smart-wifi-filled.svg) | | | | |`smart-wifi-filled`[![smart-wifi-filled](.github/resources/anchor.svg)](#smart-wifi-filled)|
+|![smart-wifi-light](icons/telefonica/light/smart-wifi-light.svg) | | | | |`smart-wifi-light`[![smart-wifi-light](.github/resources/anchor.svg)](#smart-wifi-light)|
+|![smart-wifi-regular](icons/telefonica/regular/smart-wifi-regular.svg) | | | | |`smart-wifi-regular`[![smart-wifi-regular](.github/resources/anchor.svg)](#smart-wifi-regular)|
+|![sms-filled](icons/telefonica/filled/sms-filled.svg) | |![sms-filled](icons/o2-new/filled/sms-filled.svg) |![sms-filled](icons/o2/filled/sms-filled.svg) | |`sms-filled`[![sms-filled](.github/resources/anchor.svg)](#sms-filled)|
+|![sms-light](icons/telefonica/light/sms-light.svg) | |![sms-light](icons/o2-new/light/sms-light.svg) |![sms-light](icons/o2/light/sms-light.svg) | |`sms-light`[![sms-light](.github/resources/anchor.svg)](#sms-light)|
+| | |![sms-regular](icons/o2-new/regular/sms-regular.svg) |![sms-regular](icons/o2/regular/sms-regular.svg) | |`sms-regular`[![sms-regular](.github/resources/anchor.svg)](#sms-regular)|
+|![sniper-scope-light](icons/telefonica/light/sniper-scope-light.svg) | | | | |`sniper-scope-light`[![sniper-scope-light](.github/resources/anchor.svg)](#sniper-scope-light)|
+|![sniper-scope-regular](icons/telefonica/regular/sniper-scope-regular.svg) | | | | |`sniper-scope-regular`[![sniper-scope-regular](.github/resources/anchor.svg)](#sniper-scope-regular)|
+|![snowflake-light](icons/telefonica/light/snowflake-light.svg) | | | | |`snowflake-light`[![snowflake-light](.github/resources/anchor.svg)](#snowflake-light)|
+|![snowflake-regular](icons/telefonica/regular/snowflake-regular.svg) | | | | |`snowflake-regular`[![snowflake-regular](.github/resources/anchor.svg)](#snowflake-regular)|
+|![sport-ball-filled](icons/telefonica/filled/sport-ball-filled.svg) | | | | |`sport-ball-filled`[![sport-ball-filled](.github/resources/anchor.svg)](#sport-ball-filled)|
+|![sport-ball-light](icons/telefonica/light/sport-ball-light.svg) | | | | |`sport-ball-light`[![sport-ball-light](.github/resources/anchor.svg)](#sport-ball-light)|
+|![sport-ball-regular](icons/telefonica/regular/sport-ball-regular.svg) | | | | |`sport-ball-regular`[![sport-ball-regular](.github/resources/anchor.svg)](#sport-ball-regular)|
+|![star-filled](icons/telefonica/filled/star-filled.svg) | | | | |`star-filled`[![star-filled](.github/resources/anchor.svg)](#star-filled)|
+|![star-light](icons/telefonica/light/star-light.svg) | | | | |`star-light`[![star-light](.github/resources/anchor.svg)](#star-light)|
+|![star-regular](icons/telefonica/regular/star-regular.svg) | | | | |`star-regular`[![star-regular](.github/resources/anchor.svg)](#star-regular)|
+|![status-chart-filled](icons/telefonica/filled/status-chart-filled.svg) | |![status-chart-filled](icons/o2-new/filled/status-chart-filled.svg) |![status-chart-filled](icons/o2/filled/status-chart-filled.svg) | |`status-chart-filled`[![status-chart-filled](.github/resources/anchor.svg)](#status-chart-filled)|
+|![status-chart-light](icons/telefonica/light/status-chart-light.svg) | |![status-chart-light](icons/o2-new/light/status-chart-light.svg) |![status-chart-light](icons/o2/light/status-chart-light.svg) | |`status-chart-light`[![status-chart-light](.github/resources/anchor.svg)](#status-chart-light)|
+|![status-chart-regular](icons/telefonica/regular/status-chart-regular.svg) | |![status-chart-regular](icons/o2-new/regular/status-chart-regular.svg) |![status-chart-regular](icons/o2/regular/status-chart-regular.svg) | |`status-chart-regular`[![status-chart-regular](.github/resources/anchor.svg)](#status-chart-regular)|
+|![stethoscope-medico-filled](icons/telefonica/filled/stethoscope-medico-filled.svg) | | | | |`stethoscope-medico-filled`[![stethoscope-medico-filled](.github/resources/anchor.svg)](#stethoscope-medico-filled)|
+|![stethoscope-medico-light](icons/telefonica/light/stethoscope-medico-light.svg) | | | | |`stethoscope-medico-light`[![stethoscope-medico-light](.github/resources/anchor.svg)](#stethoscope-medico-light)|
+|![stethoscope-medico-regular](icons/telefonica/regular/stethoscope-medico-regular.svg) | | | | |`stethoscope-medico-regular`[![stethoscope-medico-regular](.github/resources/anchor.svg)](#stethoscope-medico-regular)|
+|![stomach-filled](icons/telefonica/filled/stomach-filled.svg) | | | | |`stomach-filled`[![stomach-filled](.github/resources/anchor.svg)](#stomach-filled)|
+|![stomach-light](icons/telefonica/light/stomach-light.svg) | | | | |`stomach-light`[![stomach-light](.github/resources/anchor.svg)](#stomach-light)|
+|![stomach-regular](icons/telefonica/regular/stomach-regular.svg) | | | | |`stomach-regular`[![stomach-regular](.github/resources/anchor.svg)](#stomach-regular)|
+|![storm-filled](icons/telefonica/filled/storm-filled.svg) | | | | |`storm-filled`[![storm-filled](.github/resources/anchor.svg)](#storm-filled)|
+|![storm-light](icons/telefonica/light/storm-light.svg) | | | | |`storm-light`[![storm-light](.github/resources/anchor.svg)](#storm-light)|
+|![storm-regular](icons/telefonica/regular/storm-regular.svg) | | | | |`storm-regular`[![storm-regular](.github/resources/anchor.svg)](#storm-regular)|
+| | |![subscription-filled](icons/o2-new/filled/subscription-filled.svg) |![subscription-filled](icons/o2/filled/subscription-filled.svg) | |`subscription-filled`[![subscription-filled](.github/resources/anchor.svg)](#subscription-filled)|
+| | |![subscription-light](icons/o2-new/light/subscription-light.svg) |![subscription-light](icons/o2/light/subscription-light.svg) | |`subscription-light`[![subscription-light](.github/resources/anchor.svg)](#subscription-light)|
+| | |![subscription-regular](icons/o2-new/regular/subscription-regular.svg) |![subscription-regular](icons/o2/regular/subscription-regular.svg) | |`subscription-regular`[![subscription-regular](.github/resources/anchor.svg)](#subscription-regular)|
+| | |![subtitles-filled](icons/o2-new/filled/subtitles-filled.svg) |![subtitles-filled](icons/o2/filled/subtitles-filled.svg) | |`subtitles-filled`[![subtitles-filled](.github/resources/anchor.svg)](#subtitles-filled)|
+| | |![subtitles-light](icons/o2-new/light/subtitles-light.svg) |![subtitles-light](icons/o2/light/subtitles-light.svg) | |`subtitles-light`[![subtitles-light](.github/resources/anchor.svg)](#subtitles-light)|
+| | |![subtitles-regular](icons/o2-new/regular/subtitles-regular.svg) |![subtitles-regular](icons/o2/regular/subtitles-regular.svg) | |`subtitles-regular`[![subtitles-regular](.github/resources/anchor.svg)](#subtitles-regular)|
+|![subtract-circle-filled](icons/telefonica/filled/subtract-circle-filled.svg) | | | | |`subtract-circle-filled`[![subtract-circle-filled](.github/resources/anchor.svg)](#subtract-circle-filled)|
+|![subtract-circle-light](icons/telefonica/light/subtract-circle-light.svg) | | | | |`subtract-circle-light`[![subtract-circle-light](.github/resources/anchor.svg)](#subtract-circle-light)|
+|![subtract-circle-regular](icons/telefonica/regular/subtract-circle-regular.svg) | | | | |`subtract-circle-regular`[![subtract-circle-regular](.github/resources/anchor.svg)](#subtract-circle-regular)|
+| | |![subtract-filled](icons/o2-new/filled/subtract-filled.svg) |![subtract-filled](icons/o2/filled/subtract-filled.svg) | |`subtract-filled`[![subtract-filled](.github/resources/anchor.svg)](#subtract-filled)|
+|![subtract-light](icons/telefonica/light/subtract-light.svg) | |![subtract-light](icons/o2-new/light/subtract-light.svg) |![subtract-light](icons/o2/light/subtract-light.svg) | |`subtract-light`[![subtract-light](.github/resources/anchor.svg)](#subtract-light)|
+|![subtract-regular](icons/telefonica/regular/subtract-regular.svg) | |![subtract-regular](icons/o2-new/regular/subtract-regular.svg) |![subtract-regular](icons/o2/regular/subtract-regular.svg) |![subtract-regular](icons/blau/regular/subtract-regular.svg) |`subtract-regular`[![subtract-regular](.github/resources/anchor.svg)](#subtract-regular)|
+|![sun-filled](icons/telefonica/filled/sun-filled.svg) | | | | |`sun-filled`[![sun-filled](.github/resources/anchor.svg)](#sun-filled)|
+|![sun-light](icons/telefonica/light/sun-light.svg) | | | | |`sun-light`[![sun-light](.github/resources/anchor.svg)](#sun-light)|
+|![sun-regular](icons/telefonica/regular/sun-regular.svg) |![sun-regular](icons/vivo-new/regular/sun-regular.svg) | | | |`sun-regular`[![sun-regular](.github/resources/anchor.svg)](#sun-regular)|
+|![supermarket-filled](icons/telefonica/filled/supermarket-filled.svg) | | | | |`supermarket-filled`[![supermarket-filled](.github/resources/anchor.svg)](#supermarket-filled)|
+|![supermarket-light](icons/telefonica/light/supermarket-light.svg) | | | | |`supermarket-light`[![supermarket-light](.github/resources/anchor.svg)](#supermarket-light)|
+|![supermarket-regular](icons/telefonica/regular/supermarket-regular.svg) | | | | |`supermarket-regular`[![supermarket-regular](.github/resources/anchor.svg)](#supermarket-regular)|
+|![support-agent-filled](icons/telefonica/filled/support-agent-filled.svg) | |![support-agent-filled](icons/o2-new/filled/support-agent-filled.svg) |![support-agent-filled](icons/o2/filled/support-agent-filled.svg) | |`support-agent-filled`[![support-agent-filled](.github/resources/anchor.svg)](#support-agent-filled)|
+|![support-agent-light](icons/telefonica/light/support-agent-light.svg) | |![support-agent-light](icons/o2-new/light/support-agent-light.svg) |![support-agent-light](icons/o2/light/support-agent-light.svg) | |`support-agent-light`[![support-agent-light](.github/resources/anchor.svg)](#support-agent-light)|
+| | |![support-agent-premium-filled](icons/o2-new/filled/support-agent-premium-filled.svg) |![support-agent-premium-filled](icons/o2/filled/support-agent-premium-filled.svg) | |`support-agent-premium-filled`[![support-agent-premium-filled](.github/resources/anchor.svg)](#support-agent-premium-filled)|
+| | |![support-agent-premium-light](icons/o2-new/light/support-agent-premium-light.svg) |![support-agent-premium-light](icons/o2/light/support-agent-premium-light.svg) | |`support-agent-premium-light`[![support-agent-premium-light](.github/resources/anchor.svg)](#support-agent-premium-light)|
+| | |![support-agent-premium-regular](icons/o2-new/regular/support-agent-premium-regular.svg) |![support-agent-premium-regular](icons/o2/regular/support-agent-premium-regular.svg) | |`support-agent-premium-regular`[![support-agent-premium-regular](.github/resources/anchor.svg)](#support-agent-premium-regular)|
+|![support-agent-regular](icons/telefonica/regular/support-agent-regular.svg) | |![support-agent-regular](icons/o2-new/regular/support-agent-regular.svg) |![support-agent-regular](icons/o2/regular/support-agent-regular.svg) |![support-agent-regular](icons/blau/regular/support-agent-regular.svg) |`support-agent-regular`[![support-agent-regular](.github/resources/anchor.svg)](#support-agent-regular)|
+|![syringe-filled](icons/telefonica/filled/syringe-filled.svg) | | | | |`syringe-filled`[![syringe-filled](.github/resources/anchor.svg)](#syringe-filled)|
+|![syringe-light](icons/telefonica/light/syringe-light.svg) | | | | |`syringe-light`[![syringe-light](.github/resources/anchor.svg)](#syringe-light)|
+|![syringe-regular](icons/telefonica/regular/syringe-regular.svg) | | | | |`syringe-regular`[![syringe-regular](.github/resources/anchor.svg)](#syringe-regular)|
+|![tablet-filled](icons/telefonica/filled/tablet-filled.svg) | |![tablet-filled](icons/o2-new/filled/tablet-filled.svg) |![tablet-filled](icons/o2/filled/tablet-filled.svg) | |`tablet-filled`[![tablet-filled](.github/resources/anchor.svg)](#tablet-filled)|
+|![tablet-light](icons/telefonica/light/tablet-light.svg) | |![tablet-light](icons/o2-new/light/tablet-light.svg) |![tablet-light](icons/o2/light/tablet-light.svg) | |`tablet-light`[![tablet-light](.github/resources/anchor.svg)](#tablet-light)|
+|![tablet-regular](icons/telefonica/regular/tablet-regular.svg) | |![tablet-regular](icons/o2-new/regular/tablet-regular.svg) |![tablet-regular](icons/o2/regular/tablet-regular.svg) |![tablet-regular](icons/blau/regular/tablet-regular.svg) |`tablet-regular`[![tablet-regular](.github/resources/anchor.svg)](#tablet-regular)|
+|![tachometer-filled](icons/telefonica/filled/tachometer-filled.svg) | |![tachometer-filled](icons/o2-new/filled/tachometer-filled.svg) |![tachometer-filled](icons/o2/filled/tachometer-filled.svg) | |`tachometer-filled`[![tachometer-filled](.github/resources/anchor.svg)](#tachometer-filled)|
+|![tachometer-light](icons/telefonica/light/tachometer-light.svg) | |![tachometer-light](icons/o2-new/light/tachometer-light.svg) |![tachometer-light](icons/o2/light/tachometer-light.svg) | |`tachometer-light`[![tachometer-light](.github/resources/anchor.svg)](#tachometer-light)|
+|![tachometer-regular](icons/telefonica/regular/tachometer-regular.svg) | |![tachometer-regular](icons/o2-new/regular/tachometer-regular.svg) |![tachometer-regular](icons/o2/regular/tachometer-regular.svg) | |`tachometer-regular`[![tachometer-regular](.github/resources/anchor.svg)](#tachometer-regular)|
+| | |![tag-discount-euro-filled](icons/o2-new/filled/tag-discount-euro-filled.svg) |![tag-discount-euro-filled](icons/o2/filled/tag-discount-euro-filled.svg) | |`tag-discount-euro-filled`[![tag-discount-euro-filled](.github/resources/anchor.svg)](#tag-discount-euro-filled)|
+| | |![tag-discount-euro-light](icons/o2-new/light/tag-discount-euro-light.svg) |![tag-discount-euro-light](icons/o2/light/tag-discount-euro-light.svg) | |`tag-discount-euro-light`[![tag-discount-euro-light](.github/resources/anchor.svg)](#tag-discount-euro-light)|
+| | |![tag-discount-euro-regular](icons/o2-new/regular/tag-discount-euro-regular.svg) |![tag-discount-euro-regular](icons/o2/regular/tag-discount-euro-regular.svg) | |`tag-discount-euro-regular`[![tag-discount-euro-regular](.github/resources/anchor.svg)](#tag-discount-euro-regular)|
+| | |![tag-discount-pound-filled](icons/o2-new/filled/tag-discount-pound-filled.svg) |![tag-discount-pound-filled](icons/o2/filled/tag-discount-pound-filled.svg) | |`tag-discount-pound-filled`[![tag-discount-pound-filled](.github/resources/anchor.svg)](#tag-discount-pound-filled)|
+| | |![tag-discount-pound-light](icons/o2-new/light/tag-discount-pound-light.svg) |![tag-discount-pound-light](icons/o2/light/tag-discount-pound-light.svg) | |`tag-discount-pound-light`[![tag-discount-pound-light](.github/resources/anchor.svg)](#tag-discount-pound-light)|
+| | |![tag-discount-pound-regular](icons/o2-new/regular/tag-discount-pound-regular.svg) |![tag-discount-pound-regular](icons/o2/regular/tag-discount-pound-regular.svg) | |`tag-discount-pound-regular`[![tag-discount-pound-regular](.github/resources/anchor.svg)](#tag-discount-pound-regular)|
+| | |![tag-euro-filled](icons/o2-new/filled/tag-euro-filled.svg) |![tag-euro-filled](icons/o2/filled/tag-euro-filled.svg) | |`tag-euro-filled`[![tag-euro-filled](.github/resources/anchor.svg)](#tag-euro-filled)|
+| | |![tag-euro-light](icons/o2-new/light/tag-euro-light.svg) |![tag-euro-light](icons/o2/light/tag-euro-light.svg) | |`tag-euro-light`[![tag-euro-light](.github/resources/anchor.svg)](#tag-euro-light)|
+| | |![tag-euro-regular](icons/o2-new/regular/tag-euro-regular.svg) |![tag-euro-regular](icons/o2/regular/tag-euro-regular.svg) | |`tag-euro-regular`[![tag-euro-regular](.github/resources/anchor.svg)](#tag-euro-regular)|
+|![tag-filled](icons/telefonica/filled/tag-filled.svg) | |![tag-filled](icons/o2-new/filled/tag-filled.svg) |![tag-filled](icons/o2/filled/tag-filled.svg) | |`tag-filled`[![tag-filled](.github/resources/anchor.svg)](#tag-filled)|
+|![tag-light](icons/telefonica/light/tag-light.svg) | |![tag-light](icons/o2-new/light/tag-light.svg) |![tag-light](icons/o2/light/tag-light.svg) | |`tag-light`[![tag-light](.github/resources/anchor.svg)](#tag-light)|
+| | |![tag-pound-filled](icons/o2-new/filled/tag-pound-filled.svg) |![tag-pound-filled](icons/o2/filled/tag-pound-filled.svg) | |`tag-pound-filled`[![tag-pound-filled](.github/resources/anchor.svg)](#tag-pound-filled)|
+| | |![tag-pound-light](icons/o2-new/light/tag-pound-light.svg) |![tag-pound-light](icons/o2/light/tag-pound-light.svg) | |`tag-pound-light`[![tag-pound-light](.github/resources/anchor.svg)](#tag-pound-light)|
+| | |![tag-pound-regular](icons/o2-new/regular/tag-pound-regular.svg) |![tag-pound-regular](icons/o2/regular/tag-pound-regular.svg) | |`tag-pound-regular`[![tag-pound-regular](.github/resources/anchor.svg)](#tag-pound-regular)|
+|![tag-regular](icons/telefonica/regular/tag-regular.svg) | |![tag-regular](icons/o2-new/regular/tag-regular.svg) |![tag-regular](icons/o2/regular/tag-regular.svg) |![tag-regular](icons/blau/regular/tag-regular.svg) |`tag-regular`[![tag-regular](.github/resources/anchor.svg)](#tag-regular)|
+|![talk-filled](icons/telefonica/filled/talk-filled.svg) | | | | |`talk-filled`[![talk-filled](.github/resources/anchor.svg)](#talk-filled)|
+|![talk-light](icons/telefonica/light/talk-light.svg) | | | | |`talk-light`[![talk-light](.github/resources/anchor.svg)](#talk-light)|
+|![talk-regular](icons/telefonica/regular/talk-regular.svg) | | | | |`talk-regular`[![talk-regular](.github/resources/anchor.svg)](#talk-regular)|
+|![target-filled](icons/telefonica/filled/target-filled.svg) | |![target-filled](icons/o2-new/filled/target-filled.svg) |![target-filled](icons/o2/filled/target-filled.svg) | |`target-filled`[![target-filled](.github/resources/anchor.svg)](#target-filled)|
+|![target-light](icons/telefonica/light/target-light.svg) | |![target-light](icons/o2-new/light/target-light.svg) |![target-light](icons/o2/light/target-light.svg) | |`target-light`[![target-light](.github/resources/anchor.svg)](#target-light)|
+|![target-regular](icons/telefonica/regular/target-regular.svg) | |![target-regular](icons/o2-new/regular/target-regular.svg) |![target-regular](icons/o2/regular/target-regular.svg) | |`target-regular`[![target-regular](.github/resources/anchor.svg)](#target-regular)|
+|![team-filled](icons/telefonica/filled/team-filled.svg) | |![team-filled](icons/o2-new/filled/team-filled.svg) |![team-filled](icons/o2/filled/team-filled.svg) | |`team-filled`[![team-filled](.github/resources/anchor.svg)](#team-filled)|
+|![team-light](icons/telefonica/light/team-light.svg) | |![team-light](icons/o2-new/light/team-light.svg) |![team-light](icons/o2/light/team-light.svg) | |`team-light`[![team-light](.github/resources/anchor.svg)](#team-light)|
+|![team-regular](icons/telefonica/regular/team-regular.svg) | |![team-regular](icons/o2-new/regular/team-regular.svg) |![team-regular](icons/o2/regular/team-regular.svg) | |`team-regular`[![team-regular](.github/resources/anchor.svg)](#team-regular)|
+| | |![teamwork-filled](icons/o2-new/filled/teamwork-filled.svg) |![teamwork-filled](icons/o2/filled/teamwork-filled.svg) | |`teamwork-filled`[![teamwork-filled](.github/resources/anchor.svg)](#teamwork-filled)|
+| | |![teamwork-light](icons/o2-new/light/teamwork-light.svg) |![teamwork-light](icons/o2/light/teamwork-light.svg) | |`teamwork-light`[![teamwork-light](.github/resources/anchor.svg)](#teamwork-light)|
+| | |![teamwork-regular](icons/o2-new/regular/teamwork-regular.svg) |![teamwork-regular](icons/o2/regular/teamwork-regular.svg) | |`teamwork-regular`[![teamwork-regular](.github/resources/anchor.svg)](#teamwork-regular)|
+|![tech-service-filled](icons/telefonica/filled/tech-service-filled.svg) | |![tech-service-filled](icons/o2-new/filled/tech-service-filled.svg) |![tech-service-filled](icons/o2/filled/tech-service-filled.svg) | |`tech-service-filled`[![tech-service-filled](.github/resources/anchor.svg)](#tech-service-filled)|
+|![tech-service-internet-filled](icons/telefonica/filled/tech-service-internet-filled.svg) | |![tech-service-internet-filled](icons/o2-new/filled/tech-service-internet-filled.svg) |![tech-service-internet-filled](icons/o2/filled/tech-service-internet-filled.svg) | |`tech-service-internet-filled`[![tech-service-internet-filled](.github/resources/anchor.svg)](#tech-service-internet-filled)|
+|![tech-service-internet-light](icons/telefonica/light/tech-service-internet-light.svg) | |![tech-service-internet-light](icons/o2-new/light/tech-service-internet-light.svg) |![tech-service-internet-light](icons/o2/light/tech-service-internet-light.svg) | |`tech-service-internet-light`[![tech-service-internet-light](.github/resources/anchor.svg)](#tech-service-internet-light)|
+|![tech-service-internet-regular](icons/telefonica/regular/tech-service-internet-regular.svg) | |![tech-service-internet-regular](icons/o2-new/regular/tech-service-internet-regular.svg) |![tech-service-internet-regular](icons/o2/regular/tech-service-internet-regular.svg) | |`tech-service-internet-regular`[![tech-service-internet-regular](.github/resources/anchor.svg)](#tech-service-internet-regular)|
+|![tech-service-landline-filled](icons/telefonica/filled/tech-service-landline-filled.svg) | | | | |`tech-service-landline-filled`[![tech-service-landline-filled](.github/resources/anchor.svg)](#tech-service-landline-filled)|
+|![tech-service-landline-light](icons/telefonica/light/tech-service-landline-light.svg) | | | | |`tech-service-landline-light`[![tech-service-landline-light](.github/resources/anchor.svg)](#tech-service-landline-light)|
+|![tech-service-landline-regular](icons/telefonica/regular/tech-service-landline-regular.svg) | | | | |`tech-service-landline-regular`[![tech-service-landline-regular](.github/resources/anchor.svg)](#tech-service-landline-regular)|
+|![tech-service-light](icons/telefonica/light/tech-service-light.svg) | |![tech-service-light](icons/o2-new/light/tech-service-light.svg) |![tech-service-light](icons/o2/light/tech-service-light.svg) | |`tech-service-light`[![tech-service-light](.github/resources/anchor.svg)](#tech-service-light)|
+|![tech-service-mobile-filled](icons/telefonica/filled/tech-service-mobile-filled.svg) | | | | |`tech-service-mobile-filled`[![tech-service-mobile-filled](.github/resources/anchor.svg)](#tech-service-mobile-filled)|
+|![tech-service-mobile-light](icons/telefonica/light/tech-service-mobile-light.svg) | | | | |`tech-service-mobile-light`[![tech-service-mobile-light](.github/resources/anchor.svg)](#tech-service-mobile-light)|
+|![tech-service-mobile-regular](icons/telefonica/regular/tech-service-mobile-regular.svg) | | | | |`tech-service-mobile-regular`[![tech-service-mobile-regular](.github/resources/anchor.svg)](#tech-service-mobile-regular)|
+|![tech-service-regular](icons/telefonica/regular/tech-service-regular.svg) | |![tech-service-regular](icons/o2-new/regular/tech-service-regular.svg) |![tech-service-regular](icons/o2/regular/tech-service-regular.svg) | |`tech-service-regular`[![tech-service-regular](.github/resources/anchor.svg)](#tech-service-regular)|
+|![tech-service-tv-filled](icons/telefonica/filled/tech-service-tv-filled.svg) | | | | |`tech-service-tv-filled`[![tech-service-tv-filled](.github/resources/anchor.svg)](#tech-service-tv-filled)|
+|![tech-service-tv-light](icons/telefonica/light/tech-service-tv-light.svg) | | | | |`tech-service-tv-light`[![tech-service-tv-light](.github/resources/anchor.svg)](#tech-service-tv-light)|
+|![tech-service-tv-regular](icons/telefonica/regular/tech-service-tv-regular.svg) | | | | |`tech-service-tv-regular`[![tech-service-tv-regular](.github/resources/anchor.svg)](#tech-service-tv-regular)|
+|![teddy-bear-filled](icons/telefonica/filled/teddy-bear-filled.svg) | | | | |`teddy-bear-filled`[![teddy-bear-filled](.github/resources/anchor.svg)](#teddy-bear-filled)|
+|![teddy-bear-light](icons/telefonica/light/teddy-bear-light.svg) | | | | |`teddy-bear-light`[![teddy-bear-light](.github/resources/anchor.svg)](#teddy-bear-light)|
+|![teddy-bear-regular](icons/telefonica/regular/teddy-bear-regular.svg) | | | | |`teddy-bear-regular`[![teddy-bear-regular](.github/resources/anchor.svg)](#teddy-bear-regular)|
+| |![telephone-ip-filled](icons/vivo-new/filled/telephone-ip-filled.svg) |![telephone-ip-filled](icons/o2-new/filled/telephone-ip-filled.svg) |![telephone-ip-filled](icons/o2/filled/telephone-ip-filled.svg) | |`telephone-ip-filled`[![telephone-ip-filled](.github/resources/anchor.svg)](#telephone-ip-filled)|
+| |![telephone-ip-light](icons/vivo-new/light/telephone-ip-light.svg) |![telephone-ip-light](icons/o2-new/light/telephone-ip-light.svg) |![telephone-ip-light](icons/o2/light/telephone-ip-light.svg) | |`telephone-ip-light`[![telephone-ip-light](.github/resources/anchor.svg)](#telephone-ip-light)|
+| |![telephone-ip-regular](icons/vivo-new/regular/telephone-ip-regular.svg) |![telephone-ip-regular](icons/o2-new/regular/telephone-ip-regular.svg) |![telephone-ip-regular](icons/o2/regular/telephone-ip-regular.svg) | |`telephone-ip-regular`[![telephone-ip-regular](.github/resources/anchor.svg)](#telephone-ip-regular)|
+| | |![telephone-pot-filled](icons/o2-new/filled/telephone-pot-filled.svg) |![telephone-pot-filled](icons/o2/filled/telephone-pot-filled.svg) | |`telephone-pot-filled`[![telephone-pot-filled](.github/resources/anchor.svg)](#telephone-pot-filled)|
+| | |![telephone-pot-light](icons/o2-new/light/telephone-pot-light.svg) |![telephone-pot-light](icons/o2/light/telephone-pot-light.svg) | |`telephone-pot-light`[![telephone-pot-light](.github/resources/anchor.svg)](#telephone-pot-light)|
+| | |![telephone-pot-regular](icons/o2-new/regular/telephone-pot-regular.svg) |![telephone-pot-regular](icons/o2/regular/telephone-pot-regular.svg) | |`telephone-pot-regular`[![telephone-pot-regular](.github/resources/anchor.svg)](#telephone-pot-regular)|
+|![theater-filled](icons/telefonica/filled/theater-filled.svg) | | | | |`theater-filled`[![theater-filled](.github/resources/anchor.svg)](#theater-filled)|
+|![theater-light](icons/telefonica/light/theater-light.svg) | | | | |`theater-light`[![theater-light](.github/resources/anchor.svg)](#theater-light)|
+|![theater-regular](icons/telefonica/regular/theater-regular.svg) | | | | |`theater-regular`[![theater-regular](.github/resources/anchor.svg)](#theater-regular)|
+| | |![thermometer-filled](icons/o2-new/filled/thermometer-filled.svg) |![thermometer-filled](icons/o2/filled/thermometer-filled.svg) | |`thermometer-filled`[![thermometer-filled](.github/resources/anchor.svg)](#thermometer-filled)|
+| | |![thermometer-light](icons/o2-new/light/thermometer-light.svg) |![thermometer-light](icons/o2/light/thermometer-light.svg) | |`thermometer-light`[![thermometer-light](.github/resources/anchor.svg)](#thermometer-light)|
+| |![thermometer-regular](icons/vivo-new/regular/thermometer-regular.svg) |![thermometer-regular](icons/o2-new/regular/thermometer-regular.svg) |![thermometer-regular](icons/o2/regular/thermometer-regular.svg) | |`thermometer-regular`[![thermometer-regular](.github/resources/anchor.svg)](#thermometer-regular)|
+|![throw-light-filled](icons/telefonica/filled/throw-light-filled.svg) | | | | |`throw-light-filled`[![throw-light-filled](.github/resources/anchor.svg)](#throw-light-filled)|
+|![throw-light-light](icons/telefonica/light/throw-light-light.svg) | | | | |`throw-light-light`[![throw-light-light](.github/resources/anchor.svg)](#throw-light-light)|
+|![throw-light-regular](icons/telefonica/regular/throw-light-regular.svg) | | | | |`throw-light-regular`[![throw-light-regular](.github/resources/anchor.svg)](#throw-light-regular)|
+|![thumb-down-filled](icons/telefonica/filled/thumb-down-filled.svg) | | | | |`thumb-down-filled`[![thumb-down-filled](.github/resources/anchor.svg)](#thumb-down-filled)|
+|![thumb-down-light](icons/telefonica/light/thumb-down-light.svg) | | | | |`thumb-down-light`[![thumb-down-light](.github/resources/anchor.svg)](#thumb-down-light)|
+|![thumb-down-regular](icons/telefonica/regular/thumb-down-regular.svg) | | | | |`thumb-down-regular`[![thumb-down-regular](.github/resources/anchor.svg)](#thumb-down-regular)|
+|![thumb-up-filled](icons/telefonica/filled/thumb-up-filled.svg) | |![thumb-up-filled](icons/o2-new/filled/thumb-up-filled.svg) |![thumb-up-filled](icons/o2/filled/thumb-up-filled.svg) | |`thumb-up-filled`[![thumb-up-filled](.github/resources/anchor.svg)](#thumb-up-filled)|
+|![thumb-up-light](icons/telefonica/light/thumb-up-light.svg) | |![thumb-up-light](icons/o2-new/light/thumb-up-light.svg) |![thumb-up-light](icons/o2/light/thumb-up-light.svg) | |`thumb-up-light`[![thumb-up-light](.github/resources/anchor.svg)](#thumb-up-light)|
+|![thumb-up-regular](icons/telefonica/regular/thumb-up-regular.svg) | |![thumb-up-regular](icons/o2-new/regular/thumb-up-regular.svg) |![thumb-up-regular](icons/o2/regular/thumb-up-regular.svg) | |`thumb-up-regular`[![thumb-up-regular](.github/resources/anchor.svg)](#thumb-up-regular)|
+|![tickets-filled](icons/telefonica/filled/tickets-filled.svg) |![tickets-filled](icons/vivo-new/filled/tickets-filled.svg) |![tickets-filled](icons/o2-new/filled/tickets-filled.svg) |![tickets-filled](icons/o2/filled/tickets-filled.svg) | |`tickets-filled`[![tickets-filled](.github/resources/anchor.svg)](#tickets-filled)|
+|![tickets-light](icons/telefonica/light/tickets-light.svg) |![tickets-light](icons/vivo-new/light/tickets-light.svg) |![tickets-light](icons/o2-new/light/tickets-light.svg) |![tickets-light](icons/o2/light/tickets-light.svg) | |`tickets-light`[![tickets-light](.github/resources/anchor.svg)](#tickets-light)|
+|![tickets-regular](icons/telefonica/regular/tickets-regular.svg) |![tickets-regular](icons/vivo-new/regular/tickets-regular.svg) |![tickets-regular](icons/o2-new/regular/tickets-regular.svg) |![tickets-regular](icons/o2/regular/tickets-regular.svg) |![tickets-regular](icons/blau/regular/tickets-regular.svg) |`tickets-regular`[![tickets-regular](.github/resources/anchor.svg)](#tickets-regular)|
+|![time-filled](icons/telefonica/filled/time-filled.svg) | |![time-filled](icons/o2-new/filled/time-filled.svg) |![time-filled](icons/o2/filled/time-filled.svg) | |`time-filled`[![time-filled](.github/resources/anchor.svg)](#time-filled)|
+|![time-light](icons/telefonica/light/time-light.svg) | |![time-light](icons/o2-new/light/time-light.svg) |![time-light](icons/o2/light/time-light.svg) | |`time-light`[![time-light](.github/resources/anchor.svg)](#time-light)|
+|![time-regular](icons/telefonica/regular/time-regular.svg) | |![time-regular](icons/o2-new/regular/time-regular.svg) |![time-regular](icons/o2/regular/time-regular.svg) | |`time-regular`[![time-regular](.github/resources/anchor.svg)](#time-regular)|
+| | |![tips-and-tricks-filled](icons/o2-new/filled/tips-and-tricks-filled.svg) |![tips-and-tricks-filled](icons/o2/filled/tips-and-tricks-filled.svg) | |`tips-and-tricks-filled`[![tips-and-tricks-filled](.github/resources/anchor.svg)](#tips-and-tricks-filled)|
+| | |![tips-and-tricks-light](icons/o2-new/light/tips-and-tricks-light.svg) |![tips-and-tricks-light](icons/o2/light/tips-and-tricks-light.svg) | |`tips-and-tricks-light`[![tips-and-tricks-light](.github/resources/anchor.svg)](#tips-and-tricks-light)|
+| | |![tips-and-tricks-regular](icons/o2-new/regular/tips-and-tricks-regular.svg) |![tips-and-tricks-regular](icons/o2/regular/tips-and-tricks-regular.svg) | |`tips-and-tricks-regular`[![tips-and-tricks-regular](.github/resources/anchor.svg)](#tips-and-tricks-regular)|
+|![tk-filled](icons/telefonica/filled/tk-filled.svg) | | | | |`tk-filled`[![tk-filled](.github/resources/anchor.svg)](#tk-filled)|
+|![tk-light](icons/telefonica/light/tk-light.svg) | | | | |`tk-light`[![tk-light](.github/resources/anchor.svg)](#tk-light)|
+|![tk-regular](icons/telefonica/regular/tk-regular.svg) | | | | |`tk-regular`[![tk-regular](.github/resources/anchor.svg)](#tk-regular)|
+|![tokens-filled](icons/telefonica/filled/tokens-filled.svg) | | | | |`tokens-filled`[![tokens-filled](.github/resources/anchor.svg)](#tokens-filled)|
+|![tokens-light](icons/telefonica/light/tokens-light.svg) | | | | |`tokens-light`[![tokens-light](.github/resources/anchor.svg)](#tokens-light)|
+|![tokens-regular](icons/telefonica/regular/tokens-regular.svg) | | | | |`tokens-regular`[![tokens-regular](.github/resources/anchor.svg)](#tokens-regular)|
+|![tongue-filled](icons/telefonica/filled/tongue-filled.svg) | | | | |`tongue-filled`[![tongue-filled](.github/resources/anchor.svg)](#tongue-filled)|
+|![tongue-light](icons/telefonica/light/tongue-light.svg) | | | | |`tongue-light`[![tongue-light](.github/resources/anchor.svg)](#tongue-light)|
+|![tongue-regular](icons/telefonica/regular/tongue-regular.svg) | | | | |`tongue-regular`[![tongue-regular](.github/resources/anchor.svg)](#tongue-regular)|
+|![tooth-filled](icons/telefonica/filled/tooth-filled.svg) | | | | |`tooth-filled`[![tooth-filled](.github/resources/anchor.svg)](#tooth-filled)|
+|![tooth-light](icons/telefonica/light/tooth-light.svg) | | | | |`tooth-light`[![tooth-light](.github/resources/anchor.svg)](#tooth-light)|
+|![tooth-regular](icons/telefonica/regular/tooth-regular.svg) | | | | |`tooth-regular`[![tooth-regular](.github/resources/anchor.svg)](#tooth-regular)|
+| | |![top-up-filled](icons/o2-new/filled/top-up-filled.svg) |![top-up-filled](icons/o2/filled/top-up-filled.svg) | |`top-up-filled`[![top-up-filled](.github/resources/anchor.svg)](#top-up-filled)|
+| | |![top-up-light](icons/o2-new/light/top-up-light.svg) |![top-up-light](icons/o2/light/top-up-light.svg) | |`top-up-light`[![top-up-light](.github/resources/anchor.svg)](#top-up-light)|
+| | |![top-up-regular](icons/o2-new/regular/top-up-regular.svg) |![top-up-regular](icons/o2/regular/top-up-regular.svg) | |`top-up-regular`[![top-up-regular](.github/resources/anchor.svg)](#top-up-regular)|
+|![tow-truck-filled](icons/telefonica/filled/tow-truck-filled.svg) | | | | |`tow-truck-filled`[![tow-truck-filled](.github/resources/anchor.svg)](#tow-truck-filled)|
+|![tow-truck-light](icons/telefonica/light/tow-truck-light.svg) | | | | |`tow-truck-light`[![tow-truck-light](.github/resources/anchor.svg)](#tow-truck-light)|
+|![tow-truck-regular](icons/telefonica/regular/tow-truck-regular.svg) | | | | |`tow-truck-regular`[![tow-truck-regular](.github/resources/anchor.svg)](#tow-truck-regular)|
+|![train-filled](icons/telefonica/filled/train-filled.svg) | |![train-filled](icons/o2-new/filled/train-filled.svg) |![train-filled](icons/o2/filled/train-filled.svg) | |`train-filled`[![train-filled](.github/resources/anchor.svg)](#train-filled)|
+|![train-light](icons/telefonica/light/train-light.svg) | |![train-light](icons/o2-new/light/train-light.svg) |![train-light](icons/o2/light/train-light.svg) | |`train-light`[![train-light](.github/resources/anchor.svg)](#train-light)|
+|![train-regular](icons/telefonica/regular/train-regular.svg) | |![train-regular](icons/o2-new/regular/train-regular.svg) |![train-regular](icons/o2/regular/train-regular.svg) | |`train-regular`[![train-regular](.github/resources/anchor.svg)](#train-regular)|
+|![tram-train-filled](icons/telefonica/filled/tram-train-filled.svg) | | | | |`tram-train-filled`[![tram-train-filled](.github/resources/anchor.svg)](#tram-train-filled)|
+|![tram-train-light](icons/telefonica/light/tram-train-light.svg) | | | | |`tram-train-light`[![tram-train-light](.github/resources/anchor.svg)](#tram-train-light)|
+|![tram-train-regular](icons/telefonica/regular/tram-train-regular.svg) | | | | |`tram-train-regular`[![tram-train-regular](.github/resources/anchor.svg)](#tram-train-regular)|
+|![trash-can-filled](icons/telefonica/filled/trash-can-filled.svg) | |![trash-can-filled](icons/o2-new/filled/trash-can-filled.svg) |![trash-can-filled](icons/o2/filled/trash-can-filled.svg) | |`trash-can-filled`[![trash-can-filled](.github/resources/anchor.svg)](#trash-can-filled)|
+|![trash-can-light](icons/telefonica/light/trash-can-light.svg) | |![trash-can-light](icons/o2-new/light/trash-can-light.svg) |![trash-can-light](icons/o2/light/trash-can-light.svg) | |`trash-can-light`[![trash-can-light](.github/resources/anchor.svg)](#trash-can-light)|
+|![trash-can-regular](icons/telefonica/regular/trash-can-regular.svg) | |![trash-can-regular](icons/o2-new/regular/trash-can-regular.svg) |![trash-can-regular](icons/o2/regular/trash-can-regular.svg) | |`trash-can-regular`[![trash-can-regular](.github/resources/anchor.svg)](#trash-can-regular)|
+|![travel-bag-filled](icons/telefonica/filled/travel-bag-filled.svg) | | | | |`travel-bag-filled`[![travel-bag-filled](.github/resources/anchor.svg)](#travel-bag-filled)|
+|![travel-bag-light](icons/telefonica/light/travel-bag-light.svg) | | | | |`travel-bag-light`[![travel-bag-light](.github/resources/anchor.svg)](#travel-bag-light)|
+|![travel-bag-regular](icons/telefonica/regular/travel-bag-regular.svg) | | | | |`travel-bag-regular`[![travel-bag-regular](.github/resources/anchor.svg)](#travel-bag-regular)|
+|![tree-2-filled](icons/telefonica/filled/tree-2-filled.svg) | | | | |`tree-2-filled`[![tree-2-filled](.github/resources/anchor.svg)](#tree-2-filled)|
+|![tree-2-light](icons/telefonica/light/tree-2-light.svg) | | | | |`tree-2-light`[![tree-2-light](.github/resources/anchor.svg)](#tree-2-light)|
+|![tree-2-regular](icons/telefonica/regular/tree-2-regular.svg) | | | | |`tree-2-regular`[![tree-2-regular](.github/resources/anchor.svg)](#tree-2-regular)|
+|![tree-filled](icons/telefonica/filled/tree-filled.svg) | | | | |`tree-filled`[![tree-filled](.github/resources/anchor.svg)](#tree-filled)|
+|![tree-light](icons/telefonica/light/tree-light.svg) | | | | |`tree-light`[![tree-light](.github/resources/anchor.svg)](#tree-light)|
+|![tree-regular](icons/telefonica/regular/tree-regular.svg) | | | | |`tree-regular`[![tree-regular](.github/resources/anchor.svg)](#tree-regular)|
+|![trend-down-light](icons/telefonica/light/trend-down-light.svg) | | | | |`trend-down-light`[![trend-down-light](.github/resources/anchor.svg)](#trend-down-light)|
+|![trend-down-regular](icons/telefonica/regular/trend-down-regular.svg) | | | | |`trend-down-regular`[![trend-down-regular](.github/resources/anchor.svg)](#trend-down-regular)|
+|![trend-up-light](icons/telefonica/light/trend-up-light.svg) | | | | |`trend-up-light`[![trend-up-light](.github/resources/anchor.svg)](#trend-up-light)|
+|![trend-up-regular](icons/telefonica/regular/trend-up-regular.svg) | | | | |`trend-up-regular`[![trend-up-regular](.github/resources/anchor.svg)](#trend-up-regular)|
+|![trophy-filled](icons/telefonica/filled/trophy-filled.svg) | |![trophy-filled](icons/o2-new/filled/trophy-filled.svg) |![trophy-filled](icons/o2/filled/trophy-filled.svg) | |`trophy-filled`[![trophy-filled](.github/resources/anchor.svg)](#trophy-filled)|
+|![trophy-light](icons/telefonica/light/trophy-light.svg) | |![trophy-light](icons/o2-new/light/trophy-light.svg) |![trophy-light](icons/o2/light/trophy-light.svg) | |`trophy-light`[![trophy-light](.github/resources/anchor.svg)](#trophy-light)|
+|![trophy-regular](icons/telefonica/regular/trophy-regular.svg) | |![trophy-regular](icons/o2-new/regular/trophy-regular.svg) |![trophy-regular](icons/o2/regular/trophy-regular.svg) | |`trophy-regular`[![trophy-regular](.github/resources/anchor.svg)](#trophy-regular)|
+|![truck-filled](icons/telefonica/filled/truck-filled.svg) | |![truck-filled](icons/o2-new/filled/truck-filled.svg) |![truck-filled](icons/o2/filled/truck-filled.svg) | |`truck-filled`[![truck-filled](.github/resources/anchor.svg)](#truck-filled)|
+|![truck-light](icons/telefonica/light/truck-light.svg) | |![truck-light](icons/o2-new/light/truck-light.svg) |![truck-light](icons/o2/light/truck-light.svg) | |`truck-light`[![truck-light](.github/resources/anchor.svg)](#truck-light)|
+|![truck-regular](icons/telefonica/regular/truck-regular.svg) | |![truck-regular](icons/o2-new/regular/truck-regular.svg) |![truck-regular](icons/o2/regular/truck-regular.svg) | |`truck-regular`[![truck-regular](.github/resources/anchor.svg)](#truck-regular)|
+|![tshirt-filled](icons/telefonica/filled/tshirt-filled.svg) | | | | |`tshirt-filled`[![tshirt-filled](.github/resources/anchor.svg)](#tshirt-filled)|
+|![tshirt-light](icons/telefonica/light/tshirt-light.svg) | | | | |`tshirt-light`[![tshirt-light](.github/resources/anchor.svg)](#tshirt-light)|
+|![tshirt-regular](icons/telefonica/regular/tshirt-regular.svg) | | | | |`tshirt-regular`[![tshirt-regular](.github/resources/anchor.svg)](#tshirt-regular)|
+|![tv-content-filled](icons/telefonica/filled/tv-content-filled.svg) | |![tv-content-filled](icons/o2-new/filled/tv-content-filled.svg) |![tv-content-filled](icons/o2/filled/tv-content-filled.svg) | |`tv-content-filled`[![tv-content-filled](.github/resources/anchor.svg)](#tv-content-filled)|
+|![tv-content-light](icons/telefonica/light/tv-content-light.svg) | |![tv-content-light](icons/o2-new/light/tv-content-light.svg) |![tv-content-light](icons/o2/light/tv-content-light.svg) | |`tv-content-light`[![tv-content-light](.github/resources/anchor.svg)](#tv-content-light)|
+|![tv-content-regular](icons/telefonica/regular/tv-content-regular.svg) |![tv-content-regular](icons/vivo-new/regular/tv-content-regular.svg) |![tv-content-regular](icons/o2-new/regular/tv-content-regular.svg) |![tv-content-regular](icons/o2/regular/tv-content-regular.svg) | |`tv-content-regular`[![tv-content-regular](.github/resources/anchor.svg)](#tv-content-regular)|
+|![umbrella-filled](icons/telefonica/filled/umbrella-filled.svg) | | | | |`umbrella-filled`[![umbrella-filled](.github/resources/anchor.svg)](#umbrella-filled)|
+|![umbrella-light](icons/telefonica/light/umbrella-light.svg) | | | | |`umbrella-light`[![umbrella-light](.github/resources/anchor.svg)](#umbrella-light)|
+|![umbrella-regular](icons/telefonica/regular/umbrella-regular.svg) | | | | |`umbrella-regular`[![umbrella-regular](.github/resources/anchor.svg)](#umbrella-regular)|
+| | |![undo-filled](icons/o2-new/filled/undo-filled.svg) |![undo-filled](icons/o2/filled/undo-filled.svg) | |`undo-filled`[![undo-filled](.github/resources/anchor.svg)](#undo-filled)|
+| | |![undo-light](icons/o2-new/light/undo-light.svg) |![undo-light](icons/o2/light/undo-light.svg) | |`undo-light`[![undo-light](.github/resources/anchor.svg)](#undo-light)|
+| | |![undo-regular](icons/o2-new/regular/undo-regular.svg) |![undo-regular](icons/o2/regular/undo-regular.svg) | |`undo-regular`[![undo-regular](.github/resources/anchor.svg)](#undo-regular)|
+| | |![unlimited-calls-sms-filled](icons/o2-new/filled/unlimited-calls-sms-filled.svg) |![unlimited-calls-sms-filled](icons/o2/filled/unlimited-calls-sms-filled.svg) | |`unlimited-calls-sms-filled`[![unlimited-calls-sms-filled](.github/resources/anchor.svg)](#unlimited-calls-sms-filled)|
+| | |![unlimited-calls-sms-light](icons/o2-new/light/unlimited-calls-sms-light.svg) |![unlimited-calls-sms-light](icons/o2/light/unlimited-calls-sms-light.svg) | |`unlimited-calls-sms-light`[![unlimited-calls-sms-light](.github/resources/anchor.svg)](#unlimited-calls-sms-light)|
+| | |![unlimited-calls-sms-regular](icons/o2-new/regular/unlimited-calls-sms-regular.svg) |![unlimited-calls-sms-regular](icons/o2/regular/unlimited-calls-sms-regular.svg) | |`unlimited-calls-sms-regular`[![unlimited-calls-sms-regular](.github/resources/anchor.svg)](#unlimited-calls-sms-regular)|
+| | |![unlimited-internet-filled](icons/o2-new/filled/unlimited-internet-filled.svg) |![unlimited-internet-filled](icons/o2/filled/unlimited-internet-filled.svg) | |`unlimited-internet-filled`[![unlimited-internet-filled](.github/resources/anchor.svg)](#unlimited-internet-filled)|
+| | |![unlimited-internet-light](icons/o2-new/light/unlimited-internet-light.svg) |![unlimited-internet-light](icons/o2/light/unlimited-internet-light.svg) | |`unlimited-internet-light`[![unlimited-internet-light](.github/resources/anchor.svg)](#unlimited-internet-light)|
+| | |![unlimited-internet-regular](icons/o2-new/regular/unlimited-internet-regular.svg) |![unlimited-internet-regular](icons/o2/regular/unlimited-internet-regular.svg) | |`unlimited-internet-regular`[![unlimited-internet-regular](.github/resources/anchor.svg)](#unlimited-internet-regular)|
+|![user-account-filled](icons/telefonica/filled/user-account-filled.svg) | |![user-account-filled](icons/o2-new/filled/user-account-filled.svg) |![user-account-filled](icons/o2/filled/user-account-filled.svg) | |`user-account-filled`[![user-account-filled](.github/resources/anchor.svg)](#user-account-filled)|
+|![user-account-light](icons/telefonica/light/user-account-light.svg) | |![user-account-light](icons/o2-new/light/user-account-light.svg) |![user-account-light](icons/o2/light/user-account-light.svg) | |`user-account-light`[![user-account-light](.github/resources/anchor.svg)](#user-account-light)|
+|![user-account-regular](icons/telefonica/regular/user-account-regular.svg) | |![user-account-regular](icons/o2-new/regular/user-account-regular.svg) |![user-account-regular](icons/o2/regular/user-account-regular.svg) |![user-account-regular](icons/blau/regular/user-account-regular.svg) |`user-account-regular`[![user-account-regular](.github/resources/anchor.svg)](#user-account-regular)|
+|![user-support-filled](icons/telefonica/filled/user-support-filled.svg) | |![user-support-filled](icons/o2-new/filled/user-support-filled.svg) |![user-support-filled](icons/o2/filled/user-support-filled.svg) | |`user-support-filled`[![user-support-filled](.github/resources/anchor.svg)](#user-support-filled)|
+|![user-support-light](icons/telefonica/light/user-support-light.svg) | |![user-support-light](icons/o2-new/light/user-support-light.svg) |![user-support-light](icons/o2/light/user-support-light.svg) | |`user-support-light`[![user-support-light](.github/resources/anchor.svg)](#user-support-light)|
+|![user-support-regular](icons/telefonica/regular/user-support-regular.svg) | |![user-support-regular](icons/o2-new/regular/user-support-regular.svg) |![user-support-regular](icons/o2/regular/user-support-regular.svg) | |`user-support-regular`[![user-support-regular](.github/resources/anchor.svg)](#user-support-regular)|
+| | |![video-camera-filled](icons/o2-new/filled/video-camera-filled.svg) |![video-camera-filled](icons/o2/filled/video-camera-filled.svg) | |`video-camera-filled`[![video-camera-filled](.github/resources/anchor.svg)](#video-camera-filled)|
+| | |![video-camera-light](icons/o2-new/light/video-camera-light.svg) |![video-camera-light](icons/o2/light/video-camera-light.svg) | |`video-camera-light`[![video-camera-light](.github/resources/anchor.svg)](#video-camera-light)|
+| |![video-camera-regular](icons/vivo-new/regular/video-camera-regular.svg) |![video-camera-regular](icons/o2-new/regular/video-camera-regular.svg) |![video-camera-regular](icons/o2/regular/video-camera-regular.svg) | |`video-camera-regular`[![video-camera-regular](.github/resources/anchor.svg)](#video-camera-regular)|
+| | |![video-chat-filled](icons/o2-new/filled/video-chat-filled.svg) |![video-chat-filled](icons/o2/filled/video-chat-filled.svg) | |`video-chat-filled`[![video-chat-filled](.github/resources/anchor.svg)](#video-chat-filled)|
+| | |![video-chat-light](icons/o2-new/light/video-chat-light.svg) |![video-chat-light](icons/o2/light/video-chat-light.svg) | |`video-chat-light`[![video-chat-light](.github/resources/anchor.svg)](#video-chat-light)|
+| | |![video-chat-regular](icons/o2-new/regular/video-chat-regular.svg) |![video-chat-regular](icons/o2/regular/video-chat-regular.svg) | |`video-chat-regular`[![video-chat-regular](.github/resources/anchor.svg)](#video-chat-regular)|
+| | |![video-disabled-filled](icons/o2-new/filled/video-disabled-filled.svg) |![video-disabled-filled](icons/o2/filled/video-disabled-filled.svg) | |`video-disabled-filled`[![video-disabled-filled](.github/resources/anchor.svg)](#video-disabled-filled)|
+| | |![video-disabled-light](icons/o2-new/light/video-disabled-light.svg) |![video-disabled-light](icons/o2/light/video-disabled-light.svg) | |`video-disabled-light`[![video-disabled-light](.github/resources/anchor.svg)](#video-disabled-light)|
+| | |![video-disabled-regular](icons/o2-new/regular/video-disabled-regular.svg) |![video-disabled-regular](icons/o2/regular/video-disabled-regular.svg) | |`video-disabled-regular`[![video-disabled-regular](.github/resources/anchor.svg)](#video-disabled-regular)|
+|![video-filled](icons/telefonica/filled/video-filled.svg) | |![video-filled](icons/o2-new/filled/video-filled.svg) |![video-filled](icons/o2/filled/video-filled.svg) | |`video-filled`[![video-filled](.github/resources/anchor.svg)](#video-filled)|
+|![video-light](icons/telefonica/light/video-light.svg) | |![video-light](icons/o2-new/light/video-light.svg) |![video-light](icons/o2/light/video-light.svg) | |`video-light`[![video-light](.github/resources/anchor.svg)](#video-light)|
+|![video-regular](icons/telefonica/regular/video-regular.svg) | |![video-regular](icons/o2-new/regular/video-regular.svg) |![video-regular](icons/o2/regular/video-regular.svg) | |`video-regular`[![video-regular](.github/resources/anchor.svg)](#video-regular)|
+|![video-surveillance-security-filled](icons/telefonica/filled/video-surveillance-security-filled.svg) |![video-surveillance-security-filled](icons/vivo-new/filled/video-surveillance-security-filled.svg) | | | |`video-surveillance-security-filled`[![video-surveillance-security-filled](.github/resources/anchor.svg)](#video-surveillance-security-filled)|
+|![video-surveillance-security-light](icons/telefonica/light/video-surveillance-security-light.svg) |![video-surveillance-security-light](icons/vivo-new/light/video-surveillance-security-light.svg) | | | |`video-surveillance-security-light`[![video-surveillance-security-light](.github/resources/anchor.svg)](#video-surveillance-security-light)|
+| |![video-surveillance-security-regular](icons/vivo-new/regular/video-surveillance-security-regular.svg) | | | |`video-surveillance-security-regular`[![video-surveillance-security-regular](.github/resources/anchor.svg)](#video-surveillance-security-regular)|
+|![videogames-filled](icons/telefonica/filled/videogames-filled.svg) | |![videogames-filled](icons/o2-new/filled/videogames-filled.svg) |![videogames-filled](icons/o2/filled/videogames-filled.svg) | |`videogames-filled`[![videogames-filled](.github/resources/anchor.svg)](#videogames-filled)|
+|![videogames-light](icons/telefonica/light/videogames-light.svg) | |![videogames-light](icons/o2-new/light/videogames-light.svg) |![videogames-light](icons/o2/light/videogames-light.svg) | |`videogames-light`[![videogames-light](.github/resources/anchor.svg)](#videogames-light)|
+|![videogames-regular](icons/telefonica/regular/videogames-regular.svg) | |![videogames-regular](icons/o2-new/regular/videogames-regular.svg) |![videogames-regular](icons/o2/regular/videogames-regular.svg) | |`videogames-regular`[![videogames-regular](.github/resources/anchor.svg)](#videogames-regular)|
+| | |![view-360-light](icons/o2-new/light/view-360-light.svg) |![view-360-light](icons/o2/light/view-360-light.svg) | |`view-360-light`[![view-360-light](.github/resources/anchor.svg)](#view-360-light)|
+| | |![view-360-regular](icons/o2-new/regular/view-360-regular.svg) |![view-360-regular](icons/o2/regular/view-360-regular.svg) | |`view-360-regular`[![view-360-regular](.github/resources/anchor.svg)](#view-360-regular)|
+|![virus-filled](icons/telefonica/filled/virus-filled.svg) | | | | |`virus-filled`[![virus-filled](.github/resources/anchor.svg)](#virus-filled)|
+|![virus-light](icons/telefonica/light/virus-light.svg) | | | | |`virus-light`[![virus-light](.github/resources/anchor.svg)](#virus-light)|
+|![virus-regular](icons/telefonica/regular/virus-regular.svg) | | | | |`virus-regular`[![virus-regular](.github/resources/anchor.svg)](#virus-regular)|
+|![virus-scan-filled](icons/telefonica/filled/virus-scan-filled.svg) | | | | |`virus-scan-filled`[![virus-scan-filled](.github/resources/anchor.svg)](#virus-scan-filled)|
+|![virus-scan-light](icons/telefonica/light/virus-scan-light.svg) | | | | |`virus-scan-light`[![virus-scan-light](.github/resources/anchor.svg)](#virus-scan-light)|
+|![virus-scan-regular](icons/telefonica/regular/virus-scan-regular.svg) | | | | |`virus-scan-regular`[![virus-scan-regular](.github/resources/anchor.svg)](#virus-scan-regular)|
+| |![vivo-valoriza-filled](icons/vivo-new/filled/vivo-valoriza-filled.svg) | | | |`vivo-valoriza-filled`[![vivo-valoriza-filled](.github/resources/anchor.svg)](#vivo-valoriza-filled)|
+| |![vivo-valoriza-light](icons/vivo-new/light/vivo-valoriza-light.svg) | | | |`vivo-valoriza-light`[![vivo-valoriza-light](.github/resources/anchor.svg)](#vivo-valoriza-light)|
+| |![vivo-valoriza-regular](icons/vivo-new/regular/vivo-valoriza-regular.svg) | | | |`vivo-valoriza-regular`[![vivo-valoriza-regular](.github/resources/anchor.svg)](#vivo-valoriza-regular)|
+| | |![vod-filled](icons/o2-new/filled/vod-filled.svg) |![vod-filled](icons/o2/filled/vod-filled.svg) | |`vod-filled`[![vod-filled](.github/resources/anchor.svg)](#vod-filled)|
+| | |![vod-light](icons/o2-new/light/vod-light.svg) |![vod-light](icons/o2/light/vod-light.svg) | |`vod-light`[![vod-light](.github/resources/anchor.svg)](#vod-light)|
+| | |![vod-regular](icons/o2-new/regular/vod-regular.svg) |![vod-regular](icons/o2/regular/vod-regular.svg) | |`vod-regular`[![vod-regular](.github/resources/anchor.svg)](#vod-regular)|
+| |![voice-assistant-regular](icons/vivo-new/regular/voice-assistant-regular.svg) | | | |`voice-assistant-regular`[![voice-assistant-regular](.github/resources/anchor.svg)](#voice-assistant-regular)|
+| | |![voicemail-filled](icons/o2-new/filled/voicemail-filled.svg) |![voicemail-filled](icons/o2/filled/voicemail-filled.svg) | |`voicemail-filled`[![voicemail-filled](.github/resources/anchor.svg)](#voicemail-filled)|
+| | |![voicemail-light](icons/o2-new/light/voicemail-light.svg) |![voicemail-light](icons/o2/light/voicemail-light.svg) | |`voicemail-light`[![voicemail-light](.github/resources/anchor.svg)](#voicemail-light)|
+| | |![voicemail-regular](icons/o2-new/regular/voicemail-regular.svg) |![voicemail-regular](icons/o2/regular/voicemail-regular.svg) | |`voicemail-regular`[![voicemail-regular](.github/resources/anchor.svg)](#voicemail-regular)|
+| | |![volume-down-filled](icons/o2-new/filled/volume-down-filled.svg) |![volume-down-filled](icons/o2/filled/volume-down-filled.svg) | |`volume-down-filled`[![volume-down-filled](.github/resources/anchor.svg)](#volume-down-filled)|
+| | |![volume-down-light](icons/o2-new/light/volume-down-light.svg) |![volume-down-light](icons/o2/light/volume-down-light.svg) | |`volume-down-light`[![volume-down-light](.github/resources/anchor.svg)](#volume-down-light)|
+| | |![volume-down-regular](icons/o2-new/regular/volume-down-regular.svg) |![volume-down-regular](icons/o2/regular/volume-down-regular.svg) | |`volume-down-regular`[![volume-down-regular](.github/resources/anchor.svg)](#volume-down-regular)|
+| | |![volume-up-filled](icons/o2-new/filled/volume-up-filled.svg) |![volume-up-filled](icons/o2/filled/volume-up-filled.svg) | |`volume-up-filled`[![volume-up-filled](.github/resources/anchor.svg)](#volume-up-filled)|
+| | |![volume-up-light](icons/o2-new/light/volume-up-light.svg) |![volume-up-light](icons/o2/light/volume-up-light.svg) | |`volume-up-light`[![volume-up-light](.github/resources/anchor.svg)](#volume-up-light)|
+| | |![volume-up-regular](icons/o2-new/regular/volume-up-regular.svg) |![volume-up-regular](icons/o2/regular/volume-up-regular.svg) | |`volume-up-regular`[![volume-up-regular](.github/resources/anchor.svg)](#volume-up-regular)|
+| | |![wait-clock-filled](icons/o2-new/filled/wait-clock-filled.svg) |![wait-clock-filled](icons/o2/filled/wait-clock-filled.svg) | |`wait-clock-filled`[![wait-clock-filled](.github/resources/anchor.svg)](#wait-clock-filled)|
+| | |![wait-clock-light](icons/o2-new/light/wait-clock-light.svg) |![wait-clock-light](icons/o2/light/wait-clock-light.svg) | |`wait-clock-light`[![wait-clock-light](.github/resources/anchor.svg)](#wait-clock-light)|
+| | |![wait-clock-regular](icons/o2-new/regular/wait-clock-regular.svg) |![wait-clock-regular](icons/o2/regular/wait-clock-regular.svg) | |`wait-clock-regular`[![wait-clock-regular](.github/resources/anchor.svg)](#wait-clock-regular)|
+|![wallet-filled](icons/telefonica/filled/wallet-filled.svg) | |![wallet-filled](icons/o2-new/filled/wallet-filled.svg) |![wallet-filled](icons/o2/filled/wallet-filled.svg) | |`wallet-filled`[![wallet-filled](.github/resources/anchor.svg)](#wallet-filled)|
+|![wallet-light](icons/telefonica/light/wallet-light.svg) | |![wallet-light](icons/o2-new/light/wallet-light.svg) |![wallet-light](icons/o2/light/wallet-light.svg) | |`wallet-light`[![wallet-light](.github/resources/anchor.svg)](#wallet-light)|
+|![wallet-regular](icons/telefonica/regular/wallet-regular.svg) | |![wallet-regular](icons/o2-new/regular/wallet-regular.svg) |![wallet-regular](icons/o2/regular/wallet-regular.svg) | |`wallet-regular`[![wallet-regular](.github/resources/anchor.svg)](#wallet-regular)|
+|![warning-filled](icons/telefonica/filled/warning-filled.svg) | |![warning-filled](icons/o2-new/filled/warning-filled.svg) |![warning-filled](icons/o2/filled/warning-filled.svg) | |`warning-filled`[![warning-filled](.github/resources/anchor.svg)](#warning-filled)|
+|![warning-light](icons/telefonica/light/warning-light.svg) | |![warning-light](icons/o2-new/light/warning-light.svg) |![warning-light](icons/o2/light/warning-light.svg) | |`warning-light`[![warning-light](.github/resources/anchor.svg)](#warning-light)|
+|![warning-regular](icons/telefonica/regular/warning-regular.svg) | |![warning-regular](icons/o2-new/regular/warning-regular.svg) |![warning-regular](icons/o2/regular/warning-regular.svg) |![warning-regular](icons/blau/regular/warning-regular.svg) |`warning-regular`[![warning-regular](.github/resources/anchor.svg)](#warning-regular)|
+|![water-drop-filled](icons/telefonica/filled/water-drop-filled.svg) | |![water-drop-filled](icons/o2-new/filled/water-drop-filled.svg) |![water-drop-filled](icons/o2/filled/water-drop-filled.svg) | |`water-drop-filled`[![water-drop-filled](.github/resources/anchor.svg)](#water-drop-filled)|
+|![water-drop-light](icons/telefonica/light/water-drop-light.svg) | |![water-drop-light](icons/o2-new/light/water-drop-light.svg) |![water-drop-light](icons/o2/light/water-drop-light.svg) | |`water-drop-light`[![water-drop-light](.github/resources/anchor.svg)](#water-drop-light)|
+|![water-drop-regular](icons/telefonica/regular/water-drop-regular.svg) | |![water-drop-regular](icons/o2-new/regular/water-drop-regular.svg) |![water-drop-regular](icons/o2/regular/water-drop-regular.svg) | |`water-drop-regular`[![water-drop-regular](.github/resources/anchor.svg)](#water-drop-regular)|
+|![wearable-filled](icons/telefonica/filled/wearable-filled.svg) | | | | |`wearable-filled`[![wearable-filled](.github/resources/anchor.svg)](#wearable-filled)|
+|![wearable-light](icons/telefonica/light/wearable-light.svg) | | | | |`wearable-light`[![wearable-light](.github/resources/anchor.svg)](#wearable-light)|
+|![wearable-regular](icons/telefonica/regular/wearable-regular.svg) | |![wearable-regular](icons/o2-new/regular/wearable-regular.svg) |![wearable-regular](icons/o2/regular/wearable-regular.svg) | |`wearable-regular`[![wearable-regular](.github/resources/anchor.svg)](#wearable-regular)|
+|![web-filled](icons/telefonica/filled/web-filled.svg) | | | | |`web-filled`[![web-filled](.github/resources/anchor.svg)](#web-filled)|
+|![web-light](icons/telefonica/light/web-light.svg) | | | | |`web-light`[![web-light](.github/resources/anchor.svg)](#web-light)|
+|![web-regular](icons/telefonica/regular/web-regular.svg) | | | | |`web-regular`[![web-regular](.github/resources/anchor.svg)](#web-regular)|
+| |![webcam-regular](icons/vivo-new/regular/webcam-regular.svg) | | | |`webcam-regular`[![webcam-regular](.github/resources/anchor.svg)](#webcam-regular)|
+|![wifi-filled](icons/telefonica/filled/wifi-filled.svg) | |![wifi-filled](icons/o2-new/filled/wifi-filled.svg) |![wifi-filled](icons/o2/filled/wifi-filled.svg) | |`wifi-filled`[![wifi-filled](.github/resources/anchor.svg)](#wifi-filled)|
+|![wifi-light](icons/telefonica/light/wifi-light.svg) | |![wifi-light](icons/o2-new/light/wifi-light.svg) |![wifi-light](icons/o2/light/wifi-light.svg) | |`wifi-light`[![wifi-light](.github/resources/anchor.svg)](#wifi-light)|
+|![wifi-regular](icons/telefonica/regular/wifi-regular.svg) | |![wifi-regular](icons/o2-new/regular/wifi-regular.svg) |![wifi-regular](icons/o2/regular/wifi-regular.svg) |![wifi-regular](icons/blau/regular/wifi-regular.svg) |`wifi-regular`[![wifi-regular](.github/resources/anchor.svg)](#wifi-regular)|
+| | |![winner-check-filled](icons/o2-new/filled/winner-check-filled.svg) |![winner-check-filled](icons/o2/filled/winner-check-filled.svg) | |`winner-check-filled`[![winner-check-filled](.github/resources/anchor.svg)](#winner-check-filled)|
+| | |![winner-check-light](icons/o2-new/light/winner-check-light.svg) |![winner-check-light](icons/o2/light/winner-check-light.svg) | |`winner-check-light`[![winner-check-light](.github/resources/anchor.svg)](#winner-check-light)|
+| | |![winner-check-regular](icons/o2-new/regular/winner-check-regular.svg) |![winner-check-regular](icons/o2/regular/winner-check-regular.svg) | |`winner-check-regular`[![winner-check-regular](.github/resources/anchor.svg)](#winner-check-regular)|
+| | |![winner-euro-filled](icons/o2-new/filled/winner-euro-filled.svg) |![winner-euro-filled](icons/o2/filled/winner-euro-filled.svg) | |`winner-euro-filled`[![winner-euro-filled](.github/resources/anchor.svg)](#winner-euro-filled)|
+| | |![winner-euro-light](icons/o2-new/light/winner-euro-light.svg) |![winner-euro-light](icons/o2/light/winner-euro-light.svg) | |`winner-euro-light`[![winner-euro-light](.github/resources/anchor.svg)](#winner-euro-light)|
+| | |![winner-euro-regular](icons/o2-new/regular/winner-euro-regular.svg) |![winner-euro-regular](icons/o2/regular/winner-euro-regular.svg) | |`winner-euro-regular`[![winner-euro-regular](.github/resources/anchor.svg)](#winner-euro-regular)|
+| | |![winner-fiber-quality-filled](icons/o2-new/filled/winner-fiber-quality-filled.svg) |![winner-fiber-quality-filled](icons/o2/filled/winner-fiber-quality-filled.svg) | |`winner-fiber-quality-filled`[![winner-fiber-quality-filled](.github/resources/anchor.svg)](#winner-fiber-quality-filled)|
+| | |![winner-fiber-quality-light](icons/o2-new/light/winner-fiber-quality-light.svg) |![winner-fiber-quality-light](icons/o2/light/winner-fiber-quality-light.svg) | |`winner-fiber-quality-light`[![winner-fiber-quality-light](.github/resources/anchor.svg)](#winner-fiber-quality-light)|
+| | |![winner-fiber-quality-regular](icons/o2-new/regular/winner-fiber-quality-regular.svg) |![winner-fiber-quality-regular](icons/o2/regular/winner-fiber-quality-regular.svg) | |`winner-fiber-quality-regular`[![winner-fiber-quality-regular](.github/resources/anchor.svg)](#winner-fiber-quality-regular)|
+|![winner-filled](icons/telefonica/filled/winner-filled.svg) | |![winner-filled](icons/o2-new/filled/winner-filled.svg) |![winner-filled](icons/o2/filled/winner-filled.svg) | |`winner-filled`[![winner-filled](.github/resources/anchor.svg)](#winner-filled)|
+|![winner-light](icons/telefonica/light/winner-light.svg) | |![winner-light](icons/o2-new/light/winner-light.svg) |![winner-light](icons/o2/light/winner-light.svg) | |`winner-light`[![winner-light](.github/resources/anchor.svg)](#winner-light)|
+| | |![winner-pound-filled](icons/o2-new/filled/winner-pound-filled.svg) |![winner-pound-filled](icons/o2/filled/winner-pound-filled.svg) | |`winner-pound-filled`[![winner-pound-filled](.github/resources/anchor.svg)](#winner-pound-filled)|
+| | |![winner-pound-light](icons/o2-new/light/winner-pound-light.svg) |![winner-pound-light](icons/o2/light/winner-pound-light.svg) | |`winner-pound-light`[![winner-pound-light](.github/resources/anchor.svg)](#winner-pound-light)|
+| | |![winner-pound-regular](icons/o2-new/regular/winner-pound-regular.svg) |![winner-pound-regular](icons/o2/regular/winner-pound-regular.svg) | |`winner-pound-regular`[![winner-pound-regular](.github/resources/anchor.svg)](#winner-pound-regular)|
+|![winner-regular](icons/telefonica/regular/winner-regular.svg) | |![winner-regular](icons/o2-new/regular/winner-regular.svg) |![winner-regular](icons/o2/regular/winner-regular.svg) | |`winner-regular`[![winner-regular](.github/resources/anchor.svg)](#winner-regular)|
+|![woman-filled](icons/telefonica/filled/woman-filled.svg) | |![woman-filled](icons/o2-new/filled/woman-filled.svg) |![woman-filled](icons/o2/filled/woman-filled.svg) | |`woman-filled`[![woman-filled](.github/resources/anchor.svg)](#woman-filled)|
+|![woman-light](icons/telefonica/light/woman-light.svg) | |![woman-light](icons/o2-new/light/woman-light.svg) |![woman-light](icons/o2/light/woman-light.svg) | |`woman-light`[![woman-light](.github/resources/anchor.svg)](#woman-light)|
+|![woman-regular](icons/telefonica/regular/woman-regular.svg) | |![woman-regular](icons/o2-new/regular/woman-regular.svg) |![woman-regular](icons/o2/regular/woman-regular.svg) | |`woman-regular`[![woman-regular](.github/resources/anchor.svg)](#woman-regular)|
+| | |![workflow-filled](icons/o2-new/filled/workflow-filled.svg) |![workflow-filled](icons/o2/filled/workflow-filled.svg) | |`workflow-filled`[![workflow-filled](.github/resources/anchor.svg)](#workflow-filled)|
+| | |![workflow-light](icons/o2-new/light/workflow-light.svg) |![workflow-light](icons/o2/light/workflow-light.svg) | |`workflow-light`[![workflow-light](.github/resources/anchor.svg)](#workflow-light)|
+| | |![workflow-regular](icons/o2-new/regular/workflow-regular.svg) |![workflow-regular](icons/o2/regular/workflow-regular.svg) | |`workflow-regular`[![workflow-regular](.github/resources/anchor.svg)](#workflow-regular)|
+| | |![workshop-meeting-filled](icons/o2-new/filled/workshop-meeting-filled.svg) |![workshop-meeting-filled](icons/o2/filled/workshop-meeting-filled.svg) | |`workshop-meeting-filled`[![workshop-meeting-filled](.github/resources/anchor.svg)](#workshop-meeting-filled)|
+| | |![workshop-meeting-light](icons/o2-new/light/workshop-meeting-light.svg) |![workshop-meeting-light](icons/o2/light/workshop-meeting-light.svg) | |`workshop-meeting-light`[![workshop-meeting-light](.github/resources/anchor.svg)](#workshop-meeting-light)|
+| | |![workshop-meeting-regular](icons/o2-new/regular/workshop-meeting-regular.svg) |![workshop-meeting-regular](icons/o2/regular/workshop-meeting-regular.svg) | |`workshop-meeting-regular`[![workshop-meeting-regular](.github/resources/anchor.svg)](#workshop-meeting-regular)|
+| | |![world-device-filled](icons/o2-new/filled/world-device-filled.svg) |![world-device-filled](icons/o2/filled/world-device-filled.svg) | |`world-device-filled`[![world-device-filled](.github/resources/anchor.svg)](#world-device-filled)|
+| | |![world-device-light](icons/o2-new/light/world-device-light.svg) |![world-device-light](icons/o2/light/world-device-light.svg) | |`world-device-light`[![world-device-light](.github/resources/anchor.svg)](#world-device-light)|
+| | |![world-device-regular](icons/o2-new/regular/world-device-regular.svg) |![world-device-regular](icons/o2/regular/world-device-regular.svg) | |`world-device-regular`[![world-device-regular](.github/resources/anchor.svg)](#world-device-regular)|
+
diff --git a/README.md b/README.md
index 9fa6c78cd8..a757516165 100644
--- a/README.md
+++ b/README.md
@@ -27,7 +27,7 @@ Use Mística icons library in Figma!
## Equivalence status
Telefonica
-
+
O2
@@ -42,13 +42,13 @@ Blau
-| ICON SET | CONCEPTS (615) | TOTAL (3269) | ALL EQUIVALENCE | SOME EQUIVALENCE | UNIQUE | MISSING |
+| ICON SET | CONCEPTS (611) | TOTAL (3245) | ALL EQUIVALENCE | SOME EQUIVALENCE | UNIQUE | MISSING |
| :--------- | --------: | -----: | ----------: | -------------------: | -------------------: | ------------: |
-| Telefonica | 429 | 1220 | 9 (0.3%) ![All Equivalence](https://dummyimage.com/4x12/0066FF/000&text=+) | 472 (14.4%) ![Some Equivalence](https://dummyimage.com/4x12/EAC344/000&text=+) | 739 (22.6%) ![Unique](https://dummyimage.com/4x12/59C2C9/000&text=+) | 2049 (62.7%) ![Missing](https://dummyimage.com/4x12/D1D5E4/000&text=+) |
-| O2 | 314 | 924 | 9 (0.3%) ![All Equivalence](https://dummyimage.com/4x12/0066FF/000&text=+) | 911 (27.9%) ![Some Equivalence](https://dummyimage.com/4x12/EAC344/000&text=+) | 0 (0.0%) ![Unique](https://dummyimage.com/4x12/59C2C9/000&text=+) | 2345 (71.7%) ![Missing](https://dummyimage.com/4x12/D1D5E4/000&text=+) |
-| O2-New | 316 | 931 | 9 (0.3%) ![All Equivalence](https://dummyimage.com/4x12/0066FF/000&text=+) | 921 (28.2%) ![Some Equivalence](https://dummyimage.com/4x12/EAC344/000&text=+) | 1 (0.0%) ![Unique](https://dummyimage.com/4x12/59C2C9/000&text=+) | 2338 (71.5%) ![Missing](https://dummyimage.com/4x12/D1D5E4/000&text=+) |
-| Vivo-New | 60 | 123 | 9 (0.3%) ![All Equivalence](https://dummyimage.com/4x12/0066FF/000&text=+) | 53 (1.6%) ![Some Equivalence](https://dummyimage.com/4x12/EAC344/000&text=+) | 61 (1.9%) ![Unique](https://dummyimage.com/4x12/59C2C9/000&text=+) | 3146 (96.2%) ![Missing](https://dummyimage.com/4x12/D1D5E4/000&text=+) |
-| Blau | 62 | 71 | 9 (0.3%) ![All Equivalence](https://dummyimage.com/4x12/0066FF/000&text=+) | 57 (1.7%) ![Some Equivalence](https://dummyimage.com/4x12/EAC344/000&text=+) | 5 (0.2%) ![Unique](https://dummyimage.com/4x12/59C2C9/000&text=+) | 3198 (97.8%) ![Missing](https://dummyimage.com/4x12/D1D5E4/000&text=+) |
+| Telefonica | 423 | 1202 | 9 (0.3%) ![All Equivalence](https://dummyimage.com/4x12/0066FF/000&text=+) | 460 (14.2%) ![Some Equivalence](https://dummyimage.com/4x12/EAC344/000&text=+) | 733 (22.6%) ![Unique](https://dummyimage.com/4x12/59C2C9/000&text=+) | 2043 (63.0%) ![Missing](https://dummyimage.com/4x12/D1D5E4/000&text=+) |
+| O2 | 314 | 924 | 9 (0.3%) ![All Equivalence](https://dummyimage.com/4x12/0066FF/000&text=+) | 911 (28.1%) ![Some Equivalence](https://dummyimage.com/4x12/EAC344/000&text=+) | 0 (0.0%) ![Unique](https://dummyimage.com/4x12/59C2C9/000&text=+) | 2321 (71.5%) ![Missing](https://dummyimage.com/4x12/D1D5E4/000&text=+) |
+| O2-New | 314 | 925 | 9 (0.3%) ![All Equivalence](https://dummyimage.com/4x12/0066FF/000&text=+) | 915 (28.2%) ![Some Equivalence](https://dummyimage.com/4x12/EAC344/000&text=+) | 1 (0.0%) ![Unique](https://dummyimage.com/4x12/59C2C9/000&text=+) | 2320 (71.5%) ![Missing](https://dummyimage.com/4x12/D1D5E4/000&text=+) |
+| Vivo-New | 60 | 123 | 9 (0.3%) ![All Equivalence](https://dummyimage.com/4x12/0066FF/000&text=+) | 53 (1.6%) ![Some Equivalence](https://dummyimage.com/4x12/EAC344/000&text=+) | 61 (1.9%) ![Unique](https://dummyimage.com/4x12/59C2C9/000&text=+) | 3122 (96.2%) ![Missing](https://dummyimage.com/4x12/D1D5E4/000&text=+) |
+| Blau | 62 | 71 | 9 (0.3%) ![All Equivalence](https://dummyimage.com/4x12/0066FF/000&text=+) | 57 (1.8%) ![Some Equivalence](https://dummyimage.com/4x12/EAC344/000&text=+) | 5 (0.2%) ![Unique](https://dummyimage.com/4x12/59C2C9/000&text=+) | 3174 (97.8%) ![Missing](https://dummyimage.com/4x12/D1D5E4/000&text=+) |
**Concepts**: Counts the different names of icons in the set excluding any variations in style or weight.
@@ -57,1766 +57,12 @@ Blau
**Some Equivalence**: Icons that are present in some sets.
**Unique**: Icons that only exists in this set.
**Missing**: Missing icons with respect to other sets.
-## Icon equivalence
+## Icon table equivalence
-| telefonica | vivo-new | o2-new | o2 | blau | icon name |
-| :---: | :---: | :---: | :---: | :---: |:--- |
-| | | | |![2g-filled](icons/blau/filled/2g-filled.svg) |`2g-filled`[![2g-filled](.github/resources/anchor.svg)](#2g-filled)|
-| | | | |![2g-regular](icons/blau/regular/2g-regular.svg) |`2g-regular`[![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) | |`3d-view-filled`[![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) | |`3d-view-light`[![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) | |`3d-view-regular`[![3d-view-regular](.github/resources/anchor.svg)](#3d-view-regular)|
-| | | | |![3g-filled](icons/blau/filled/3g-filled.svg) |`3g-filled`[![3g-filled](.github/resources/anchor.svg)](#3g-filled)|
-| | | | |![3g-regular](icons/blau/regular/3g-regular.svg) |`3g-regular`[![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) |`4g-filled`[![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) | |`4g-light`[![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) |`4g-regular`[![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) |`5g-filled`[![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) | |`5g-light`[![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) |`5g-regular`[![5g-regular](.github/resources/anchor.svg)](#5g-regular)|
-|![academic-filled](icons/telefonica/filled/academic-filled.svg) | | | | |`academic-filled`[![academic-filled](.github/resources/anchor.svg)](#academic-filled)|
-|![academic-light](icons/telefonica/light/academic-light.svg) | | | | |`academic-light`[![academic-light](.github/resources/anchor.svg)](#academic-light)|
-|![academic-regular](icons/telefonica/regular/academic-regular.svg) | | | | |`academic-regular`[![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) | |`accessories-filled`[![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) | |`accessories-light`[![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) | |`accessories-regular`[![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) | |`add-bill-euro-filled`[![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) | |`add-bill-euro-light`[![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) | |`add-bill-euro-regular`[![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) | |`add-bill-pound-filled`[![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) | |`add-bill-pound-light`[![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) | |`add-bill-pound-regular`[![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) | |`add-bolton-filled`[![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) | |`add-bolton-light`[![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) | |`add-bolton-regular`[![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) | |`add-more-circle-filled`[![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) | |`add-more-circle-light`[![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) |`add-more-circle-regular`[![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) | |`add-more-filled`[![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) | |`add-more-light`[![add-more-light](.github/resources/anchor.svg)](#add-more-light)|
-|![add-more-location-filled](icons/telefonica/filled/add-more-location-filled.svg) | | | | |`add-more-location-filled`[![add-more-location-filled](.github/resources/anchor.svg)](#add-more-location-filled)|
-|![add-more-location-regular](icons/telefonica/regular/add-more-location-regular.svg) | | | | |`add-more-location-regular`[![add-more-location-regular](.github/resources/anchor.svg)](#add-more-location-regular)|
-|![add-more-query-filled](icons/telefonica/filled/add-more-query-filled.svg) | | | | |`add-more-query-filled`[![add-more-query-filled](.github/resources/anchor.svg)](#add-more-query-filled)|
-|![add-more-query-light](icons/telefonica/light/add-more-query-light.svg) | | | | |`add-more-query-light`[![add-more-query-light](.github/resources/anchor.svg)](#add-more-query-light)|
-|![add-more-query-regular](icons/telefonica/regular/add-more-query-regular.svg) | | | | |`add-more-query-regular`[![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) |`add-more-regular`[![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) | |`add-phone-filled`[![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) | |`add-phone-light`[![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) | |`add-phone-regular`[![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) | |`airtime-filled`[![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) | |`airtime-light`[![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) | |`airtime-regular`[![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) | |`alarm-clock-filled`[![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) | |`alarm-clock-light`[![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) | |`alarm-clock-regular`[![alarm-clock-regular](.github/resources/anchor.svg)](#alarm-clock-regular)|
-|![alarm-light-cross-filled](icons/telefonica/filled/alarm-light-cross-filled.svg) | | | | |`alarm-light-cross-filled`[![alarm-light-cross-filled](.github/resources/anchor.svg)](#alarm-light-cross-filled)|
-|![alarm-light-cross-light](icons/telefonica/light/alarm-light-cross-light.svg) | | | | |`alarm-light-cross-light`[![alarm-light-cross-light](.github/resources/anchor.svg)](#alarm-light-cross-light)|
-|![alarm-light-cross-regular](icons/telefonica/regular/alarm-light-cross-regular.svg) | | | | |`alarm-light-cross-regular`[![alarm-light-cross-regular](.github/resources/anchor.svg)](#alarm-light-cross-regular)|
-|![alarm-light-filled](icons/telefonica/filled/alarm-light-filled.svg) | | | | |`alarm-light-filled`[![alarm-light-filled](.github/resources/anchor.svg)](#alarm-light-filled)|
-|![alarm-light-light](icons/telefonica/light/alarm-light-light.svg) | | | | |`alarm-light-light`[![alarm-light-light](.github/resources/anchor.svg)](#alarm-light-light)|
-|![alarm-light-regular](icons/telefonica/regular/alarm-light-regular.svg) | | | | |`alarm-light-regular`[![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) | |`alert-filled`[![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) | |`alert-light`[![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) | |`alert-regular`[![alert-regular](.github/resources/anchor.svg)](#alert-regular)|
-|![ambulance-filled](icons/telefonica/filled/ambulance-filled.svg) | | | | |`ambulance-filled`[![ambulance-filled](.github/resources/anchor.svg)](#ambulance-filled)|
-|![ambulance-light](icons/telefonica/light/ambulance-light.svg) | | | | |`ambulance-light`[![ambulance-light](.github/resources/anchor.svg)](#ambulance-light)|
-|![ambulance-regular](icons/telefonica/regular/ambulance-regular.svg) | | | | |`ambulance-regular`[![ambulance-regular](.github/resources/anchor.svg)](#ambulance-regular)|
-| |![amplifier-signal-filled](icons/vivo-new/filled/amplifier-signal-filled.svg) | | | |`amplifier-signal-filled`[![amplifier-signal-filled](.github/resources/anchor.svg)](#amplifier-signal-filled)|
-| |![amplifier-signal-light](icons/vivo-new/light/amplifier-signal-light.svg) | | | |`amplifier-signal-light`[![amplifier-signal-light](.github/resources/anchor.svg)](#amplifier-signal-light)|
-| |![amplifier-signal-regular](icons/vivo-new/regular/amplifier-signal-regular.svg) | | | |`amplifier-signal-regular`[![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) | |`angel-filled`[![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) | |`angel-light`[![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) | |`angel-regular`[![angel-regular](.github/resources/anchor.svg)](#angel-regular)|
-|![antenna-filled](icons/telefonica/filled/antenna-filled.svg) | | | | |`antenna-filled`[![antenna-filled](.github/resources/anchor.svg)](#antenna-filled)|
-|![antenna-light](icons/telefonica/light/antenna-light.svg) | | | | |`antenna-light`[![antenna-light](.github/resources/anchor.svg)](#antenna-light)|
-|![antenna-regular](icons/telefonica/regular/antenna-regular.svg) | | | | |`antenna-regular`[![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) | |`apartment-building-filled`[![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) | |`apartment-building-light`[![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) | |`apartment-building-regular`[![apartment-building-regular](.github/resources/anchor.svg)](#apartment-building-regular)|
-|![api-filled](icons/telefonica/filled/api-filled.svg) | | | | |`api-filled`[![api-filled](.github/resources/anchor.svg)](#api-filled)|
-|![api-light](icons/telefonica/light/api-light.svg) | | | | |`api-light`[![api-light](.github/resources/anchor.svg)](#api-light)|
-|![api-regular](icons/telefonica/regular/api-regular.svg) | | | | |`api-regular`[![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) | |`app-icon-filled`[![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) | |`app-icon-light`[![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) | |`app-icon-regular`[![app-icon-regular](.github/resources/anchor.svg)](#app-icon-regular)|
-|![appointment-filled](icons/telefonica/filled/appointment-filled.svg) | | | | |`appointment-filled`[![appointment-filled](.github/resources/anchor.svg)](#appointment-filled)|
-|![appointment-light](icons/telefonica/light/appointment-light.svg) | | | | |`appointment-light`[![appointment-light](.github/resources/anchor.svg)](#appointment-light)|
-|![appointment-regular](icons/telefonica/regular/appointment-regular.svg) | | | | |`appointment-regular`[![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) | |`apps-business-filled`[![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) | |`apps-business-light`[![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) | |`apps-business-regular`[![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) | |`apps-filled`[![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) | |`apps-light`[![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) | |`apps-regular`[![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) | |`arrow-down-filled`[![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) | |`arrow-down-left-filled`[![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) | |`arrow-down-left-light`[![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) | |`arrow-down-left-regular`[![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) | |`arrow-down-light`[![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) | |`arrow-down-regular`[![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) | |`arrow-down-right-filled`[![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) | |`arrow-down-right-light`[![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) | |`arrow-down-right-regular`[![arrow-down-right-regular](.github/resources/anchor.svg)](#arrow-down-right-regular)|
-|![arrow-drop-down-filled](icons/telefonica/filled/arrow-drop-down-filled.svg) | | | | |`arrow-drop-down-filled`[![arrow-drop-down-filled](.github/resources/anchor.svg)](#arrow-drop-down-filled)|
-|![arrow-drop-up-filled](icons/telefonica/filled/arrow-drop-up-filled.svg) | | | | |`arrow-drop-up-filled`[![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) | |`arrow-left-filled`[![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) | |`arrow-left-light`[![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) | |`arrow-left-regular`[![arrow-left-regular](.github/resources/anchor.svg)](#arrow-left-regular)|
-|![arrow-line-down-left-light](icons/telefonica/light/arrow-line-down-left-light.svg) | | | | |`arrow-line-down-left-light`[![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) | | | | |`arrow-line-down-left-regular`[![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) | | | | |`arrow-line-down-light`[![arrow-line-down-light](.github/resources/anchor.svg)](#arrow-line-down-light)|
-|![arrow-line-down-regular](icons/telefonica/regular/arrow-line-down-regular.svg) | | | | |`arrow-line-down-regular`[![arrow-line-down-regular](.github/resources/anchor.svg)](#arrow-line-down-regular)|
-|![arrow-line-left-light](icons/telefonica/light/arrow-line-left-light.svg) | | | | |`arrow-line-left-light`[![arrow-line-left-light](.github/resources/anchor.svg)](#arrow-line-left-light)|
-|![arrow-line-left-regular](icons/telefonica/regular/arrow-line-left-regular.svg) | | | | |`arrow-line-left-regular`[![arrow-line-left-regular](.github/resources/anchor.svg)](#arrow-line-left-regular)|
-|![arrow-line-right-light](icons/telefonica/light/arrow-line-right-light.svg) | | | | |`arrow-line-right-light`[![arrow-line-right-light](.github/resources/anchor.svg)](#arrow-line-right-light)|
-|![arrow-line-right-regular](icons/telefonica/regular/arrow-line-right-regular.svg) | | | | |`arrow-line-right-regular`[![arrow-line-right-regular](.github/resources/anchor.svg)](#arrow-line-right-regular)|
-|![arrow-line-up-light](icons/telefonica/light/arrow-line-up-light.svg) | | | | |`arrow-line-up-light`[![arrow-line-up-light](.github/resources/anchor.svg)](#arrow-line-up-light)|
-|![arrow-line-up-regular](icons/telefonica/regular/arrow-line-up-regular.svg) | | | | |`arrow-line-up-regular`[![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) | | | | |`arrow-line-up-right-light`[![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) | | | | |`arrow-line-up-right-regular`[![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) | |`arrow-right-filled`[![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) | |`arrow-right-light`[![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) | |`arrow-right-regular`[![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) | |`arrow-up-down-filled`[![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) | |`arrow-up-down-light`[![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) |`arrow-up-down-regular`[![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) | |`arrow-up-filled`[![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) | |`arrow-up-left-filled`[![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) | |`arrow-up-left-light`[![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) |`arrow-up-left-regular`[![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) | |`arrow-up-light`[![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) |`arrow-up-regular`[![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) | |`arrow-up-right-filled`[![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) | |`arrow-up-right-light`[![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) | |`arrow-up-right-regular`[![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) | |`arrows-left-and-right-filled`[![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) | |`arrows-left-and-right-light`[![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) | |`arrows-left-and-right-regular`[![arrows-left-and-right-regular](.github/resources/anchor.svg)](#arrows-left-and-right-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) | |`audio-filled`[![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) | |`audio-light`[![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) | |`audio-regular`[![audio-regular](.github/resources/anchor.svg)](#audio-regular)|
-|![aura-filled](icons/telefonica/filled/aura-filled.svg) | | | | |`aura-filled`[![aura-filled](.github/resources/anchor.svg)](#aura-filled)|
-|![authentication-failure-filled](icons/telefonica/filled/authentication-failure-filled.svg) | | | | |`authentication-failure-filled`[![authentication-failure-filled](.github/resources/anchor.svg)](#authentication-failure-filled)|
-|![authentication-failure-regular](icons/telefonica/regular/authentication-failure-regular.svg) | | | | |`authentication-failure-regular`[![authentication-failure-regular](.github/resources/anchor.svg)](#authentication-failure-regular)|
-|![authentication-success-filled](icons/telefonica/filled/authentication-success-filled.svg) | | | | |`authentication-success-filled`[![authentication-success-filled](.github/resources/anchor.svg)](#authentication-success-filled)|
-|![authentication-success-light](icons/telefonica/light/authentication-success-light.svg) | | | | |`authentication-success-light`[![authentication-success-light](.github/resources/anchor.svg)](#authentication-success-light)|
-|![authentication-success-regular](icons/telefonica/regular/authentication-success-regular.svg) | | | | |`authentication-success-regular`[![authentication-success-regular](.github/resources/anchor.svg)](#authentication-success-regular)|
-|![bacteria-filled](icons/telefonica/filled/bacteria-filled.svg) | | | | |`bacteria-filled`[![bacteria-filled](.github/resources/anchor.svg)](#bacteria-filled)|
-|![bacteria-light](icons/telefonica/light/bacteria-light.svg) | | | | |`bacteria-light`[![bacteria-light](.github/resources/anchor.svg)](#bacteria-light)|
-|![bacteria-regular](icons/telefonica/regular/bacteria-regular.svg) | | | | |`bacteria-regular`[![bacteria-regular](.github/resources/anchor.svg)](#bacteria-regular)|
-|![balance-filled](icons/telefonica/filled/balance-filled.svg) | | | | |`balance-filled`[![balance-filled](.github/resources/anchor.svg)](#balance-filled)|
-|![balance-light](icons/telefonica/light/balance-light.svg) | | | | |`balance-light`[![balance-light](.github/resources/anchor.svg)](#balance-light)|
-|![balance-regular](icons/telefonica/regular/balance-regular.svg) | | | | |`balance-regular`[![balance-regular](.github/resources/anchor.svg)](#balance-regular)|
-|![band-aid-filled](icons/telefonica/filled/band-aid-filled.svg) | | | | |`band-aid-filled`[![band-aid-filled](.github/resources/anchor.svg)](#band-aid-filled)|
-|![band-aid-light](icons/telefonica/light/band-aid-light.svg) | | | | |`band-aid-light`[![band-aid-light](.github/resources/anchor.svg)](#band-aid-light)|
-|![band-aid-regular](icons/telefonica/regular/band-aid-regular.svg) | | | | |`band-aid-regular`[![band-aid-regular](.github/resources/anchor.svg)](#band-aid-regular)|
-|![bar-chart-filled](icons/telefonica/filled/bar-chart-filled.svg) | | | | |`bar-chart-filled`[![bar-chart-filled](.github/resources/anchor.svg)](#bar-chart-filled)|
-|![bar-chart-light](icons/telefonica/light/bar-chart-light.svg) | | | | |`bar-chart-light`[![bar-chart-light](.github/resources/anchor.svg)](#bar-chart-light)|
-|![bar-chart-regular](icons/telefonica/regular/bar-chart-regular.svg) | | | | |`bar-chart-regular`[![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) | |`barcode-filled`[![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) | |`barcode-light`[![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) | |`barcode-regular`[![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) | |`battery-charging-filled`[![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) | |`battery-charging-light`[![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) | |`battery-charging-regular`[![battery-charging-regular](.github/resources/anchor.svg)](#battery-charging-regular)|
-|![battery-full-filled](icons/telefonica/filled/battery-full-filled.svg) | | | | |`battery-full-filled`[![battery-full-filled](.github/resources/anchor.svg)](#battery-full-filled)|
-|![battery-full-regular](icons/telefonica/regular/battery-full-regular.svg) | | | | |`battery-full-regular`[![battery-full-regular](.github/resources/anchor.svg)](#battery-full-regular)|
-|![battery-light](icons/telefonica/light/battery-light.svg) | | | | |`battery-light`[![battery-light](.github/resources/anchor.svg)](#battery-light)|
-|![battery-low-filled](icons/telefonica/filled/battery-low-filled.svg) | | | | |`battery-low-filled`[![battery-low-filled](.github/resources/anchor.svg)](#battery-low-filled)|
-|![battery-low-regular](icons/telefonica/regular/battery-low-regular.svg) | | | | |`battery-low-regular`[![battery-low-regular](.github/resources/anchor.svg)](#battery-low-regular)|
-|![battery-medium-filled](icons/telefonica/filled/battery-medium-filled.svg) | | | | |`battery-medium-filled`[![battery-medium-filled](.github/resources/anchor.svg)](#battery-medium-filled)|
-|![battery-medium-regular](icons/telefonica/regular/battery-medium-regular.svg) | | | | |`battery-medium-regular`[![battery-medium-regular](.github/resources/anchor.svg)](#battery-medium-regular)|
-|![battery-regular](icons/telefonica/regular/battery-regular.svg) | | | | |`battery-regular`[![battery-regular](.github/resources/anchor.svg)](#battery-regular)|
-|![beach-umbrella-filled](icons/telefonica/filled/beach-umbrella-filled.svg) | | | | |`beach-umbrella-filled`[![beach-umbrella-filled](.github/resources/anchor.svg)](#beach-umbrella-filled)|
-|![beach-umbrella-light](icons/telefonica/light/beach-umbrella-light.svg) | | | | |`beach-umbrella-light`[![beach-umbrella-light](.github/resources/anchor.svg)](#beach-umbrella-light)|
-|![beach-umbrella-regular](icons/telefonica/regular/beach-umbrella-regular.svg) | | | | |`beach-umbrella-regular`[![beach-umbrella-regular](.github/resources/anchor.svg)](#beach-umbrella-regular)|
-|![bell-add-more-filled](icons/telefonica/filled/bell-add-more-filled.svg) | | | | |`bell-add-more-filled`[![bell-add-more-filled](.github/resources/anchor.svg)](#bell-add-more-filled)|
-|![bell-add-more-light](icons/telefonica/light/bell-add-more-light.svg) | | | | |`bell-add-more-light`[![bell-add-more-light](.github/resources/anchor.svg)](#bell-add-more-light)|
-|![bell-add-more-regular](icons/telefonica/regular/bell-add-more-regular.svg) | | | | |`bell-add-more-regular`[![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) | |`bell-filled`[![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) | |`bell-light`[![bell-light](.github/resources/anchor.svg)](#bell-light)|
-|![bell-off-filled](icons/telefonica/filled/bell-off-filled.svg) | | | | |`bell-off-filled`[![bell-off-filled](.github/resources/anchor.svg)](#bell-off-filled)|
-|![bell-off-light](icons/telefonica/light/bell-off-light.svg) | | | | |`bell-off-light`[![bell-off-light](.github/resources/anchor.svg)](#bell-off-light)|
-|![bell-off-regular](icons/telefonica/regular/bell-off-regular.svg) | | | | |`bell-off-regular`[![bell-off-regular](.github/resources/anchor.svg)](#bell-off-regular)|
-|![bell-program-filled](icons/telefonica/filled/bell-program-filled.svg) | | | | |`bell-program-filled`[![bell-program-filled](.github/resources/anchor.svg)](#bell-program-filled)|
-|![bell-program-light](icons/telefonica/light/bell-program-light.svg) | | | | |`bell-program-light`[![bell-program-light](.github/resources/anchor.svg)](#bell-program-light)|
-|![bell-program-regular](icons/telefonica/regular/bell-program-regular.svg) | | | | |`bell-program-regular`[![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) |`bell-regular`[![bell-regular](.github/resources/anchor.svg)](#bell-regular)|
-|![bicycle-bike-filled](icons/telefonica/filled/bicycle-bike-filled.svg) | | | | |`bicycle-bike-filled`[![bicycle-bike-filled](.github/resources/anchor.svg)](#bicycle-bike-filled)|
-|![bicycle-bike-light](icons/telefonica/light/bicycle-bike-light.svg) | | | | |`bicycle-bike-light`[![bicycle-bike-light](.github/resources/anchor.svg)](#bicycle-bike-light)|
-|![bicycle-bike-regular](icons/telefonica/regular/bicycle-bike-regular.svg) | | | | |`bicycle-bike-regular`[![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) | |`bill-invoice-pound-filled`[![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) | |`bill-invoice-pound-light`[![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) | |`bill-invoice-pound-regular`[![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) | |`bill-queries-euro-filled`[![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) | |`bill-queries-euro-light`[![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) | |`bill-queries-euro-regular`[![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) | |`bill-queries-pound-filled`[![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) | |`bill-queries-pound-light`[![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) | |`bill-queries-pound-regular`[![bill-queries-pound-regular](.github/resources/anchor.svg)](#bill-queries-pound-regular)|
-|![blog-filled](icons/telefonica/filled/blog-filled.svg) | | | | |`blog-filled`[![blog-filled](.github/resources/anchor.svg)](#blog-filled)|
-|![blog-light](icons/telefonica/light/blog-light.svg) | | | | |`blog-light`[![blog-light](.github/resources/anchor.svg)](#blog-light)|
-|![blog-regular](icons/telefonica/regular/blog-regular.svg) | | | | |`blog-regular`[![blog-regular](.github/resources/anchor.svg)](#blog-regular)|
-|![boat-filled](icons/telefonica/filled/boat-filled.svg) | | | | |`boat-filled`[![boat-filled](.github/resources/anchor.svg)](#boat-filled)|
-|![boat-light](icons/telefonica/light/boat-light.svg) | | | | |`boat-light`[![boat-light](.github/resources/anchor.svg)](#boat-light)|
-|![boat-regular](icons/telefonica/regular/boat-regular.svg) | | | | |`boat-regular`[![boat-regular](.github/resources/anchor.svg)](#boat-regular)|
-|![book-filled](icons/telefonica/filled/book-filled.svg) | | | | |`book-filled`[![book-filled](.github/resources/anchor.svg)](#book-filled)|
-|![book-light](icons/telefonica/light/book-light.svg) | | | | |`book-light`[![book-light](.github/resources/anchor.svg)](#book-light)|
-|![book-regular](icons/telefonica/regular/book-regular.svg) | | | | |`book-regular`[![book-regular](.github/resources/anchor.svg)](#book-regular)|
-|![bookmark-filled](icons/telefonica/filled/bookmark-filled.svg) | | | | |`bookmark-filled`[![bookmark-filled](.github/resources/anchor.svg)](#bookmark-filled)|
-|![bookmark-light](icons/telefonica/light/bookmark-light.svg) | | | | |`bookmark-light`[![bookmark-light](.github/resources/anchor.svg)](#bookmark-light)|
-|![bookmark-regular](icons/telefonica/regular/bookmark-regular.svg) | | | | |`bookmark-regular`[![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) | |`box-filled`[![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) | |`box-light`[![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) | |`box-location-filled`[![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) | |`box-location-light`[![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) | |`box-location-regular`[![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) | |`box-regular`[![box-regular](.github/resources/anchor.svg)](#box-regular)|
-| |![box-star-filled](icons/vivo-new/filled/box-star-filled.svg) | | | |`box-star-filled`[![box-star-filled](.github/resources/anchor.svg)](#box-star-filled)|
-| |![box-star-light](icons/vivo-new/light/box-star-light.svg) | | | |`box-star-light`[![box-star-light](.github/resources/anchor.svg)](#box-star-light)|
-| |![box-star-regular](icons/vivo-new/regular/box-star-regular.svg) | | | |`box-star-regular`[![box-star-regular](.github/resources/anchor.svg)](#box-star-regular)|
-|![brain-filled](icons/telefonica/filled/brain-filled.svg) | | | | |`brain-filled`[![brain-filled](.github/resources/anchor.svg)](#brain-filled)|
-|![brain-light](icons/telefonica/light/brain-light.svg) | | | | |`brain-light`[![brain-light](.github/resources/anchor.svg)](#brain-light)|
-|![brain-regular](icons/telefonica/regular/brain-regular.svg) | | | | |`brain-regular`[![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) | |`briefcase-business-filled`[![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) | |`briefcase-business-light`[![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) | |`briefcase-business-regular`[![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) | |`briefcase-filled`[![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) | |`briefcase-light`[![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) |`briefcase-regular`[![briefcase-regular](.github/resources/anchor.svg)](#briefcase-regular)|
-|![broadband-filled](icons/telefonica/filled/broadband-filled.svg) | | | | |`broadband-filled`[![broadband-filled](.github/resources/anchor.svg)](#broadband-filled)|
-|![broadband-light](icons/telefonica/light/broadband-light.svg) | | | | |`broadband-light`[![broadband-light](.github/resources/anchor.svg)](#broadband-light)|
-|![broadband-regular](icons/telefonica/regular/broadband-regular.svg) | | | | |`broadband-regular`[![broadband-regular](.github/resources/anchor.svg)](#broadband-regular)|
-|![bug-filled](icons/telefonica/filled/bug-filled.svg) | | | | |`bug-filled`[![bug-filled](.github/resources/anchor.svg)](#bug-filled)|
-|![bug-light](icons/telefonica/light/bug-light.svg) | | | | |`bug-light`[![bug-light](.github/resources/anchor.svg)](#bug-light)|
-|![bug-regular](icons/telefonica/regular/bug-regular.svg) | | | | |`bug-regular`[![bug-regular](.github/resources/anchor.svg)](#bug-regular)|
-|![bus-filled](icons/telefonica/filled/bus-filled.svg) | | | | |`bus-filled`[![bus-filled](.github/resources/anchor.svg)](#bus-filled)|
-|![bus-light](icons/telefonica/light/bus-light.svg) | | | | |`bus-light`[![bus-light](.github/resources/anchor.svg)](#bus-light)|
-|![bus-regular](icons/telefonica/regular/bus-regular.svg) | | | | |`bus-regular`[![bus-regular](.github/resources/anchor.svg)](#bus-regular)|
-|![buy-data-filled](icons/telefonica/filled/buy-data-filled.svg) | | | | |`buy-data-filled`[![buy-data-filled](.github/resources/anchor.svg)](#buy-data-filled)|
-|![buy-data-light](icons/telefonica/light/buy-data-light.svg) | | | | |`buy-data-light`[![buy-data-light](.github/resources/anchor.svg)](#buy-data-light)|
-|![buy-data-regular](icons/telefonica/regular/buy-data-regular.svg) | | | | |`buy-data-regular`[![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) | |`buy-devices-filled`[![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) | |`buy-devices-light`[![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) | |`buy-devices-regular`[![buy-devices-regular](.github/resources/anchor.svg)](#buy-devices-regular)|
-|![buy-home-products-filled](icons/telefonica/filled/buy-home-products-filled.svg) | | | | |`buy-home-products-filled`[![buy-home-products-filled](.github/resources/anchor.svg)](#buy-home-products-filled)|
-|![buy-home-products-light](icons/telefonica/light/buy-home-products-light.svg) | | | | |`buy-home-products-light`[![buy-home-products-light](.github/resources/anchor.svg)](#buy-home-products-light)|
-|![buy-home-products-regular](icons/telefonica/regular/buy-home-products-regular.svg) | | | | |`buy-home-products-regular`[![buy-home-products-regular](.github/resources/anchor.svg)](#buy-home-products-regular)|
-|![buy-plans-filled](icons/telefonica/filled/buy-plans-filled.svg) | | | | |`buy-plans-filled`[![buy-plans-filled](.github/resources/anchor.svg)](#buy-plans-filled)|
-|![buy-plans-light](icons/telefonica/light/buy-plans-light.svg) | | | | |`buy-plans-light`[![buy-plans-light](.github/resources/anchor.svg)](#buy-plans-light)|
-|![buy-plans-regular](icons/telefonica/regular/buy-plans-regular.svg) | | | | |`buy-plans-regular`[![buy-plans-regular](.github/resources/anchor.svg)](#buy-plans-regular)|
-|![cafe-filled](icons/telefonica/filled/cafe-filled.svg) | | | | |`cafe-filled`[![cafe-filled](.github/resources/anchor.svg)](#cafe-filled)|
-|![cafe-light](icons/telefonica/light/cafe-light.svg) | | | | |`cafe-light`[![cafe-light](.github/resources/anchor.svg)](#cafe-light)|
-|![cafe-regular](icons/telefonica/regular/cafe-regular.svg) | | | | |`cafe-regular`[![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) | |`calendar-euro-filled`[![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) | |`calendar-euro-light`[![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) | |`calendar-euro-regular`[![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) | |`calendar-filled`[![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) | |`calendar-light`[![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) | |`calendar-pound-filled`[![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) | |`calendar-pound-light`[![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) | |`calendar-pound-regular`[![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) | |`calendar-regular`[![calendar-regular](.github/resources/anchor.svg)](#calendar-regular)|
-|![call-details-filled](icons/telefonica/filled/call-details-filled.svg) | | | | |`call-details-filled`[![call-details-filled](.github/resources/anchor.svg)](#call-details-filled)|
-|![call-details-light](icons/telefonica/light/call-details-light.svg) | | | | |`call-details-light`[![call-details-light](.github/resources/anchor.svg)](#call-details-light)|
-|![call-details-regular](icons/telefonica/regular/call-details-regular.svg) | | | | |`call-details-regular`[![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) | |`call-landline-filled`[![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) | |`call-landline-light`[![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) |`call-landline-regular`[![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) | |`callback-filled`[![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) | |`callback-light`[![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) | |`callback-regular`[![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) | |`cancel-filled`[![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) | |`cancel-light`[![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) |`cancel-regular`[![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) | |`cancellation-filled`[![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) | |`cancellation-light`[![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) | |`cancellation-regular`[![cancellation-regular](.github/resources/anchor.svg)](#cancellation-regular)|
-|![car-filled](icons/telefonica/filled/car-filled.svg) | | | | |`car-filled`[![car-filled](.github/resources/anchor.svg)](#car-filled)|
-|![car-light](icons/telefonica/light/car-light.svg) | | | | |`car-light`[![car-light](.github/resources/anchor.svg)](#car-light)|
-|![car-moving-filled](icons/telefonica/filled/car-moving-filled.svg) | | | | |`car-moving-filled`[![car-moving-filled](.github/resources/anchor.svg)](#car-moving-filled)|
-|![car-moving-light](icons/telefonica/light/car-moving-light.svg) | | | | |`car-moving-light`[![car-moving-light](.github/resources/anchor.svg)](#car-moving-light)|
-|![car-moving-regular](icons/telefonica/regular/car-moving-regular.svg) | | | | |`car-moving-regular`[![car-moving-regular](.github/resources/anchor.svg)](#car-moving-regular)|
-|![car-regular](icons/telefonica/regular/car-regular.svg) | | | | |`car-regular`[![car-regular](.github/resources/anchor.svg)](#car-regular)|
-|![car-with-clock-filled](icons/telefonica/filled/car-with-clock-filled.svg) | | | | |`car-with-clock-filled`[![car-with-clock-filled](.github/resources/anchor.svg)](#car-with-clock-filled)|
-|![car-with-clock-light](icons/telefonica/light/car-with-clock-light.svg) | | | | |`car-with-clock-light`[![car-with-clock-light](.github/resources/anchor.svg)](#car-with-clock-light)|
-|![car-with-clock-regular](icons/telefonica/regular/car-with-clock-regular.svg) | | | | |`car-with-clock-regular`[![car-with-clock-regular](.github/resources/anchor.svg)](#car-with-clock-regular)|
-| |![care-bike-regular](icons/vivo-new/regular/care-bike-regular.svg) | | | |`care-bike-regular`[![care-bike-regular](.github/resources/anchor.svg)](#care-bike-regular)|
-| |![care-briefcase-regular](icons/vivo-new/regular/care-briefcase-regular.svg) | | | |`care-briefcase-regular`[![care-briefcase-regular](.github/resources/anchor.svg)](#care-briefcase-regular)|
-| |![care-check-regular](icons/vivo-new/regular/care-check-regular.svg) | | | |`care-check-regular`[![care-check-regular](.github/resources/anchor.svg)](#care-check-regular)|
-|![care-filled](icons/telefonica/filled/care-filled.svg) | | | | |`care-filled`[![care-filled](.github/resources/anchor.svg)](#care-filled)|
-|![care-health-filled](icons/telefonica/filled/care-health-filled.svg) | | | | |`care-health-filled`[![care-health-filled](.github/resources/anchor.svg)](#care-health-filled)|
-|![care-health-light](icons/telefonica/light/care-health-light.svg) | | | | |`care-health-light`[![care-health-light](.github/resources/anchor.svg)](#care-health-light)|
-|![care-health-regular](icons/telefonica/regular/care-health-regular.svg) | | | | |`care-health-regular`[![care-health-regular](.github/resources/anchor.svg)](#care-health-regular)|
-| |![care-home-regular](icons/vivo-new/regular/care-home-regular.svg) | | | |`care-home-regular`[![care-home-regular](.github/resources/anchor.svg)](#care-home-regular)|
-| |![care-laptop-regular](icons/vivo-new/regular/care-laptop-regular.svg) | | | |`care-laptop-regular`[![care-laptop-regular](.github/resources/anchor.svg)](#care-laptop-regular)|
-|![care-light](icons/telefonica/light/care-light.svg) | | | | |`care-light`[![care-light](.github/resources/anchor.svg)](#care-light)|
-| |![care-mobile-regular](icons/vivo-new/regular/care-mobile-regular.svg) | | | |`care-mobile-regular`[![care-mobile-regular](.github/resources/anchor.svg)](#care-mobile-regular)|
-| |![care-pet-regular](icons/vivo-new/regular/care-pet-regular.svg) | | | |`care-pet-regular`[![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) | | | |`care-regular`[![care-regular](.github/resources/anchor.svg)](#care-regular)|
-|![care-shield-filled](icons/telefonica/filled/care-shield-filled.svg) | | | | |`care-shield-filled`[![care-shield-filled](.github/resources/anchor.svg)](#care-shield-filled)|
-|![care-shield-light](icons/telefonica/light/care-shield-light.svg) | | | | |`care-shield-light`[![care-shield-light](.github/resources/anchor.svg)](#care-shield-light)|
-|![care-shield-regular](icons/telefonica/regular/care-shield-regular.svg) | | | | |`care-shield-regular`[![care-shield-regular](.github/resources/anchor.svg)](#care-shield-regular)|
-| |![care-win-regular](icons/vivo-new/regular/care-win-regular.svg) | | | |`care-win-regular`[![care-win-regular](.github/resources/anchor.svg)](#care-win-regular)|
-|![casino-filled](icons/telefonica/filled/casino-filled.svg) | | | | |`casino-filled`[![casino-filled](.github/resources/anchor.svg)](#casino-filled)|
-|![casino-light](icons/telefonica/light/casino-light.svg) | | | | |`casino-light`[![casino-light](.github/resources/anchor.svg)](#casino-light)|
-|![casino-regular](icons/telefonica/regular/casino-regular.svg) | | | | |`casino-regular`[![casino-regular](.github/resources/anchor.svg)](#casino-regular)|
-| |![cat-filled](icons/vivo-new/filled/cat-filled.svg) | | | |`cat-filled`[![cat-filled](.github/resources/anchor.svg)](#cat-filled)|
-| |![cat-light](icons/vivo-new/light/cat-light.svg) | | | |`cat-light`[![cat-light](.github/resources/anchor.svg)](#cat-light)|
-| |![cat-regular](icons/vivo-new/regular/cat-regular.svg) | | | |`cat-regular`[![cat-regular](.github/resources/anchor.svg)](#cat-regular)|
-|![certificate-filled](icons/telefonica/filled/certificate-filled.svg) | | | | |`certificate-filled`[![certificate-filled](.github/resources/anchor.svg)](#certificate-filled)|
-|![certificate-light](icons/telefonica/light/certificate-light.svg) | | | | |`certificate-light`[![certificate-light](.github/resources/anchor.svg)](#certificate-light)|
-|![certificate-regular](icons/telefonica/regular/certificate-regular.svg) | | | | |`certificate-regular`[![certificate-regular](.github/resources/anchor.svg)](#certificate-regular)|
-|![change-plan-filled](icons/telefonica/filled/change-plan-filled.svg) | | | | |`change-plan-filled`[![change-plan-filled](.github/resources/anchor.svg)](#change-plan-filled)|
-|![change-plan-light](icons/telefonica/light/change-plan-light.svg) | | | | |`change-plan-light`[![change-plan-light](.github/resources/anchor.svg)](#change-plan-light)|
-|![change-plan-regular](icons/telefonica/regular/change-plan-regular.svg) | | | | |`change-plan-regular`[![change-plan-regular](.github/resources/anchor.svg)](#change-plan-regular)|
-|![change-wifi-password-filled](icons/telefonica/filled/change-wifi-password-filled.svg) | | | | |`change-wifi-password-filled`[![change-wifi-password-filled](.github/resources/anchor.svg)](#change-wifi-password-filled)|
-|![change-wifi-password-light](icons/telefonica/light/change-wifi-password-light.svg) | | | | |`change-wifi-password-light`[![change-wifi-password-light](.github/resources/anchor.svg)](#change-wifi-password-light)|
-|![change-wifi-password-regular](icons/telefonica/regular/change-wifi-password-regular.svg) | | | | |`change-wifi-password-regular`[![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) | |`chart-device-filled`[![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) | |`chart-device-light`[![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) | |`chart-device-regular`[![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) | |`chat-filled`[![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) | |`chat-light`[![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) |`chat-regular`[![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) | |`check-filled`[![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) | |`check-light`[![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) |`check-regular`[![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) | |`checked-filled`[![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) | |`checked-light`[![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) |`checked-regular`[![checked-regular](.github/resources/anchor.svg)](#checked-regular)|
-|![chemistry-filled](icons/telefonica/filled/chemistry-filled.svg) | | | | |`chemistry-filled`[![chemistry-filled](.github/resources/anchor.svg)](#chemistry-filled)|
-|![chemistry-light](icons/telefonica/light/chemistry-light.svg) | | | | |`chemistry-light`[![chemistry-light](.github/resources/anchor.svg)](#chemistry-light)|
-|![chemistry-regular](icons/telefonica/regular/chemistry-regular.svg) | | | | |`chemistry-regular`[![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) | |`chevron-down-light`[![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) |`chevron-down-regular`[![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) | |`chevron-left-light`[![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) |`chevron-left-regular`[![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) | |`chevron-right-light`[![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) |`chevron-right-regular`[![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) | |`chevron-up-light`[![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) |`chevron-up-regular`[![chevron-up-regular](.github/resources/anchor.svg)](#chevron-up-regular)|
-|![child-filled](icons/telefonica/filled/child-filled.svg) | | | | |`child-filled`[![child-filled](.github/resources/anchor.svg)](#child-filled)|
-|![child-light](icons/telefonica/light/child-light.svg) | | | | |`child-light`[![child-light](.github/resources/anchor.svg)](#child-light)|
-|![child-regular](icons/telefonica/regular/child-regular.svg) | | | | |`child-regular`[![child-regular](.github/resources/anchor.svg)](#child-regular)|
-|![chip-device-filled](icons/telefonica/filled/chip-device-filled.svg) | | | | |`chip-device-filled`[![chip-device-filled](.github/resources/anchor.svg)](#chip-device-filled)|
-|![chip-device-light](icons/telefonica/light/chip-device-light.svg) | | | | |`chip-device-light`[![chip-device-light](.github/resources/anchor.svg)](#chip-device-light)|
-|![chip-device-regular](icons/telefonica/regular/chip-device-regular.svg) | | | | |`chip-device-regular`[![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) | |`chip-sim-card-filled`[![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) | |`chip-sim-card-light`[![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) |`chip-sim-card-regular`[![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) | |`circuits-filled`[![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) | |`circuits-light`[![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) | |`circuits-regular`[![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) | |`cleaning-filled`[![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) | |`cleaning-light`[![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) | |`cleaning-regular`[![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) | |`click-and-collect-filled`[![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) | |`click-and-collect-light`[![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) | |`click-and-collect-regular`[![click-and-collect-regular](.github/resources/anchor.svg)](#click-and-collect-regular)|
-|![click-to-call-filled](icons/telefonica/filled/click-to-call-filled.svg) | | | | |`click-to-call-filled`[![click-to-call-filled](.github/resources/anchor.svg)](#click-to-call-filled)|
-|![click-to-call-light](icons/telefonica/light/click-to-call-light.svg) | | | | |`click-to-call-light`[![click-to-call-light](.github/resources/anchor.svg)](#click-to-call-light)|
-|![click-to-call-regular](icons/telefonica/regular/click-to-call-regular.svg) | | | | |`click-to-call-regular`[![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) | |`clip-filled`[![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) | |`clip-light`[![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) | |`clip-regular`[![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) | |`clipboard-filled`[![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) | |`clipboard-light`[![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) | |`clipboard-regular`[![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) | |`cloakroom-filled`[![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) | |`cloakroom-light`[![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) | |`cloakroom-regular`[![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) | |`close-light`[![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) | |`close-regular`[![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) | |`cloud-distribution-alternative-filled`[![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) | |`cloud-distribution-alternative-light`[![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) | |`cloud-distribution-alternative-regular`[![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) | |`cloud-distribution-filled`[![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) | |`cloud-distribution-light`[![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) | |`cloud-distribution-regular`[![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) | |`cloud-filled`[![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) | |`cloud-friends-filled`[![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) | |`cloud-friends-light`[![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) | |`cloud-friends-regular`[![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) | |`cloud-light`[![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) | |`cloud-regular`[![cloud-regular](.github/resources/anchor.svg)](#cloud-regular)|
-|![cloud-upload-filled](icons/telefonica/filled/cloud-upload-filled.svg) | | | | |`cloud-upload-filled`[![cloud-upload-filled](.github/resources/anchor.svg)](#cloud-upload-filled)|
-|![cloud-upload-light](icons/telefonica/light/cloud-upload-light.svg) | | | | |`cloud-upload-light`[![cloud-upload-light](.github/resources/anchor.svg)](#cloud-upload-light)|
-|![cloud-upload-regular](icons/telefonica/regular/cloud-upload-regular.svg) | | | | |`cloud-upload-regular`[![cloud-upload-regular](.github/resources/anchor.svg)](#cloud-upload-regular)|
-|![clover-filled](icons/telefonica/filled/clover-filled.svg) | | | | |`clover-filled`[![clover-filled](.github/resources/anchor.svg)](#clover-filled)|
-|![clover-light](icons/telefonica/light/clover-light.svg) | | | | |`clover-light`[![clover-light](.github/resources/anchor.svg)](#clover-light)|
-|![clover-regular](icons/telefonica/regular/clover-regular.svg) | | | | |`clover-regular`[![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) | |`cocktail-filled`[![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) | |`cocktail-light`[![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) | |`cocktail-regular`[![cocktail-regular](.github/resources/anchor.svg)](#cocktail-regular)|
-|![code-filled](icons/telefonica/filled/code-filled.svg) | | | | |`code-filled`[![code-filled](.github/resources/anchor.svg)](#code-filled)|
-|![code-light](icons/telefonica/light/code-light.svg) | | | | |`code-light`[![code-light](.github/resources/anchor.svg)](#code-light)|
-|![code-regular](icons/telefonica/regular/code-regular.svg) | | | | |`code-regular`[![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) | |`coffee-tea-filled`[![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) | |`coffee-tea-light`[![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) | |`coffee-tea-regular`[![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) | |`coins-filled`[![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) | |`coins-light`[![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) | |`coins-regular`[![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) | |[![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) | |[![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) | |[![comment-regular](.github/resources/anchor.svg)](#comment-regular)|
-|![computer-academic-filled](icons/telefonica/filled/computer-academic-filled.svg) | | | | |`computer-academic-filled`[![computer-academic-filled](.github/resources/anchor.svg)](#computer-academic-filled)|
-|![computer-academic-regular](icons/telefonica/regular/computer-academic-regular.svg) | | | | |`computer-academic-regular`[![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) | |`computer-filled`[![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) | |`computer-light`[![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) |`computer-regular`[![computer-regular](.github/resources/anchor.svg)](#computer-regular)|
-|![computer-user-filled](icons/telefonica/filled/computer-user-filled.svg) | | | | |`computer-user-filled`[![computer-user-filled](.github/resources/anchor.svg)](#computer-user-filled)|
-|![computer-user-light](icons/telefonica/light/computer-user-light.svg) | | | | |`computer-user-light`[![computer-user-light](.github/resources/anchor.svg)](#computer-user-light)|
-|![computer-user-regular](icons/telefonica/regular/computer-user-regular.svg) | | | | |`computer-user-regular`[![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) | |`conference-call-filled`[![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) | |`conference-call-light`[![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) | |`conference-call-regular`[![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) | |`conference-filled`[![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) | |`conference-light`[![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) | |`conference-regular`[![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) | |`configure-device-filled`[![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) | |`configure-device-light`[![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) | |`configure-device-regular`[![configure-device-regular](.github/resources/anchor.svg)](#configure-device-regular)|
-|![configure-modem-filled](icons/telefonica/filled/configure-modem-filled.svg) | | | | |`configure-modem-filled`[![configure-modem-filled](.github/resources/anchor.svg)](#configure-modem-filled)|
-|![configure-modem-light](icons/telefonica/light/configure-modem-light.svg) | | | | |`configure-modem-light`[![configure-modem-light](.github/resources/anchor.svg)](#configure-modem-light)|
-|![configure-modem-regular](icons/telefonica/regular/configure-modem-regular.svg) | | | | |`configure-modem-regular`[![configure-modem-regular](.github/resources/anchor.svg)](#configure-modem-regular)|
-|![configure-tv-decoder-filled](icons/telefonica/filled/configure-tv-decoder-filled.svg) | | | | |`configure-tv-decoder-filled`[![configure-tv-decoder-filled](.github/resources/anchor.svg)](#configure-tv-decoder-filled)|
-|![configure-tv-decoder-light](icons/telefonica/light/configure-tv-decoder-light.svg) | | | | |`configure-tv-decoder-light`[![configure-tv-decoder-light](.github/resources/anchor.svg)](#configure-tv-decoder-light)|
-|![configure-tv-decoder-regular](icons/telefonica/regular/configure-tv-decoder-regular.svg) | | | | |`configure-tv-decoder-regular`[![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) | |`connected-car-filled`[![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) | |`connected-car-light`[![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) | |`connected-car-regular`[![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) | |`connections-filled`[![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) | |`connections-light`[![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) | |`connections-regular`[![connections-regular](.github/resources/anchor.svg)](#connections-regular)|
-|![contact-book-filled](icons/telefonica/filled/contact-book-filled.svg) | | | | |`contact-book-filled`[![contact-book-filled](.github/resources/anchor.svg)](#contact-book-filled)|
-|![contact-book-light](icons/telefonica/light/contact-book-light.svg) | | | | |`contact-book-light`[![contact-book-light](.github/resources/anchor.svg)](#contact-book-light)|
-|![contact-book-regular](icons/telefonica/regular/contact-book-regular.svg) | | | | |`contact-book-regular`[![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) | |`contact-us-filled`[![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) | |`contact-us-light`[![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) | |`contact-us-regular`[![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) | |`contactless-payments-euro-filled`[![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) | |`contactless-payments-euro-light`[![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) | |`contactless-payments-euro-regular`[![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) | |`contactless-payments-pound-filled`[![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) | |`contactless-payments-pound-light`[![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) | |`contactless-payments-pound-regular`[![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) | |`controls-filled`[![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) | |`controls-light`[![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) | |`controls-regular`[![controls-regular](.github/resources/anchor.svg)](#controls-regular)|
-|![cooking-filled](icons/telefonica/filled/cooking-filled.svg) | | | | |`cooking-filled`[![cooking-filled](.github/resources/anchor.svg)](#cooking-filled)|
-|![cooking-light](icons/telefonica/light/cooking-light.svg) | | | | |`cooking-light`[![cooking-light](.github/resources/anchor.svg)](#cooking-light)|
-|![cooking-regular](icons/telefonica/regular/cooking-regular.svg) | | | | |`cooking-regular`[![cooking-regular](.github/resources/anchor.svg)](#cooking-regular)|
-|![copy-filled](icons/telefonica/filled/copy-filled.svg) | | | | |`copy-filled`[![copy-filled](.github/resources/anchor.svg)](#copy-filled)|
-|![copy-light](icons/telefonica/light/copy-light.svg) | | | | |`copy-light`[![copy-light](.github/resources/anchor.svg)](#copy-light)|
-|![copy-regular](icons/telefonica/regular/copy-regular.svg) | | | | |`copy-regular`[![copy-regular](.github/resources/anchor.svg)](#copy-regular)|
-|![cough-syrup-filled](icons/telefonica/filled/cough-syrup-filled.svg) | | | | |`cough-syrup-filled`[![cough-syrup-filled](.github/resources/anchor.svg)](#cough-syrup-filled)|
-|![cough-syrup-light](icons/telefonica/light/cough-syrup-light.svg) | | | | |`cough-syrup-light`[![cough-syrup-light](.github/resources/anchor.svg)](#cough-syrup-light)|
-|![cough-syrup-regular](icons/telefonica/regular/cough-syrup-regular.svg) | | | | |`cough-syrup-regular`[![cough-syrup-regular](.github/resources/anchor.svg)](#cough-syrup-regular)|
-|![cowboy-lasso-light](icons/telefonica/light/cowboy-lasso-light.svg) | | | | |`cowboy-lasso-light`[![cowboy-lasso-light](.github/resources/anchor.svg)](#cowboy-lasso-light)|
-|![cowboy-lasso-regular](icons/telefonica/regular/cowboy-lasso-regular.svg) | | | | |`cowboy-lasso-regular`[![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) | |`credit-balance-euro-filled`[![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) | |`credit-balance-euro-light`[![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) | |`credit-balance-euro-regular`[![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) | |`credit-balance-pound-filled`[![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) | |`credit-balance-pound-light`[![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) | |`credit-balance-pound-regular`[![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) | |`credit-card-filled`[![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) | |`credit-card-light`[![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) |`credit-card-regular`[![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) | |`credit-card-visa-filled`[![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) | |`credit-card-visa-light`[![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) | |`credit-card-visa-regular`[![credit-card-visa-regular](.github/resources/anchor.svg)](#credit-card-visa-regular)|
-| |![curtain-regular](icons/vivo-new/regular/curtain-regular.svg) | | | |`curtain-regular`[![curtain-regular](.github/resources/anchor.svg)](#curtain-regular)|
-|![cut-filled](icons/telefonica/filled/cut-filled.svg) | | | | |`cut-filled`[![cut-filled](.github/resources/anchor.svg)](#cut-filled)|
-|![cut-light](icons/telefonica/light/cut-light.svg) | | | | |`cut-light`[![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) | |`dartboard-filled`[![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) | |`dartboard-light`[![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) | |`dartboard-regular`[![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) | |`data-10-gb-filled`[![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) | |`data-10-gb-light`[![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) | |`data-10-gb-regular`[![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) | |`data-100-gb-filled`[![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) | |`data-100-gb-light`[![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) | |`data-100-gb-regular`[![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) | |`data-30-gb-filled`[![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) | |`data-30-gb-light`[![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) | |`data-30-gb-regular`[![data-30-gb-regular](.github/resources/anchor.svg)](#data-30-gb-regular)|
-|![data-alert-filled](icons/telefonica/filled/data-alert-filled.svg) | | | | |`data-alert-filled`[![data-alert-filled](.github/resources/anchor.svg)](#data-alert-filled)|
-|![data-alert-light](icons/telefonica/light/data-alert-light.svg) | | | | |`data-alert-light`[![data-alert-light](.github/resources/anchor.svg)](#data-alert-light)|
-|![data-alert-regular](icons/telefonica/regular/data-alert-regular.svg) | | | | |`data-alert-regular`[![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) | |`data-bonus-filled`[![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) | |`data-bonus-light`[![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) | |`data-bonus-regular`[![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) | |`data-centre-filled`[![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) | |`data-centre-light`[![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) | |`data-centre-regular`[![data-centre-regular](.github/resources/anchor.svg)](#data-centre-regular)|
-|![data-checked-filled](icons/telefonica/filled/data-checked-filled.svg) | | | | |`data-checked-filled`[![data-checked-filled](.github/resources/anchor.svg)](#data-checked-filled)|
-|![data-checked-light](icons/telefonica/light/data-checked-light.svg) | | | | |`data-checked-light`[![data-checked-light](.github/resources/anchor.svg)](#data-checked-light)|
-|![data-checked-regular](icons/telefonica/regular/data-checked-regular.svg) | | | | |`data-checked-regular`[![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) | |`data-cloud-filled`[![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) | |`data-cloud-light`[![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) | |`data-cloud-regular`[![data-cloud-regular](.github/resources/anchor.svg)](#data-cloud-regular)|
-|![data-distribution-filled](icons/telefonica/filled/data-distribution-filled.svg) | | | | |`data-distribution-filled`[![data-distribution-filled](.github/resources/anchor.svg)](#data-distribution-filled)|
-|![data-distribution-light](icons/telefonica/light/data-distribution-light.svg) | | | | |`data-distribution-light`[![data-distribution-light](.github/resources/anchor.svg)](#data-distribution-light)|
-|![data-distribution-regular](icons/telefonica/regular/data-distribution-regular.svg) | | | | |`data-distribution-regular`[![data-distribution-regular](.github/resources/anchor.svg)](#data-distribution-regular)|
-|![data-filled](icons/telefonica/filled/data-filled.svg) | | | | |`data-filled`[![data-filled](.github/resources/anchor.svg)](#data-filled)|
-|![data-light](icons/telefonica/light/data-light.svg) | | | | |`data-light`[![data-light](.github/resources/anchor.svg)](#data-light)|
-|![data-network-filled](icons/telefonica/filled/data-network-filled.svg) | | | | |`data-network-filled`[![data-network-filled](.github/resources/anchor.svg)](#data-network-filled)|
-|![data-network-light](icons/telefonica/light/data-network-light.svg) | | | | |`data-network-light`[![data-network-light](.github/resources/anchor.svg)](#data-network-light)|
-|![data-network-regular](icons/telefonica/regular/data-network-regular.svg) | | | | |`data-network-regular`[![data-network-regular](.github/resources/anchor.svg)](#data-network-regular)|
-|![data-regular](icons/telefonica/regular/data-regular.svg) | | | | |`data-regular`[![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) | |`data-rollover-filled`[![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) | |`data-rollover-light`[![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) | |`data-rollover-regular`[![data-rollover-regular](.github/resources/anchor.svg)](#data-rollover-regular)|
-|![data-settings-filled](icons/telefonica/filled/data-settings-filled.svg) | | | | |`data-settings-filled`[![data-settings-filled](.github/resources/anchor.svg)](#data-settings-filled)|
-|![data-settings-light](icons/telefonica/light/data-settings-light.svg) | | | | |`data-settings-light`[![data-settings-light](.github/resources/anchor.svg)](#data-settings-light)|
-|![data-settings-regular](icons/telefonica/regular/data-settings-regular.svg) | | | | |`data-settings-regular`[![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) | |`data-shield-filled`[![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) | |`data-shield-light`[![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) |`data-shield-regular`[![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) | |`data-unlimited-filled`[![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) | |`data-unlimited-light`[![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) | |`data-unlimited-regular`[![data-unlimited-regular](.github/resources/anchor.svg)](#data-unlimited-regular)|
-|![data-virus-filled](icons/telefonica/filled/data-virus-filled.svg) | | | | |`data-virus-filled`[![data-virus-filled](.github/resources/anchor.svg)](#data-virus-filled)|
-|![data-virus-light](icons/telefonica/light/data-virus-light.svg) | | | | |`data-virus-light`[![data-virus-light](.github/resources/anchor.svg)](#data-virus-light)|
-|![data-virus-regular](icons/telefonica/regular/data-virus-regular.svg) | | | | |`data-virus-regular`[![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) | |`database-connected-filled`[![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) | |`database-connected-light`[![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) | |`database-connected-regular`[![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) | |`database-filled`[![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) | |`database-light`[![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) | |`database-regular`[![database-regular](.github/resources/anchor.svg)](#database-regular)|
-|![delivery-van-moving-filled](icons/telefonica/filled/delivery-van-moving-filled.svg) | | | | |`delivery-van-moving-filled`[![delivery-van-moving-filled](.github/resources/anchor.svg)](#delivery-van-moving-filled)|
-|![delivery-van-moving-light](icons/telefonica/light/delivery-van-moving-light.svg) | | | | |`delivery-van-moving-light`[![delivery-van-moving-light](.github/resources/anchor.svg)](#delivery-van-moving-light)|
-|![delivery-van-moving-regular](icons/telefonica/regular/delivery-van-moving-regular.svg) | | | | |`delivery-van-moving-regular`[![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) | |`desk-filled`[![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) | |`desk-light`[![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) | |`desk-regular`[![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) | |`device-signal-filled`[![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) | |`device-signal-light`[![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) | |`device-signal-regular`[![device-signal-regular](.github/resources/anchor.svg)](#device-signal-regular)|
-|![diamond-filled](icons/telefonica/filled/diamond-filled.svg) | | | | |`diamond-filled`[![diamond-filled](.github/resources/anchor.svg)](#diamond-filled)|
-|![diamond-light](icons/telefonica/light/diamond-light.svg) | | | | |`diamond-light`[![diamond-light](.github/resources/anchor.svg)](#diamond-light)|
-|![diamond-regular](icons/telefonica/regular/diamond-regular.svg) | | | | |`diamond-regular`[![diamond-regular](.github/resources/anchor.svg)](#diamond-regular)|
-|![digital-library-filled](icons/telefonica/filled/digital-library-filled.svg) | | | | |`digital-library-filled`[![digital-library-filled](.github/resources/anchor.svg)](#digital-library-filled)|
-|![digital-library-light](icons/telefonica/light/digital-library-light.svg) | | | | |`digital-library-light`[![digital-library-light](.github/resources/anchor.svg)](#digital-library-light)|
-|![digital-library-regular](icons/telefonica/regular/digital-library-regular.svg) | | | | |`digital-library-regular`[![digital-library-regular](.github/resources/anchor.svg)](#digital-library-regular)|
-|![disable-filled](icons/telefonica/filled/disable-filled.svg) | | | | |`disable-filled`[![disable-filled](.github/resources/anchor.svg)](#disable-filled)|
-|![disable-light](icons/telefonica/light/disable-light.svg) | | | | |`disable-light`[![disable-light](.github/resources/anchor.svg)](#disable-light)|
-|![disable-regular](icons/telefonica/regular/disable-regular.svg) | | | | |`disable-regular`[![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) | |`disabled-filled`[![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) | |`disabled-light`[![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) | |`disabled-regular`[![disabled-regular](.github/resources/anchor.svg)](#disabled-regular)|
-|![disconnect-filled](icons/telefonica/filled/disconnect-filled.svg) | | | | |`disconnect-filled`[![disconnect-filled](.github/resources/anchor.svg)](#disconnect-filled)|
-|![disconnect-light](icons/telefonica/light/disconnect-light.svg) | | | | |`disconnect-light`[![disconnect-light](.github/resources/anchor.svg)](#disconnect-light)|
-|![disconnect-regular](icons/telefonica/regular/disconnect-regular.svg) | | | | |`disconnect-regular`[![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) | |`disturb-filled`[![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) | |`disturb-light`[![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) | |`disturb-regular`[![disturb-regular](.github/resources/anchor.svg)](#disturb-regular)|
-|![dna-filled](icons/telefonica/filled/dna-filled.svg) | | | | |`dna-filled`[![dna-filled](.github/resources/anchor.svg)](#dna-filled)|
-|![dna-light](icons/telefonica/light/dna-light.svg) | | | | |`dna-light`[![dna-light](.github/resources/anchor.svg)](#dna-light)|
-|![dna-regular](icons/telefonica/regular/dna-regular.svg) | | | | |`dna-regular`[![dna-regular](.github/resources/anchor.svg)](#dna-regular)|
-|![document-other-filled](icons/telefonica/filled/document-other-filled.svg) | | | | |`document-other-filled`[![document-other-filled](.github/resources/anchor.svg)](#document-other-filled)|
-|![document-other-light](icons/telefonica/light/document-other-light.svg) | | | | |`document-other-light`[![document-other-light](.github/resources/anchor.svg)](#document-other-light)|
-|![document-other-regular](icons/telefonica/regular/document-other-regular.svg) | | | | |`document-other-regular`[![document-other-regular](.github/resources/anchor.svg)](#document-other-regular)|
-|![documents-filled](icons/telefonica/filled/documents-filled.svg) | | | | |`documents-filled`[![documents-filled](.github/resources/anchor.svg)](#documents-filled)|
-|![documents-light](icons/telefonica/light/documents-light.svg) | | | | |`documents-light`[![documents-light](.github/resources/anchor.svg)](#documents-light)|
-|![documents-regular](icons/telefonica/regular/documents-regular.svg) | | | | |`documents-regular`[![documents-regular](.github/resources/anchor.svg)](#documents-regular)|
-| |![dog-filled](icons/vivo-new/filled/dog-filled.svg) | | | |`dog-filled`[![dog-filled](.github/resources/anchor.svg)](#dog-filled)|
-| |![dog-light](icons/vivo-new/light/dog-light.svg) | | | |`dog-light`[![dog-light](.github/resources/anchor.svg)](#dog-light)|
-| |![dog-regular](icons/vivo-new/regular/dog-regular.svg) | | | |`dog-regular`[![dog-regular](.github/resources/anchor.svg)](#dog-regular)|
-|![dollar-symbol-circle-filled](icons/telefonica/filled/dollar-symbol-circle-filled.svg) | | | | |`dollar-symbol-circle-filled`[![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) | | | |`dollar-symbol-circle-light`[![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) | | | |`dollar-symbol-circle-regular`[![dollar-symbol-circle-regular](.github/resources/anchor.svg)](#dollar-symbol-circle-regular)|
-|![dollar-symbol-filled](icons/telefonica/filled/dollar-symbol-filled.svg) | | | | |`dollar-symbol-filled`[![dollar-symbol-filled](.github/resources/anchor.svg)](#dollar-symbol-filled)|
-|![dollar-symbol-light](icons/telefonica/light/dollar-symbol-light.svg) | | | | |`dollar-symbol-light`[![dollar-symbol-light](.github/resources/anchor.svg)](#dollar-symbol-light)|
-|![dollar-symbol-regular](icons/telefonica/regular/dollar-symbol-regular.svg) | | | | |`dollar-symbol-regular`[![dollar-symbol-regular](.github/resources/anchor.svg)](#dollar-symbol-regular)|
-| |![door-lock-regular](icons/vivo-new/regular/door-lock-regular.svg) | | | |`door-lock-regular`[![door-lock-regular](.github/resources/anchor.svg)](#door-lock-regular)|
-|![download-app-filled](icons/telefonica/filled/download-app-filled.svg) | | | | |`download-app-filled`[![download-app-filled](.github/resources/anchor.svg)](#download-app-filled)|
-|![download-app-light](icons/telefonica/light/download-app-light.svg) | | | | |`download-app-light`[![download-app-light](.github/resources/anchor.svg)](#download-app-light)|
-|![download-app-regular](icons/telefonica/regular/download-app-regular.svg) | | | | |`download-app-regular`[![download-app-regular](.github/resources/anchor.svg)](#download-app-regular)|
-|![download-cloud-filled](icons/telefonica/filled/download-cloud-filled.svg) | | | | |`download-cloud-filled`[![download-cloud-filled](.github/resources/anchor.svg)](#download-cloud-filled)|
-|![download-cloud-light](icons/telefonica/light/download-cloud-light.svg) | | | | |`download-cloud-light`[![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) |`download-cloud-regular`[![download-cloud-regular](.github/resources/anchor.svg)](#download-cloud-regular)|
-|![download-filled](icons/telefonica/filled/download-filled.svg) | | | | |`download-filled`[![download-filled](.github/resources/anchor.svg)](#download-filled)|
-|![download-light](icons/telefonica/light/download-light.svg) | | | | |`download-light`[![download-light](.github/resources/anchor.svg)](#download-light)|
-|![download-regular](icons/telefonica/regular/download-regular.svg) | | | |![download-regular](icons/blau/regular/download-regular.svg) |`download-regular`[![download-regular](.github/resources/anchor.svg)](#download-regular)|
-|![drink-filled](icons/telefonica/filled/drink-filled.svg) | | | | |`drink-filled`[![drink-filled](.github/resources/anchor.svg)](#drink-filled)|
-|![drink-light](icons/telefonica/light/drink-light.svg) | | | | |`drink-light`[![drink-light](.github/resources/anchor.svg)](#drink-light)|
-|![drink-regular](icons/telefonica/regular/drink-regular.svg) | | | | |`drink-regular`[![drink-regular](.github/resources/anchor.svg)](#drink-regular)|
-|![dumbbell-filled](icons/telefonica/filled/dumbbell-filled.svg) | | | | |`dumbbell-filled`[![dumbbell-filled](.github/resources/anchor.svg)](#dumbbell-filled)|
-|![dumbbell-light](icons/telefonica/light/dumbbell-light.svg) | | | | |`dumbbell-light`[![dumbbell-light](.github/resources/anchor.svg)](#dumbbell-light)|
-|![dumbbell-regular](icons/telefonica/regular/dumbbell-regular.svg) | | | | |`dumbbell-regular`[![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) | |`ear-plug-filled`[![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) | |`ear-plug-regular`[![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) | |`eco-filled`[![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) | |`eco-light`[![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) | |`eco-regular`[![eco-regular](.github/resources/anchor.svg)](#eco-regular)|
-|![edit-filled](icons/telefonica/filled/edit-filled.svg) | | | | |`edit-filled`[![edit-filled](.github/resources/anchor.svg)](#edit-filled)|
-|![edit-light](icons/telefonica/light/edit-light.svg) | | | | |`edit-light`[![edit-light](.github/resources/anchor.svg)](#edit-light)|
-|![edit-paper-light](icons/telefonica/light/edit-paper-light.svg) | | | | |`edit-paper-light`[![edit-paper-light](.github/resources/anchor.svg)](#edit-paper-light)|
-|![edit-paper-regular](icons/telefonica/regular/edit-paper-regular.svg) | | | | |`edit-paper-regular`[![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) | | | |`edit-pencil-light`[![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) |`edit-pencil-regular`[![edit-pencil-regular](.github/resources/anchor.svg)](#edit-pencil-regular)|
-|![edit-regular](icons/telefonica/regular/edit-regular.svg) | | | | |`edit-regular`[![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) | |`electrocardiogram-filled`[![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) | |`electrocardiogram-light`[![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) | |`electrocardiogram-regular`[![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) | |`email-filled`[![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) | |`email-light`[![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) |`email-regular`[![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) | |`email-send-filled`[![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) | |`email-send-light`[![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) | |`email-send-regular`[![email-send-regular](.github/resources/anchor.svg)](#email-send-regular)|
-|![email-virus-filled](icons/telefonica/filled/email-virus-filled.svg) | | | | |`email-virus-filled`[![email-virus-filled](.github/resources/anchor.svg)](#email-virus-filled)|
-|![email-virus-light](icons/telefonica/light/email-virus-light.svg) | | | | |`email-virus-light`[![email-virus-light](.github/resources/anchor.svg)](#email-virus-light)|
-|![email-virus-regular](icons/telefonica/regular/email-virus-regular.svg) | | | | |`email-virus-regular`[![email-virus-regular](.github/resources/anchor.svg)](#email-virus-regular)|
-|![emergency-cross-filled](icons/telefonica/filled/emergency-cross-filled.svg) | | | | |`emergency-cross-filled`[![emergency-cross-filled](.github/resources/anchor.svg)](#emergency-cross-filled)|
-|![emergency-cross-light](icons/telefonica/light/emergency-cross-light.svg) | | | | |`emergency-cross-light`[![emergency-cross-light](.github/resources/anchor.svg)](#emergency-cross-light)|
-|![emergency-cross-regular](icons/telefonica/regular/emergency-cross-regular.svg) | | | | |`emergency-cross-regular`[![emergency-cross-regular](.github/resources/anchor.svg)](#emergency-cross-regular)|
-|![emergency-cross-with-circle-filled](icons/telefonica/filled/emergency-cross-with-circle-filled.svg) | | | | |`emergency-cross-with-circle-filled`[![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) | | | | |`emergency-cross-with-circle-light`[![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) | | | | |`emergency-cross-with-circle-regular`[![emergency-cross-with-circle-regular](.github/resources/anchor.svg)](#emergency-cross-with-circle-regular)|
-|![error-filled](icons/telefonica/filled/error-filled.svg) | | | | |`error-filled`[![error-filled](.github/resources/anchor.svg)](#error-filled)|
-|![error-light](icons/telefonica/light/error-light.svg) | | | | |`error-light`[![error-light](.github/resources/anchor.svg)](#error-light)|
-|![error-regular](icons/telefonica/regular/error-regular.svg) | | | | |`error-regular`[![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) | |`escalator-filled`[![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) | |`escalator-light`[![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) | |`escalator-regular`[![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) | |`esim-filled`[![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) | |`esim-light`[![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) | |`esim-regular`[![esim-regular](.github/resources/anchor.svg)](#esim-regular)|
-| |![ethernet-filled](icons/vivo-new/filled/ethernet-filled.svg) | | | |`ethernet-filled`[![ethernet-filled](.github/resources/anchor.svg)](#ethernet-filled)|
-| |![ethernet-light](icons/vivo-new/light/ethernet-light.svg) | | | |`ethernet-light`[![ethernet-light](.github/resources/anchor.svg)](#ethernet-light)|
-| |![ethernet-regular](icons/vivo-new/regular/ethernet-regular.svg) | | | |`ethernet-regular`[![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) | |`euro-symbol-circle-filled`[![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) | |`euro-symbol-circle-light`[![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) | |`euro-symbol-circle-regular`[![euro-symbol-circle-regular](.github/resources/anchor.svg)](#euro-symbol-circle-regular)|
-|![euro-symbol-filled](icons/telefonica/filled/euro-symbol-filled.svg) | | | | |`euro-symbol-filled`[![euro-symbol-filled](.github/resources/anchor.svg)](#euro-symbol-filled)|
-|![euro-symbol-light](icons/telefonica/light/euro-symbol-light.svg) | | | | |`euro-symbol-light`[![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) |`euro-symbol-regular`[![euro-symbol-regular](.github/resources/anchor.svg)](#euro-symbol-regular)|
-|![exchange-filled](icons/telefonica/filled/exchange-filled.svg) | | | | |`exchange-filled`[![exchange-filled](.github/resources/anchor.svg)](#exchange-filled)|
-|![exchange-light](icons/telefonica/light/exchange-light.svg) | | | | |`exchange-light`[![exchange-light](.github/resources/anchor.svg)](#exchange-light)|
-|![exchange-regular](icons/telefonica/regular/exchange-regular.svg) | | | | |`exchange-regular`[![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) | |`exit-door-filled`[![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) | |`exit-door-light`[![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) | |`exit-door-regular`[![exit-door-regular](.github/resources/anchor.svg)](#exit-door-regular)|
-|![exit-fullscreen-light](icons/telefonica/light/exit-fullscreen-light.svg) | | | | |`exit-fullscreen-light`[![exit-fullscreen-light](.github/resources/anchor.svg)](#exit-fullscreen-light)|
-|![exit-fullscreen-regular](icons/telefonica/regular/exit-fullscreen-regular.svg) | | | | |`exit-fullscreen-regular`[![exit-fullscreen-regular](.github/resources/anchor.svg)](#exit-fullscreen-regular)|
-|![export-light](icons/telefonica/light/export-light.svg) | | | | |`export-light`[![export-light](.github/resources/anchor.svg)](#export-light)|
-|![export-regular](icons/telefonica/regular/export-regular.svg) | | | | |`export-regular`[![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) | |`eye-filled`[![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) | |`eye-light`[![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) | |`eye-off-filled`[![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) | |`eye-off-light`[![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) | |`eye-off-regular`[![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) |`eye-regular`[![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) |`face-happy-filled`[![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) | |`face-happy-light`[![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) |`face-happy-regular`[![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) |`face-neutral-filled`[![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) | |`face-neutral-light`[![face-neutral-light](.github/resources/anchor.svg)](#face-neutral-light)|
-| | | |![face-neutral-light](icons/o2/regular/face-neutral-light.svg) | |`face-neutral-light`[![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) |`face-neutral-regular`[![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) |`face-sad-filled`[![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) | |`face-sad-light`[![face-sad-light](.github/resources/anchor.svg)](#face-sad-light)|
-| | | |![face-sad-light](icons/o2/regular/face-sad-light.svg) | |`face-sad-light`[![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) |`face-sad-regular`[![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) |`face-slightly-sad-filled`[![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) | |`face-slightly-sad-light`[![face-slightly-sad-light](.github/resources/anchor.svg)](#face-slightly-sad-light)|
-| | | |![face-slightly-sad-light](icons/o2/regular/face-slightly-sad-light.svg) | |`face-slightly-sad-light`[![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) |`face-slightly-sad-regular`[![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) |`face-super-happy-filled`[![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) | |`face-super-happy-light`[![face-super-happy-light](.github/resources/anchor.svg)](#face-super-happy-light)|
-| | | |![face-super-happy-light](icons/o2/regular/face-super-happy-light.svg) | |`face-super-happy-light`[![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) |`face-super-happy-regular`[![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) | |`family-filled`[![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) | |`family-light`[![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) | |`family-regular`[![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) | |`fast-forward-filled`[![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) | |`fast-forward-light`[![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) | |`fast-forward-regular`[![fast-forward-regular](.github/resources/anchor.svg)](#fast-forward-regular)|
-|![file-avi-filled](icons/telefonica/filled/file-avi-filled.svg) | | | | |`file-avi-filled`[![file-avi-filled](.github/resources/anchor.svg)](#file-avi-filled)|
-|![file-avi-light](icons/telefonica/light/file-avi-light.svg) | | | | |`file-avi-light`[![file-avi-light](.github/resources/anchor.svg)](#file-avi-light)|
-|![file-avi-regular](icons/telefonica/regular/file-avi-regular.svg) | | | | |`file-avi-regular`[![file-avi-regular](.github/resources/anchor.svg)](#file-avi-regular)|
-|![file-blocked-filled](icons/telefonica/filled/file-blocked-filled.svg) | | | | |`file-blocked-filled`[![file-blocked-filled](.github/resources/anchor.svg)](#file-blocked-filled)|
-|![file-blocked-light](icons/telefonica/light/file-blocked-light.svg) | | | | |`file-blocked-light`[![file-blocked-light](.github/resources/anchor.svg)](#file-blocked-light)|
-|![file-blocked-regular](icons/telefonica/regular/file-blocked-regular.svg) | | | | |`file-blocked-regular`[![file-blocked-regular](.github/resources/anchor.svg)](#file-blocked-regular)|
-|![file-box-filled](icons/telefonica/filled/file-box-filled.svg) | | | | |`file-box-filled`[![file-box-filled](.github/resources/anchor.svg)](#file-box-filled)|
-|![file-box-light](icons/telefonica/light/file-box-light.svg) | | | | |`file-box-light`[![file-box-light](.github/resources/anchor.svg)](#file-box-light)|
-|![file-box-regular](icons/telefonica/regular/file-box-regular.svg) | | | | |`file-box-regular`[![file-box-regular](.github/resources/anchor.svg)](#file-box-regular)|
-|![file-compressed-filled](icons/telefonica/filled/file-compressed-filled.svg) | | | | |`file-compressed-filled`[![file-compressed-filled](.github/resources/anchor.svg)](#file-compressed-filled)|
-|![file-compressed-light](icons/telefonica/light/file-compressed-light.svg) | | | | |`file-compressed-light`[![file-compressed-light](.github/resources/anchor.svg)](#file-compressed-light)|
-|![file-compressed-regular](icons/telefonica/regular/file-compressed-regular.svg) | | | | |`file-compressed-regular`[![file-compressed-regular](.github/resources/anchor.svg)](#file-compressed-regular)|
-|![file-css-filled](icons/telefonica/filled/file-css-filled.svg) | | | | |`file-css-filled`[![file-css-filled](.github/resources/anchor.svg)](#file-css-filled)|
-|![file-css-light](icons/telefonica/light/file-css-light.svg) | | | | |`file-css-light`[![file-css-light](.github/resources/anchor.svg)](#file-css-light)|
-|![file-css-regular](icons/telefonica/regular/file-css-regular.svg) | | | | |`file-css-regular`[![file-css-regular](.github/resources/anchor.svg)](#file-css-regular)|
-|![file-encrypted-filled](icons/telefonica/filled/file-encrypted-filled.svg) | | | | |`file-encrypted-filled`[![file-encrypted-filled](.github/resources/anchor.svg)](#file-encrypted-filled)|
-|![file-encrypted-light](icons/telefonica/light/file-encrypted-light.svg) | | | | |`file-encrypted-light`[![file-encrypted-light](.github/resources/anchor.svg)](#file-encrypted-light)|
-|![file-encrypted-regular](icons/telefonica/regular/file-encrypted-regular.svg) | | | | |`file-encrypted-regular`[![file-encrypted-regular](.github/resources/anchor.svg)](#file-encrypted-regular)|
-|![file-enex-filled](icons/telefonica/filled/file-enex-filled.svg) | | | | |`file-enex-filled`[![file-enex-filled](.github/resources/anchor.svg)](#file-enex-filled)|
-|![file-enex-light](icons/telefonica/light/file-enex-light.svg) | | | | |`file-enex-light`[![file-enex-light](.github/resources/anchor.svg)](#file-enex-light)|
-|![file-enex-regular](icons/telefonica/regular/file-enex-regular.svg) | | | | |`file-enex-regular`[![file-enex-regular](.github/resources/anchor.svg)](#file-enex-regular)|
-|![file-error-filled](icons/telefonica/filled/file-error-filled.svg) | | | | |`file-error-filled`[![file-error-filled](.github/resources/anchor.svg)](#file-error-filled)|
-|![file-error-light](icons/telefonica/light/file-error-light.svg) | | | | |`file-error-light`[![file-error-light](.github/resources/anchor.svg)](#file-error-light)|
-|![file-error-regular](icons/telefonica/regular/file-error-regular.svg) | | | | |`file-error-regular`[![file-error-regular](.github/resources/anchor.svg)](#file-error-regular)|
-|![file-html-filled](icons/telefonica/filled/file-html-filled.svg) | | | | |`file-html-filled`[![file-html-filled](.github/resources/anchor.svg)](#file-html-filled)|
-|![file-html-light](icons/telefonica/light/file-html-light.svg) | | | | |`file-html-light`[![file-html-light](.github/resources/anchor.svg)](#file-html-light)|
-|![file-html-regular](icons/telefonica/regular/file-html-regular.svg) | | | | |`file-html-regular`[![file-html-regular](.github/resources/anchor.svg)](#file-html-regular)|
-|![file-illustrator-filled](icons/telefonica/filled/file-illustrator-filled.svg) | | | | |`file-illustrator-filled`[![file-illustrator-filled](.github/resources/anchor.svg)](#file-illustrator-filled)|
-|![file-illustrator-light](icons/telefonica/light/file-illustrator-light.svg) | | | | |`file-illustrator-light`[![file-illustrator-light](.github/resources/anchor.svg)](#file-illustrator-light)|
-|![file-illustrator-regular](icons/telefonica/regular/file-illustrator-regular.svg) | | | | |`file-illustrator-regular`[![file-illustrator-regular](.github/resources/anchor.svg)](#file-illustrator-regular)|
-|![file-image-filled](icons/telefonica/filled/file-image-filled.svg) | | | | |`file-image-filled`[![file-image-filled](.github/resources/anchor.svg)](#file-image-filled)|
-|![file-image-light](icons/telefonica/light/file-image-light.svg) | | | | |`file-image-light`[![file-image-light](.github/resources/anchor.svg)](#file-image-light)|
-|![file-image-regular](icons/telefonica/regular/file-image-regular.svg) | | | | |`file-image-regular`[![file-image-regular](.github/resources/anchor.svg)](#file-image-regular)|
-|![file-jpeg-filled](icons/telefonica/filled/file-jpeg-filled.svg) | | | | |`file-jpeg-filled`[![file-jpeg-filled](.github/resources/anchor.svg)](#file-jpeg-filled)|
-|![file-jpeg-light](icons/telefonica/light/file-jpeg-light.svg) | | | | |`file-jpeg-light`[![file-jpeg-light](.github/resources/anchor.svg)](#file-jpeg-light)|
-|![file-jpeg-regular](icons/telefonica/regular/file-jpeg-regular.svg) | | | | |`file-jpeg-regular`[![file-jpeg-regular](.github/resources/anchor.svg)](#file-jpeg-regular)|
-|![file-mp3-filled](icons/telefonica/filled/file-mp3-filled.svg) | | | | |`file-mp3-filled`[![file-mp3-filled](.github/resources/anchor.svg)](#file-mp3-filled)|
-|![file-mp3-light](icons/telefonica/light/file-mp3-light.svg) | | | | |`file-mp3-light`[![file-mp3-light](.github/resources/anchor.svg)](#file-mp3-light)|
-|![file-mp3-regular](icons/telefonica/regular/file-mp3-regular.svg) | | | | |`file-mp3-regular`[![file-mp3-regular](.github/resources/anchor.svg)](#file-mp3-regular)|
-|![file-mp4-filled](icons/telefonica/filled/file-mp4-filled.svg) | | | | |`file-mp4-filled`[![file-mp4-filled](.github/resources/anchor.svg)](#file-mp4-filled)|
-|![file-mp4-light](icons/telefonica/light/file-mp4-light.svg) | | | | |`file-mp4-light`[![file-mp4-light](.github/resources/anchor.svg)](#file-mp4-light)|
-|![file-mp4-regular](icons/telefonica/regular/file-mp4-regular.svg) | | | | |`file-mp4-regular`[![file-mp4-regular](.github/resources/anchor.svg)](#file-mp4-regular)|
-|![file-music-filled](icons/telefonica/filled/file-music-filled.svg) | | | | |`file-music-filled`[![file-music-filled](.github/resources/anchor.svg)](#file-music-filled)|
-|![file-music-light](icons/telefonica/light/file-music-light.svg) | | | | |`file-music-light`[![file-music-light](.github/resources/anchor.svg)](#file-music-light)|
-|![file-music-regular](icons/telefonica/regular/file-music-regular.svg) | | | | |`file-music-regular`[![file-music-regular](.github/resources/anchor.svg)](#file-music-regular)|
-|![file-ok-filled](icons/telefonica/filled/file-ok-filled.svg) | | | | |`file-ok-filled`[![file-ok-filled](.github/resources/anchor.svg)](#file-ok-filled)|
-|![file-ok-light](icons/telefonica/light/file-ok-light.svg) | | | | |`file-ok-light`[![file-ok-light](.github/resources/anchor.svg)](#file-ok-light)|
-|![file-ok-regular](icons/telefonica/regular/file-ok-regular.svg) | | | | |`file-ok-regular`[![file-ok-regular](.github/resources/anchor.svg)](#file-ok-regular)|
-|![file-pdf-filled](icons/telefonica/filled/file-pdf-filled.svg) | | | | |`file-pdf-filled`[![file-pdf-filled](.github/resources/anchor.svg)](#file-pdf-filled)|
-|![file-pdf-light](icons/telefonica/light/file-pdf-light.svg) | | | | |`file-pdf-light`[![file-pdf-light](.github/resources/anchor.svg)](#file-pdf-light)|
-|![file-pdf-regular](icons/telefonica/regular/file-pdf-regular.svg) | | | | |`file-pdf-regular`[![file-pdf-regular](.github/resources/anchor.svg)](#file-pdf-regular)|
-|![file-png-filled](icons/telefonica/filled/file-png-filled.svg) | | | | |`file-png-filled`[![file-png-filled](.github/resources/anchor.svg)](#file-png-filled)|
-|![file-png-light](icons/telefonica/light/file-png-light.svg) | | | | |`file-png-light`[![file-png-light](.github/resources/anchor.svg)](#file-png-light)|
-|![file-png-regular](icons/telefonica/regular/file-png-regular.svg) | | | | |`file-png-regular`[![file-png-regular](.github/resources/anchor.svg)](#file-png-regular)|
-|![file-ppt-filled](icons/telefonica/filled/file-ppt-filled.svg) | | | | |`file-ppt-filled`[![file-ppt-filled](.github/resources/anchor.svg)](#file-ppt-filled)|
-|![file-ppt-light](icons/telefonica/light/file-ppt-light.svg) | | | | |`file-ppt-light`[![file-ppt-light](.github/resources/anchor.svg)](#file-ppt-light)|
-|![file-ppt-regular](icons/telefonica/regular/file-ppt-regular.svg) | | | | |`file-ppt-regular`[![file-ppt-regular](.github/resources/anchor.svg)](#file-ppt-regular)|
-|![file-psd-filled](icons/telefonica/filled/file-psd-filled.svg) | | | | |`file-psd-filled`[![file-psd-filled](.github/resources/anchor.svg)](#file-psd-filled)|
-|![file-psd-light](icons/telefonica/light/file-psd-light.svg) | | | | |`file-psd-light`[![file-psd-light](.github/resources/anchor.svg)](#file-psd-light)|
-|![file-psd-regular](icons/telefonica/regular/file-psd-regular.svg) | | | | |`file-psd-regular`[![file-psd-regular](.github/resources/anchor.svg)](#file-psd-regular)|
-|![file-sketch-filled](icons/telefonica/filled/file-sketch-filled.svg) | | | | |`file-sketch-filled`[![file-sketch-filled](.github/resources/anchor.svg)](#file-sketch-filled)|
-|![file-sketch-light](icons/telefonica/light/file-sketch-light.svg) | | | | |`file-sketch-light`[![file-sketch-light](.github/resources/anchor.svg)](#file-sketch-light)|
-|![file-sketch-regular](icons/telefonica/regular/file-sketch-regular.svg) | | | | |`file-sketch-regular`[![file-sketch-regular](.github/resources/anchor.svg)](#file-sketch-regular)|
-|![file-zip-filled](icons/telefonica/filled/file-zip-filled.svg) | | | | |`file-zip-filled`[![file-zip-filled](.github/resources/anchor.svg)](#file-zip-filled)|
-|![file-zip-light](icons/telefonica/light/file-zip-light.svg) | | | | |`file-zip-light`[![file-zip-light](.github/resources/anchor.svg)](#file-zip-light)|
-|![file-zip-regular](icons/telefonica/regular/file-zip-regular.svg) | | | | |`file-zip-regular`[![file-zip-regular](.github/resources/anchor.svg)](#file-zip-regular)|
-|![files-digital-filled](icons/telefonica/filled/files-digital-filled.svg) | | | | |`files-digital-filled`[![files-digital-filled](.github/resources/anchor.svg)](#files-digital-filled)|
-|![files-digital-light](icons/telefonica/light/files-digital-light.svg) | | | | |`files-digital-light`[![files-digital-light](.github/resources/anchor.svg)](#files-digital-light)|
-|![files-digital-regular](icons/telefonica/regular/files-digital-regular.svg) | | | | |`files-digital-regular`[![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) | |`find-store-filled`[![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) | |`find-store-light`[![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) | |`find-store-regular`[![find-store-regular](.github/resources/anchor.svg)](#find-store-regular)|
-|![fingerprint-filled](icons/telefonica/filled/fingerprint-filled.svg) | | | | |`fingerprint-filled`[![fingerprint-filled](.github/resources/anchor.svg)](#fingerprint-filled)|
-|![fingerprint-regular](icons/telefonica/regular/fingerprint-regular.svg) | | | | |`fingerprint-regular`[![fingerprint-regular](.github/resources/anchor.svg)](#fingerprint-regular)|
-|![fire-filled](icons/telefonica/filled/fire-filled.svg) | | | | |`fire-filled`[![fire-filled](.github/resources/anchor.svg)](#fire-filled)|
-|![fire-light](icons/telefonica/light/fire-light.svg) | | | | |`fire-light`[![fire-light](.github/resources/anchor.svg)](#fire-light)|
-|![fire-regular](icons/telefonica/regular/fire-regular.svg) | | | | |`fire-regular`[![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) | |`firewall-filled`[![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) | |`firewall-light`[![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) | |`firewall-regular`[![firewall-regular](.github/resources/anchor.svg)](#firewall-regular)|
-|![first-aid-kit-filled](icons/telefonica/filled/first-aid-kit-filled.svg) | | | | |`first-aid-kit-filled`[![first-aid-kit-filled](.github/resources/anchor.svg)](#first-aid-kit-filled)|
-|![first-aid-kit-light](icons/telefonica/light/first-aid-kit-light.svg) | | | | |`first-aid-kit-light`[![first-aid-kit-light](.github/resources/anchor.svg)](#first-aid-kit-light)|
-|![first-aid-kit-regular](icons/telefonica/regular/first-aid-kit-regular.svg) | | | | |`first-aid-kit-regular`[![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) | |`fixed-internet-filled`[![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) | |`fixed-internet-light`[![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) | |`fixed-internet-regular`[![fixed-internet-regular](.github/resources/anchor.svg)](#fixed-internet-regular)|
-|![flag-filled](icons/telefonica/filled/flag-filled.svg) | | | | |`flag-filled`[![flag-filled](.github/resources/anchor.svg)](#flag-filled)|
-|![flag-light](icons/telefonica/light/flag-light.svg) | | | | |`flag-light`[![flag-light](.github/resources/anchor.svg)](#flag-light)|
-|![flag-regular](icons/telefonica/regular/flag-regular.svg) | | | |![flag-regular](icons/blau/regular/flag-regular.svg) |`flag-regular`[![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) | |`floorplan-filled`[![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) | |`floorplan-light`[![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) | |`floorplan-regular`[![floorplan-regular](.github/resources/anchor.svg)](#floorplan-regular)|
-|![flower-filled](icons/telefonica/filled/flower-filled.svg) | | | | |`flower-filled`[![flower-filled](.github/resources/anchor.svg)](#flower-filled)|
-|![flower-light](icons/telefonica/light/flower-light.svg) | | | | |`flower-light`[![flower-light](.github/resources/anchor.svg)](#flower-light)|
-|![flower-regular](icons/telefonica/regular/flower-regular.svg) | | | | |`flower-regular`[![flower-regular](.github/resources/anchor.svg)](#flower-regular)|
-|![folder-encrypted-filled](icons/telefonica/filled/folder-encrypted-filled.svg) | | | | |`folder-encrypted-filled`[![folder-encrypted-filled](.github/resources/anchor.svg)](#folder-encrypted-filled)|
-|![folder-encrypted-light](icons/telefonica/light/folder-encrypted-light.svg) | | | | |`folder-encrypted-light`[![folder-encrypted-light](.github/resources/anchor.svg)](#folder-encrypted-light)|
-|![folder-encrypted-regular](icons/telefonica/regular/folder-encrypted-regular.svg) | | | | |`folder-encrypted-regular`[![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) | |`folder-filled`[![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) | |`folder-light`[![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) | |`folder-regular`[![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) | |[![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) | |[![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) | |[![football-ball-regular](.github/resources/anchor.svg)](#football-ball-regular)|
-|![fragrance-filled](icons/telefonica/filled/fragrance-filled.svg) | | | | |`fragrance-filled`[![fragrance-filled](.github/resources/anchor.svg)](#fragrance-filled)|
-|![fragrance-light](icons/telefonica/light/fragrance-light.svg) | | | | |`fragrance-light`[![fragrance-light](.github/resources/anchor.svg)](#fragrance-light)|
-|![fragrance-regular](icons/telefonica/regular/fragrance-regular.svg) | | | | |`fragrance-regular`[![fragrance-regular](.github/resources/anchor.svg)](#fragrance-regular)|
-|![fullscreen-light](icons/telefonica/light/fullscreen-light.svg) | | | | |`fullscreen-light`[![fullscreen-light](.github/resources/anchor.svg)](#fullscreen-light)|
-|![fullscreen-regular](icons/telefonica/regular/fullscreen-regular.svg) | | | | |`fullscreen-regular`[![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) | |`funnel-filled`[![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) | |`funnel-light`[![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) | |`funnel-regular`[![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) | |`fusion-filled`[![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) | |`fusion-light`[![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) | |`fusion-regular`[![fusion-regular](.github/resources/anchor.svg)](#fusion-regular)|
-|![garage-filled](icons/telefonica/filled/garage-filled.svg) | | | | |`garage-filled`[![garage-filled](.github/resources/anchor.svg)](#garage-filled)|
-|![garage-light](icons/telefonica/light/garage-light.svg) | | | | |`garage-light`[![garage-light](.github/resources/anchor.svg)](#garage-light)|
-|![garage-regular](icons/telefonica/regular/garage-regular.svg) | | | | |`garage-regular`[![garage-regular](.github/resources/anchor.svg)](#garage-regular)|
-|![gas-station-filled](icons/telefonica/filled/gas-station-filled.svg) | | | | |`gas-station-filled`[![gas-station-filled](.github/resources/anchor.svg)](#gas-station-filled)|
-|![gas-station-light](icons/telefonica/light/gas-station-light.svg) | | | | |`gas-station-light`[![gas-station-light](.github/resources/anchor.svg)](#gas-station-light)|
-|![gas-station-regular](icons/telefonica/regular/gas-station-regular.svg) | | | | |`gas-station-regular`[![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) | |`gift-filled`[![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) | |`gift-light`[![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) | |`gift-regular`[![gift-regular](.github/resources/anchor.svg)](#gift-regular)|
-|![group-filled](icons/telefonica/filled/group-filled.svg) | | | | |`group-filled`[![group-filled](.github/resources/anchor.svg)](#group-filled)|
-|![group-light](icons/telefonica/light/group-light.svg) | | | | |`group-light`[![group-light](.github/resources/anchor.svg)](#group-light)|
-|![group-regular](icons/telefonica/regular/group-regular.svg) | | | | |`group-regular`[![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) | |`guarantee-filled`[![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) | |`guarantee-light`[![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) | |`guarantee-regular`[![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) | |`guru-filled`[![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) | |`guru-light`[![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) | |`guru-regular`[![guru-regular](.github/resources/anchor.svg)](#guru-regular)|
-|![hamburger-filled](icons/telefonica/filled/hamburger-filled.svg) | | | | |`hamburger-filled`[![hamburger-filled](.github/resources/anchor.svg)](#hamburger-filled)|
-|![hamburger-light](icons/telefonica/light/hamburger-light.svg) | | | | |`hamburger-light`[![hamburger-light](.github/resources/anchor.svg)](#hamburger-light)|
-|![hamburger-regular](icons/telefonica/regular/hamburger-regular.svg) | | | | |`hamburger-regular`[![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) | |`hand-connected-filled`[![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) | |`hand-connected-light`[![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) | |`hand-connected-regular`[![hand-connected-regular](.github/resources/anchor.svg)](#hand-connected-regular)|
-|![hand-down-filled](icons/telefonica/filled/hand-down-filled.svg) | | | | |`hand-down-filled`[![hand-down-filled](.github/resources/anchor.svg)](#hand-down-filled)|
-|![hand-down-light](icons/telefonica/light/hand-down-light.svg) | | | | |`hand-down-light`[![hand-down-light](.github/resources/anchor.svg)](#hand-down-light)|
-|![hand-down-regular](icons/telefonica/regular/hand-down-regular.svg) | | | | |`hand-down-regular`[![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) | |`hand-free-filled`[![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) | |`hand-free-light`[![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) | |`hand-free-regular`[![hand-free-regular](.github/resources/anchor.svg)](#hand-free-regular)|
-|![hand-left-filled](icons/telefonica/filled/hand-left-filled.svg) | | | | |`hand-left-filled`[![hand-left-filled](.github/resources/anchor.svg)](#hand-left-filled)|
-|![hand-left-light](icons/telefonica/light/hand-left-light.svg) | | | | |`hand-left-light`[![hand-left-light](.github/resources/anchor.svg)](#hand-left-light)|
-|![hand-left-regular](icons/telefonica/regular/hand-left-regular.svg) | | | | |`hand-left-regular`[![hand-left-regular](.github/resources/anchor.svg)](#hand-left-regular)|
-|![hand-right-filled](icons/telefonica/filled/hand-right-filled.svg) | | | | |`hand-right-filled`[![hand-right-filled](.github/resources/anchor.svg)](#hand-right-filled)|
-|![hand-right-light](icons/telefonica/light/hand-right-light.svg) | | | | |`hand-right-light`[![hand-right-light](.github/resources/anchor.svg)](#hand-right-light)|
-|![hand-right-regular](icons/telefonica/regular/hand-right-regular.svg) | | | | |`hand-right-regular`[![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) | |`hand-snap-filled`[![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) | |`hand-snap-light`[![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) | |`hand-snap-regular`[![hand-snap-regular](.github/resources/anchor.svg)](#hand-snap-regular)|
-|![hand-up-filled](icons/telefonica/filled/hand-up-filled.svg) | | | | |`hand-up-filled`[![hand-up-filled](.github/resources/anchor.svg)](#hand-up-filled)|
-|![hand-up-light](icons/telefonica/light/hand-up-light.svg) | | | | |`hand-up-light`[![hand-up-light](.github/resources/anchor.svg)](#hand-up-light)|
-|![hand-up-regular](icons/telefonica/regular/hand-up-regular.svg) | | | | |`hand-up-regular`[![hand-up-regular](.github/resources/anchor.svg)](#hand-up-regular)|
-|![hard-disk-filled](icons/telefonica/filled/hard-disk-filled.svg) | | | | |`hard-disk-filled`[![hard-disk-filled](.github/resources/anchor.svg)](#hard-disk-filled)|
-|![hard-disk-light](icons/telefonica/light/hard-disk-light.svg) | | | | |`hard-disk-light`[![hard-disk-light](.github/resources/anchor.svg)](#hard-disk-light)|
-|![hard-disk-regular](icons/telefonica/regular/hard-disk-regular.svg) | | | | |`hard-disk-regular`[![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) | |`hd-filled`[![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) | |`hd-light`[![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) | |`hd-regular`[![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) | |`headphone-bluetooth-filled`[![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) | |`headphone-bluetooth-light`[![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) | |`headphone-bluetooth-regular`[![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) | |`headphones-filled`[![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) | |`headphones-light`[![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) | |`headphones-regular`[![headphones-regular](.github/resources/anchor.svg)](#headphones-regular)|
-|![heart-bubble-filled](icons/telefonica/filled/heart-bubble-filled.svg) | | | | |`heart-bubble-filled`[![heart-bubble-filled](.github/resources/anchor.svg)](#heart-bubble-filled)|
-|![heart-bubble-light](icons/telefonica/light/heart-bubble-light.svg) | | | | |`heart-bubble-light`[![heart-bubble-light](.github/resources/anchor.svg)](#heart-bubble-light)|
-|![heart-bubble-regular](icons/telefonica/regular/heart-bubble-regular.svg) | | | | |`heart-bubble-regular`[![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) | |`heart-filled`[![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) | |`heart-light`[![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) | |`heart-regular`[![heart-regular](.github/resources/anchor.svg)](#heart-regular)|
-| |![high-priority-filled](icons/vivo-new/filled/high-priority-filled.svg) | | | |`high-priority-filled`[![high-priority-filled](.github/resources/anchor.svg)](#high-priority-filled)|
-| |![high-priority-light](icons/vivo-new/light/high-priority-light.svg) | | | |`high-priority-light`[![high-priority-light](.github/resources/anchor.svg)](#high-priority-light)|
-| |![high-priority-regular](icons/vivo-new/regular/high-priority-regular.svg) | | | |`high-priority-regular`[![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) | |`hockey-filled`[![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) | |`hockey-light`[![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) | |`hockey-regular`[![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) | |`home-filled`[![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) | |`home-light`[![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) |`home-regular`[![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) | | | |`home-wifi-filled`[![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) | | | |`home-wifi-light`[![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) | | | |`home-wifi-regular`[![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) | |`homespot-filled`[![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) | |`homespot-light`[![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) | |`homespot-regular`[![homespot-regular](.github/resources/anchor.svg)](#homespot-regular)|
-|![hospital-filled](icons/telefonica/filled/hospital-filled.svg) | | | | |`hospital-filled`[![hospital-filled](.github/resources/anchor.svg)](#hospital-filled)|
-|![hospital-light](icons/telefonica/light/hospital-light.svg) | | | | |`hospital-light`[![hospital-light](.github/resources/anchor.svg)](#hospital-light)|
-|![hospital-regular](icons/telefonica/regular/hospital-regular.svg) | | | | |`hospital-regular`[![hospital-regular](.github/resources/anchor.svg)](#hospital-regular)|
-|![hotel-filled](icons/telefonica/filled/hotel-filled.svg) | | | | |`hotel-filled`[![hotel-filled](.github/resources/anchor.svg)](#hotel-filled)|
-|![hotel-light](icons/telefonica/light/hotel-light.svg) | | | | |`hotel-light`[![hotel-light](.github/resources/anchor.svg)](#hotel-light)|
-|![hotel-regular](icons/telefonica/regular/hotel-regular.svg) | | | | |`hotel-regular`[![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) | |`hotline-filled`[![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) | |`hotline-light`[![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) | |`hotline-regular`[![hotline-regular](.github/resources/anchor.svg)](#hotline-regular)|
-|![id-card-filled](icons/telefonica/filled/id-card-filled.svg) | | | | |`id-card-filled`[![id-card-filled](.github/resources/anchor.svg)](#id-card-filled)|
-|![id-card-light](icons/telefonica/light/id-card-light.svg) | | | | |`id-card-light`[![id-card-light](.github/resources/anchor.svg)](#id-card-light)|
-|![id-card-regular](icons/telefonica/regular/id-card-regular.svg) | | | | |`id-card-regular`[![id-card-regular](.github/resources/anchor.svg)](#id-card-regular)|
-|![image-filled](icons/telefonica/filled/image-filled.svg) | | | | |`image-filled`[![image-filled](.github/resources/anchor.svg)](#image-filled)|
-|![image-light](icons/telefonica/light/image-light.svg) | | | | |`image-light`[![image-light](.github/resources/anchor.svg)](#image-light)|
-|![image-regular](icons/telefonica/regular/image-regular.svg) | | | | |`image-regular`[![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) | |`import-filled`[![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) | |`import-light`[![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) | |`import-regular`[![import-regular](.github/resources/anchor.svg)](#import-regular)|
-|![infinity-light](icons/telefonica/light/infinity-light.svg) | | | | |`infinity-light`[![infinity-light](.github/resources/anchor.svg)](#infinity-light)|
-|![infinity-regular](icons/telefonica/regular/infinity-regular.svg) | | | | |`infinity-regular`[![infinity-regular](.github/resources/anchor.svg)](#infinity-regular)|
-|![information-regular](icons/telefonica/regular/information-regular.svg) | | | | |`information-regular`[![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) | |`information-user-filled`[![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) | |`information-user-light`[![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) |`information-user-regular`[![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) | |`internet-device-filled`[![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) | |`internet-device-light`[![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) | |`internet-device-regular`[![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) | |`internet-filled`[![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) | |`internet-light`[![internet-light](.github/resources/anchor.svg)](#internet-light)|
-|![internet-pendrive-filled](icons/telefonica/filled/internet-pendrive-filled.svg) | | | | |`internet-pendrive-filled`[![internet-pendrive-filled](.github/resources/anchor.svg)](#internet-pendrive-filled)|
-|![internet-pendrive-light](icons/telefonica/light/internet-pendrive-light.svg) | | | | |`internet-pendrive-light`[![internet-pendrive-light](.github/resources/anchor.svg)](#internet-pendrive-light)|
-|![internet-pendrive-regular](icons/telefonica/regular/internet-pendrive-regular.svg) | | | | |`internet-pendrive-regular`[![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) |`internet-regular`[![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) | |`intranet-filled`[![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) | |`intranet-light`[![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) | |`intranet-regular`[![intranet-regular](.github/resources/anchor.svg)](#intranet-regular)|
-|![invoice-digital-filled](icons/telefonica/filled/invoice-digital-filled.svg) | | | | |`invoice-digital-filled`[![invoice-digital-filled](.github/resources/anchor.svg)](#invoice-digital-filled)|
-|![invoice-digital-light](icons/telefonica/light/invoice-digital-light.svg) | | | | |`invoice-digital-light`[![invoice-digital-light](.github/resources/anchor.svg)](#invoice-digital-light)|
-|![invoice-digital-regular](icons/telefonica/regular/invoice-digital-regular.svg) | | | | |`invoice-digital-regular`[![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) | |`invoice-euro-filled`[![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) | |`invoice-euro-light`[![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) |`invoice-euro-regular`[![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) | |`invoice-plan-file-filled`[![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) | |`invoice-plan-file-light`[![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) |`invoice-plan-file-regular`[![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) | |`iot-sensor-co2-filled`[![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) | |`iot-sensor-co2-light`[![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) | |`iot-sensor-co2-regular`[![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) | |`iot-sensor-humidity-filled`[![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) | |`iot-sensor-humidity-light`[![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) | |`iot-sensor-humidity-regular`[![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) | |`iot-sensor-temperature-filled`[![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) | |`iot-sensor-temperature-light`[![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) | |`iot-sensor-temperature-regular`[![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) | |`justice-filled`[![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) | |`justice-light`[![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) | |`justice-regular`[![justice-regular](.github/resources/anchor.svg)](#justice-regular)|
-|![kebab-menu-light](icons/telefonica/light/kebab-menu-light.svg) | | | | |[![kebab-menu-light](.github/resources/anchor.svg)](#kebab-menu-light)|
-|![key-filled](icons/telefonica/filled/key-filled.svg) | | | | |`key-filled`[![key-filled](.github/resources/anchor.svg)](#key-filled)|
-|![key-light](icons/telefonica/light/key-light.svg) | | | | |`key-light`[![key-light](.github/resources/anchor.svg)](#key-light)|
-|![key-regular](icons/telefonica/regular/key-regular.svg) | | | | |`key-regular`[![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) | |`keyboard-filled`[![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) | |`keyboard-light`[![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) | |`keyboard-regular`[![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) | |`landline-filled`[![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) | |`landline-light`[![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) | |`landline-regular`[![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) | |`language-filled`[![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) | |`language-light`[![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) | |`language-regular`[![language-regular](.github/resources/anchor.svg)](#language-regular)|
-|![laptop-charging-filled](icons/telefonica/filled/laptop-charging-filled.svg) | | | | |`laptop-charging-filled`[![laptop-charging-filled](.github/resources/anchor.svg)](#laptop-charging-filled)|
-|![laptop-charging-light](icons/telefonica/light/laptop-charging-light.svg) | | | | |`laptop-charging-light`[![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) | |`laptop-check-filled`[![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) | |`laptop-check-light`[![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) | |`laptop-check-regular`[![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) | |`laptop-filled`[![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) | |`laptop-goto-filled`[![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) | |`laptop-goto-light`[![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) | |`laptop-goto-regular`[![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) | |`laptop-light`[![laptop-light](.github/resources/anchor.svg)](#laptop-light)|
-| | |![laptop-regular](icons/o2-new/regular/laptop-regular.svg) | | |`laptop-regular`[![laptop-regular](.github/resources/anchor.svg)](#laptop-regular)|
-|![layers-filled](icons/telefonica/filled/layers-filled.svg) | | | | |`layers-filled`[![layers-filled](.github/resources/anchor.svg)](#layers-filled)|
-|![layers-light](icons/telefonica/light/layers-light.svg) | | | | |`layers-light`[![layers-light](.github/resources/anchor.svg)](#layers-light)|
-|![layers-regular](icons/telefonica/regular/layers-regular.svg) | | | | |`layers-regular`[![layers-regular](.github/resources/anchor.svg)](#layers-regular)|
-|![learn-data-filled](icons/telefonica/filled/learn-data-filled.svg) | | | | |`learn-data-filled`[![learn-data-filled](.github/resources/anchor.svg)](#learn-data-filled)|
-|![learn-data-light](icons/telefonica/light/learn-data-light.svg) | | | | |`learn-data-light`[![learn-data-light](.github/resources/anchor.svg)](#learn-data-light)|
-|![learn-data-regular](icons/telefonica/regular/learn-data-regular.svg) | | | | |`learn-data-regular`[![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) | |`lidar-filled`[![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) | |`lidar-light`[![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) | |`lidar-regular`[![lidar-regular](.github/resources/anchor.svg)](#lidar-regular)|
-|![lifeguard-float-filled](icons/telefonica/filled/lifeguard-float-filled.svg) | | | | |`lifeguard-float-filled`[![lifeguard-float-filled](.github/resources/anchor.svg)](#lifeguard-float-filled)|
-|![lifeguard-float-light](icons/telefonica/light/lifeguard-float-light.svg) | | | | |`lifeguard-float-light`[![lifeguard-float-light](.github/resources/anchor.svg)](#lifeguard-float-light)|
-|![lifeguard-float-regular](icons/telefonica/regular/lifeguard-float-regular.svg) | | | | |`lifeguard-float-regular`[![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) | |`lifts-filled`[![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) | |`lifts-light`[![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) | |`lifts-regular`[![lifts-regular](.github/resources/anchor.svg)](#lifts-regular)|
-| |![light-switch-regular](icons/vivo-new/regular/light-switch-regular.svg) | | | |`light-switch-regular`[![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) | |`lightbulb-filled`[![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) | |`lightbulb-light`[![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) | |`lightbulb-regular`[![lightbulb-regular](.github/resources/anchor.svg)](#lightbulb-regular)|
-|![lightning-filled](icons/telefonica/filled/lightning-filled.svg) | | | | |`lightning-filled`[![lightning-filled](.github/resources/anchor.svg)](#lightning-filled)|
-|![lightning-light](icons/telefonica/light/lightning-light.svg) | | | | |`lightning-light`[![lightning-light](.github/resources/anchor.svg)](#lightning-light)|
-|![lightning-regular](icons/telefonica/regular/lightning-regular.svg) | | | | |`lightning-regular`[![lightning-regular](.github/resources/anchor.svg)](#lightning-regular)|
-|![link-filled](icons/telefonica/filled/link-filled.svg) | | | | |`link-filled`[![link-filled](.github/resources/anchor.svg)](#link-filled)|
-|![link-regular](icons/telefonica/regular/link-regular.svg) | | | | |`link-regular`[![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) | |`list-document-filled`[![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) | |`list-document-light`[![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) | |`list-document-regular`[![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) | |`list-filled`[![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) | |`list-light`[![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) | |`list-regular`[![list-regular](.github/resources/anchor.svg)](#list-regular)|
-| |![loan-filled](icons/vivo-new/filled/loan-filled.svg) | | | |`loan-filled`[![loan-filled](.github/resources/anchor.svg)](#loan-filled)|
-| |![loan-light](icons/vivo-new/light/loan-light.svg) | | | |`loan-light`[![loan-light](.github/resources/anchor.svg)](#loan-light)|
-| |![loan-regular](icons/vivo-new/regular/loan-regular.svg) | | | |`loan-regular`[![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) | |`location-filled`[![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) | |`location-light`[![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) | |`location-map-filled`[![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) | |`location-map-light`[![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) | |`location-map-regular`[![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) | |`location-regular`[![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) | |`lock-closed-filled`[![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) | |`lock-closed-light`[![lock-closed-light](.github/resources/anchor.svg)](#lock-closed-light)|
-|![lock-closed-regular](icons/telefonica/regular/lock-closed-regular.svg) | |![lock-closed-regular](icons/o2-new/regular/lock-closed-regular.svg) |![lock-closed-regular](icons/o2/regular/lock-closed-regular.svg) |![lock-closed-regular](icons/blau/regular/lock-closed-regular.svg) |`lock-closed-regular`[![lock-closed-regular](.github/resources/anchor.svg)](#lock-closed-regular)|
-|![lock-de-data-filled](icons/telefonica/filled/lock-de-data-filled.svg) | | | | |`lock-de-data-filled`[![lock-de-data-filled](.github/resources/anchor.svg)](#lock-de-data-filled)|
-|![lock-de-data-light](icons/telefonica/light/lock-de-data-light.svg) | | | | |`lock-de-data-light`[![lock-de-data-light](.github/resources/anchor.svg)](#lock-de-data-light)|
-|![lock-de-data-regular](icons/telefonica/regular/lock-de-data-regular.svg) | | | | |`lock-de-data-regular`[![lock-de-data-regular](.github/resources/anchor.svg)](#lock-de-data-regular)|
-| | |![lock-eye-closed-filled](icons/o2-new/filled/lock-eye-closed-filled.svg) |![lock-eye-closed-filled](icons/o2/filled/lock-eye-closed-filled.svg) | |`lock-eye-closed-filled`[![lock-eye-closed-filled](.github/resources/anchor.svg)](#lock-eye-closed-filled)|
-| | |![lock-eye-closed-light](icons/o2-new/light/lock-eye-closed-light.svg) |![lock-eye-closed-light](icons/o2/light/lock-eye-closed-light.svg) | |`lock-eye-closed-light`[![lock-eye-closed-light](.github/resources/anchor.svg)](#lock-eye-closed-light)|
-| | |![lock-eye-closed-regular](icons/o2-new/regular/lock-eye-closed-regular.svg) |![lock-eye-closed-regular](icons/o2/regular/lock-eye-closed-regular.svg) | |`lock-eye-closed-regular`[![lock-eye-closed-regular](.github/resources/anchor.svg)](#lock-eye-closed-regular)|
-|![lock-open-filled](icons/telefonica/filled/lock-open-filled.svg) | |![lock-open-filled](icons/o2-new/filled/lock-open-filled.svg) |![lock-open-filled](icons/o2/filled/lock-open-filled.svg) | |`lock-open-filled`[![lock-open-filled](.github/resources/anchor.svg)](#lock-open-filled)|
-|![lock-open-light](icons/telefonica/light/lock-open-light.svg) | |![lock-open-light](icons/o2-new/light/lock-open-light.svg) |![lock-open-light](icons/o2/light/lock-open-light.svg) | |`lock-open-light`[![lock-open-light](.github/resources/anchor.svg)](#lock-open-light)|
-|![lock-open-regular](icons/telefonica/regular/lock-open-regular.svg) | |![lock-open-regular](icons/o2-new/regular/lock-open-regular.svg) |![lock-open-regular](icons/o2/regular/lock-open-regular.svg) |![lock-open-regular](icons/blau/regular/lock-open-regular.svg) |`lock-open-regular`[![lock-open-regular](.github/resources/anchor.svg)](#lock-open-regular)|
-| | |![logout-filled](icons/o2-new/filled/logout-filled.svg) |![logout-filled](icons/o2/filled/logout-filled.svg) | |`logout-filled`[![logout-filled](.github/resources/anchor.svg)](#logout-filled)|
-| | |![logout-light](icons/o2-new/light/logout-light.svg) |![logout-light](icons/o2/light/logout-light.svg) | |`logout-light`[![logout-light](.github/resources/anchor.svg)](#logout-light)|
-|![logout-regular](icons/telefonica/regular/logout-regular.svg) | |![logout-regular](icons/o2-new/regular/logout-regular.svg) |![logout-regular](icons/o2/regular/logout-regular.svg) |![logout-regular](icons/blau/regular/logout-regular.svg) |`logout-regular`[![logout-regular](.github/resources/anchor.svg)](#logout-regular)|
-|![long-distance-call-filled](icons/telefonica/filled/long-distance-call-filled.svg) | | | | |`long-distance-call-filled`[![long-distance-call-filled](.github/resources/anchor.svg)](#long-distance-call-filled)|
-|![long-distance-call-light](icons/telefonica/light/long-distance-call-light.svg) | | | | |`long-distance-call-light`[![long-distance-call-light](.github/resources/anchor.svg)](#long-distance-call-light)|
-|![long-distance-call-regular](icons/telefonica/regular/long-distance-call-regular.svg) | | | | |`long-distance-call-regular`[![long-distance-call-regular](.github/resources/anchor.svg)](#long-distance-call-regular)|
-|![loss-theft-devices-filled](icons/telefonica/filled/loss-theft-devices-filled.svg) | | | | |`loss-theft-devices-filled`[![loss-theft-devices-filled](.github/resources/anchor.svg)](#loss-theft-devices-filled)|
-|![loss-theft-devices-light](icons/telefonica/light/loss-theft-devices-light.svg) | | | | |`loss-theft-devices-light`[![loss-theft-devices-light](.github/resources/anchor.svg)](#loss-theft-devices-light)|
-|![loss-theft-devices-regular](icons/telefonica/regular/loss-theft-devices-regular.svg) | | | | |`loss-theft-devices-regular`[![loss-theft-devices-regular](.github/resources/anchor.svg)](#loss-theft-devices-regular)|
-| | |![lost-found-filled](icons/o2-new/filled/lost-found-filled.svg) |![lost-found-filled](icons/o2/filled/lost-found-filled.svg) | |`lost-found-filled`[![lost-found-filled](.github/resources/anchor.svg)](#lost-found-filled)|
-| | |![lost-found-light](icons/o2-new/light/lost-found-light.svg) |![lost-found-light](icons/o2/light/lost-found-light.svg) | |`lost-found-light`[![lost-found-light](.github/resources/anchor.svg)](#lost-found-light)|
-| | |![lost-found-regular](icons/o2-new/regular/lost-found-regular.svg) |![lost-found-regular](icons/o2/regular/lost-found-regular.svg) | |`lost-found-regular`[![lost-found-regular](.github/resources/anchor.svg)](#lost-found-regular)|
-| |![lotus-filled](icons/vivo-new/filled/lotus-filled.svg) | | | |`lotus-filled`[![lotus-filled](.github/resources/anchor.svg)](#lotus-filled)|
-| |![lotus-light](icons/vivo-new/light/lotus-light.svg) | | | |`lotus-light`[![lotus-light](.github/resources/anchor.svg)](#lotus-light)|
-| |![lotus-regular](icons/vivo-new/regular/lotus-regular.svg) | | | |`lotus-regular`[![lotus-regular](.github/resources/anchor.svg)](#lotus-regular)|
-|![loudspeaker-filled](icons/telefonica/filled/loudspeaker-filled.svg) | | | | |`loudspeaker-filled`[![loudspeaker-filled](.github/resources/anchor.svg)](#loudspeaker-filled)|
-|![loudspeaker-light](icons/telefonica/light/loudspeaker-light.svg) | | | | |`loudspeaker-light`[![loudspeaker-light](.github/resources/anchor.svg)](#loudspeaker-light)|
-|![loudspeaker-regular](icons/telefonica/regular/loudspeaker-regular.svg) | | | | |`loudspeaker-regular`[![loudspeaker-regular](.github/resources/anchor.svg)](#loudspeaker-regular)|
-|![lungs-filled](icons/telefonica/filled/lungs-filled.svg) | | | | |`lungs-filled`[![lungs-filled](.github/resources/anchor.svg)](#lungs-filled)|
-|![lungs-light](icons/telefonica/light/lungs-light.svg) | | | | |`lungs-light`[![lungs-light](.github/resources/anchor.svg)](#lungs-light)|
-|![lungs-regular](icons/telefonica/regular/lungs-regular.svg) | | | | |`lungs-regular`[![lungs-regular](.github/resources/anchor.svg)](#lungs-regular)|
-| | |![managed-lan-filled](icons/o2-new/filled/managed-lan-filled.svg) |![managed-lan-filled](icons/o2/filled/managed-lan-filled.svg) | |`managed-lan-filled`[![managed-lan-filled](.github/resources/anchor.svg)](#managed-lan-filled)|
-| | |![managed-lan-light](icons/o2-new/light/managed-lan-light.svg) |![managed-lan-light](icons/o2/light/managed-lan-light.svg) | |`managed-lan-light`[![managed-lan-light](.github/resources/anchor.svg)](#managed-lan-light)|
-| | |![managed-lan-regular](icons/o2-new/regular/managed-lan-regular.svg) |![managed-lan-regular](icons/o2/regular/managed-lan-regular.svg) | |`managed-lan-regular`[![managed-lan-regular](.github/resources/anchor.svg)](#managed-lan-regular)|
-|![map-filled](icons/telefonica/filled/map-filled.svg) | | | | |`map-filled`[![map-filled](.github/resources/anchor.svg)](#map-filled)|
-|![map-light](icons/telefonica/light/map-light.svg) | | | | |`map-light`[![map-light](.github/resources/anchor.svg)](#map-light)|
-|![map-regular](icons/telefonica/regular/map-regular.svg) | | | | |`map-regular`[![map-regular](.github/resources/anchor.svg)](#map-regular)|
-| | |![mast-filled](icons/o2-new/filled/mast-filled.svg) |![mast-filled](icons/o2/filled/mast-filled.svg) | |`mast-filled`[![mast-filled](.github/resources/anchor.svg)](#mast-filled)|
-| | |![mast-light](icons/o2-new/light/mast-light.svg) |![mast-light](icons/o2/light/mast-light.svg) | |`mast-light`[![mast-light](.github/resources/anchor.svg)](#mast-light)|
-| | |![mast-regular](icons/o2-new/regular/mast-regular.svg) |![mast-regular](icons/o2/regular/mast-regular.svg) | |`mast-regular`[![mast-regular](.github/resources/anchor.svg)](#mast-regular)|
-|![meatball-filled](icons/telefonica/filled/meatball-filled.svg) | | | | |`meatball-filled`[![meatball-filled](.github/resources/anchor.svg)](#meatball-filled)|
-|![medical-history-filled](icons/telefonica/filled/medical-history-filled.svg) | |![medical-history-filled](icons/o2-new/filled/medical-history-filled.svg) |![medical-history-filled](icons/o2/filled/medical-history-filled.svg) | |`medical-history-filled`[![medical-history-filled](.github/resources/anchor.svg)](#medical-history-filled)|
-|![medical-history-light](icons/telefonica/light/medical-history-light.svg) | |![medical-history-light](icons/o2-new/light/medical-history-light.svg) |![medical-history-light](icons/o2/light/medical-history-light.svg) | |`medical-history-light`[![medical-history-light](.github/resources/anchor.svg)](#medical-history-light)|
-|![medical-history-regular](icons/telefonica/regular/medical-history-regular.svg) | |![medical-history-regular](icons/o2-new/regular/medical-history-regular.svg) |![medical-history-regular](icons/o2/regular/medical-history-regular.svg) | |`medical-history-regular`[![medical-history-regular](.github/resources/anchor.svg)](#medical-history-regular)|
-|![menu-light](icons/telefonica/light/menu-light.svg) | | | | |[![menu-light](.github/resources/anchor.svg)](#menu-light)|
-|![menu-regular](icons/telefonica/regular/menu-regular.svg) | | | | |[![menu-regular](.github/resources/anchor.svg)](#menu-regular)|
-|![microchip-filled](icons/telefonica/filled/microchip-filled.svg) | | | | |`microchip-filled`[![microchip-filled](.github/resources/anchor.svg)](#microchip-filled)|
-|![microchip-light](icons/telefonica/light/microchip-light.svg) | | | | |`microchip-light`[![microchip-light](.github/resources/anchor.svg)](#microchip-light)|
-|![microchip-regular](icons/telefonica/regular/microchip-regular.svg) | | | | |`microchip-regular`[![microchip-regular](.github/resources/anchor.svg)](#microchip-regular)|
-|![microphone-aura-disabled-filled](icons/telefonica/filled/microphone-aura-disabled-filled.svg) | | | | |`microphone-aura-disabled-filled`[![microphone-aura-disabled-filled](.github/resources/anchor.svg)](#microphone-aura-disabled-filled)|
-|![microphone-aura-disabled-light](icons/telefonica/light/microphone-aura-disabled-light.svg) | | | | |`microphone-aura-disabled-light`[![microphone-aura-disabled-light](.github/resources/anchor.svg)](#microphone-aura-disabled-light)|
-|![microphone-aura-disabled-regular](icons/telefonica/regular/microphone-aura-disabled-regular.svg) | | | | |`microphone-aura-disabled-regular`[![microphone-aura-disabled-regular](.github/resources/anchor.svg)](#microphone-aura-disabled-regular)|
-|![microphone-aura-filled](icons/telefonica/filled/microphone-aura-filled.svg) | | | | |`microphone-aura-filled`[![microphone-aura-filled](.github/resources/anchor.svg)](#microphone-aura-filled)|
-|![microphone-aura-light](icons/telefonica/light/microphone-aura-light.svg) | | | | |`microphone-aura-light`[![microphone-aura-light](.github/resources/anchor.svg)](#microphone-aura-light)|
-|![microphone-aura-regular](icons/telefonica/regular/microphone-aura-regular.svg) | | | | |`microphone-aura-regular`[![microphone-aura-regular](.github/resources/anchor.svg)](#microphone-aura-regular)|
-|![microphone-disabled-filled](icons/telefonica/filled/microphone-disabled-filled.svg) | | | | |`microphone-disabled-filled`[![microphone-disabled-filled](.github/resources/anchor.svg)](#microphone-disabled-filled)|
-|![microphone-disabled-light](icons/telefonica/light/microphone-disabled-light.svg) | | | | |`microphone-disabled-light`[![microphone-disabled-light](.github/resources/anchor.svg)](#microphone-disabled-light)|
-|![microphone-disabled-regular](icons/telefonica/regular/microphone-disabled-regular.svg) | | | | |`microphone-disabled-regular`[![microphone-disabled-regular](.github/resources/anchor.svg)](#microphone-disabled-regular)|
-|![microphone-filled](icons/telefonica/filled/microphone-filled.svg) | |![microphone-filled](icons/o2-new/filled/microphone-filled.svg) |![microphone-filled](icons/o2/filled/microphone-filled.svg) | |`microphone-filled`[![microphone-filled](.github/resources/anchor.svg)](#microphone-filled)|
-|![microphone-light](icons/telefonica/light/microphone-light.svg) | |![microphone-light](icons/o2-new/light/microphone-light.svg) |![microphone-light](icons/o2/light/microphone-light.svg) | |`microphone-light`[![microphone-light](.github/resources/anchor.svg)](#microphone-light)|
-|![microphone-regular](icons/telefonica/regular/microphone-regular.svg) | |![microphone-regular](icons/o2-new/regular/microphone-regular.svg) |![microphone-regular](icons/o2/regular/microphone-regular.svg) | |`microphone-regular`[![microphone-regular](.github/resources/anchor.svg)](#microphone-regular)|
-|![millennials-filled](icons/telefonica/filled/millennials-filled.svg) | |![millennials-filled](icons/o2-new/filled/millennials-filled.svg) |![millennials-filled](icons/o2/filled/millennials-filled.svg) | |`millennials-filled`[![millennials-filled](.github/resources/anchor.svg)](#millennials-filled)|
-|![millennials-light](icons/telefonica/light/millennials-light.svg) | |![millennials-light](icons/o2-new/light/millennials-light.svg) |![millennials-light](icons/o2/light/millennials-light.svg) | |`millennials-light`[![millennials-light](.github/resources/anchor.svg)](#millennials-light)|
-|![millennials-regular](icons/telefonica/regular/millennials-regular.svg) | |![millennials-regular](icons/o2-new/regular/millennials-regular.svg) |![millennials-regular](icons/o2/regular/millennials-regular.svg) | |`millennials-regular`[![millennials-regular](.github/resources/anchor.svg)](#millennials-regular)|
-| | |![mms-filled](icons/o2-new/filled/mms-filled.svg) |![mms-filled](icons/o2/filled/mms-filled.svg) | |`mms-filled`[![mms-filled](.github/resources/anchor.svg)](#mms-filled)|
-| | |![mms-light](icons/o2-new/light/mms-light.svg) |![mms-light](icons/o2/light/mms-light.svg) | |`mms-light`[![mms-light](.github/resources/anchor.svg)](#mms-light)|
-| | |![mms-regular](icons/o2-new/regular/mms-regular.svg) |![mms-regular](icons/o2/regular/mms-regular.svg) | |`mms-regular`[![mms-regular](.github/resources/anchor.svg)](#mms-regular)|
-| | |![mobile-add-user-filled](icons/o2-new/filled/mobile-add-user-filled.svg) |![mobile-add-user-filled](icons/o2/filled/mobile-add-user-filled.svg) | |`mobile-add-user-filled`[![mobile-add-user-filled](.github/resources/anchor.svg)](#mobile-add-user-filled)|
-| | |![mobile-add-user-light](icons/o2-new/light/mobile-add-user-light.svg) |![mobile-add-user-light](icons/o2/light/mobile-add-user-light.svg) | |`mobile-add-user-light`[![mobile-add-user-light](.github/resources/anchor.svg)](#mobile-add-user-light)|
-| | |![mobile-add-user-regular](icons/o2-new/regular/mobile-add-user-regular.svg) |![mobile-add-user-regular](icons/o2/regular/mobile-add-user-regular.svg) | |`mobile-add-user-regular`[![mobile-add-user-regular](.github/resources/anchor.svg)](#mobile-add-user-regular)|
-| | |![mobile-coverage-filled](icons/o2-new/filled/mobile-coverage-filled.svg) |![mobile-coverage-filled](icons/o2/filled/mobile-coverage-filled.svg) | |`mobile-coverage-filled`[![mobile-coverage-filled](.github/resources/anchor.svg)](#mobile-coverage-filled)|
-| | |![mobile-coverage-light](icons/o2-new/light/mobile-coverage-light.svg) |![mobile-coverage-light](icons/o2/light/mobile-coverage-light.svg) | |`mobile-coverage-light`[![mobile-coverage-light](.github/resources/anchor.svg)](#mobile-coverage-light)|
-| | |![mobile-coverage-regular](icons/o2-new/regular/mobile-coverage-regular.svg) |![mobile-coverage-regular](icons/o2/regular/mobile-coverage-regular.svg) | |`mobile-coverage-regular`[![mobile-coverage-regular](.github/resources/anchor.svg)](#mobile-coverage-regular)|
-|![mobile-device-filled](icons/telefonica/filled/mobile-device-filled.svg) | |![mobile-device-filled](icons/o2-new/filled/mobile-device-filled.svg) |![mobile-device-filled](icons/o2/filled/mobile-device-filled.svg) | |`mobile-device-filled`[![mobile-device-filled](.github/resources/anchor.svg)](#mobile-device-filled)|
-|![mobile-device-light](icons/telefonica/light/mobile-device-light.svg) | |![mobile-device-light](icons/o2-new/light/mobile-device-light.svg) |![mobile-device-light](icons/o2/light/mobile-device-light.svg) | |`mobile-device-light`[![mobile-device-light](.github/resources/anchor.svg)](#mobile-device-light)|
-|![mobile-device-regular](icons/telefonica/regular/mobile-device-regular.svg) | |![mobile-device-regular](icons/o2-new/regular/mobile-device-regular.svg) |![mobile-device-regular](icons/o2/regular/mobile-device-regular.svg) |![mobile-device-regular](icons/blau/regular/mobile-device-regular.svg) |`mobile-device-regular`[![mobile-device-regular](.github/resources/anchor.svg)](#mobile-device-regular)|
-| | |![mobile-euro-filled](icons/o2-new/filled/mobile-euro-filled.svg) |![mobile-euro-filled](icons/o2/filled/mobile-euro-filled.svg) | |`mobile-euro-filled`[![mobile-euro-filled](.github/resources/anchor.svg)](#mobile-euro-filled)|
-| | |![mobile-euro-light](icons/o2-new/light/mobile-euro-light.svg) |![mobile-euro-light](icons/o2/light/mobile-euro-light.svg) | |`mobile-euro-light`[![mobile-euro-light](.github/resources/anchor.svg)](#mobile-euro-light)|
-| | |![mobile-euro-regular](icons/o2-new/regular/mobile-euro-regular.svg) |![mobile-euro-regular](icons/o2/regular/mobile-euro-regular.svg) | |`mobile-euro-regular`[![mobile-euro-regular](.github/resources/anchor.svg)](#mobile-euro-regular)|
-|![mobile-pause-filled](icons/telefonica/filled/mobile-pause-filled.svg) | | | | |`mobile-pause-filled`[![mobile-pause-filled](.github/resources/anchor.svg)](#mobile-pause-filled)|
-|![mobile-pause-light](icons/telefonica/light/mobile-pause-light.svg) | | | | |`mobile-pause-light`[![mobile-pause-light](.github/resources/anchor.svg)](#mobile-pause-light)|
-|![mobile-pause-regular](icons/telefonica/regular/mobile-pause-regular.svg) | | | | |`mobile-pause-regular`[![mobile-pause-regular](.github/resources/anchor.svg)](#mobile-pause-regular)|
-|![mobile-play-filled](icons/telefonica/filled/mobile-play-filled.svg) | | | | |`mobile-play-filled`[![mobile-play-filled](.github/resources/anchor.svg)](#mobile-play-filled)|
-|![mobile-play-light](icons/telefonica/light/mobile-play-light.svg) | | | | |`mobile-play-light`[![mobile-play-light](.github/resources/anchor.svg)](#mobile-play-light)|
-|![mobile-play-regular](icons/telefonica/regular/mobile-play-regular.svg) | | | | |`mobile-play-regular`[![mobile-play-regular](.github/resources/anchor.svg)](#mobile-play-regular)|
-|![mobile-question-filled](icons/telefonica/filled/mobile-question-filled.svg) | | | | |`mobile-question-filled`[![mobile-question-filled](.github/resources/anchor.svg)](#mobile-question-filled)|
-|![mobile-question-light](icons/telefonica/light/mobile-question-light.svg) | | | | |`mobile-question-light`[![mobile-question-light](.github/resources/anchor.svg)](#mobile-question-light)|
-|![mobile-question-regular](icons/telefonica/regular/mobile-question-regular.svg) | | | | |`mobile-question-regular`[![mobile-question-regular](.github/resources/anchor.svg)](#mobile-question-regular)|
-| | |![mobile-shield-filled](icons/o2-new/filled/mobile-shield-filled.svg) |![mobile-shield-filled](icons/o2/filled/mobile-shield-filled.svg) | |`mobile-shield-filled`[![mobile-shield-filled](.github/resources/anchor.svg)](#mobile-shield-filled)|
-| | |![mobile-shield-light](icons/o2-new/light/mobile-shield-light.svg) |![mobile-shield-light](icons/o2/light/mobile-shield-light.svg) | |`mobile-shield-light`[![mobile-shield-light](.github/resources/anchor.svg)](#mobile-shield-light)|
-| | |![mobile-shield-regular](icons/o2-new/regular/mobile-shield-regular.svg) |![mobile-shield-regular](icons/o2/regular/mobile-shield-regular.svg) | |`mobile-shield-regular`[![mobile-shield-regular](.github/resources/anchor.svg)](#mobile-shield-regular)|
-| | |![mobile-usage-filled](icons/o2-new/filled/mobile-usage-filled.svg) |![mobile-usage-filled](icons/o2/filled/mobile-usage-filled.svg) | |`mobile-usage-filled`[![mobile-usage-filled](.github/resources/anchor.svg)](#mobile-usage-filled)|
-| | |![mobile-usage-light](icons/o2-new/light/mobile-usage-light.svg) |![mobile-usage-light](icons/o2/light/mobile-usage-light.svg) | |`mobile-usage-light`[![mobile-usage-light](.github/resources/anchor.svg)](#mobile-usage-light)|
-| | |![mobile-usage-regular](icons/o2-new/regular/mobile-usage-regular.svg) |![mobile-usage-regular](icons/o2/regular/mobile-usage-regular.svg) | |`mobile-usage-regular`[![mobile-usage-regular](.github/resources/anchor.svg)](#mobile-usage-regular)|
-| | |![mobile-user-filled](icons/o2-new/filled/mobile-user-filled.svg) |![mobile-user-filled](icons/o2/filled/mobile-user-filled.svg) | |`mobile-user-filled`[![mobile-user-filled](.github/resources/anchor.svg)](#mobile-user-filled)|
-| | |![mobile-user-light](icons/o2-new/light/mobile-user-light.svg) |![mobile-user-light](icons/o2/light/mobile-user-light.svg) | |`mobile-user-light`[![mobile-user-light](.github/resources/anchor.svg)](#mobile-user-light)|
-| | |![mobile-user-regular](icons/o2-new/regular/mobile-user-regular.svg) |![mobile-user-regular](icons/o2/regular/mobile-user-regular.svg) | |`mobile-user-regular`[![mobile-user-regular](.github/resources/anchor.svg)](#mobile-user-regular)|
-|![money-drop-filled](icons/telefonica/filled/money-drop-filled.svg) | | | | |`money-drop-filled`[![money-drop-filled](.github/resources/anchor.svg)](#money-drop-filled)|
-|![money-drop-light](icons/telefonica/light/money-drop-light.svg) | | | | |`money-drop-light`[![money-drop-light](.github/resources/anchor.svg)](#money-drop-light)|
-|![money-drop-regular](icons/telefonica/regular/money-drop-regular.svg) | | | | |`money-drop-regular`[![money-drop-regular](.github/resources/anchor.svg)](#money-drop-regular)|
-|![money-rise-filled](icons/telefonica/filled/money-rise-filled.svg) | | | | |`money-rise-filled`[![money-rise-filled](.github/resources/anchor.svg)](#money-rise-filled)|
-|![money-rise-light](icons/telefonica/light/money-rise-light.svg) | | | | |`money-rise-light`[![money-rise-light](.github/resources/anchor.svg)](#money-rise-light)|
-|![money-rise-regular](icons/telefonica/regular/money-rise-regular.svg) | | | | |`money-rise-regular`[![money-rise-regular](.github/resources/anchor.svg)](#money-rise-regular)|
-|![moon-filled](icons/telefonica/filled/moon-filled.svg) | | | | |`moon-filled`[![moon-filled](.github/resources/anchor.svg)](#moon-filled)|
-|![moon-light](icons/telefonica/light/moon-light.svg) | | | | |`moon-light`[![moon-light](.github/resources/anchor.svg)](#moon-light)|
-|![moon-regular](icons/telefonica/regular/moon-regular.svg) |![moon-regular](icons/vivo-new/regular/moon-regular.svg) | | | |`moon-regular`[![moon-regular](.github/resources/anchor.svg)](#moon-regular)|
-|![mouse-filled](icons/telefonica/filled/mouse-filled.svg) | | | | |`mouse-filled`[![mouse-filled](.github/resources/anchor.svg)](#mouse-filled)|
-|![mouse-light](icons/telefonica/light/mouse-light.svg) | | | | |`mouse-light`[![mouse-light](.github/resources/anchor.svg)](#mouse-light)|
-|![mouse-regular](icons/telefonica/regular/mouse-regular.svg) | | | | |`mouse-regular`[![mouse-regular](.github/resources/anchor.svg)](#mouse-regular)|
-|![multidevice-filled](icons/telefonica/filled/multidevice-filled.svg) | |![multidevice-filled](icons/o2-new/filled/multidevice-filled.svg) |![multidevice-filled](icons/o2/filled/multidevice-filled.svg) | |`multidevice-filled`[![multidevice-filled](.github/resources/anchor.svg)](#multidevice-filled)|
-|![multidevice-light](icons/telefonica/light/multidevice-light.svg) | |![multidevice-light](icons/o2-new/light/multidevice-light.svg) |![multidevice-light](icons/o2/light/multidevice-light.svg) | |`multidevice-light`[![multidevice-light](.github/resources/anchor.svg)](#multidevice-light)|
-|![multidevice-regular](icons/telefonica/regular/multidevice-regular.svg) | |![multidevice-regular](icons/o2-new/regular/multidevice-regular.svg) |![multidevice-regular](icons/o2/regular/multidevice-regular.svg) |![multidevice-regular](icons/blau/regular/multidevice-regular.svg) |`multidevice-regular`[![multidevice-regular](.github/resources/anchor.svg)](#multidevice-regular)|
-| | |![multisave-filled](icons/o2-new/filled/multisave-filled.svg) |![multisave-filled](icons/o2/filled/multisave-filled.svg) | |`multisave-filled`[![multisave-filled](.github/resources/anchor.svg)](#multisave-filled)|
-| | |![multisave-light](icons/o2-new/light/multisave-light.svg) |![multisave-light](icons/o2/light/multisave-light.svg) | |`multisave-light`[![multisave-light](.github/resources/anchor.svg)](#multisave-light)|
-| | |![multisave-regular](icons/o2-new/regular/multisave-regular.svg) |![multisave-regular](icons/o2/regular/multisave-regular.svg) | |`multisave-regular`[![multisave-regular](.github/resources/anchor.svg)](#multisave-regular)|
-| | |![multisim-filled](icons/o2-new/filled/multisim-filled.svg) |![multisim-filled](icons/o2/filled/multisim-filled.svg) | |`multisim-filled`[![multisim-filled](.github/resources/anchor.svg)](#multisim-filled)|
-| | |![multisim-light](icons/o2-new/light/multisim-light.svg) |![multisim-light](icons/o2/light/multisim-light.svg) | |`multisim-light`[![multisim-light](.github/resources/anchor.svg)](#multisim-light)|
-| | |![multisim-regular](icons/o2-new/regular/multisim-regular.svg) |![multisim-regular](icons/o2/regular/multisim-regular.svg) | |`multisim-regular`[![multisim-regular](.github/resources/anchor.svg)](#multisim-regular)|
-|![museum-filled](icons/telefonica/filled/museum-filled.svg) | | | | |`museum-filled`[![museum-filled](.github/resources/anchor.svg)](#museum-filled)|
-|![museum-light](icons/telefonica/light/museum-light.svg) | | | | |`museum-light`[![museum-light](.github/resources/anchor.svg)](#museum-light)|
-|![museum-regular](icons/telefonica/regular/museum-regular.svg) | | | | |`museum-regular`[![museum-regular](.github/resources/anchor.svg)](#museum-regular)|
-|![music-filled](icons/telefonica/filled/music-filled.svg) | |![music-filled](icons/o2-new/filled/music-filled.svg) |![music-filled](icons/o2/filled/music-filled.svg) | |`music-filled`[![music-filled](.github/resources/anchor.svg)](#music-filled)|
-|![music-light](icons/telefonica/light/music-light.svg) | |![music-light](icons/o2-new/light/music-light.svg) |![music-light](icons/o2/light/music-light.svg) | |`music-light`[![music-light](.github/resources/anchor.svg)](#music-light)|
-|![music-regular](icons/telefonica/regular/music-regular.svg) | |![music-regular](icons/o2-new/regular/music-regular.svg) |![music-regular](icons/o2/regular/music-regular.svg) | |`music-regular`[![music-regular](.github/resources/anchor.svg)](#music-regular)|
-|![mute-filled](icons/telefonica/filled/mute-filled.svg) | |![mute-filled](icons/o2-new/filled/mute-filled.svg) |![mute-filled](icons/o2/filled/mute-filled.svg) | |`mute-filled`[![mute-filled](.github/resources/anchor.svg)](#mute-filled)|
-|![mute-light](icons/telefonica/light/mute-light.svg) | |![mute-light](icons/o2-new/light/mute-light.svg) |![mute-light](icons/o2/light/mute-light.svg) | |`mute-light`[![mute-light](.github/resources/anchor.svg)](#mute-light)|
-|![mute-regular](icons/telefonica/regular/mute-regular.svg) | |![mute-regular](icons/o2-new/regular/mute-regular.svg) |![mute-regular](icons/o2/regular/mute-regular.svg) | |`mute-regular`[![mute-regular](.github/resources/anchor.svg)](#mute-regular)|
-| |![negative-film-regular](icons/vivo-new/regular/negative-film-regular.svg) | | | |`negative-film-regular`[![negative-film-regular](.github/resources/anchor.svg)](#negative-film-regular)|
-| | |![network-hotspot-filled](icons/o2-new/filled/network-hotspot-filled.svg) |![network-hotspot-filled](icons/o2/filled/network-hotspot-filled.svg) | |`network-hotspot-filled`[![network-hotspot-filled](.github/resources/anchor.svg)](#network-hotspot-filled)|
-| | |![network-hotspot-light](icons/o2-new/light/network-hotspot-light.svg) |![network-hotspot-light](icons/o2/light/network-hotspot-light.svg) | |`network-hotspot-light`[![network-hotspot-light](.github/resources/anchor.svg)](#network-hotspot-light)|
-| | |![network-hotspot-regular](icons/o2-new/regular/network-hotspot-regular.svg) |![network-hotspot-regular](icons/o2/regular/network-hotspot-regular.svg) | |`network-hotspot-regular`[![network-hotspot-regular](.github/resources/anchor.svg)](#network-hotspot-regular)|
-|![neural-network-filled](icons/telefonica/filled/neural-network-filled.svg) | | | | |`neural-network-filled`[![neural-network-filled](.github/resources/anchor.svg)](#neural-network-filled)|
-|![neural-network-human-filled](icons/telefonica/filled/neural-network-human-filled.svg) | | | | |`neural-network-human-filled`[![neural-network-human-filled](.github/resources/anchor.svg)](#neural-network-human-filled)|
-|![neural-network-human-regular](icons/telefonica/regular/neural-network-human-regular.svg) | | | | |`neural-network-human-regular`[![neural-network-human-regular](.github/resources/anchor.svg)](#neural-network-human-regular)|
-|![neural-network-light](icons/telefonica/light/neural-network-light.svg) | | | | |`neural-network-light`[![neural-network-light](.github/resources/anchor.svg)](#neural-network-light)|
-|![neural-network-regular](icons/telefonica/regular/neural-network-regular.svg) | | | | |`neural-network-regular`[![neural-network-regular](.github/resources/anchor.svg)](#neural-network-regular)|
-| | |![newsletter-filled](icons/o2-new/filled/newsletter-filled.svg) |![newsletter-filled](icons/o2/filled/newsletter-filled.svg) | |`newsletter-filled`[![newsletter-filled](.github/resources/anchor.svg)](#newsletter-filled)|
-| | |![newsletter-light](icons/o2-new/light/newsletter-light.svg) |![newsletter-light](icons/o2/light/newsletter-light.svg) | |`newsletter-light`[![newsletter-light](.github/resources/anchor.svg)](#newsletter-light)|
-| | |![newsletter-regular](icons/o2-new/regular/newsletter-regular.svg) |![newsletter-regular](icons/o2/regular/newsletter-regular.svg) | |`newsletter-regular`[![newsletter-regular](.github/resources/anchor.svg)](#newsletter-regular)|
-|![no-conexion-filled](icons/telefonica/filled/no-conexion-filled.svg) | | | | |`no-conexion-filled`[![no-conexion-filled](.github/resources/anchor.svg)](#no-conexion-filled)|
-|![no-conexion-light](icons/telefonica/light/no-conexion-light.svg) | | | | |`no-conexion-light`[![no-conexion-light](.github/resources/anchor.svg)](#no-conexion-light)|
-|![no-conexion-regular](icons/telefonica/regular/no-conexion-regular.svg) | | | | |`no-conexion-regular`[![no-conexion-regular](.github/resources/anchor.svg)](#no-conexion-regular)|
-| | |![no-hidden-bills-filled](icons/o2-new/filled/no-hidden-bills-filled.svg) |![no-hidden-bills-filled](icons/o2/filled/no-hidden-bills-filled.svg) | |`no-hidden-bills-filled`[![no-hidden-bills-filled](.github/resources/anchor.svg)](#no-hidden-bills-filled)|
-| | |![no-hidden-bills-light](icons/o2-new/light/no-hidden-bills-light.svg) |![no-hidden-bills-light](icons/o2/light/no-hidden-bills-light.svg) | |`no-hidden-bills-light`[![no-hidden-bills-light](.github/resources/anchor.svg)](#no-hidden-bills-light)|
-| | |![no-hidden-bills-regular](icons/o2-new/regular/no-hidden-bills-regular.svg) |![no-hidden-bills-regular](icons/o2/regular/no-hidden-bills-regular.svg) | |`no-hidden-bills-regular`[![no-hidden-bills-regular](.github/resources/anchor.svg)](#no-hidden-bills-regular)|
-| |![no-photo-camera-filled](icons/vivo-new/filled/no-photo-camera-filled.svg) |![no-photo-camera-filled](icons/o2-new/filled/no-photo-camera-filled.svg) |![no-photo-camera-filled](icons/o2/filled/no-photo-camera-filled.svg) | |`no-photo-camera-filled`[![no-photo-camera-filled](.github/resources/anchor.svg)](#no-photo-camera-filled)|
-| |![no-photo-camera-light](icons/vivo-new/light/no-photo-camera-light.svg) | | | |`no-photo-camera-light`[![no-photo-camera-light](.github/resources/anchor.svg)](#no-photo-camera-light)|
-| |![no-photo-camera-regular](icons/vivo-new/regular/no-photo-camera-regular.svg) |![no-photo-camera-regular](icons/o2-new/regular/no-photo-camera-regular.svg) |![no-photo-camera-regular](icons/o2/regular/no-photo-camera-regular.svg) | |`no-photo-camera-regular`[![no-photo-camera-regular](.github/resources/anchor.svg)](#no-photo-camera-regular)|
-| | |![no-smoking-filled](icons/o2-new/filled/no-smoking-filled.svg) |![no-smoking-filled](icons/o2/filled/no-smoking-filled.svg) | |`no-smoking-filled`[![no-smoking-filled](.github/resources/anchor.svg)](#no-smoking-filled)|
-| | |![no-smoking-regular](icons/o2-new/regular/no-smoking-regular.svg) |![no-smoking-regular](icons/o2/regular/no-smoking-regular.svg) | |`no-smoking-regular`[![no-smoking-regular](.github/resources/anchor.svg)](#no-smoking-regular)|
-| | |![no-tickets-filled](icons/o2-new/filled/no-tickets-filled.svg) |![no-tickets-filled](icons/o2/filled/no-tickets-filled.svg) | |`no-tickets-filled`[![no-tickets-filled](.github/resources/anchor.svg)](#no-tickets-filled)|
-| | |![no-tickets-regular](icons/o2-new/regular/no-tickets-regular.svg) |![no-tickets-regular](icons/o2/regular/no-tickets-regular.svg) | |`no-tickets-regular`[![no-tickets-regular](.github/resources/anchor.svg)](#no-tickets-regular)|
-| | |![non-binary-toilet-filled](icons/o2-new/filled/non-binary-toilet-filled.svg) |![non-binary-toilet-filled](icons/o2/filled/non-binary-toilet-filled.svg) | |`non-binary-toilet-filled`[![non-binary-toilet-filled](.github/resources/anchor.svg)](#non-binary-toilet-filled)|
-| | |![non-binary-toilet-light](icons/o2-new/light/non-binary-toilet-light.svg) |![non-binary-toilet-light](icons/o2/light/non-binary-toilet-light.svg) | |`non-binary-toilet-light`[![non-binary-toilet-light](.github/resources/anchor.svg)](#non-binary-toilet-light)|
-| | |![non-binary-toilet-regular](icons/o2-new/regular/non-binary-toilet-regular.svg) |![non-binary-toilet-regular](icons/o2/regular/non-binary-toilet-regular.svg) | |`non-binary-toilet-regular`[![non-binary-toilet-regular](.github/resources/anchor.svg)](#non-binary-toilet-regular)|
-|![notes-filled](icons/telefonica/filled/notes-filled.svg) | | | | |`notes-filled`[![notes-filled](.github/resources/anchor.svg)](#notes-filled)|
-|![notes-light](icons/telefonica/light/notes-light.svg) | | | | |`notes-light`[![notes-light](.github/resources/anchor.svg)](#notes-light)|
-|![notes-regular](icons/telefonica/regular/notes-regular.svg) | | | | |`notes-regular`[![notes-regular](.github/resources/anchor.svg)](#notes-regular)|
-|![numeric-keypad-filled](icons/telefonica/filled/numeric-keypad-filled.svg) | | | | |`numeric-keypad-filled`[![numeric-keypad-filled](.github/resources/anchor.svg)](#numeric-keypad-filled)|
-|![numeric-keypad-light](icons/telefonica/light/numeric-keypad-light.svg) | | | | |`numeric-keypad-light`[![numeric-keypad-light](.github/resources/anchor.svg)](#numeric-keypad-light)|
-|![numeric-keypad-regular](icons/telefonica/regular/numeric-keypad-regular.svg) | | | |![numeric-keypad-regular](icons/blau/regular/numeric-keypad-regular.svg) |`numeric-keypad-regular`[![numeric-keypad-regular](.github/resources/anchor.svg)](#numeric-keypad-regular)|
-| | |![offer-euro-filled](icons/o2-new/filled/offer-euro-filled.svg) |![offer-euro-filled](icons/o2/filled/offer-euro-filled.svg) | |`offer-euro-filled`[![offer-euro-filled](.github/resources/anchor.svg)](#offer-euro-filled)|
-| | |![offer-euro-light](icons/o2-new/light/offer-euro-light.svg) |![offer-euro-light](icons/o2/light/offer-euro-light.svg) | |`offer-euro-light`[![offer-euro-light](.github/resources/anchor.svg)](#offer-euro-light)|
-| | |![offer-euro-regular](icons/o2-new/regular/offer-euro-regular.svg) |![offer-euro-regular](icons/o2/regular/offer-euro-regular.svg) | |`offer-euro-regular`[![offer-euro-regular](.github/resources/anchor.svg)](#offer-euro-regular)|
-|![offer-filled](icons/telefonica/filled/offer-filled.svg) | |![offer-filled](icons/o2-new/filled/offer-filled.svg) |![offer-filled](icons/o2/filled/offer-filled.svg) | |`offer-filled`[![offer-filled](.github/resources/anchor.svg)](#offer-filled)|
-|![offer-light](icons/telefonica/light/offer-light.svg) | |![offer-light](icons/o2-new/light/offer-light.svg) |![offer-light](icons/o2/light/offer-light.svg) | |`offer-light`[![offer-light](.github/resources/anchor.svg)](#offer-light)|
-|![offer-percent-filled](icons/telefonica/filled/offer-percent-filled.svg) | |![offer-percent-filled](icons/o2-new/filled/offer-percent-filled.svg) |![offer-percent-filled](icons/o2/filled/offer-percent-filled.svg) | |`offer-percent-filled`[![offer-percent-filled](.github/resources/anchor.svg)](#offer-percent-filled)|
-|![offer-percent-light](icons/telefonica/light/offer-percent-light.svg) | |![offer-percent-light](icons/o2-new/light/offer-percent-light.svg) |![offer-percent-light](icons/o2/light/offer-percent-light.svg) | |`offer-percent-light`[![offer-percent-light](.github/resources/anchor.svg)](#offer-percent-light)|
-|![offer-percent-regular](icons/telefonica/regular/offer-percent-regular.svg) | |![offer-percent-regular](icons/o2-new/regular/offer-percent-regular.svg) |![offer-percent-regular](icons/o2/regular/offer-percent-regular.svg) | |`offer-percent-regular`[![offer-percent-regular](.github/resources/anchor.svg)](#offer-percent-regular)|
-| | |![offer-pound-filled](icons/o2-new/filled/offer-pound-filled.svg) |![offer-pound-filled](icons/o2/filled/offer-pound-filled.svg) | |`offer-pound-filled`[![offer-pound-filled](.github/resources/anchor.svg)](#offer-pound-filled)|
-| | |![offer-pound-light](icons/o2-new/light/offer-pound-light.svg) |![offer-pound-light](icons/o2/light/offer-pound-light.svg) | |`offer-pound-light`[![offer-pound-light](.github/resources/anchor.svg)](#offer-pound-light)|
-| | |![offer-pound-regular](icons/o2-new/regular/offer-pound-regular.svg) |![offer-pound-regular](icons/o2/regular/offer-pound-regular.svg) | |`offer-pound-regular`[![offer-pound-regular](.github/resources/anchor.svg)](#offer-pound-regular)|
-|![offer-regular](icons/telefonica/regular/offer-regular.svg) | |![offer-regular](icons/o2-new/regular/offer-regular.svg) |![offer-regular](icons/o2/regular/offer-regular.svg) | |`offer-regular`[![offer-regular](.github/resources/anchor.svg)](#offer-regular)|
-| | |![office-filled](icons/o2-new/filled/office-filled.svg) |![office-filled](icons/o2/filled/office-filled.svg) | |`office-filled`[![office-filled](.github/resources/anchor.svg)](#office-filled)|
-| | |![office-light](icons/o2-new/light/office-light.svg) |![office-light](icons/o2/light/office-light.svg) | |`office-light`[![office-light](.github/resources/anchor.svg)](#office-light)|
-| | |![office-regular](icons/o2-new/regular/office-regular.svg) |![office-regular](icons/o2/regular/office-regular.svg) | |`office-regular`[![office-regular](.github/resources/anchor.svg)](#office-regular)|
-|![on-filled](icons/telefonica/filled/on-filled.svg) | | | | |`on-filled`[![on-filled](.github/resources/anchor.svg)](#on-filled)|
-|![on-light](icons/telefonica/light/on-light.svg) | | | | |`on-light`[![on-light](.github/resources/anchor.svg)](#on-light)|
-|![on-regular](icons/telefonica/regular/on-regular.svg) | | | | |`on-regular`[![on-regular](.github/resources/anchor.svg)](#on-regular)|
-|![online-offer-filled](icons/telefonica/filled/online-offer-filled.svg) | | | | |`online-offer-filled`[![online-offer-filled](.github/resources/anchor.svg)](#online-offer-filled)|
-|![online-offer-light](icons/telefonica/light/online-offer-light.svg) | | | | |`online-offer-light`[![online-offer-light](.github/resources/anchor.svg)](#online-offer-light)|
-|![online-offer-regular](icons/telefonica/regular/online-offer-regular.svg) | | | | |`online-offer-regular`[![online-offer-regular](.github/resources/anchor.svg)](#online-offer-regular)|
-|![online-reload-filled](icons/telefonica/filled/online-reload-filled.svg) | | | | |`online-reload-filled`[![online-reload-filled](.github/resources/anchor.svg)](#online-reload-filled)|
-|![online-reload-light](icons/telefonica/light/online-reload-light.svg) | | | | |`online-reload-light`[![online-reload-light](.github/resources/anchor.svg)](#online-reload-light)|
-|![online-reload-regular](icons/telefonica/regular/online-reload-regular.svg) | | | | |`online-reload-regular`[![online-reload-regular](.github/resources/anchor.svg)](#online-reload-regular)|
-|![open-email-filled](icons/telefonica/filled/open-email-filled.svg) | | | | |`open-email-filled`[![open-email-filled](.github/resources/anchor.svg)](#open-email-filled)|
-|![open-email-light](icons/telefonica/light/open-email-light.svg) | | | | |`open-email-light`[![open-email-light](.github/resources/anchor.svg)](#open-email-light)|
-|![open-email-regular](icons/telefonica/regular/open-email-regular.svg) | | | | |`open-email-regular`[![open-email-regular](.github/resources/anchor.svg)](#open-email-regular)|
-|![open-file-filled](icons/telefonica/filled/open-file-filled.svg) | | | | |`open-file-filled`[![open-file-filled](.github/resources/anchor.svg)](#open-file-filled)|
-|![open-file-light](icons/telefonica/light/open-file-light.svg) | | | | |`open-file-light`[![open-file-light](.github/resources/anchor.svg)](#open-file-light)|
-|![open-file-regular](icons/telefonica/regular/open-file-regular.svg) | | | | |`open-file-regular`[![open-file-regular](.github/resources/anchor.svg)](#open-file-regular)|
-|![open-filled](icons/telefonica/filled/open-filled.svg) | | | | |`open-filled`[![open-filled](.github/resources/anchor.svg)](#open-filled)|
-|![open-light](icons/telefonica/light/open-light.svg) | | | | |`open-light`[![open-light](.github/resources/anchor.svg)](#open-light)|
-|![open-regular](icons/telefonica/regular/open-regular.svg) | | | | |`open-regular`[![open-regular](.github/resources/anchor.svg)](#open-regular)|
-|![optical-fiber-filled](icons/telefonica/filled/optical-fiber-filled.svg) | |![optical-fiber-filled](icons/o2-new/filled/optical-fiber-filled.svg) |![optical-fiber-filled](icons/o2/filled/optical-fiber-filled.svg) | |`optical-fiber-filled`[![optical-fiber-filled](.github/resources/anchor.svg)](#optical-fiber-filled)|
-|![optical-fiber-light](icons/telefonica/light/optical-fiber-light.svg) | |![optical-fiber-light](icons/o2-new/light/optical-fiber-light.svg) |![optical-fiber-light](icons/o2/light/optical-fiber-light.svg) | |`optical-fiber-light`[![optical-fiber-light](.github/resources/anchor.svg)](#optical-fiber-light)|
-|![optical-fiber-regular](icons/telefonica/regular/optical-fiber-regular.svg) | |![optical-fiber-regular](icons/o2-new/regular/optical-fiber-regular.svg) |![optical-fiber-regular](icons/o2/regular/optical-fiber-regular.svg) | |`optical-fiber-regular`[![optical-fiber-regular](.github/resources/anchor.svg)](#optical-fiber-regular)|
-|![outgoing-call-filled](icons/telefonica/filled/outgoing-call-filled.svg) | | | | |`outgoing-call-filled`[![outgoing-call-filled](.github/resources/anchor.svg)](#outgoing-call-filled)|
-|![outgoing-call-light](icons/telefonica/light/outgoing-call-light.svg) | | | | |`outgoing-call-light`[![outgoing-call-light](.github/resources/anchor.svg)](#outgoing-call-light)|
-|![outgoing-call-regular](icons/telefonica/regular/outgoing-call-regular.svg) | | | | |`outgoing-call-regular`[![outgoing-call-regular](.github/resources/anchor.svg)](#outgoing-call-regular)|
-| |![outlet-regular](icons/vivo-new/regular/outlet-regular.svg) | | | |`outlet-regular`[![outlet-regular](.github/resources/anchor.svg)](#outlet-regular)|
-|![pacifier-filled](icons/telefonica/filled/pacifier-filled.svg) | | | | |`pacifier-filled`[![pacifier-filled](.github/resources/anchor.svg)](#pacifier-filled)|
-|![pacifier-light](icons/telefonica/light/pacifier-light.svg) | | | | |`pacifier-light`[![pacifier-light](.github/resources/anchor.svg)](#pacifier-light)|
-|![pacifier-regular](icons/telefonica/regular/pacifier-regular.svg) | | | | |`pacifier-regular`[![pacifier-regular](.github/resources/anchor.svg)](#pacifier-regular)|
-|![package-trolley-filled](icons/telefonica/filled/package-trolley-filled.svg) | | | | |`package-trolley-filled`[![package-trolley-filled](.github/resources/anchor.svg)](#package-trolley-filled)|
-|![package-trolley-light](icons/telefonica/light/package-trolley-light.svg) | | | | |`package-trolley-light`[![package-trolley-light](.github/resources/anchor.svg)](#package-trolley-light)|
-| | | | |![package-trolley-regular](icons/blau/regular/package-trolley-regular.svg) |`package-trolley-regular`[![package-trolley-regular](.github/resources/anchor.svg)](#package-trolley-regular)|
-|![parking-filled](icons/telefonica/filled/parking-filled.svg) | |![parking-filled](icons/o2-new/filled/parking-filled.svg) |![parking-filled](icons/o2/filled/parking-filled.svg) | |`parking-filled`[![parking-filled](.github/resources/anchor.svg)](#parking-filled)|
-|![parking-light](icons/telefonica/light/parking-light.svg) | |![parking-light](icons/o2-new/light/parking-light.svg) |![parking-light](icons/o2/light/parking-light.svg) | |`parking-light`[![parking-light](.github/resources/anchor.svg)](#parking-light)|
-|![parking-regular](icons/telefonica/regular/parking-regular.svg) | |![parking-regular](icons/o2-new/regular/parking-regular.svg) |![parking-regular](icons/o2/regular/parking-regular.svg) | |`parking-regular`[![parking-regular](.github/resources/anchor.svg)](#parking-regular)|
-|![pause-circle-filled](icons/telefonica/filled/pause-circle-filled.svg) | |![pause-circle-filled](icons/o2-new/filled/pause-circle-filled.svg) |![pause-circle-filled](icons/o2/filled/pause-circle-filled.svg) | |`pause-circle-filled`[![pause-circle-filled](.github/resources/anchor.svg)](#pause-circle-filled)|
-|![pause-circle-light](icons/telefonica/light/pause-circle-light.svg) | |![pause-circle-light](icons/o2-new/light/pause-circle-light.svg) |![pause-circle-light](icons/o2/light/pause-circle-light.svg) | |`pause-circle-light`[![pause-circle-light](.github/resources/anchor.svg)](#pause-circle-light)|
-|![pause-circle-regular](icons/telefonica/regular/pause-circle-regular.svg) | |![pause-circle-regular](icons/o2-new/regular/pause-circle-regular.svg) |![pause-circle-regular](icons/o2/regular/pause-circle-regular.svg) | |`pause-circle-regular`[![pause-circle-regular](.github/resources/anchor.svg)](#pause-circle-regular)|
-|![pause-filled](icons/telefonica/filled/pause-filled.svg) | |![pause-filled](icons/o2-new/filled/pause-filled.svg) |![pause-filled](icons/o2/filled/pause-filled.svg) | |`pause-filled`[![pause-filled](.github/resources/anchor.svg)](#pause-filled)|
-|![pause-light](icons/telefonica/light/pause-light.svg) | |![pause-light](icons/o2-new/light/pause-light.svg) |![pause-light](icons/o2/light/pause-light.svg) | |`pause-light`[![pause-light](.github/resources/anchor.svg)](#pause-light)|
-|![pause-regular](icons/telefonica/regular/pause-regular.svg) | |![pause-regular](icons/o2-new/regular/pause-regular.svg) |![pause-regular](icons/o2/regular/pause-regular.svg) | |`pause-regular`[![pause-regular](.github/resources/anchor.svg)](#pause-regular)|
-| | |![pay-as-you-go-euro-filled](icons/o2-new/filled/pay-as-you-go-euro-filled.svg) |![pay-as-you-go-euro-filled](icons/o2/filled/pay-as-you-go-euro-filled.svg) | |`pay-as-you-go-euro-filled`[![pay-as-you-go-euro-filled](.github/resources/anchor.svg)](#pay-as-you-go-euro-filled)|
-| | |![pay-as-you-go-euro-light](icons/o2-new/light/pay-as-you-go-euro-light.svg) |![pay-as-you-go-euro-light](icons/o2/light/pay-as-you-go-euro-light.svg) | |`pay-as-you-go-euro-light`[![pay-as-you-go-euro-light](.github/resources/anchor.svg)](#pay-as-you-go-euro-light)|
-| | |![pay-as-you-go-euro-regular](icons/o2-new/regular/pay-as-you-go-euro-regular.svg) |![pay-as-you-go-euro-regular](icons/o2/regular/pay-as-you-go-euro-regular.svg) | |`pay-as-you-go-euro-regular`[![pay-as-you-go-euro-regular](.github/resources/anchor.svg)](#pay-as-you-go-euro-regular)|
-| | |![pay-as-you-go-pound-filled](icons/o2-new/filled/pay-as-you-go-pound-filled.svg) |![pay-as-you-go-pound-filled](icons/o2/filled/pay-as-you-go-pound-filled.svg) | |`pay-as-you-go-pound-filled`[![pay-as-you-go-pound-filled](.github/resources/anchor.svg)](#pay-as-you-go-pound-filled)|
-| | |![pay-as-you-go-pound-light](icons/o2-new/light/pay-as-you-go-pound-light.svg) |![pay-as-you-go-pound-light](icons/o2/light/pay-as-you-go-pound-light.svg) | |`pay-as-you-go-pound-light`[![pay-as-you-go-pound-light](.github/resources/anchor.svg)](#pay-as-you-go-pound-light)|
-| | |![pay-as-you-go-pound-regular](icons/o2-new/regular/pay-as-you-go-pound-regular.svg) |![pay-as-you-go-pound-regular](icons/o2/regular/pay-as-you-go-pound-regular.svg) | |`pay-as-you-go-pound-regular`[![pay-as-you-go-pound-regular](.github/resources/anchor.svg)](#pay-as-you-go-pound-regular)|
-|![pay-invoice-filled](icons/telefonica/filled/pay-invoice-filled.svg) | |![pay-invoice-filled](icons/o2-new/filled/pay-invoice-filled.svg) |![pay-invoice-filled](icons/o2/filled/pay-invoice-filled.svg) | |`pay-invoice-filled`[![pay-invoice-filled](.github/resources/anchor.svg)](#pay-invoice-filled)|
-|![pay-invoice-light](icons/telefonica/light/pay-invoice-light.svg) | |![pay-invoice-light](icons/o2-new/light/pay-invoice-light.svg) |![pay-invoice-light](icons/o2/light/pay-invoice-light.svg) | |`pay-invoice-light`[![pay-invoice-light](.github/resources/anchor.svg)](#pay-invoice-light)|
-| | |![pay-invoice-pound-filled](icons/o2-new/filled/pay-invoice-pound-filled.svg) |![pay-invoice-pound-filled](icons/o2/filled/pay-invoice-pound-filled.svg) | |`pay-invoice-pound-filled`[![pay-invoice-pound-filled](.github/resources/anchor.svg)](#pay-invoice-pound-filled)|
-| | |![pay-invoice-pound-light](icons/o2-new/light/pay-invoice-pound-light.svg) |![pay-invoice-pound-light](icons/o2/light/pay-invoice-pound-light.svg) | |`pay-invoice-pound-light`[![pay-invoice-pound-light](.github/resources/anchor.svg)](#pay-invoice-pound-light)|
-| | |![pay-invoice-pound-regular](icons/o2-new/regular/pay-invoice-pound-regular.svg) |![pay-invoice-pound-regular](icons/o2/regular/pay-invoice-pound-regular.svg) | |`pay-invoice-pound-regular`[![pay-invoice-pound-regular](.github/resources/anchor.svg)](#pay-invoice-pound-regular)|
-|![pay-invoice-regular](icons/telefonica/regular/pay-invoice-regular.svg) | |![pay-invoice-regular](icons/o2-new/regular/pay-invoice-regular.svg) |![pay-invoice-regular](icons/o2/regular/pay-invoice-regular.svg) | |`pay-invoice-regular`[![pay-invoice-regular](.github/resources/anchor.svg)](#pay-invoice-regular)|
-|![pen-filled](icons/telefonica/filled/pen-filled.svg) | |![pen-filled](icons/o2-new/filled/pen-filled.svg) |![pen-filled](icons/o2/filled/pen-filled.svg) | |`pen-filled`[![pen-filled](.github/resources/anchor.svg)](#pen-filled)|
-|![pen-light](icons/telefonica/light/pen-light.svg) | |![pen-light](icons/o2-new/light/pen-light.svg) |![pen-light](icons/o2/light/pen-light.svg) | |`pen-light`[![pen-light](.github/resources/anchor.svg)](#pen-light)|
-|![pen-regular](icons/telefonica/regular/pen-regular.svg) | |![pen-regular](icons/o2-new/regular/pen-regular.svg) |![pen-regular](icons/o2/regular/pen-regular.svg) |![pen-regular](icons/blau/regular/pen-regular.svg) |`pen-regular`[![pen-regular](.github/resources/anchor.svg)](#pen-regular)|
-|![pendrive-filled](icons/telefonica/filled/pendrive-filled.svg) | | | | |`pendrive-filled`[![pendrive-filled](.github/resources/anchor.svg)](#pendrive-filled)|
-|![pendrive-light](icons/telefonica/light/pendrive-light.svg) | | | | |`pendrive-light`[![pendrive-light](.github/resources/anchor.svg)](#pendrive-light)|
-|![pendrive-regular](icons/telefonica/regular/pendrive-regular.svg) | | | | |`pendrive-regular`[![pendrive-regular](.github/resources/anchor.svg)](#pendrive-regular)|
-|![people-network-filled](icons/telefonica/filled/people-network-filled.svg) | |![people-network-filled](icons/o2-new/filled/people-network-filled.svg) |![people-network-filled](icons/o2/filled/people-network-filled.svg) | |`people-network-filled`[![people-network-filled](.github/resources/anchor.svg)](#people-network-filled)|
-|![people-network-light](icons/telefonica/light/people-network-light.svg) | |![people-network-light](icons/o2-new/light/people-network-light.svg) |![people-network-light](icons/o2/light/people-network-light.svg) | |`people-network-light`[![people-network-light](.github/resources/anchor.svg)](#people-network-light)|
-|![people-network-regular](icons/telefonica/regular/people-network-regular.svg) | |![people-network-regular](icons/o2-new/regular/people-network-regular.svg) |![people-network-regular](icons/o2/regular/people-network-regular.svg) | |`people-network-regular`[![people-network-regular](.github/resources/anchor.svg)](#people-network-regular)|
-|![percent-filled](icons/telefonica/filled/percent-filled.svg) | | | | |`percent-filled`[![percent-filled](.github/resources/anchor.svg)](#percent-filled)|
-|![percent-light](icons/telefonica/light/percent-light.svg) | | | | |`percent-light`[![percent-light](.github/resources/anchor.svg)](#percent-light)|
-|![percent-regular](icons/telefonica/regular/percent-regular.svg) | | | | |`percent-regular`[![percent-regular](.github/resources/anchor.svg)](#percent-regular)|
-|![person-filled](icons/telefonica/filled/person-filled.svg) | |![person-filled](icons/o2-new/filled/person-filled.svg) |![person-filled](icons/o2/filled/person-filled.svg) | |`person-filled`[![person-filled](.github/resources/anchor.svg)](#person-filled)|
-|![person-light](icons/telefonica/light/person-light.svg) | |![person-light](icons/o2-new/light/person-light.svg) |![person-light](icons/o2/light/person-light.svg) | |`person-light`[![person-light](.github/resources/anchor.svg)](#person-light)|
-|![person-regular](icons/telefonica/regular/person-regular.svg) | |![person-regular](icons/o2-new/regular/person-regular.svg) |![person-regular](icons/o2/regular/person-regular.svg) | |`person-regular`[![person-regular](.github/resources/anchor.svg)](#person-regular)|
-|![personal-computer-filled](icons/telefonica/filled/personal-computer-filled.svg) | |![personal-computer-filled](icons/o2-new/filled/personal-computer-filled.svg) |![personal-computer-filled](icons/o2/filled/personal-computer-filled.svg) | |`personal-computer-filled`[![personal-computer-filled](.github/resources/anchor.svg)](#personal-computer-filled)|
-|![personal-computer-light](icons/telefonica/light/personal-computer-light.svg) | |![personal-computer-light](icons/o2-new/light/personal-computer-light.svg) |![personal-computer-light](icons/o2/light/personal-computer-light.svg) | |`personal-computer-light`[![personal-computer-light](.github/resources/anchor.svg)](#personal-computer-light)|
-|![personal-computer-regular](icons/telefonica/regular/personal-computer-regular.svg) | |![personal-computer-regular](icons/o2-new/regular/personal-computer-regular.svg) |![personal-computer-regular](icons/o2/regular/personal-computer-regular.svg) |![personal-computer-regular](icons/blau/regular/personal-computer-regular.svg) |`personal-computer-regular`[![personal-computer-regular](.github/resources/anchor.svg)](#personal-computer-regular)|
-|![pharmacy-filled](icons/telefonica/filled/pharmacy-filled.svg) | | | | |`pharmacy-filled`[![pharmacy-filled](.github/resources/anchor.svg)](#pharmacy-filled)|
-|![pharmacy-light](icons/telefonica/light/pharmacy-light.svg) | | | | |`pharmacy-light`[![pharmacy-light](.github/resources/anchor.svg)](#pharmacy-light)|
-|![pharmacy-regular](icons/telefonica/regular/pharmacy-regular.svg) | | | | |`pharmacy-regular`[![pharmacy-regular](.github/resources/anchor.svg)](#pharmacy-regular)|
-|![photo-camera-filled](icons/telefonica/filled/photo-camera-filled.svg) | |![photo-camera-filled](icons/o2-new/filled/photo-camera-filled.svg) |![photo-camera-filled](icons/o2/filled/photo-camera-filled.svg) | |`photo-camera-filled`[![photo-camera-filled](.github/resources/anchor.svg)](#photo-camera-filled)|
-|![photo-camera-light](icons/telefonica/light/photo-camera-light.svg) | |![photo-camera-light](icons/o2-new/light/photo-camera-light.svg) |![photo-camera-light](icons/o2/light/photo-camera-light.svg) | |`photo-camera-light`[![photo-camera-light](.github/resources/anchor.svg)](#photo-camera-light)|
-|![photo-camera-regular](icons/telefonica/regular/photo-camera-regular.svg) | |![photo-camera-regular](icons/o2-new/regular/photo-camera-regular.svg) |![photo-camera-regular](icons/o2/regular/photo-camera-regular.svg) | |`photo-camera-regular`[![photo-camera-regular](.github/resources/anchor.svg)](#photo-camera-regular)|
-| | |![pickpocket-filled](icons/o2-new/filled/pickpocket-filled.svg) |![pickpocket-filled](icons/o2/filled/pickpocket-filled.svg) | |`pickpocket-filled`[![pickpocket-filled](.github/resources/anchor.svg)](#pickpocket-filled)|
-| | |![pickpocket-regular](icons/o2-new/regular/pickpocket-regular.svg) |![pickpocket-regular](icons/o2/regular/pickpocket-regular.svg) | |`pickpocket-regular`[![pickpocket-regular](.github/resources/anchor.svg)](#pickpocket-regular)|
-|![pill-filled](icons/telefonica/filled/pill-filled.svg) | | | | |`pill-filled`[![pill-filled](.github/resources/anchor.svg)](#pill-filled)|
-|![pill-light](icons/telefonica/light/pill-light.svg) | | | | |`pill-light`[![pill-light](.github/resources/anchor.svg)](#pill-light)|
-|![pill-regular](icons/telefonica/regular/pill-regular.svg) | | | | |`pill-regular`[![pill-regular](.github/resources/anchor.svg)](#pill-regular)|
-|![pills-filled](icons/telefonica/filled/pills-filled.svg) | | | | |`pills-filled`[![pills-filled](.github/resources/anchor.svg)](#pills-filled)|
-|![pills-light](icons/telefonica/light/pills-light.svg) | | | | |`pills-light`[![pills-light](.github/resources/anchor.svg)](#pills-light)|
-|![pills-regular](icons/telefonica/regular/pills-regular.svg) | | | | |`pills-regular`[![pills-regular](.github/resources/anchor.svg)](#pills-regular)|
-|![pin-filled](icons/telefonica/filled/pin-filled.svg) | |![pin-filled](icons/o2-new/filled/pin-filled.svg) |![pin-filled](icons/o2/filled/pin-filled.svg) | |`pin-filled`[![pin-filled](.github/resources/anchor.svg)](#pin-filled)|
-|![pin-light](icons/telefonica/light/pin-light.svg) | |![pin-light](icons/o2-new/light/pin-light.svg) |![pin-light](icons/o2/light/pin-light.svg) | |`pin-light`[![pin-light](.github/resources/anchor.svg)](#pin-light)|
-|![pin-regular](icons/telefonica/regular/pin-regular.svg) | |![pin-regular](icons/o2-new/regular/pin-regular.svg) |![pin-regular](icons/o2/regular/pin-regular.svg) | |`pin-regular`[![pin-regular](.github/resources/anchor.svg)](#pin-regular)|
-|![plane-filled](icons/telefonica/filled/plane-filled.svg) | |![plane-filled](icons/o2-new/filled/plane-filled.svg) |![plane-filled](icons/o2/filled/plane-filled.svg) | |`plane-filled`[![plane-filled](.github/resources/anchor.svg)](#plane-filled)|
-|![plane-light](icons/telefonica/light/plane-light.svg) | |![plane-light](icons/o2-new/light/plane-light.svg) |![plane-light](icons/o2/light/plane-light.svg) | |`plane-light`[![plane-light](.github/resources/anchor.svg)](#plane-light)|
-|![plane-regular](icons/telefonica/regular/plane-regular.svg) | |![plane-regular](icons/o2-new/regular/plane-regular.svg) |![plane-regular](icons/o2/regular/plane-regular.svg) |![plane-regular](icons/blau/regular/plane-regular.svg) |`plane-regular`[![plane-regular](.github/resources/anchor.svg)](#plane-regular)|
-|![plant-filled](icons/telefonica/filled/plant-filled.svg) | | | | |`plant-filled`[![plant-filled](.github/resources/anchor.svg)](#plant-filled)|
-|![plant-light](icons/telefonica/light/plant-light.svg) | | | | |`plant-light`[![plant-light](.github/resources/anchor.svg)](#plant-light)|
-|![plant-regular](icons/telefonica/regular/plant-regular.svg) | | | | |`plant-regular`[![plant-regular](.github/resources/anchor.svg)](#plant-regular)|
-|![play-circle-filled](icons/telefonica/filled/play-circle-filled.svg) | | | | |`play-circle-filled`[![play-circle-filled](.github/resources/anchor.svg)](#play-circle-filled)|
-|![play-circle-light](icons/telefonica/light/play-circle-light.svg) | | | | |`play-circle-light`[![play-circle-light](.github/resources/anchor.svg)](#play-circle-light)|
-|![play-circle-regular](icons/telefonica/regular/play-circle-regular.svg) | | | | |`play-circle-regular`[![play-circle-regular](.github/resources/anchor.svg)](#play-circle-regular)|
-|![play-filled](icons/telefonica/filled/play-filled.svg) | |![play-filled](icons/o2-new/filled/play-filled.svg) |![play-filled](icons/o2/filled/play-filled.svg) | |`play-filled`[![play-filled](.github/resources/anchor.svg)](#play-filled)|
-|![play-light](icons/telefonica/light/play-light.svg) | |![play-light](icons/o2-new/light/play-light.svg) |![play-light](icons/o2/light/play-light.svg) | |`play-light`[![play-light](.github/resources/anchor.svg)](#play-light)|
-|![play-regular](icons/telefonica/regular/play-regular.svg) | |![play-regular](icons/o2-new/regular/play-regular.svg) |![play-regular](icons/o2/regular/play-regular.svg) | |`play-regular`[![play-regular](.github/resources/anchor.svg)](#play-regular)|
-|![plug-filled](icons/telefonica/filled/plug-filled.svg) | |![plug-filled](icons/o2-new/filled/plug-filled.svg) |![plug-filled](icons/o2/filled/plug-filled.svg) | |`plug-filled`[![plug-filled](.github/resources/anchor.svg)](#plug-filled)|
-|![plug-light](icons/telefonica/light/plug-light.svg) | |![plug-light](icons/o2-new/light/plug-light.svg) |![plug-light](icons/o2/light/plug-light.svg) | |`plug-light`[![plug-light](.github/resources/anchor.svg)](#plug-light)|
-|![plug-regular](icons/telefonica/regular/plug-regular.svg) | |![plug-regular](icons/o2-new/regular/plug-regular.svg) |![plug-regular](icons/o2/regular/plug-regular.svg) | |`plug-regular`[![plug-regular](.github/resources/anchor.svg)](#plug-regular)|
-|![podium-filled](icons/telefonica/filled/podium-filled.svg) | | | | |`podium-filled`[![podium-filled](.github/resources/anchor.svg)](#podium-filled)|
-|![podium-light](icons/telefonica/light/podium-light.svg) | | | | |`podium-light`[![podium-light](.github/resources/anchor.svg)](#podium-light)|
-|![podium-regular](icons/telefonica/regular/podium-regular.svg) | | | | |`podium-regular`[![podium-regular](.github/resources/anchor.svg)](#podium-regular)|
-|![poison-filled](icons/telefonica/filled/poison-filled.svg) | | | | |`poison-filled`[![poison-filled](.github/resources/anchor.svg)](#poison-filled)|
-|![poison-light](icons/telefonica/light/poison-light.svg) | | | | |`poison-light`[![poison-light](.github/resources/anchor.svg)](#poison-light)|
-|![poison-regular](icons/telefonica/regular/poison-regular.svg) | | | | |`poison-regular`[![poison-regular](.github/resources/anchor.svg)](#poison-regular)|
-|![portability-filled](icons/telefonica/filled/portability-filled.svg) | | | | |`portability-filled`[![portability-filled](.github/resources/anchor.svg)](#portability-filled)|
-|![portability-light](icons/telefonica/light/portability-light.svg) | | | | |`portability-light`[![portability-light](.github/resources/anchor.svg)](#portability-light)|
-|![portability-regular](icons/telefonica/regular/portability-regular.svg) | | | | |`portability-regular`[![portability-regular](.github/resources/anchor.svg)](#portability-regular)|
-|![postpay-filled](icons/telefonica/filled/postpay-filled.svg) | | | | |`postpay-filled`[![postpay-filled](.github/resources/anchor.svg)](#postpay-filled)|
-|![postpay-light](icons/telefonica/light/postpay-light.svg) | | | | |`postpay-light`[![postpay-light](.github/resources/anchor.svg)](#postpay-light)|
-|![postpay-regular](icons/telefonica/regular/postpay-regular.svg) | | | | |`postpay-regular`[![postpay-regular](.github/resources/anchor.svg)](#postpay-regular)|
-|![pound-symbol-circle-filled](icons/telefonica/filled/pound-symbol-circle-filled.svg) | |![pound-symbol-circle-filled](icons/o2-new/filled/pound-symbol-circle-filled.svg) |![pound-symbol-circle-filled](icons/o2/filled/pound-symbol-circle-filled.svg) | |`pound-symbol-circle-filled`[![pound-symbol-circle-filled](.github/resources/anchor.svg)](#pound-symbol-circle-filled)|
-|![pound-symbol-circle-light](icons/telefonica/light/pound-symbol-circle-light.svg) | |![pound-symbol-circle-light](icons/o2-new/light/pound-symbol-circle-light.svg) |![pound-symbol-circle-light](icons/o2/light/pound-symbol-circle-light.svg) | |`pound-symbol-circle-light`[![pound-symbol-circle-light](.github/resources/anchor.svg)](#pound-symbol-circle-light)|
-|![pound-symbol-circle-regular](icons/telefonica/regular/pound-symbol-circle-regular.svg) | |![pound-symbol-circle-regular](icons/o2-new/regular/pound-symbol-circle-regular.svg) |![pound-symbol-circle-regular](icons/o2/regular/pound-symbol-circle-regular.svg) | |`pound-symbol-circle-regular`[![pound-symbol-circle-regular](.github/resources/anchor.svg)](#pound-symbol-circle-regular)|
-|![power-filled](icons/telefonica/filled/power-filled.svg) | |![power-filled](icons/o2-new/filled/power-filled.svg) |![power-filled](icons/o2/filled/power-filled.svg) | |`power-filled`[![power-filled](.github/resources/anchor.svg)](#power-filled)|
-|![power-light](icons/telefonica/light/power-light.svg) | |![power-light](icons/o2-new/light/power-light.svg) |![power-light](icons/o2/light/power-light.svg) | |`power-light`[![power-light](.github/resources/anchor.svg)](#power-light)|
-|![power-regular](icons/telefonica/regular/power-regular.svg) |![power-regular](icons/vivo-new/regular/power-regular.svg) |![power-regular](icons/o2-new/regular/power-regular.svg) |![power-regular](icons/o2/regular/power-regular.svg) | |`power-regular`[![power-regular](.github/resources/anchor.svg)](#power-regular)|
-| | |![pre-order-filled](icons/o2-new/filled/pre-order-filled.svg) |![pre-order-filled](icons/o2/filled/pre-order-filled.svg) | |`pre-order-filled`[![pre-order-filled](.github/resources/anchor.svg)](#pre-order-filled)|
-| | |![pre-order-light](icons/o2-new/light/pre-order-light.svg) |![pre-order-light](icons/o2/light/pre-order-light.svg) | |`pre-order-light`[![pre-order-light](.github/resources/anchor.svg)](#pre-order-light)|
-| | |![pre-order-regular](icons/o2-new/regular/pre-order-regular.svg) |![pre-order-regular](icons/o2/regular/pre-order-regular.svg) | |`pre-order-regular`[![pre-order-regular](.github/resources/anchor.svg)](#pre-order-regular)|
-|![prepaid-filled](icons/telefonica/filled/prepaid-filled.svg) | |![prepaid-filled](icons/o2-new/filled/prepaid-filled.svg) |![prepaid-filled](icons/o2/filled/prepaid-filled.svg) | |`prepaid-filled`[![prepaid-filled](.github/resources/anchor.svg)](#prepaid-filled)|
-|![prepaid-light](icons/telefonica/light/prepaid-light.svg) | |![prepaid-light](icons/o2-new/light/prepaid-light.svg) |![prepaid-light](icons/o2/light/prepaid-light.svg) | |`prepaid-light`[![prepaid-light](.github/resources/anchor.svg)](#prepaid-light)|
-|![prepaid-regular](icons/telefonica/regular/prepaid-regular.svg) | |![prepaid-regular](icons/o2-new/regular/prepaid-regular.svg) |![prepaid-regular](icons/o2/regular/prepaid-regular.svg) | |`prepaid-regular`[![prepaid-regular](.github/resources/anchor.svg)](#prepaid-regular)|
-|![presentation-filled](icons/telefonica/filled/presentation-filled.svg) | | | | |`presentation-filled`[![presentation-filled](.github/resources/anchor.svg)](#presentation-filled)|
-|![presentation-light](icons/telefonica/light/presentation-light.svg) | | | | |`presentation-light`[![presentation-light](.github/resources/anchor.svg)](#presentation-light)|
-|![presentation-regular](icons/telefonica/regular/presentation-regular.svg) | | | | |`presentation-regular`[![presentation-regular](.github/resources/anchor.svg)](#presentation-regular)|
-|![price-drop-filled](icons/telefonica/filled/price-drop-filled.svg) | | | | |`price-drop-filled`[![price-drop-filled](.github/resources/anchor.svg)](#price-drop-filled)|
-|![price-drop-light](icons/telefonica/light/price-drop-light.svg) | | | | |`price-drop-light`[![price-drop-light](.github/resources/anchor.svg)](#price-drop-light)|
-|![price-drop-regular](icons/telefonica/regular/price-drop-regular.svg) | | | | |`price-drop-regular`[![price-drop-regular](.github/resources/anchor.svg)](#price-drop-regular)|
-| | |![printer-filled](icons/o2-new/filled/printer-filled.svg) |![printer-filled](icons/o2/filled/printer-filled.svg) | |`printer-filled`[![printer-filled](.github/resources/anchor.svg)](#printer-filled)|
-| | |![printer-light](icons/o2-new/light/printer-light.svg) |![printer-light](icons/o2/light/printer-light.svg) | |`printer-light`[![printer-light](.github/resources/anchor.svg)](#printer-light)|
-| | |![printer-regular](icons/o2-new/regular/printer-regular.svg) |![printer-regular](icons/o2/regular/printer-regular.svg) | |`printer-regular`[![printer-regular](.github/resources/anchor.svg)](#printer-regular)|
-|![process-loading-filled](icons/telefonica/filled/process-loading-filled.svg) | |![process-loading-filled](icons/o2-new/filled/process-loading-filled.svg) |![process-loading-filled](icons/o2/filled/process-loading-filled.svg) | |`process-loading-filled`[![process-loading-filled](.github/resources/anchor.svg)](#process-loading-filled)|
-|![process-loading-light](icons/telefonica/light/process-loading-light.svg) | |![process-loading-light](icons/o2-new/light/process-loading-light.svg) |![process-loading-light](icons/o2/light/process-loading-light.svg) | |`process-loading-light`[![process-loading-light](.github/resources/anchor.svg)](#process-loading-light)|
-|![process-loading-regular](icons/telefonica/regular/process-loading-regular.svg) | |![process-loading-regular](icons/o2-new/regular/process-loading-regular.svg) |![process-loading-regular](icons/o2/regular/process-loading-regular.svg) | |`process-loading-regular`[![process-loading-regular](.github/resources/anchor.svg)](#process-loading-regular)|
-|![puzzle-filled](icons/telefonica/filled/puzzle-filled.svg) | | | | |`puzzle-filled`[![puzzle-filled](.github/resources/anchor.svg)](#puzzle-filled)|
-|![puzzle-light](icons/telefonica/light/puzzle-light.svg) | | | | |`puzzle-light`[![puzzle-light](.github/resources/anchor.svg)](#puzzle-light)|
-|![puzzle-regular](icons/telefonica/regular/puzzle-regular.svg) | | | | |`puzzle-regular`[![puzzle-regular](.github/resources/anchor.svg)](#puzzle-regular)|
-| |![qr-code-filled](icons/vivo-new/filled/qr-code-filled.svg) | | | |`qr-code-filled`[![qr-code-filled](.github/resources/anchor.svg)](#qr-code-filled)|
-| |![qr-code-light](icons/vivo-new/light/qr-code-light.svg) | | | |`qr-code-light`[![qr-code-light](.github/resources/anchor.svg)](#qr-code-light)|
-| |![qr-code-regular](icons/vivo-new/regular/qr-code-regular.svg) | | | |`qr-code-regular`[![qr-code-regular](.github/resources/anchor.svg)](#qr-code-regular)|
-|![question-filled](icons/telefonica/filled/question-filled.svg) | |![question-filled](icons/o2-new/filled/question-filled.svg) |![question-filled](icons/o2/filled/question-filled.svg) | |`question-filled`[![question-filled](.github/resources/anchor.svg)](#question-filled)|
-|![question-light](icons/telefonica/light/question-light.svg) | |![question-light](icons/o2-new/light/question-light.svg) |![question-light](icons/o2/light/question-light.svg) | |`question-light`[![question-light](.github/resources/anchor.svg)](#question-light)|
-|![question-regular](icons/telefonica/regular/question-regular.svg) | |![question-regular](icons/o2-new/regular/question-regular.svg) |![question-regular](icons/o2/regular/question-regular.svg) |![question-regular](icons/blau/regular/question-regular.svg) |`question-regular`[![question-regular](.github/resources/anchor.svg)](#question-regular)|
-| | |![queue-filled](icons/o2-new/filled/queue-filled.svg) |![queue-filled](icons/o2/filled/queue-filled.svg) | |`queue-filled`[![queue-filled](.github/resources/anchor.svg)](#queue-filled)|
-| | |![queue-light](icons/o2-new/light/queue-light.svg) |![queue-light](icons/o2/light/queue-light.svg) | |`queue-light`[![queue-light](.github/resources/anchor.svg)](#queue-light)|
-| | |![queue-regular](icons/o2-new/regular/queue-regular.svg) |![queue-regular](icons/o2/regular/queue-regular.svg) | |`queue-regular`[![queue-regular](.github/resources/anchor.svg)](#queue-regular)|
-| |![rain-regular](icons/vivo-new/regular/rain-regular.svg) | | | |`rain-regular`[![rain-regular](.github/resources/anchor.svg)](#rain-regular)|
-|![rating-filled](icons/telefonica/filled/rating-filled.svg) | |![rating-filled](icons/o2-new/filled/rating-filled.svg) |![rating-filled](icons/o2/filled/rating-filled.svg) | |`rating-filled`[![rating-filled](.github/resources/anchor.svg)](#rating-filled)|
-|![rating-light](icons/telefonica/light/rating-light.svg) | |![rating-light](icons/o2-new/light/rating-light.svg) |![rating-light](icons/o2/light/rating-light.svg) | |`rating-light`[![rating-light](.github/resources/anchor.svg)](#rating-light)|
-|![rating-regular](icons/telefonica/regular/rating-regular.svg) | |![rating-regular](icons/o2-new/regular/rating-regular.svg) |![rating-regular](icons/o2/regular/rating-regular.svg) | |`rating-regular`[![rating-regular](.github/resources/anchor.svg)](#rating-regular)|
-| |![reading-qr-filled](icons/vivo-new/filled/reading-qr-filled.svg) | | | |`reading-qr-filled`[![reading-qr-filled](.github/resources/anchor.svg)](#reading-qr-filled)|
-| |![reading-qr-light](icons/vivo-new/light/reading-qr-light.svg) | | | |`reading-qr-light`[![reading-qr-light](.github/resources/anchor.svg)](#reading-qr-light)|
-| |![reading-qr-regular](icons/vivo-new/regular/reading-qr-regular.svg) | | | |`reading-qr-regular`[![reading-qr-regular](.github/resources/anchor.svg)](#reading-qr-regular)|
-| | |![recording-filled](icons/o2-new/filled/recording-filled.svg) |![recording-filled](icons/o2/filled/recording-filled.svg) | |`recording-filled`[![recording-filled](.github/resources/anchor.svg)](#recording-filled)|
-| | |![recording-light](icons/o2-new/light/recording-light.svg) |![recording-light](icons/o2/light/recording-light.svg) | |`recording-light`[![recording-light](.github/resources/anchor.svg)](#recording-light)|
-| | |![recording-regular](icons/o2-new/regular/recording-regular.svg) |![recording-regular](icons/o2/regular/recording-regular.svg) | |`recording-regular`[![recording-regular](.github/resources/anchor.svg)](#recording-regular)|
-| | |![recycle-filled](icons/o2-new/filled/recycle-filled.svg) |![recycle-filled](icons/o2/filled/recycle-filled.svg) | |`recycle-filled`[![recycle-filled](.github/resources/anchor.svg)](#recycle-filled)|
-| | |![recycle-light](icons/o2-new/light/recycle-light.svg) |![recycle-light](icons/o2/light/recycle-light.svg) | |`recycle-light`[![recycle-light](.github/resources/anchor.svg)](#recycle-light)|
-| | |![recycle-regular](icons/o2-new/regular/recycle-regular.svg) |![recycle-regular](icons/o2/regular/recycle-regular.svg) | |`recycle-regular`[![recycle-regular](.github/resources/anchor.svg)](#recycle-regular)|
-| | |![refresh-filled](icons/o2-new/filled/refresh-filled.svg) |![refresh-filled](icons/o2/filled/refresh-filled.svg) | |`refresh-filled`[![refresh-filled](.github/resources/anchor.svg)](#refresh-filled)|
-|![reload-light](icons/telefonica/light/reload-light.svg) |![reload-light](icons/vivo-new/light/reload-light.svg) |![reload-light](icons/o2-new/light/reload-light.svg) |![reload-light](icons/o2/light/reload-light.svg) | |`reload-light`[![reload-light](.github/resources/anchor.svg)](#reload-light)|
-|![reload-regular](icons/telefonica/regular/reload-regular.svg) |![reload-regular](icons/vivo-new/regular/reload-regular.svg) |![reload-regular](icons/o2-new/regular/reload-regular.svg) |![reload-regular](icons/o2/regular/reload-regular.svg) | |`reload-regular`[![reload-regular](.github/resources/anchor.svg)](#reload-regular)|
-|![renovate-device-change-mobile-filled](icons/telefonica/filled/renovate-device-change-mobile-filled.svg) | |![renovate-device-change-mobile-filled](icons/o2-new/filled/renovate-device-change-mobile-filled.svg) |![renovate-device-change-mobile-filled](icons/o2/filled/renovate-device-change-mobile-filled.svg) | |`renovate-device-change-mobile-filled`[![renovate-device-change-mobile-filled](.github/resources/anchor.svg)](#renovate-device-change-mobile-filled)|
-|![renovate-device-change-mobile-light](icons/telefonica/light/renovate-device-change-mobile-light.svg) | |![renovate-device-change-mobile-light](icons/o2-new/light/renovate-device-change-mobile-light.svg) |![renovate-device-change-mobile-light](icons/o2/light/renovate-device-change-mobile-light.svg) | |`renovate-device-change-mobile-light`[![renovate-device-change-mobile-light](.github/resources/anchor.svg)](#renovate-device-change-mobile-light)|
-|![renovate-device-change-mobile-regular](icons/telefonica/regular/renovate-device-change-mobile-regular.svg) | |![renovate-device-change-mobile-regular](icons/o2-new/regular/renovate-device-change-mobile-regular.svg) |![renovate-device-change-mobile-regular](icons/o2/regular/renovate-device-change-mobile-regular.svg) | |`renovate-device-change-mobile-regular`[![renovate-device-change-mobile-regular](.github/resources/anchor.svg)](#renovate-device-change-mobile-regular)|
-| | |![repeat-filled](icons/o2-new/filled/repeat-filled.svg) |![repeat-filled](icons/o2/filled/repeat-filled.svg) | |`repeat-filled`[![repeat-filled](.github/resources/anchor.svg)](#repeat-filled)|
-| | |![repeat-light](icons/o2-new/light/repeat-light.svg) |![repeat-light](icons/o2/light/repeat-light.svg) | |`repeat-light`[![repeat-light](.github/resources/anchor.svg)](#repeat-light)|
-| | |![repeat-regular](icons/o2-new/regular/repeat-regular.svg) |![repeat-regular](icons/o2/regular/repeat-regular.svg) | |`repeat-regular`[![repeat-regular](.github/resources/anchor.svg)](#repeat-regular)|
-| | |![repeater-filled](icons/o2-new/filled/repeater-filled.svg) |![repeater-filled](icons/o2/filled/repeater-filled.svg) | |`repeater-filled`[![repeater-filled](.github/resources/anchor.svg)](#repeater-filled)|
-| | |![repeater-light](icons/o2-new/light/repeater-light.svg) |![repeater-light](icons/o2/light/repeater-light.svg) | |`repeater-light`[![repeater-light](.github/resources/anchor.svg)](#repeater-light)|
-| | |![repeater-regular](icons/o2-new/regular/repeater-regular.svg) |![repeater-regular](icons/o2/regular/repeater-regular.svg) | |`repeater-regular`[![repeater-regular](.github/resources/anchor.svg)](#repeater-regular)|
-| | |![report-filled](icons/o2-new/filled/report-filled.svg) |![report-filled](icons/o2/filled/report-filled.svg) | |`report-filled`[![report-filled](.github/resources/anchor.svg)](#report-filled)|
-| | |![report-light](icons/o2-new/light/report-light.svg) |![report-light](icons/o2/light/report-light.svg) | |`report-light`[![report-light](.github/resources/anchor.svg)](#report-light)|
-| | |![report-regular](icons/o2-new/regular/report-regular.svg) |![report-regular](icons/o2/regular/report-regular.svg) | |`report-regular`[![report-regular](.github/resources/anchor.svg)](#report-regular)|
-|![restaurant-filled](icons/telefonica/filled/restaurant-filled.svg) | |![restaurant-filled](icons/o2-new/filled/restaurant-filled.svg) |![restaurant-filled](icons/o2/filled/restaurant-filled.svg) | |`restaurant-filled`[![restaurant-filled](.github/resources/anchor.svg)](#restaurant-filled)|
-|![restaurant-light](icons/telefonica/light/restaurant-light.svg) | |![restaurant-light](icons/o2-new/light/restaurant-light.svg) |![restaurant-light](icons/o2/light/restaurant-light.svg) | |`restaurant-light`[![restaurant-light](.github/resources/anchor.svg)](#restaurant-light)|
-|![restaurant-regular](icons/telefonica/regular/restaurant-regular.svg) | |![restaurant-regular](icons/o2-new/regular/restaurant-regular.svg) |![restaurant-regular](icons/o2/regular/restaurant-regular.svg) | |`restaurant-regular`[![restaurant-regular](.github/resources/anchor.svg)](#restaurant-regular)|
-|![rewind-filled](icons/telefonica/filled/rewind-filled.svg) | |![rewind-filled](icons/o2-new/filled/rewind-filled.svg) |![rewind-filled](icons/o2/filled/rewind-filled.svg) | |`rewind-filled`[![rewind-filled](.github/resources/anchor.svg)](#rewind-filled)|
-|![rewind-light](icons/telefonica/light/rewind-light.svg) | |![rewind-light](icons/o2-new/light/rewind-light.svg) |![rewind-light](icons/o2/light/rewind-light.svg) | |`rewind-light`[![rewind-light](.github/resources/anchor.svg)](#rewind-light)|
-|![rewind-regular](icons/telefonica/regular/rewind-regular.svg) | |![rewind-regular](icons/o2-new/regular/rewind-regular.svg) |![rewind-regular](icons/o2/regular/rewind-regular.svg) | |`rewind-regular`[![rewind-regular](.github/resources/anchor.svg)](#rewind-regular)|
-|![road-sign-filled](icons/telefonica/filled/road-sign-filled.svg) | | | | |`road-sign-filled`[![road-sign-filled](.github/resources/anchor.svg)](#road-sign-filled)|
-|![road-sign-light](icons/telefonica/light/road-sign-light.svg) | | | | |`road-sign-light`[![road-sign-light](.github/resources/anchor.svg)](#road-sign-light)|
-|![road-sign-regular](icons/telefonica/regular/road-sign-regular.svg) | | | | |`road-sign-regular`[![road-sign-regular](.github/resources/anchor.svg)](#road-sign-regular)|
-|![robot-filled](icons/telefonica/filled/robot-filled.svg) | |![robot-filled](icons/o2-new/filled/robot-filled.svg) |![robot-filled](icons/o2/filled/robot-filled.svg) | |`robot-filled`[![robot-filled](.github/resources/anchor.svg)](#robot-filled)|
-|![robot-light](icons/telefonica/light/robot-light.svg) | |![robot-light](icons/o2-new/light/robot-light.svg) |![robot-light](icons/o2/light/robot-light.svg) | |`robot-light`[![robot-light](.github/resources/anchor.svg)](#robot-light)|
-|![robot-regular](icons/telefonica/regular/robot-regular.svg) | |![robot-regular](icons/o2-new/regular/robot-regular.svg) |![robot-regular](icons/o2/regular/robot-regular.svg) | |`robot-regular`[![robot-regular](.github/resources/anchor.svg)](#robot-regular)|
-| |![robot-vacuum-regular](icons/vivo-new/regular/robot-vacuum-regular.svg) | | | |`robot-vacuum-regular`[![robot-vacuum-regular](.github/resources/anchor.svg)](#robot-vacuum-regular)|
-|![rocket-filled](icons/telefonica/filled/rocket-filled.svg) | |![rocket-filled](icons/o2-new/filled/rocket-filled.svg) |![rocket-filled](icons/o2/filled/rocket-filled.svg) | |`rocket-filled`[![rocket-filled](.github/resources/anchor.svg)](#rocket-filled)|
-|![rocket-light](icons/telefonica/light/rocket-light.svg) | |![rocket-light](icons/o2-new/light/rocket-light.svg) |![rocket-light](icons/o2/light/rocket-light.svg) | |`rocket-light`[![rocket-light](.github/resources/anchor.svg)](#rocket-light)|
-|![rocket-regular](icons/telefonica/regular/rocket-regular.svg) | |![rocket-regular](icons/o2-new/regular/rocket-regular.svg) |![rocket-regular](icons/o2/regular/rocket-regular.svg) | |`rocket-regular`[![rocket-regular](.github/resources/anchor.svg)](#rocket-regular)|
-|![rook-filled](icons/telefonica/filled/rook-filled.svg) | | | | |`rook-filled`[![rook-filled](.github/resources/anchor.svg)](#rook-filled)|
-|![rook-light](icons/telefonica/light/rook-light.svg) | | | | |`rook-light`[![rook-light](.github/resources/anchor.svg)](#rook-light)|
-|![rook-regular](icons/telefonica/regular/rook-regular.svg) | | | | |`rook-regular`[![rook-regular](.github/resources/anchor.svg)](#rook-regular)|
-|![route-filled](icons/telefonica/filled/route-filled.svg) | | | | |`route-filled`[![route-filled](.github/resources/anchor.svg)](#route-filled)|
-|![route-light](icons/telefonica/light/route-light.svg) | | | | |`route-light`[![route-light](.github/resources/anchor.svg)](#route-light)|
-|![route-regular](icons/telefonica/regular/route-regular.svg) | | | | |`route-regular`[![route-regular](.github/resources/anchor.svg)](#route-regular)|
-|![router-filled](icons/telefonica/filled/router-filled.svg) | |![router-filled](icons/o2-new/filled/router-filled.svg) |![router-filled](icons/o2/filled/router-filled.svg) | |`router-filled`[![router-filled](.github/resources/anchor.svg)](#router-filled)|
-|![router-light](icons/telefonica/light/router-light.svg) | |![router-light](icons/o2-new/light/router-light.svg) |![router-light](icons/o2/light/router-light.svg) | |`router-light`[![router-light](.github/resources/anchor.svg)](#router-light)|
-|![router-regular](icons/telefonica/regular/router-regular.svg) |![router-regular](icons/vivo-new/regular/router-regular.svg) |![router-regular](icons/o2-new/regular/router-regular.svg) |![router-regular](icons/o2/regular/router-regular.svg) | |`router-regular`[![router-regular](.github/resources/anchor.svg)](#router-regular)|
-| |![routine-filled](icons/vivo-new/filled/routine-filled.svg) | | | |`routine-filled`[![routine-filled](.github/resources/anchor.svg)](#routine-filled)|
-| |![routine-light](icons/vivo-new/light/routine-light.svg) | | | |`routine-light`[![routine-light](.github/resources/anchor.svg)](#routine-light)|
-| |![routine-regular](icons/vivo-new/regular/routine-regular.svg) | | | |`routine-regular`[![routine-regular](.github/resources/anchor.svg)](#routine-regular)|
-|![ruler-filled](icons/telefonica/filled/ruler-filled.svg) | | | | |`ruler-filled`[![ruler-filled](.github/resources/anchor.svg)](#ruler-filled)|
-|![ruler-light](icons/telefonica/light/ruler-light.svg) | | | | |`ruler-light`[![ruler-light](.github/resources/anchor.svg)](#ruler-light)|
-|![ruler-regular](icons/telefonica/regular/ruler-regular.svg) | | | | |`ruler-regular`[![ruler-regular](.github/resources/anchor.svg)](#ruler-regular)|
-|![safety-belt-filled](icons/telefonica/filled/safety-belt-filled.svg) | | | | |`safety-belt-filled`[![safety-belt-filled](.github/resources/anchor.svg)](#safety-belt-filled)|
-|![safety-belt-light](icons/telefonica/light/safety-belt-light.svg) | | | | |`safety-belt-light`[![safety-belt-light](.github/resources/anchor.svg)](#safety-belt-light)|
-|![safety-belt-regular](icons/telefonica/regular/safety-belt-regular.svg) | | | | |`safety-belt-regular`[![safety-belt-regular](.github/resources/anchor.svg)](#safety-belt-regular)|
-|![search-cloud-filled](icons/telefonica/filled/search-cloud-filled.svg) | | | | |`search-cloud-filled`[![search-cloud-filled](.github/resources/anchor.svg)](#search-cloud-filled)|
-|![search-cloud-light](icons/telefonica/light/search-cloud-light.svg) | | | | |`search-cloud-light`[![search-cloud-light](.github/resources/anchor.svg)](#search-cloud-light)|
-|![search-cloud-regular](icons/telefonica/regular/search-cloud-regular.svg) | | | | |`search-cloud-regular`[![search-cloud-regular](.github/resources/anchor.svg)](#search-cloud-regular)|
-|![search-database-filled](icons/telefonica/filled/search-database-filled.svg) | | | | |`search-database-filled`[![search-database-filled](.github/resources/anchor.svg)](#search-database-filled)|
-|![search-database-light](icons/telefonica/light/search-database-light.svg) | | | | |`search-database-light`[![search-database-light](.github/resources/anchor.svg)](#search-database-light)|
-|![search-database-regular](icons/telefonica/regular/search-database-regular.svg) | | | | |`search-database-regular`[![search-database-regular](.github/resources/anchor.svg)](#search-database-regular)|
-|![search-file-filled](icons/telefonica/filled/search-file-filled.svg) | | | | |`search-file-filled`[![search-file-filled](.github/resources/anchor.svg)](#search-file-filled)|
-|![search-file-light](icons/telefonica/light/search-file-light.svg) | | | | |`search-file-light`[![search-file-light](.github/resources/anchor.svg)](#search-file-light)|
-|![search-file-regular](icons/telefonica/regular/search-file-regular.svg) | | | | |`search-file-regular`[![search-file-regular](.github/resources/anchor.svg)](#search-file-regular)|
-|![search-filled](icons/telefonica/filled/search-filled.svg) | |![search-filled](icons/o2-new/filled/search-filled.svg) |![search-filled](icons/o2/filled/search-filled.svg) | |`search-filled`[![search-filled](.github/resources/anchor.svg)](#search-filled)|
-|![search-light](icons/telefonica/light/search-light.svg) | |![search-light](icons/o2-new/light/search-light.svg) |![search-light](icons/o2/light/search-light.svg) | |`search-light`[![search-light](.github/resources/anchor.svg)](#search-light)|
-|![search-money-filled](icons/telefonica/filled/search-money-filled.svg) | | | | |`search-money-filled`[![search-money-filled](.github/resources/anchor.svg)](#search-money-filled)|
-|![search-money-light](icons/telefonica/light/search-money-light.svg) | | | | |`search-money-light`[![search-money-light](.github/resources/anchor.svg)](#search-money-light)|
-|![search-money-regular](icons/telefonica/regular/search-money-regular.svg) | | | | |`search-money-regular`[![search-money-regular](.github/resources/anchor.svg)](#search-money-regular)|
-|![search-regular](icons/telefonica/regular/search-regular.svg) | |![search-regular](icons/o2-new/regular/search-regular.svg) |![search-regular](icons/o2/regular/search-regular.svg) |![search-regular](icons/blau/regular/search-regular.svg) |`search-regular`[![search-regular](.github/resources/anchor.svg)](#search-regular)|
-| | |![send-euro-filled](icons/o2-new/filled/send-euro-filled.svg) |![send-euro-filled](icons/o2/filled/send-euro-filled.svg) | |`send-euro-filled`[![send-euro-filled](.github/resources/anchor.svg)](#send-euro-filled)|
-| | |![send-euro-light](icons/o2-new/light/send-euro-light.svg) |![send-euro-light](icons/o2/light/send-euro-light.svg) | |`send-euro-light`[![send-euro-light](.github/resources/anchor.svg)](#send-euro-light)|
-| | |![send-euro-regular](icons/o2-new/regular/send-euro-regular.svg) |![send-euro-regular](icons/o2/regular/send-euro-regular.svg) | |`send-euro-regular`[![send-euro-regular](.github/resources/anchor.svg)](#send-euro-regular)|
-|![send-filled](icons/telefonica/filled/send-filled.svg) | |![send-filled](icons/o2-new/filled/send-filled.svg) |![send-filled](icons/o2/filled/send-filled.svg) | |`send-filled`[![send-filled](.github/resources/anchor.svg)](#send-filled)|
-|![send-light](icons/telefonica/light/send-light.svg) | |![send-light](icons/o2-new/light/send-light.svg) |![send-light](icons/o2/light/send-light.svg) | |`send-light`[![send-light](.github/resources/anchor.svg)](#send-light)|
-| | |![send-pound-filled](icons/o2-new/filled/send-pound-filled.svg) |![send-pound-filled](icons/o2/filled/send-pound-filled.svg) | |`send-pound-filled`[![send-pound-filled](.github/resources/anchor.svg)](#send-pound-filled)|
-| | |![send-pound-light](icons/o2-new/light/send-pound-light.svg) |![send-pound-light](icons/o2/light/send-pound-light.svg) | |`send-pound-light`[![send-pound-light](.github/resources/anchor.svg)](#send-pound-light)|
-| | |![send-pound-regular](icons/o2-new/regular/send-pound-regular.svg) |![send-pound-regular](icons/o2/regular/send-pound-regular.svg) | |`send-pound-regular`[![send-pound-regular](.github/resources/anchor.svg)](#send-pound-regular)|
-|![send-regular](icons/telefonica/regular/send-regular.svg) | |![send-regular](icons/o2-new/regular/send-regular.svg) |![send-regular](icons/o2/regular/send-regular.svg) | |`send-regular`[![send-regular](.github/resources/anchor.svg)](#send-regular)|
-|![settings-cloud-filled](icons/telefonica/filled/settings-cloud-filled.svg) | | | | |`settings-cloud-filled`[![settings-cloud-filled](.github/resources/anchor.svg)](#settings-cloud-filled)|
-|![settings-cloud-light](icons/telefonica/light/settings-cloud-light.svg) | | | | |`settings-cloud-light`[![settings-cloud-light](.github/resources/anchor.svg)](#settings-cloud-light)|
-|![settings-cloud-regular](icons/telefonica/regular/settings-cloud-regular.svg) | | | | |`settings-cloud-regular`[![settings-cloud-regular](.github/resources/anchor.svg)](#settings-cloud-regular)|
-|![settings-filled](icons/telefonica/filled/settings-filled.svg) | |![settings-filled](icons/o2-new/filled/settings-filled.svg) |![settings-filled](icons/o2/filled/settings-filled.svg) | |`settings-filled`[![settings-filled](.github/resources/anchor.svg)](#settings-filled)|
-|![settings-light](icons/telefonica/light/settings-light.svg) | |![settings-light](icons/o2-new/light/settings-light.svg) |![settings-light](icons/o2/light/settings-light.svg) | |`settings-light`[![settings-light](.github/resources/anchor.svg)](#settings-light)|
-|![settings-regular](icons/telefonica/regular/settings-regular.svg) | |![settings-regular](icons/o2-new/regular/settings-regular.svg) |![settings-regular](icons/o2/regular/settings-regular.svg) | |`settings-regular`[![settings-regular](.github/resources/anchor.svg)](#settings-regular)|
-|![settings-web-filled](icons/telefonica/filled/settings-web-filled.svg) | | | | |`settings-web-filled`[![settings-web-filled](.github/resources/anchor.svg)](#settings-web-filled)|
-|![settings-web-light](icons/telefonica/light/settings-web-light.svg) | | | | |`settings-web-light`[![settings-web-light](.github/resources/anchor.svg)](#settings-web-light)|
-|![settings-web-regular](icons/telefonica/regular/settings-web-regular.svg) | | | | |`settings-web-regular`[![settings-web-regular](.github/resources/anchor.svg)](#settings-web-regular)|
-| | |![share-devices-filled](icons/o2-new/filled/share-devices-filled.svg) |![share-devices-filled](icons/o2/filled/share-devices-filled.svg) | |`share-devices-filled`[![share-devices-filled](.github/resources/anchor.svg)](#share-devices-filled)|
-| | |![share-devices-light](icons/o2-new/light/share-devices-light.svg) |![share-devices-light](icons/o2/light/share-devices-light.svg) | |`share-devices-light`[![share-devices-light](.github/resources/anchor.svg)](#share-devices-light)|
-| | |![share-devices-regular](icons/o2-new/regular/share-devices-regular.svg) |![share-devices-regular](icons/o2/regular/share-devices-regular.svg) | |`share-devices-regular`[![share-devices-regular](.github/resources/anchor.svg)](#share-devices-regular)|
-|![share-filled](icons/telefonica/filled/share-filled.svg) |![share-filled](icons/vivo-new/filled/share-filled.svg) |![share-filled](icons/o2-new/filled/share-filled.svg) |![share-filled](icons/o2/filled/share-filled.svg) | |`share-filled`[![share-filled](.github/resources/anchor.svg)](#share-filled)|
-|![share-light](icons/telefonica/light/share-light.svg) |![share-light](icons/vivo-new/light/share-light.svg) |![share-light](icons/o2-new/light/share-light.svg) |![share-light](icons/o2/light/share-light.svg) | |`share-light`[![share-light](.github/resources/anchor.svg)](#share-light)|
-|![share-regular](icons/telefonica/regular/share-regular.svg) |![share-regular](icons/vivo-new/regular/share-regular.svg) |![share-regular](icons/o2-new/regular/share-regular.svg) |![share-regular](icons/o2/regular/share-regular.svg) | |`share-regular`[![share-regular](.github/resources/anchor.svg)](#share-regular)|
-|![shared-data-filled](icons/telefonica/filled/shared-data-filled.svg) | | | | |`shared-data-filled`[![shared-data-filled](.github/resources/anchor.svg)](#shared-data-filled)|
-|![shared-data-light](icons/telefonica/light/shared-data-light.svg) | | | | |`shared-data-light`[![shared-data-light](.github/resources/anchor.svg)](#shared-data-light)|
-|![shared-data-regular](icons/telefonica/regular/shared-data-regular.svg) | | | | |`shared-data-regular`[![shared-data-regular](.github/resources/anchor.svg)](#shared-data-regular)|
-|![shared-mobile-data-filled](icons/telefonica/filled/shared-mobile-data-filled.svg) | | | | |`shared-mobile-data-filled`[![shared-mobile-data-filled](.github/resources/anchor.svg)](#shared-mobile-data-filled)|
-|![shared-mobile-data-light](icons/telefonica/light/shared-mobile-data-light.svg) | | | | |`shared-mobile-data-light`[![shared-mobile-data-light](.github/resources/anchor.svg)](#shared-mobile-data-light)|
-|![shared-mobile-data-regular](icons/telefonica/regular/shared-mobile-data-regular.svg) | | | | |`shared-mobile-data-regular`[![shared-mobile-data-regular](.github/resources/anchor.svg)](#shared-mobile-data-regular)|
-|![shield-antivirus-filled](icons/telefonica/filled/shield-antivirus-filled.svg) | | | | |`shield-antivirus-filled`[![shield-antivirus-filled](.github/resources/anchor.svg)](#shield-antivirus-filled)|
-|![shield-antivirus-light](icons/telefonica/light/shield-antivirus-light.svg) | | | | |`shield-antivirus-light`[![shield-antivirus-light](.github/resources/anchor.svg)](#shield-antivirus-light)|
-|![shield-antivirus-regular](icons/telefonica/regular/shield-antivirus-regular.svg) | | | | |`shield-antivirus-regular`[![shield-antivirus-regular](.github/resources/anchor.svg)](#shield-antivirus-regular)|
-|![shield-checked-ok-filled](icons/telefonica/filled/shield-checked-ok-filled.svg) | |![shield-checked-ok-filled](icons/o2-new/filled/shield-checked-ok-filled.svg) |![shield-checked-ok-filled](icons/o2/filled/shield-checked-ok-filled.svg) | |`shield-checked-ok-filled`[![shield-checked-ok-filled](.github/resources/anchor.svg)](#shield-checked-ok-filled)|
-|![shield-checked-ok-light](icons/telefonica/light/shield-checked-ok-light.svg) | |![shield-checked-ok-light](icons/o2-new/light/shield-checked-ok-light.svg) |![shield-checked-ok-light](icons/o2/light/shield-checked-ok-light.svg) | |`shield-checked-ok-light`[![shield-checked-ok-light](.github/resources/anchor.svg)](#shield-checked-ok-light)|
-|![shield-checked-ok-regular](icons/telefonica/regular/shield-checked-ok-regular.svg) | |![shield-checked-ok-regular](icons/o2-new/regular/shield-checked-ok-regular.svg) |![shield-checked-ok-regular](icons/o2/regular/shield-checked-ok-regular.svg) | |`shield-checked-ok-regular`[![shield-checked-ok-regular](.github/resources/anchor.svg)](#shield-checked-ok-regular)|
-|![shield-cross-filled](icons/telefonica/filled/shield-cross-filled.svg) | |![shield-cross-filled](icons/o2-new/filled/shield-cross-filled.svg) |![shield-cross-filled](icons/o2/filled/shield-cross-filled.svg) | |`shield-cross-filled`[![shield-cross-filled](.github/resources/anchor.svg)](#shield-cross-filled)|
-|![shield-cross-light](icons/telefonica/light/shield-cross-light.svg) | |![shield-cross-light](icons/o2-new/light/shield-cross-light.svg) |![shield-cross-light](icons/o2/light/shield-cross-light.svg) | |`shield-cross-light`[![shield-cross-light](.github/resources/anchor.svg)](#shield-cross-light)|
-|![shield-cross-regular](icons/telefonica/regular/shield-cross-regular.svg) | |![shield-cross-regular](icons/o2-new/regular/shield-cross-regular.svg) |![shield-cross-regular](icons/o2/regular/shield-cross-regular.svg) | |`shield-cross-regular`[![shield-cross-regular](.github/resources/anchor.svg)](#shield-cross-regular)|
-|![shield-filled](icons/telefonica/filled/shield-filled.svg) | | | | |`shield-filled`[![shield-filled](.github/resources/anchor.svg)](#shield-filled)|
-|![shield-light](icons/telefonica/light/shield-light.svg) | | | | |`shield-light`[![shield-light](.github/resources/anchor.svg)](#shield-light)|
-|![shield-regular](icons/telefonica/regular/shield-regular.svg) | | | | |`shield-regular`[![shield-regular](.github/resources/anchor.svg)](#shield-regular)|
-|![shop-filled](icons/telefonica/filled/shop-filled.svg) | |![shop-filled](icons/o2-new/filled/shop-filled.svg) |![shop-filled](icons/o2/filled/shop-filled.svg) | |`shop-filled`[![shop-filled](.github/resources/anchor.svg)](#shop-filled)|
-|![shop-light](icons/telefonica/light/shop-light.svg) | |![shop-light](icons/o2-new/light/shop-light.svg) |![shop-light](icons/o2/light/shop-light.svg) | |`shop-light`[![shop-light](.github/resources/anchor.svg)](#shop-light)|
-|![shop-regular](icons/telefonica/regular/shop-regular.svg) | |![shop-regular](icons/o2-new/regular/shop-regular.svg) |![shop-regular](icons/o2/regular/shop-regular.svg) | |`shop-regular`[![shop-regular](.github/resources/anchor.svg)](#shop-regular)|
-| |![shopping-bag-filled](icons/vivo-new/filled/shopping-bag-filled.svg) | | | |`shopping-bag-filled`[![shopping-bag-filled](.github/resources/anchor.svg)](#shopping-bag-filled)|
-| |![shopping-bag-light](icons/vivo-new/light/shopping-bag-light.svg) | | | |`shopping-bag-light`[![shopping-bag-light](.github/resources/anchor.svg)](#shopping-bag-light)|
-| |![shopping-bag-regular](icons/vivo-new/regular/shopping-bag-regular.svg) | | | |`shopping-bag-regular`[![shopping-bag-regular](.github/resources/anchor.svg)](#shopping-bag-regular)|
-|![shopping-cart-filled](icons/telefonica/filled/shopping-cart-filled.svg) | |![shopping-cart-filled](icons/o2-new/filled/shopping-cart-filled.svg) |![shopping-cart-filled](icons/o2/filled/shopping-cart-filled.svg) | |`shopping-cart-filled`[![shopping-cart-filled](.github/resources/anchor.svg)](#shopping-cart-filled)|
-|![shopping-cart-light](icons/telefonica/light/shopping-cart-light.svg) | |![shopping-cart-light](icons/o2-new/light/shopping-cart-light.svg) |![shopping-cart-light](icons/o2/light/shopping-cart-light.svg) | |`shopping-cart-light`[![shopping-cart-light](.github/resources/anchor.svg)](#shopping-cart-light)|
-|![shopping-cart-regular](icons/telefonica/regular/shopping-cart-regular.svg) | |![shopping-cart-regular](icons/o2-new/regular/shopping-cart-regular.svg) |![shopping-cart-regular](icons/o2/regular/shopping-cart-regular.svg) |![shopping-cart-regular](icons/blau/regular/shopping-cart-regular.svg) |`shopping-cart-regular`[![shopping-cart-regular](.github/resources/anchor.svg)](#shopping-cart-regular)|
-|![shower-filled](icons/telefonica/filled/shower-filled.svg) | | | | |`shower-filled`[![shower-filled](.github/resources/anchor.svg)](#shower-filled)|
-|![shower-light](icons/telefonica/light/shower-light.svg) | | | | |`shower-light`[![shower-light](.github/resources/anchor.svg)](#shower-light)|
-|![shower-regular](icons/telefonica/regular/shower-regular.svg) | | | | |`shower-regular`[![shower-regular](.github/resources/anchor.svg)](#shower-regular)|
-| |![shuffle-circle-filled](icons/vivo-new/filled/shuffle-circle-filled.svg) | | | |`shuffle-circle-filled`[![shuffle-circle-filled](.github/resources/anchor.svg)](#shuffle-circle-filled)|
-| |![shuffle-circle-light](icons/vivo-new/light/shuffle-circle-light.svg) | | | |`shuffle-circle-light`[![shuffle-circle-light](.github/resources/anchor.svg)](#shuffle-circle-light)|
-| |![shuffle-circle-regular](icons/vivo-new/regular/shuffle-circle-regular.svg) | | | |`shuffle-circle-regular`[![shuffle-circle-regular](.github/resources/anchor.svg)](#shuffle-circle-regular)|
-| | |![silence-filled](icons/o2-new/filled/silence-filled.svg) |![silence-filled](icons/o2/filled/silence-filled.svg) | |`silence-filled`[![silence-filled](.github/resources/anchor.svg)](#silence-filled)|
-| | |![silence-regular](icons/o2-new/regular/silence-regular.svg) |![silence-regular](icons/o2/regular/silence-regular.svg) | |`silence-regular`[![silence-regular](.github/resources/anchor.svg)](#silence-regular)|
-|![singleparent-family-filled](icons/telefonica/filled/singleparent-family-filled.svg) | | | | |`singleparent-family-filled`[![singleparent-family-filled](.github/resources/anchor.svg)](#singleparent-family-filled)|
-|![singleparent-family-light](icons/telefonica/light/singleparent-family-light.svg) | | | | |`singleparent-family-light`[![singleparent-family-light](.github/resources/anchor.svg)](#singleparent-family-light)|
-|![singleparent-family-regular](icons/telefonica/regular/singleparent-family-regular.svg) | | | | |`singleparent-family-regular`[![singleparent-family-regular](.github/resources/anchor.svg)](#singleparent-family-regular)|
-|![skull-filled](icons/telefonica/filled/skull-filled.svg) | | | | |`skull-filled`[![skull-filled](.github/resources/anchor.svg)](#skull-filled)|
-|![skull-light](icons/telefonica/light/skull-light.svg) | | | | |`skull-light`[![skull-light](.github/resources/anchor.svg)](#skull-light)|
-|![skull-regular](icons/telefonica/regular/skull-regular.svg) | | | | |`skull-regular`[![skull-regular](.github/resources/anchor.svg)](#skull-regular)|
-|![smart-wifi-filled](icons/telefonica/filled/smart-wifi-filled.svg) | | | | |`smart-wifi-filled`[![smart-wifi-filled](.github/resources/anchor.svg)](#smart-wifi-filled)|
-|![smart-wifi-light](icons/telefonica/light/smart-wifi-light.svg) | | | | |`smart-wifi-light`[![smart-wifi-light](.github/resources/anchor.svg)](#smart-wifi-light)|
-|![smart-wifi-regular](icons/telefonica/regular/smart-wifi-regular.svg) | | | | |`smart-wifi-regular`[![smart-wifi-regular](.github/resources/anchor.svg)](#smart-wifi-regular)|
-|![sms-filled](icons/telefonica/filled/sms-filled.svg) | |![sms-filled](icons/o2-new/filled/sms-filled.svg) |![sms-filled](icons/o2/filled/sms-filled.svg) | |`sms-filled`[![sms-filled](.github/resources/anchor.svg)](#sms-filled)|
-|![sms-light](icons/telefonica/light/sms-light.svg) | |![sms-light](icons/o2-new/light/sms-light.svg) |![sms-light](icons/o2/light/sms-light.svg) | |`sms-light`[![sms-light](.github/resources/anchor.svg)](#sms-light)|
-| | |![sms-regular](icons/o2-new/regular/sms-regular.svg) |![sms-regular](icons/o2/regular/sms-regular.svg) | |`sms-regular`[![sms-regular](.github/resources/anchor.svg)](#sms-regular)|
-|![sniper-scope-light](icons/telefonica/light/sniper-scope-light.svg) | | | | |`sniper-scope-light`[![sniper-scope-light](.github/resources/anchor.svg)](#sniper-scope-light)|
-|![sniper-scope-regular](icons/telefonica/regular/sniper-scope-regular.svg) | | | | |`sniper-scope-regular`[![sniper-scope-regular](.github/resources/anchor.svg)](#sniper-scope-regular)|
-|![snowflake-light](icons/telefonica/light/snowflake-light.svg) | | | | |`snowflake-light`[![snowflake-light](.github/resources/anchor.svg)](#snowflake-light)|
-|![snowflake-regular](icons/telefonica/regular/snowflake-regular.svg) | | | | |`snowflake-regular`[![snowflake-regular](.github/resources/anchor.svg)](#snowflake-regular)|
-|![sport-ball-filled](icons/telefonica/filled/sport-ball-filled.svg) | | | | |`sport-ball-filled`[![sport-ball-filled](.github/resources/anchor.svg)](#sport-ball-filled)|
-|![sport-ball-light](icons/telefonica/light/sport-ball-light.svg) | | | | |`sport-ball-light`[![sport-ball-light](.github/resources/anchor.svg)](#sport-ball-light)|
-|![sport-ball-regular](icons/telefonica/regular/sport-ball-regular.svg) | | | | |`sport-ball-regular`[![sport-ball-regular](.github/resources/anchor.svg)](#sport-ball-regular)|
-|![star-filled](icons/telefonica/filled/star-filled.svg) | | | | |`star-filled`[![star-filled](.github/resources/anchor.svg)](#star-filled)|
-|![star-light](icons/telefonica/light/star-light.svg) | | | | |`star-light`[![star-light](.github/resources/anchor.svg)](#star-light)|
-|![star-regular](icons/telefonica/regular/star-regular.svg) | | | | |`star-regular`[![star-regular](.github/resources/anchor.svg)](#star-regular)|
-|![status-chart-filled](icons/telefonica/filled/status-chart-filled.svg) | |![status-chart-filled](icons/o2-new/filled/status-chart-filled.svg) |![status-chart-filled](icons/o2/filled/status-chart-filled.svg) | |`status-chart-filled`[![status-chart-filled](.github/resources/anchor.svg)](#status-chart-filled)|
-|![status-chart-light](icons/telefonica/light/status-chart-light.svg) | |![status-chart-light](icons/o2-new/light/status-chart-light.svg) |![status-chart-light](icons/o2/light/status-chart-light.svg) | |`status-chart-light`[![status-chart-light](.github/resources/anchor.svg)](#status-chart-light)|
-|![status-chart-regular](icons/telefonica/regular/status-chart-regular.svg) | |![status-chart-regular](icons/o2-new/regular/status-chart-regular.svg) |![status-chart-regular](icons/o2/regular/status-chart-regular.svg) | |`status-chart-regular`[![status-chart-regular](.github/resources/anchor.svg)](#status-chart-regular)|
-|![stethoscope-medico-filled](icons/telefonica/filled/stethoscope-medico-filled.svg) | | | | |`stethoscope-medico-filled`[![stethoscope-medico-filled](.github/resources/anchor.svg)](#stethoscope-medico-filled)|
-|![stethoscope-medico-light](icons/telefonica/light/stethoscope-medico-light.svg) | | | | |`stethoscope-medico-light`[![stethoscope-medico-light](.github/resources/anchor.svg)](#stethoscope-medico-light)|
-|![stethoscope-medico-regular](icons/telefonica/regular/stethoscope-medico-regular.svg) | | | | |`stethoscope-medico-regular`[![stethoscope-medico-regular](.github/resources/anchor.svg)](#stethoscope-medico-regular)|
-|![stomach-filled](icons/telefonica/filled/stomach-filled.svg) | | | | |`stomach-filled`[![stomach-filled](.github/resources/anchor.svg)](#stomach-filled)|
-|![stomach-light](icons/telefonica/light/stomach-light.svg) | | | | |`stomach-light`[![stomach-light](.github/resources/anchor.svg)](#stomach-light)|
-|![stomach-regular](icons/telefonica/regular/stomach-regular.svg) | | | | |`stomach-regular`[![stomach-regular](.github/resources/anchor.svg)](#stomach-regular)|
-|![storm-filled](icons/telefonica/filled/storm-filled.svg) | | | | |`storm-filled`[![storm-filled](.github/resources/anchor.svg)](#storm-filled)|
-|![storm-light](icons/telefonica/light/storm-light.svg) | | | | |`storm-light`[![storm-light](.github/resources/anchor.svg)](#storm-light)|
-|![storm-regular](icons/telefonica/regular/storm-regular.svg) | | | | |`storm-regular`[![storm-regular](.github/resources/anchor.svg)](#storm-regular)|
-| | |![subscription-filled](icons/o2-new/filled/subscription-filled.svg) |![subscription-filled](icons/o2/filled/subscription-filled.svg) | |`subscription-filled`[![subscription-filled](.github/resources/anchor.svg)](#subscription-filled)|
-| | |![subscription-light](icons/o2-new/light/subscription-light.svg) |![subscription-light](icons/o2/light/subscription-light.svg) | |`subscription-light`[![subscription-light](.github/resources/anchor.svg)](#subscription-light)|
-| | |![subscription-regular](icons/o2-new/regular/subscription-regular.svg) |![subscription-regular](icons/o2/regular/subscription-regular.svg) | |`subscription-regular`[![subscription-regular](.github/resources/anchor.svg)](#subscription-regular)|
-| | |![subtitles-filled](icons/o2-new/filled/subtitles-filled.svg) |![subtitles-filled](icons/o2/filled/subtitles-filled.svg) | |`subtitles-filled`[![subtitles-filled](.github/resources/anchor.svg)](#subtitles-filled)|
-| | |![subtitles-light](icons/o2-new/light/subtitles-light.svg) |![subtitles-light](icons/o2/light/subtitles-light.svg) | |`subtitles-light`[![subtitles-light](.github/resources/anchor.svg)](#subtitles-light)|
-| | |![subtitles-regular](icons/o2-new/regular/subtitles-regular.svg) |![subtitles-regular](icons/o2/regular/subtitles-regular.svg) | |`subtitles-regular`[![subtitles-regular](.github/resources/anchor.svg)](#subtitles-regular)|
-|![subtract-circle-filled](icons/telefonica/filled/subtract-circle-filled.svg) | | | | |`subtract-circle-filled`[![subtract-circle-filled](.github/resources/anchor.svg)](#subtract-circle-filled)|
-|![subtract-circle-light](icons/telefonica/light/subtract-circle-light.svg) | | | | |`subtract-circle-light`[![subtract-circle-light](.github/resources/anchor.svg)](#subtract-circle-light)|
-|![subtract-circle-regular](icons/telefonica/regular/subtract-circle-regular.svg) | | | | |`subtract-circle-regular`[![subtract-circle-regular](.github/resources/anchor.svg)](#subtract-circle-regular)|
-| | |![subtract-filled](icons/o2-new/filled/subtract-filled.svg) |![subtract-filled](icons/o2/filled/subtract-filled.svg) | |`subtract-filled`[![subtract-filled](.github/resources/anchor.svg)](#subtract-filled)|
-|![subtract-light](icons/telefonica/light/subtract-light.svg) | |![subtract-light](icons/o2-new/light/subtract-light.svg) |![subtract-light](icons/o2/light/subtract-light.svg) | |`subtract-light`[![subtract-light](.github/resources/anchor.svg)](#subtract-light)|
-|![subtract-regular](icons/telefonica/regular/subtract-regular.svg) | |![subtract-regular](icons/o2-new/regular/subtract-regular.svg) |![subtract-regular](icons/o2/regular/subtract-regular.svg) |![subtract-regular](icons/blau/regular/subtract-regular.svg) |`subtract-regular`[![subtract-regular](.github/resources/anchor.svg)](#subtract-regular)|
-|![sun-filled](icons/telefonica/filled/sun-filled.svg) | | | | |`sun-filled`[![sun-filled](.github/resources/anchor.svg)](#sun-filled)|
-|![sun-light](icons/telefonica/light/sun-light.svg) | | | | |`sun-light`[![sun-light](.github/resources/anchor.svg)](#sun-light)|
-|![sun-regular](icons/telefonica/regular/sun-regular.svg) |![sun-regular](icons/vivo-new/regular/sun-regular.svg) | | | |`sun-regular`[![sun-regular](.github/resources/anchor.svg)](#sun-regular)|
-|![supermarket-filled](icons/telefonica/filled/supermarket-filled.svg) | | | | |`supermarket-filled`[![supermarket-filled](.github/resources/anchor.svg)](#supermarket-filled)|
-|![supermarket-light](icons/telefonica/light/supermarket-light.svg) | | | | |`supermarket-light`[![supermarket-light](.github/resources/anchor.svg)](#supermarket-light)|
-|![supermarket-regular](icons/telefonica/regular/supermarket-regular.svg) | | | | |`supermarket-regular`[![supermarket-regular](.github/resources/anchor.svg)](#supermarket-regular)|
-|![support-agent-filled](icons/telefonica/filled/support-agent-filled.svg) | |![support-agent-filled](icons/o2-new/filled/support-agent-filled.svg) |![support-agent-filled](icons/o2/filled/support-agent-filled.svg) | |`support-agent-filled`[![support-agent-filled](.github/resources/anchor.svg)](#support-agent-filled)|
-|![support-agent-light](icons/telefonica/light/support-agent-light.svg) | |![support-agent-light](icons/o2-new/light/support-agent-light.svg) |![support-agent-light](icons/o2/light/support-agent-light.svg) | |`support-agent-light`[![support-agent-light](.github/resources/anchor.svg)](#support-agent-light)|
-| | |![support-agent-premium-filled](icons/o2-new/filled/support-agent-premium-filled.svg) |![support-agent-premium-filled](icons/o2/filled/support-agent-premium-filled.svg) | |`support-agent-premium-filled`[![support-agent-premium-filled](.github/resources/anchor.svg)](#support-agent-premium-filled)|
-| | |![support-agent-premium-light](icons/o2-new/light/support-agent-premium-light.svg) |![support-agent-premium-light](icons/o2/light/support-agent-premium-light.svg) | |`support-agent-premium-light`[![support-agent-premium-light](.github/resources/anchor.svg)](#support-agent-premium-light)|
-| | |![support-agent-premium-regular](icons/o2-new/regular/support-agent-premium-regular.svg) |![support-agent-premium-regular](icons/o2/regular/support-agent-premium-regular.svg) | |`support-agent-premium-regular`[![support-agent-premium-regular](.github/resources/anchor.svg)](#support-agent-premium-regular)|
-|![support-agent-regular](icons/telefonica/regular/support-agent-regular.svg) | |![support-agent-regular](icons/o2-new/regular/support-agent-regular.svg) |![support-agent-regular](icons/o2/regular/support-agent-regular.svg) |![support-agent-regular](icons/blau/regular/support-agent-regular.svg) |`support-agent-regular`[![support-agent-regular](.github/resources/anchor.svg)](#support-agent-regular)|
-|![syringe-filled](icons/telefonica/filled/syringe-filled.svg) | | | | |`syringe-filled`[![syringe-filled](.github/resources/anchor.svg)](#syringe-filled)|
-|![syringe-light](icons/telefonica/light/syringe-light.svg) | | | | |`syringe-light`[![syringe-light](.github/resources/anchor.svg)](#syringe-light)|
-|![syringe-regular](icons/telefonica/regular/syringe-regular.svg) | | | | |`syringe-regular`[![syringe-regular](.github/resources/anchor.svg)](#syringe-regular)|
-|![tablet-filled](icons/telefonica/filled/tablet-filled.svg) | |![tablet-filled](icons/o2-new/filled/tablet-filled.svg) |![tablet-filled](icons/o2/filled/tablet-filled.svg) | |`tablet-filled`[![tablet-filled](.github/resources/anchor.svg)](#tablet-filled)|
-|![tablet-light](icons/telefonica/light/tablet-light.svg) | |![tablet-light](icons/o2-new/light/tablet-light.svg) |![tablet-light](icons/o2/light/tablet-light.svg) | |`tablet-light`[![tablet-light](.github/resources/anchor.svg)](#tablet-light)|
-|![tablet-regular](icons/telefonica/regular/tablet-regular.svg) | |![tablet-regular](icons/o2-new/regular/tablet-regular.svg) |![tablet-regular](icons/o2/regular/tablet-regular.svg) |![tablet-regular](icons/blau/regular/tablet-regular.svg) |`tablet-regular`[![tablet-regular](.github/resources/anchor.svg)](#tablet-regular)|
-|![tachometer-filled](icons/telefonica/filled/tachometer-filled.svg) | |![tachometer-filled](icons/o2-new/filled/tachometer-filled.svg) |![tachometer-filled](icons/o2/filled/tachometer-filled.svg) | |`tachometer-filled`[![tachometer-filled](.github/resources/anchor.svg)](#tachometer-filled)|
-|![tachometer-light](icons/telefonica/light/tachometer-light.svg) | |![tachometer-light](icons/o2-new/light/tachometer-light.svg) |![tachometer-light](icons/o2/light/tachometer-light.svg) | |`tachometer-light`[![tachometer-light](.github/resources/anchor.svg)](#tachometer-light)|
-|![tachometer-regular](icons/telefonica/regular/tachometer-regular.svg) | |![tachometer-regular](icons/o2-new/regular/tachometer-regular.svg) |![tachometer-regular](icons/o2/regular/tachometer-regular.svg) | |`tachometer-regular`[![tachometer-regular](.github/resources/anchor.svg)](#tachometer-regular)|
-| | |![tag-discount-euro-filled](icons/o2-new/filled/tag-discount-euro-filled.svg) |![tag-discount-euro-filled](icons/o2/filled/tag-discount-euro-filled.svg) | |`tag-discount-euro-filled`[![tag-discount-euro-filled](.github/resources/anchor.svg)](#tag-discount-euro-filled)|
-| | |![tag-discount-euro-light](icons/o2-new/light/tag-discount-euro-light.svg) |![tag-discount-euro-light](icons/o2/light/tag-discount-euro-light.svg) | |`tag-discount-euro-light`[![tag-discount-euro-light](.github/resources/anchor.svg)](#tag-discount-euro-light)|
-| | |![tag-discount-euro-regular](icons/o2-new/regular/tag-discount-euro-regular.svg) |![tag-discount-euro-regular](icons/o2/regular/tag-discount-euro-regular.svg) | |`tag-discount-euro-regular`[![tag-discount-euro-regular](.github/resources/anchor.svg)](#tag-discount-euro-regular)|
-| | |![tag-discount-pound-filled](icons/o2-new/filled/tag-discount-pound-filled.svg) |![tag-discount-pound-filled](icons/o2/filled/tag-discount-pound-filled.svg) | |`tag-discount-pound-filled`[![tag-discount-pound-filled](.github/resources/anchor.svg)](#tag-discount-pound-filled)|
-| | |![tag-discount-pound-light](icons/o2-new/light/tag-discount-pound-light.svg) |![tag-discount-pound-light](icons/o2/light/tag-discount-pound-light.svg) | |`tag-discount-pound-light`[![tag-discount-pound-light](.github/resources/anchor.svg)](#tag-discount-pound-light)|
-| | |![tag-discount-pound-regular](icons/o2-new/regular/tag-discount-pound-regular.svg) |![tag-discount-pound-regular](icons/o2/regular/tag-discount-pound-regular.svg) | |`tag-discount-pound-regular`[![tag-discount-pound-regular](.github/resources/anchor.svg)](#tag-discount-pound-regular)|
-| | |![tag-euro-filled](icons/o2-new/filled/tag-euro-filled.svg) |![tag-euro-filled](icons/o2/filled/tag-euro-filled.svg) | |`tag-euro-filled`[![tag-euro-filled](.github/resources/anchor.svg)](#tag-euro-filled)|
-| | |![tag-euro-light](icons/o2-new/light/tag-euro-light.svg) |![tag-euro-light](icons/o2/light/tag-euro-light.svg) | |`tag-euro-light`[![tag-euro-light](.github/resources/anchor.svg)](#tag-euro-light)|
-| | |![tag-euro-regular](icons/o2-new/regular/tag-euro-regular.svg) |![tag-euro-regular](icons/o2/regular/tag-euro-regular.svg) | |`tag-euro-regular`[![tag-euro-regular](.github/resources/anchor.svg)](#tag-euro-regular)|
-|![tag-filled](icons/telefonica/filled/tag-filled.svg) | |![tag-filled](icons/o2-new/filled/tag-filled.svg) |![tag-filled](icons/o2/filled/tag-filled.svg) | |`tag-filled`[![tag-filled](.github/resources/anchor.svg)](#tag-filled)|
-|![tag-light](icons/telefonica/light/tag-light.svg) | |![tag-light](icons/o2-new/light/tag-light.svg) |![tag-light](icons/o2/light/tag-light.svg) | |`tag-light`[![tag-light](.github/resources/anchor.svg)](#tag-light)|
-| | |![tag-pound-filled](icons/o2-new/filled/tag-pound-filled.svg) |![tag-pound-filled](icons/o2/filled/tag-pound-filled.svg) | |`tag-pound-filled`[![tag-pound-filled](.github/resources/anchor.svg)](#tag-pound-filled)|
-| | |![tag-pound-light](icons/o2-new/light/tag-pound-light.svg) |![tag-pound-light](icons/o2/light/tag-pound-light.svg) | |`tag-pound-light`[![tag-pound-light](.github/resources/anchor.svg)](#tag-pound-light)|
-| | |![tag-pound-regular](icons/o2-new/regular/tag-pound-regular.svg) |![tag-pound-regular](icons/o2/regular/tag-pound-regular.svg) | |`tag-pound-regular`[![tag-pound-regular](.github/resources/anchor.svg)](#tag-pound-regular)|
-|![tag-regular](icons/telefonica/regular/tag-regular.svg) | |![tag-regular](icons/o2-new/regular/tag-regular.svg) |![tag-regular](icons/o2/regular/tag-regular.svg) |![tag-regular](icons/blau/regular/tag-regular.svg) |`tag-regular`[![tag-regular](.github/resources/anchor.svg)](#tag-regular)|
-|![talk-filled](icons/telefonica/filled/talk-filled.svg) | | | | |`talk-filled`[![talk-filled](.github/resources/anchor.svg)](#talk-filled)|
-|![talk-light](icons/telefonica/light/talk-light.svg) | | | | |`talk-light`[![talk-light](.github/resources/anchor.svg)](#talk-light)|
-|![talk-regular](icons/telefonica/regular/talk-regular.svg) | | | | |`talk-regular`[![talk-regular](.github/resources/anchor.svg)](#talk-regular)|
-|![target-filled](icons/telefonica/filled/target-filled.svg) | |![target-filled](icons/o2-new/filled/target-filled.svg) |![target-filled](icons/o2/filled/target-filled.svg) | |`target-filled`[![target-filled](.github/resources/anchor.svg)](#target-filled)|
-|![target-light](icons/telefonica/light/target-light.svg) | |![target-light](icons/o2-new/light/target-light.svg) |![target-light](icons/o2/light/target-light.svg) | |`target-light`[![target-light](.github/resources/anchor.svg)](#target-light)|
-|![target-regular](icons/telefonica/regular/target-regular.svg) | |![target-regular](icons/o2-new/regular/target-regular.svg) |![target-regular](icons/o2/regular/target-regular.svg) | |`target-regular`[![target-regular](.github/resources/anchor.svg)](#target-regular)|
-|![team-filled](icons/telefonica/filled/team-filled.svg) | |![team-filled](icons/o2-new/filled/team-filled.svg) |![team-filled](icons/o2/filled/team-filled.svg) | |`team-filled`[![team-filled](.github/resources/anchor.svg)](#team-filled)|
-|![team-light](icons/telefonica/light/team-light.svg) | |![team-light](icons/o2-new/light/team-light.svg) |![team-light](icons/o2/light/team-light.svg) | |`team-light`[![team-light](.github/resources/anchor.svg)](#team-light)|
-|![team-regular](icons/telefonica/regular/team-regular.svg) | |![team-regular](icons/o2-new/regular/team-regular.svg) |![team-regular](icons/o2/regular/team-regular.svg) | |`team-regular`[![team-regular](.github/resources/anchor.svg)](#team-regular)|
-| | |![teamwork-filled](icons/o2-new/filled/teamwork-filled.svg) |![teamwork-filled](icons/o2/filled/teamwork-filled.svg) | |`teamwork-filled`[![teamwork-filled](.github/resources/anchor.svg)](#teamwork-filled)|
-| | |![teamwork-light](icons/o2-new/light/teamwork-light.svg) |![teamwork-light](icons/o2/light/teamwork-light.svg) | |`teamwork-light`[![teamwork-light](.github/resources/anchor.svg)](#teamwork-light)|
-| | |![teamwork-regular](icons/o2-new/regular/teamwork-regular.svg) |![teamwork-regular](icons/o2/regular/teamwork-regular.svg) | |`teamwork-regular`[![teamwork-regular](.github/resources/anchor.svg)](#teamwork-regular)|
-|![tech-service-filled](icons/telefonica/filled/tech-service-filled.svg) | |![tech-service-filled](icons/o2-new/filled/tech-service-filled.svg) |![tech-service-filled](icons/o2/filled/tech-service-filled.svg) | |`tech-service-filled`[![tech-service-filled](.github/resources/anchor.svg)](#tech-service-filled)|
-|![tech-service-internet-filled](icons/telefonica/filled/tech-service-internet-filled.svg) | |![tech-service-internet-filled](icons/o2-new/filled/tech-service-internet-filled.svg) |![tech-service-internet-filled](icons/o2/filled/tech-service-internet-filled.svg) | |`tech-service-internet-filled`[![tech-service-internet-filled](.github/resources/anchor.svg)](#tech-service-internet-filled)|
-|![tech-service-internet-light](icons/telefonica/light/tech-service-internet-light.svg) | |![tech-service-internet-light](icons/o2-new/light/tech-service-internet-light.svg) |![tech-service-internet-light](icons/o2/light/tech-service-internet-light.svg) | |`tech-service-internet-light`[![tech-service-internet-light](.github/resources/anchor.svg)](#tech-service-internet-light)|
-|![tech-service-internet-regular](icons/telefonica/regular/tech-service-internet-regular.svg) | |![tech-service-internet-regular](icons/o2-new/regular/tech-service-internet-regular.svg) |![tech-service-internet-regular](icons/o2/regular/tech-service-internet-regular.svg) | |`tech-service-internet-regular`[![tech-service-internet-regular](.github/resources/anchor.svg)](#tech-service-internet-regular)|
-|![tech-service-landline-filled](icons/telefonica/filled/tech-service-landline-filled.svg) | | | | |`tech-service-landline-filled`[![tech-service-landline-filled](.github/resources/anchor.svg)](#tech-service-landline-filled)|
-|![tech-service-landline-light](icons/telefonica/light/tech-service-landline-light.svg) | | | | |`tech-service-landline-light`[![tech-service-landline-light](.github/resources/anchor.svg)](#tech-service-landline-light)|
-|![tech-service-landline-regular](icons/telefonica/regular/tech-service-landline-regular.svg) | | | | |`tech-service-landline-regular`[![tech-service-landline-regular](.github/resources/anchor.svg)](#tech-service-landline-regular)|
-|![tech-service-light](icons/telefonica/light/tech-service-light.svg) | |![tech-service-light](icons/o2-new/light/tech-service-light.svg) |![tech-service-light](icons/o2/light/tech-service-light.svg) | |`tech-service-light`[![tech-service-light](.github/resources/anchor.svg)](#tech-service-light)|
-|![tech-service-mobile-filled](icons/telefonica/filled/tech-service-mobile-filled.svg) | | | | |`tech-service-mobile-filled`[![tech-service-mobile-filled](.github/resources/anchor.svg)](#tech-service-mobile-filled)|
-|![tech-service-mobile-light](icons/telefonica/light/tech-service-mobile-light.svg) | | | | |`tech-service-mobile-light`[![tech-service-mobile-light](.github/resources/anchor.svg)](#tech-service-mobile-light)|
-|![tech-service-mobile-regular](icons/telefonica/regular/tech-service-mobile-regular.svg) | | | | |`tech-service-mobile-regular`[![tech-service-mobile-regular](.github/resources/anchor.svg)](#tech-service-mobile-regular)|
-|![tech-service-regular](icons/telefonica/regular/tech-service-regular.svg) | |![tech-service-regular](icons/o2-new/regular/tech-service-regular.svg) |![tech-service-regular](icons/o2/regular/tech-service-regular.svg) | |`tech-service-regular`[![tech-service-regular](.github/resources/anchor.svg)](#tech-service-regular)|
-|![tech-service-tv-filled](icons/telefonica/filled/tech-service-tv-filled.svg) | | | | |`tech-service-tv-filled`[![tech-service-tv-filled](.github/resources/anchor.svg)](#tech-service-tv-filled)|
-|![tech-service-tv-light](icons/telefonica/light/tech-service-tv-light.svg) | | | | |`tech-service-tv-light`[![tech-service-tv-light](.github/resources/anchor.svg)](#tech-service-tv-light)|
-|![tech-service-tv-regular](icons/telefonica/regular/tech-service-tv-regular.svg) | | | | |`tech-service-tv-regular`[![tech-service-tv-regular](.github/resources/anchor.svg)](#tech-service-tv-regular)|
-|![teddy-bear-filled](icons/telefonica/filled/teddy-bear-filled.svg) | | | | |`teddy-bear-filled`[![teddy-bear-filled](.github/resources/anchor.svg)](#teddy-bear-filled)|
-|![teddy-bear-light](icons/telefonica/light/teddy-bear-light.svg) | | | | |`teddy-bear-light`[![teddy-bear-light](.github/resources/anchor.svg)](#teddy-bear-light)|
-|![teddy-bear-regular](icons/telefonica/regular/teddy-bear-regular.svg) | | | | |`teddy-bear-regular`[![teddy-bear-regular](.github/resources/anchor.svg)](#teddy-bear-regular)|
-| |![telephone-ip-filled](icons/vivo-new/filled/telephone-ip-filled.svg) |![telephone-ip-filled](icons/o2-new/filled/telephone-ip-filled.svg) |![telephone-ip-filled](icons/o2/filled/telephone-ip-filled.svg) | |`telephone-ip-filled`[![telephone-ip-filled](.github/resources/anchor.svg)](#telephone-ip-filled)|
-| |![telephone-ip-light](icons/vivo-new/light/telephone-ip-light.svg) |![telephone-ip-light](icons/o2-new/light/telephone-ip-light.svg) |![telephone-ip-light](icons/o2/light/telephone-ip-light.svg) | |`telephone-ip-light`[![telephone-ip-light](.github/resources/anchor.svg)](#telephone-ip-light)|
-| |![telephone-ip-regular](icons/vivo-new/regular/telephone-ip-regular.svg) |![telephone-ip-regular](icons/o2-new/regular/telephone-ip-regular.svg) |![telephone-ip-regular](icons/o2/regular/telephone-ip-regular.svg) | |`telephone-ip-regular`[![telephone-ip-regular](.github/resources/anchor.svg)](#telephone-ip-regular)|
-| | |![telephone-pot-filled](icons/o2-new/filled/telephone-pot-filled.svg) |![telephone-pot-filled](icons/o2/filled/telephone-pot-filled.svg) | |`telephone-pot-filled`[![telephone-pot-filled](.github/resources/anchor.svg)](#telephone-pot-filled)|
-| | |![telephone-pot-light](icons/o2-new/light/telephone-pot-light.svg) |![telephone-pot-light](icons/o2/light/telephone-pot-light.svg) | |`telephone-pot-light`[![telephone-pot-light](.github/resources/anchor.svg)](#telephone-pot-light)|
-| | |![telephone-pot-regular](icons/o2-new/regular/telephone-pot-regular.svg) |![telephone-pot-regular](icons/o2/regular/telephone-pot-regular.svg) | |`telephone-pot-regular`[![telephone-pot-regular](.github/resources/anchor.svg)](#telephone-pot-regular)|
-|![theater-filled](icons/telefonica/filled/theater-filled.svg) | | | | |`theater-filled`[![theater-filled](.github/resources/anchor.svg)](#theater-filled)|
-|![theater-light](icons/telefonica/light/theater-light.svg) | | | | |`theater-light`[![theater-light](.github/resources/anchor.svg)](#theater-light)|
-|![theater-regular](icons/telefonica/regular/theater-regular.svg) | | | | |`theater-regular`[![theater-regular](.github/resources/anchor.svg)](#theater-regular)|
-| | |![thermometer-filled](icons/o2-new/filled/thermometer-filled.svg) |![thermometer-filled](icons/o2/filled/thermometer-filled.svg) | |`thermometer-filled`[![thermometer-filled](.github/resources/anchor.svg)](#thermometer-filled)|
-| | |![thermometer-light](icons/o2-new/light/thermometer-light.svg) |![thermometer-light](icons/o2/light/thermometer-light.svg) | |`thermometer-light`[![thermometer-light](.github/resources/anchor.svg)](#thermometer-light)|
-| |![thermometer-regular](icons/vivo-new/regular/thermometer-regular.svg) |![thermometer-regular](icons/o2-new/regular/thermometer-regular.svg) |![thermometer-regular](icons/o2/regular/thermometer-regular.svg) | |`thermometer-regular`[![thermometer-regular](.github/resources/anchor.svg)](#thermometer-regular)|
-|![throw-light-filled](icons/telefonica/filled/throw-light-filled.svg) | | | | |`throw-light-filled`[![throw-light-filled](.github/resources/anchor.svg)](#throw-light-filled)|
-|![throw-light-light](icons/telefonica/light/throw-light-light.svg) | | | | |`throw-light-light`[![throw-light-light](.github/resources/anchor.svg)](#throw-light-light)|
-|![throw-light-regular](icons/telefonica/regular/throw-light-regular.svg) | | | | |`throw-light-regular`[![throw-light-regular](.github/resources/anchor.svg)](#throw-light-regular)|
-|![thumb-down-filled](icons/telefonica/filled/thumb-down-filled.svg) | |![thumb-down-filled](icons/o2-new/filled/thumb-down-filled.svg) | | |`thumb-down-filled`[![thumb-down-filled](.github/resources/anchor.svg)](#thumb-down-filled)|
-|![thumb-down-light](icons/telefonica/light/thumb-down-light.svg) | |![thumb-down-light](icons/o2-new/light/thumb-down-light.svg) | | |`thumb-down-light`[![thumb-down-light](.github/resources/anchor.svg)](#thumb-down-light)|
-|![thumb-down-regular](icons/telefonica/regular/thumb-down-regular.svg) | |![thumb-down-regular](icons/o2-new/regular/thumb-down-regular.svg) | | |`thumb-down-regular`[![thumb-down-regular](.github/resources/anchor.svg)](#thumb-down-regular)|
-|![thumb-up-filled](icons/telefonica/filled/thumb-up-filled.svg) | |![thumb-up-filled](icons/o2-new/filled/thumb-up-filled.svg) |![thumb-up-filled](icons/o2/filled/thumb-up-filled.svg) | |`thumb-up-filled`[![thumb-up-filled](.github/resources/anchor.svg)](#thumb-up-filled)|
-|![thumb-up-light](icons/telefonica/light/thumb-up-light.svg) | |![thumb-up-light](icons/o2-new/light/thumb-up-light.svg) |![thumb-up-light](icons/o2/light/thumb-up-light.svg) | |`thumb-up-light`[![thumb-up-light](.github/resources/anchor.svg)](#thumb-up-light)|
-|![thumb-up-regular](icons/telefonica/regular/thumb-up-regular.svg) | |![thumb-up-regular](icons/o2-new/regular/thumb-up-regular.svg) |![thumb-up-regular](icons/o2/regular/thumb-up-regular.svg) | |`thumb-up-regular`[![thumb-up-regular](.github/resources/anchor.svg)](#thumb-up-regular)|
-|![tickets-filled](icons/telefonica/filled/tickets-filled.svg) |![tickets-filled](icons/vivo-new/filled/tickets-filled.svg) |![tickets-filled](icons/o2-new/filled/tickets-filled.svg) |![tickets-filled](icons/o2/filled/tickets-filled.svg) | |`tickets-filled`[![tickets-filled](.github/resources/anchor.svg)](#tickets-filled)|
-|![tickets-light](icons/telefonica/light/tickets-light.svg) |![tickets-light](icons/vivo-new/light/tickets-light.svg) |![tickets-light](icons/o2-new/light/tickets-light.svg) |![tickets-light](icons/o2/light/tickets-light.svg) | |`tickets-light`[![tickets-light](.github/resources/anchor.svg)](#tickets-light)|
-|![tickets-regular](icons/telefonica/regular/tickets-regular.svg) |![tickets-regular](icons/vivo-new/regular/tickets-regular.svg) |![tickets-regular](icons/o2-new/regular/tickets-regular.svg) |![tickets-regular](icons/o2/regular/tickets-regular.svg) |![tickets-regular](icons/blau/regular/tickets-regular.svg) |`tickets-regular`[![tickets-regular](.github/resources/anchor.svg)](#tickets-regular)|
-|![time-filled](icons/telefonica/filled/time-filled.svg) | |![time-filled](icons/o2-new/filled/time-filled.svg) |![time-filled](icons/o2/filled/time-filled.svg) | |`time-filled`[![time-filled](.github/resources/anchor.svg)](#time-filled)|
-|![time-light](icons/telefonica/light/time-light.svg) | |![time-light](icons/o2-new/light/time-light.svg) |![time-light](icons/o2/light/time-light.svg) | |`time-light`[![time-light](.github/resources/anchor.svg)](#time-light)|
-|![time-regular](icons/telefonica/regular/time-regular.svg) | |![time-regular](icons/o2-new/regular/time-regular.svg) |![time-regular](icons/o2/regular/time-regular.svg) | |`time-regular`[![time-regular](.github/resources/anchor.svg)](#time-regular)|
-| | |![tips-and-tricks-filled](icons/o2-new/filled/tips-and-tricks-filled.svg) |![tips-and-tricks-filled](icons/o2/filled/tips-and-tricks-filled.svg) | |`tips-and-tricks-filled`[![tips-and-tricks-filled](.github/resources/anchor.svg)](#tips-and-tricks-filled)|
-| | |![tips-and-tricks-light](icons/o2-new/light/tips-and-tricks-light.svg) |![tips-and-tricks-light](icons/o2/light/tips-and-tricks-light.svg) | |`tips-and-tricks-light`[![tips-and-tricks-light](.github/resources/anchor.svg)](#tips-and-tricks-light)|
-| | |![tips-and-tricks-regular](icons/o2-new/regular/tips-and-tricks-regular.svg) |![tips-and-tricks-regular](icons/o2/regular/tips-and-tricks-regular.svg) | |`tips-and-tricks-regular`[![tips-and-tricks-regular](.github/resources/anchor.svg)](#tips-and-tricks-regular)|
-|![tk-filled](icons/telefonica/filled/tk-filled.svg) | | | | |`tk-filled`[![tk-filled](.github/resources/anchor.svg)](#tk-filled)|
-|![tk-light](icons/telefonica/light/tk-light.svg) | | | | |`tk-light`[![tk-light](.github/resources/anchor.svg)](#tk-light)|
-|![tk-regular](icons/telefonica/regular/tk-regular.svg) | | | | |`tk-regular`[![tk-regular](.github/resources/anchor.svg)](#tk-regular)|
-|![tokens-filled](icons/telefonica/filled/tokens-filled.svg) | | | | |`tokens-filled`[![tokens-filled](.github/resources/anchor.svg)](#tokens-filled)|
-|![tokens-light](icons/telefonica/light/tokens-light.svg) | | | | |`tokens-light`[![tokens-light](.github/resources/anchor.svg)](#tokens-light)|
-|![tokens-regular](icons/telefonica/regular/tokens-regular.svg) | | | | |`tokens-regular`[![tokens-regular](.github/resources/anchor.svg)](#tokens-regular)|
-|![tongue-filled](icons/telefonica/filled/tongue-filled.svg) | | | | |`tongue-filled`[![tongue-filled](.github/resources/anchor.svg)](#tongue-filled)|
-|![tongue-light](icons/telefonica/light/tongue-light.svg) | | | | |`tongue-light`[![tongue-light](.github/resources/anchor.svg)](#tongue-light)|
-|![tongue-regular](icons/telefonica/regular/tongue-regular.svg) | | | | |`tongue-regular`[![tongue-regular](.github/resources/anchor.svg)](#tongue-regular)|
-|![tooth-filled](icons/telefonica/filled/tooth-filled.svg) | | | | |`tooth-filled`[![tooth-filled](.github/resources/anchor.svg)](#tooth-filled)|
-|![tooth-light](icons/telefonica/light/tooth-light.svg) | | | | |`tooth-light`[![tooth-light](.github/resources/anchor.svg)](#tooth-light)|
-|![tooth-regular](icons/telefonica/regular/tooth-regular.svg) | | | | |`tooth-regular`[![tooth-regular](.github/resources/anchor.svg)](#tooth-regular)|
-| | |![top-up-filled](icons/o2-new/filled/top-up-filled.svg) |![top-up-filled](icons/o2/filled/top-up-filled.svg) | |`top-up-filled`[![top-up-filled](.github/resources/anchor.svg)](#top-up-filled)|
-| | |![top-up-light](icons/o2-new/light/top-up-light.svg) |![top-up-light](icons/o2/light/top-up-light.svg) | |`top-up-light`[![top-up-light](.github/resources/anchor.svg)](#top-up-light)|
-| | |![top-up-regular](icons/o2-new/regular/top-up-regular.svg) |![top-up-regular](icons/o2/regular/top-up-regular.svg) | |`top-up-regular`[![top-up-regular](.github/resources/anchor.svg)](#top-up-regular)|
-|![tow-truck-filled](icons/telefonica/filled/tow-truck-filled.svg) | | | | |`tow-truck-filled`[![tow-truck-filled](.github/resources/anchor.svg)](#tow-truck-filled)|
-|![tow-truck-light](icons/telefonica/light/tow-truck-light.svg) | | | | |`tow-truck-light`[![tow-truck-light](.github/resources/anchor.svg)](#tow-truck-light)|
-|![tow-truck-regular](icons/telefonica/regular/tow-truck-regular.svg) | | | | |`tow-truck-regular`[![tow-truck-regular](.github/resources/anchor.svg)](#tow-truck-regular)|
-|![train-filled](icons/telefonica/filled/train-filled.svg) | |![train-filled](icons/o2-new/filled/train-filled.svg) |![train-filled](icons/o2/filled/train-filled.svg) | |`train-filled`[![train-filled](.github/resources/anchor.svg)](#train-filled)|
-|![train-light](icons/telefonica/light/train-light.svg) | |![train-light](icons/o2-new/light/train-light.svg) |![train-light](icons/o2/light/train-light.svg) | |`train-light`[![train-light](.github/resources/anchor.svg)](#train-light)|
-|![train-regular](icons/telefonica/regular/train-regular.svg) | |![train-regular](icons/o2-new/regular/train-regular.svg) |![train-regular](icons/o2/regular/train-regular.svg) | |`train-regular`[![train-regular](.github/resources/anchor.svg)](#train-regular)|
-|![tram-train-filled](icons/telefonica/filled/tram-train-filled.svg) | | | | |`tram-train-filled`[![tram-train-filled](.github/resources/anchor.svg)](#tram-train-filled)|
-|![tram-train-light](icons/telefonica/light/tram-train-light.svg) | | | | |`tram-train-light`[![tram-train-light](.github/resources/anchor.svg)](#tram-train-light)|
-|![tram-train-regular](icons/telefonica/regular/tram-train-regular.svg) | | | | |`tram-train-regular`[![tram-train-regular](.github/resources/anchor.svg)](#tram-train-regular)|
-|![trash-can-filled](icons/telefonica/filled/trash-can-filled.svg) | |![trash-can-filled](icons/o2-new/filled/trash-can-filled.svg) |![trash-can-filled](icons/o2/filled/trash-can-filled.svg) | |`trash-can-filled`[![trash-can-filled](.github/resources/anchor.svg)](#trash-can-filled)|
-|![trash-can-light](icons/telefonica/light/trash-can-light.svg) | |![trash-can-light](icons/o2-new/light/trash-can-light.svg) |![trash-can-light](icons/o2/light/trash-can-light.svg) | |`trash-can-light`[![trash-can-light](.github/resources/anchor.svg)](#trash-can-light)|
-|![trash-can-regular](icons/telefonica/regular/trash-can-regular.svg) | |![trash-can-regular](icons/o2-new/regular/trash-can-regular.svg) |![trash-can-regular](icons/o2/regular/trash-can-regular.svg) | |`trash-can-regular`[![trash-can-regular](.github/resources/anchor.svg)](#trash-can-regular)|
-|![travel-bag-filled](icons/telefonica/filled/travel-bag-filled.svg) | | | | |`travel-bag-filled`[![travel-bag-filled](.github/resources/anchor.svg)](#travel-bag-filled)|
-|![travel-bag-light](icons/telefonica/light/travel-bag-light.svg) | | | | |`travel-bag-light`[![travel-bag-light](.github/resources/anchor.svg)](#travel-bag-light)|
-|![travel-bag-regular](icons/telefonica/regular/travel-bag-regular.svg) | | | | |`travel-bag-regular`[![travel-bag-regular](.github/resources/anchor.svg)](#travel-bag-regular)|
-|![tree-2-filled](icons/telefonica/filled/tree-2-filled.svg) | | | | |`tree-2-filled`[![tree-2-filled](.github/resources/anchor.svg)](#tree-2-filled)|
-|![tree-2-light](icons/telefonica/light/tree-2-light.svg) | | | | |`tree-2-light`[![tree-2-light](.github/resources/anchor.svg)](#tree-2-light)|
-|![tree-2-regular](icons/telefonica/regular/tree-2-regular.svg) | | | | |`tree-2-regular`[![tree-2-regular](.github/resources/anchor.svg)](#tree-2-regular)|
-|![tree-filled](icons/telefonica/filled/tree-filled.svg) | | | | |`tree-filled`[![tree-filled](.github/resources/anchor.svg)](#tree-filled)|
-|![tree-light](icons/telefonica/light/tree-light.svg) | | | | |`tree-light`[![tree-light](.github/resources/anchor.svg)](#tree-light)|
-|![tree-regular](icons/telefonica/regular/tree-regular.svg) | | | | |`tree-regular`[![tree-regular](.github/resources/anchor.svg)](#tree-regular)|
-|![trend-down-light](icons/telefonica/light/trend-down-light.svg) | | | | |`trend-down-light`[![trend-down-light](.github/resources/anchor.svg)](#trend-down-light)|
-|![trend-down-regular](icons/telefonica/regular/trend-down-regular.svg) | | | | |`trend-down-regular`[![trend-down-regular](.github/resources/anchor.svg)](#trend-down-regular)|
-|![trend-up-light](icons/telefonica/light/trend-up-light.svg) | | | | |`trend-up-light`[![trend-up-light](.github/resources/anchor.svg)](#trend-up-light)|
-|![trend-up-regular](icons/telefonica/regular/trend-up-regular.svg) | | | | |`trend-up-regular`[![trend-up-regular](.github/resources/anchor.svg)](#trend-up-regular)|
-|![trophy-filled](icons/telefonica/filled/trophy-filled.svg) | |![trophy-filled](icons/o2-new/filled/trophy-filled.svg) |![trophy-filled](icons/o2/filled/trophy-filled.svg) | |`trophy-filled`[![trophy-filled](.github/resources/anchor.svg)](#trophy-filled)|
-|![trophy-light](icons/telefonica/light/trophy-light.svg) | |![trophy-light](icons/o2-new/light/trophy-light.svg) |![trophy-light](icons/o2/light/trophy-light.svg) | |`trophy-light`[![trophy-light](.github/resources/anchor.svg)](#trophy-light)|
-|![trophy-regular](icons/telefonica/regular/trophy-regular.svg) | |![trophy-regular](icons/o2-new/regular/trophy-regular.svg) |![trophy-regular](icons/o2/regular/trophy-regular.svg) | |`trophy-regular`[![trophy-regular](.github/resources/anchor.svg)](#trophy-regular)|
-|![truck-filled](icons/telefonica/filled/truck-filled.svg) | |![truck-filled](icons/o2-new/filled/truck-filled.svg) |![truck-filled](icons/o2/filled/truck-filled.svg) | |`truck-filled`[![truck-filled](.github/resources/anchor.svg)](#truck-filled)|
-|![truck-light](icons/telefonica/light/truck-light.svg) | |![truck-light](icons/o2-new/light/truck-light.svg) |![truck-light](icons/o2/light/truck-light.svg) | |`truck-light`[![truck-light](.github/resources/anchor.svg)](#truck-light)|
-|![truck-regular](icons/telefonica/regular/truck-regular.svg) | |![truck-regular](icons/o2-new/regular/truck-regular.svg) |![truck-regular](icons/o2/regular/truck-regular.svg) | |`truck-regular`[![truck-regular](.github/resources/anchor.svg)](#truck-regular)|
-|![tshirt-filled](icons/telefonica/filled/tshirt-filled.svg) | | | | |`tshirt-filled`[![tshirt-filled](.github/resources/anchor.svg)](#tshirt-filled)|
-|![tshirt-light](icons/telefonica/light/tshirt-light.svg) | | | | |`tshirt-light`[![tshirt-light](.github/resources/anchor.svg)](#tshirt-light)|
-|![tshirt-regular](icons/telefonica/regular/tshirt-regular.svg) | | | | |`tshirt-regular`[![tshirt-regular](.github/resources/anchor.svg)](#tshirt-regular)|
-|![tv-content-filled](icons/telefonica/filled/tv-content-filled.svg) | |![tv-content-filled](icons/o2-new/filled/tv-content-filled.svg) |![tv-content-filled](icons/o2/filled/tv-content-filled.svg) | |`tv-content-filled`[![tv-content-filled](.github/resources/anchor.svg)](#tv-content-filled)|
-|![tv-content-light](icons/telefonica/light/tv-content-light.svg) | |![tv-content-light](icons/o2-new/light/tv-content-light.svg) |![tv-content-light](icons/o2/light/tv-content-light.svg) | |`tv-content-light`[![tv-content-light](.github/resources/anchor.svg)](#tv-content-light)|
-|![tv-content-regular](icons/telefonica/regular/tv-content-regular.svg) |![tv-content-regular](icons/vivo-new/regular/tv-content-regular.svg) |![tv-content-regular](icons/o2-new/regular/tv-content-regular.svg) |![tv-content-regular](icons/o2/regular/tv-content-regular.svg) | |`tv-content-regular`[![tv-content-regular](.github/resources/anchor.svg)](#tv-content-regular)|
-|![umbrella-filled](icons/telefonica/filled/umbrella-filled.svg) | | | | |`umbrella-filled`[![umbrella-filled](.github/resources/anchor.svg)](#umbrella-filled)|
-|![umbrella-light](icons/telefonica/light/umbrella-light.svg) | | | | |`umbrella-light`[![umbrella-light](.github/resources/anchor.svg)](#umbrella-light)|
-|![umbrella-regular](icons/telefonica/regular/umbrella-regular.svg) | | | | |`umbrella-regular`[![umbrella-regular](.github/resources/anchor.svg)](#umbrella-regular)|
-| | |![undo-filled](icons/o2-new/filled/undo-filled.svg) |![undo-filled](icons/o2/filled/undo-filled.svg) | |`undo-filled`[![undo-filled](.github/resources/anchor.svg)](#undo-filled)|
-| | |![undo-light](icons/o2-new/light/undo-light.svg) |![undo-light](icons/o2/light/undo-light.svg) | |`undo-light`[![undo-light](.github/resources/anchor.svg)](#undo-light)|
-| | |![undo-regular](icons/o2-new/regular/undo-regular.svg) |![undo-regular](icons/o2/regular/undo-regular.svg) | |`undo-regular`[![undo-regular](.github/resources/anchor.svg)](#undo-regular)|
-| | |![unlimited-calls-sms-filled](icons/o2-new/filled/unlimited-calls-sms-filled.svg) |![unlimited-calls-sms-filled](icons/o2/filled/unlimited-calls-sms-filled.svg) | |`unlimited-calls-sms-filled`[![unlimited-calls-sms-filled](.github/resources/anchor.svg)](#unlimited-calls-sms-filled)|
-| | |![unlimited-calls-sms-light](icons/o2-new/light/unlimited-calls-sms-light.svg) |![unlimited-calls-sms-light](icons/o2/light/unlimited-calls-sms-light.svg) | |`unlimited-calls-sms-light`[![unlimited-calls-sms-light](.github/resources/anchor.svg)](#unlimited-calls-sms-light)|
-| | |![unlimited-calls-sms-regular](icons/o2-new/regular/unlimited-calls-sms-regular.svg) |![unlimited-calls-sms-regular](icons/o2/regular/unlimited-calls-sms-regular.svg) | |`unlimited-calls-sms-regular`[![unlimited-calls-sms-regular](.github/resources/anchor.svg)](#unlimited-calls-sms-regular)|
-| | |![unlimited-internet-filled](icons/o2-new/filled/unlimited-internet-filled.svg) |![unlimited-internet-filled](icons/o2/filled/unlimited-internet-filled.svg) | |`unlimited-internet-filled`[![unlimited-internet-filled](.github/resources/anchor.svg)](#unlimited-internet-filled)|
-| | |![unlimited-internet-light](icons/o2-new/light/unlimited-internet-light.svg) |![unlimited-internet-light](icons/o2/light/unlimited-internet-light.svg) | |`unlimited-internet-light`[![unlimited-internet-light](.github/resources/anchor.svg)](#unlimited-internet-light)|
-| | |![unlimited-internet-regular](icons/o2-new/regular/unlimited-internet-regular.svg) |![unlimited-internet-regular](icons/o2/regular/unlimited-internet-regular.svg) | |`unlimited-internet-regular`[![unlimited-internet-regular](.github/resources/anchor.svg)](#unlimited-internet-regular)|
-|![user-account-filled](icons/telefonica/filled/user-account-filled.svg) | |![user-account-filled](icons/o2-new/filled/user-account-filled.svg) |![user-account-filled](icons/o2/filled/user-account-filled.svg) | |`user-account-filled`[![user-account-filled](.github/resources/anchor.svg)](#user-account-filled)|
-|![user-account-light](icons/telefonica/light/user-account-light.svg) | |![user-account-light](icons/o2-new/light/user-account-light.svg) |![user-account-light](icons/o2/light/user-account-light.svg) | |`user-account-light`[![user-account-light](.github/resources/anchor.svg)](#user-account-light)|
-|![user-account-regular](icons/telefonica/regular/user-account-regular.svg) | |![user-account-regular](icons/o2-new/regular/user-account-regular.svg) |![user-account-regular](icons/o2/regular/user-account-regular.svg) |![user-account-regular](icons/blau/regular/user-account-regular.svg) |`user-account-regular`[![user-account-regular](.github/resources/anchor.svg)](#user-account-regular)|
-|![user-support-filled](icons/telefonica/filled/user-support-filled.svg) | |![user-support-filled](icons/o2-new/filled/user-support-filled.svg) |![user-support-filled](icons/o2/filled/user-support-filled.svg) | |`user-support-filled`[![user-support-filled](.github/resources/anchor.svg)](#user-support-filled)|
-|![user-support-light](icons/telefonica/light/user-support-light.svg) | |![user-support-light](icons/o2-new/light/user-support-light.svg) |![user-support-light](icons/o2/light/user-support-light.svg) | |`user-support-light`[![user-support-light](.github/resources/anchor.svg)](#user-support-light)|
-|![user-support-regular](icons/telefonica/regular/user-support-regular.svg) | |![user-support-regular](icons/o2-new/regular/user-support-regular.svg) |![user-support-regular](icons/o2/regular/user-support-regular.svg) | |`user-support-regular`[![user-support-regular](.github/resources/anchor.svg)](#user-support-regular)|
-|![video-camera-disabled-filled](icons/telefonica/filled/video-camera-disabled-filled.svg) | |![video-camera-disabled-filled](icons/o2-new/filled/video-camera-disabled-filled.svg) | | |`video-camera-disabled-filled`[![video-camera-disabled-filled](.github/resources/anchor.svg)](#video-camera-disabled-filled)|
-|![video-camera-disabled-light](icons/telefonica/light/video-camera-disabled-light.svg) | |![video-camera-disabled-light](icons/o2-new/light/video-camera-disabled-light.svg) | | |`video-camera-disabled-light`[![video-camera-disabled-light](.github/resources/anchor.svg)](#video-camera-disabled-light)|
-|![video-camera-disabled-regular](icons/telefonica/regular/video-camera-disabled-regular.svg) | |![video-camera-disabled-regular](icons/o2-new/regular/video-camera-disabled-regular.svg) | | |`video-camera-disabled-regular`[![video-camera-disabled-regular](.github/resources/anchor.svg)](#video-camera-disabled-regular)|
-|![video-camera-filled](icons/telefonica/filled/video-camera-filled.svg) | |![video-camera-filled](icons/o2-new/filled/video-camera-filled.svg) |![video-camera-filled](icons/o2/filled/video-camera-filled.svg) | |`video-camera-filled`[![video-camera-filled](.github/resources/anchor.svg)](#video-camera-filled)|
-|![video-camera-light](icons/telefonica/light/video-camera-light.svg) | |![video-camera-light](icons/o2-new/light/video-camera-light.svg) |![video-camera-light](icons/o2/light/video-camera-light.svg) | |`video-camera-light`[![video-camera-light](.github/resources/anchor.svg)](#video-camera-light)|
-|![video-camera-regular](icons/telefonica/regular/video-camera-regular.svg) |![video-camera-regular](icons/vivo-new/regular/video-camera-regular.svg) |![video-camera-regular](icons/o2-new/regular/video-camera-regular.svg) |![video-camera-regular](icons/o2/regular/video-camera-regular.svg) | |`video-camera-regular`[![video-camera-regular](.github/resources/anchor.svg)](#video-camera-regular)|
-| | |![video-chat-filled](icons/o2-new/filled/video-chat-filled.svg) |![video-chat-filled](icons/o2/filled/video-chat-filled.svg) | |`video-chat-filled`[![video-chat-filled](.github/resources/anchor.svg)](#video-chat-filled)|
-| | |![video-chat-light](icons/o2-new/light/video-chat-light.svg) |![video-chat-light](icons/o2/light/video-chat-light.svg) | |`video-chat-light`[![video-chat-light](.github/resources/anchor.svg)](#video-chat-light)|
-| | |![video-chat-regular](icons/o2-new/regular/video-chat-regular.svg) |![video-chat-regular](icons/o2/regular/video-chat-regular.svg) | |`video-chat-regular`[![video-chat-regular](.github/resources/anchor.svg)](#video-chat-regular)|
-| | |![video-disabled-filled](icons/o2-new/filled/video-disabled-filled.svg) |![video-disabled-filled](icons/o2/filled/video-disabled-filled.svg) | |`video-disabled-filled`[![video-disabled-filled](.github/resources/anchor.svg)](#video-disabled-filled)|
-| | |![video-disabled-light](icons/o2-new/light/video-disabled-light.svg) |![video-disabled-light](icons/o2/light/video-disabled-light.svg) | |`video-disabled-light`[![video-disabled-light](.github/resources/anchor.svg)](#video-disabled-light)|
-| | |![video-disabled-regular](icons/o2-new/regular/video-disabled-regular.svg) |![video-disabled-regular](icons/o2/regular/video-disabled-regular.svg) | |`video-disabled-regular`[![video-disabled-regular](.github/resources/anchor.svg)](#video-disabled-regular)|
-|![video-filled](icons/telefonica/filled/video-filled.svg) | |![video-filled](icons/o2-new/filled/video-filled.svg) |![video-filled](icons/o2/filled/video-filled.svg) | |`video-filled`[![video-filled](.github/resources/anchor.svg)](#video-filled)|
-|![video-light](icons/telefonica/light/video-light.svg) | |![video-light](icons/o2-new/light/video-light.svg) |![video-light](icons/o2/light/video-light.svg) | |`video-light`[![video-light](.github/resources/anchor.svg)](#video-light)|
-|![video-regular](icons/telefonica/regular/video-regular.svg) | |![video-regular](icons/o2-new/regular/video-regular.svg) |![video-regular](icons/o2/regular/video-regular.svg) | |`video-regular`[![video-regular](.github/resources/anchor.svg)](#video-regular)|
-|![video-surveillance-security-filled](icons/telefonica/filled/video-surveillance-security-filled.svg) |![video-surveillance-security-filled](icons/vivo-new/filled/video-surveillance-security-filled.svg) | | | |`video-surveillance-security-filled`[![video-surveillance-security-filled](.github/resources/anchor.svg)](#video-surveillance-security-filled)|
-|![video-surveillance-security-light](icons/telefonica/light/video-surveillance-security-light.svg) |![video-surveillance-security-light](icons/vivo-new/light/video-surveillance-security-light.svg) | | | |`video-surveillance-security-light`[![video-surveillance-security-light](.github/resources/anchor.svg)](#video-surveillance-security-light)|
-| |![video-surveillance-security-regular](icons/vivo-new/regular/video-surveillance-security-regular.svg) | | | |`video-surveillance-security-regular`[![video-surveillance-security-regular](.github/resources/anchor.svg)](#video-surveillance-security-regular)|
-|![videogames-filled](icons/telefonica/filled/videogames-filled.svg) | |![videogames-filled](icons/o2-new/filled/videogames-filled.svg) |![videogames-filled](icons/o2/filled/videogames-filled.svg) | |`videogames-filled`[![videogames-filled](.github/resources/anchor.svg)](#videogames-filled)|
-|![videogames-light](icons/telefonica/light/videogames-light.svg) | |![videogames-light](icons/o2-new/light/videogames-light.svg) |![videogames-light](icons/o2/light/videogames-light.svg) | |`videogames-light`[![videogames-light](.github/resources/anchor.svg)](#videogames-light)|
-|![videogames-regular](icons/telefonica/regular/videogames-regular.svg) | |![videogames-regular](icons/o2-new/regular/videogames-regular.svg) |![videogames-regular](icons/o2/regular/videogames-regular.svg) | |`videogames-regular`[![videogames-regular](.github/resources/anchor.svg)](#videogames-regular)|
-| | |![view-360-light](icons/o2-new/light/view-360-light.svg) |![view-360-light](icons/o2/light/view-360-light.svg) | |`view-360-light`[![view-360-light](.github/resources/anchor.svg)](#view-360-light)|
-| | |![view-360-regular](icons/o2-new/regular/view-360-regular.svg) |![view-360-regular](icons/o2/regular/view-360-regular.svg) | |`view-360-regular`[![view-360-regular](.github/resources/anchor.svg)](#view-360-regular)|
-|![virus-filled](icons/telefonica/filled/virus-filled.svg) | | | | |`virus-filled`[![virus-filled](.github/resources/anchor.svg)](#virus-filled)|
-|![virus-light](icons/telefonica/light/virus-light.svg) | | | | |`virus-light`[![virus-light](.github/resources/anchor.svg)](#virus-light)|
-|![virus-regular](icons/telefonica/regular/virus-regular.svg) | | | | |`virus-regular`[![virus-regular](.github/resources/anchor.svg)](#virus-regular)|
-|![virus-scan-filled](icons/telefonica/filled/virus-scan-filled.svg) | | | | |`virus-scan-filled`[![virus-scan-filled](.github/resources/anchor.svg)](#virus-scan-filled)|
-|![virus-scan-light](icons/telefonica/light/virus-scan-light.svg) | | | | |`virus-scan-light`[![virus-scan-light](.github/resources/anchor.svg)](#virus-scan-light)|
-|![virus-scan-regular](icons/telefonica/regular/virus-scan-regular.svg) | | | | |`virus-scan-regular`[![virus-scan-regular](.github/resources/anchor.svg)](#virus-scan-regular)|
-| |![vivo-valoriza-filled](icons/vivo-new/filled/vivo-valoriza-filled.svg) | | | |`vivo-valoriza-filled`[![vivo-valoriza-filled](.github/resources/anchor.svg)](#vivo-valoriza-filled)|
-| |![vivo-valoriza-light](icons/vivo-new/light/vivo-valoriza-light.svg) | | | |`vivo-valoriza-light`[![vivo-valoriza-light](.github/resources/anchor.svg)](#vivo-valoriza-light)|
-| |![vivo-valoriza-regular](icons/vivo-new/regular/vivo-valoriza-regular.svg) | | | |`vivo-valoriza-regular`[![vivo-valoriza-regular](.github/resources/anchor.svg)](#vivo-valoriza-regular)|
-| | |![vod-filled](icons/o2-new/filled/vod-filled.svg) |![vod-filled](icons/o2/filled/vod-filled.svg) | |`vod-filled`[![vod-filled](.github/resources/anchor.svg)](#vod-filled)|
-| | |![vod-light](icons/o2-new/light/vod-light.svg) |![vod-light](icons/o2/light/vod-light.svg) | |`vod-light`[![vod-light](.github/resources/anchor.svg)](#vod-light)|
-| | |![vod-regular](icons/o2-new/regular/vod-regular.svg) |![vod-regular](icons/o2/regular/vod-regular.svg) | |`vod-regular`[![vod-regular](.github/resources/anchor.svg)](#vod-regular)|
-| |![voice-assistant-regular](icons/vivo-new/regular/voice-assistant-regular.svg) | | | |`voice-assistant-regular`[![voice-assistant-regular](.github/resources/anchor.svg)](#voice-assistant-regular)|
-| | |![voicemail-filled](icons/o2-new/filled/voicemail-filled.svg) |![voicemail-filled](icons/o2/filled/voicemail-filled.svg) | |`voicemail-filled`[![voicemail-filled](.github/resources/anchor.svg)](#voicemail-filled)|
-| | |![voicemail-light](icons/o2-new/light/voicemail-light.svg) |![voicemail-light](icons/o2/light/voicemail-light.svg) | |`voicemail-light`[![voicemail-light](.github/resources/anchor.svg)](#voicemail-light)|
-| | |![voicemail-regular](icons/o2-new/regular/voicemail-regular.svg) |![voicemail-regular](icons/o2/regular/voicemail-regular.svg) | |`voicemail-regular`[![voicemail-regular](.github/resources/anchor.svg)](#voicemail-regular)|
-| | |![volume-down-filled](icons/o2-new/filled/volume-down-filled.svg) |![volume-down-filled](icons/o2/filled/volume-down-filled.svg) | |`volume-down-filled`[![volume-down-filled](.github/resources/anchor.svg)](#volume-down-filled)|
-| | |![volume-down-light](icons/o2-new/light/volume-down-light.svg) |![volume-down-light](icons/o2/light/volume-down-light.svg) | |`volume-down-light`[![volume-down-light](.github/resources/anchor.svg)](#volume-down-light)|
-| | |![volume-down-regular](icons/o2-new/regular/volume-down-regular.svg) |![volume-down-regular](icons/o2/regular/volume-down-regular.svg) | |`volume-down-regular`[![volume-down-regular](.github/resources/anchor.svg)](#volume-down-regular)|
-| | |![volume-up-filled](icons/o2-new/filled/volume-up-filled.svg) |![volume-up-filled](icons/o2/filled/volume-up-filled.svg) | |`volume-up-filled`[![volume-up-filled](.github/resources/anchor.svg)](#volume-up-filled)|
-| | |![volume-up-light](icons/o2-new/light/volume-up-light.svg) |![volume-up-light](icons/o2/light/volume-up-light.svg) | |`volume-up-light`[![volume-up-light](.github/resources/anchor.svg)](#volume-up-light)|
-| | |![volume-up-regular](icons/o2-new/regular/volume-up-regular.svg) |![volume-up-regular](icons/o2/regular/volume-up-regular.svg) | |`volume-up-regular`[![volume-up-regular](.github/resources/anchor.svg)](#volume-up-regular)|
-| | |![wait-clock-filled](icons/o2-new/filled/wait-clock-filled.svg) |![wait-clock-filled](icons/o2/filled/wait-clock-filled.svg) | |`wait-clock-filled`[![wait-clock-filled](.github/resources/anchor.svg)](#wait-clock-filled)|
-| | |![wait-clock-light](icons/o2-new/light/wait-clock-light.svg) |![wait-clock-light](icons/o2/light/wait-clock-light.svg) | |`wait-clock-light`[![wait-clock-light](.github/resources/anchor.svg)](#wait-clock-light)|
-| | |![wait-clock-regular](icons/o2-new/regular/wait-clock-regular.svg) |![wait-clock-regular](icons/o2/regular/wait-clock-regular.svg) | |`wait-clock-regular`[![wait-clock-regular](.github/resources/anchor.svg)](#wait-clock-regular)|
-|![wallet-filled](icons/telefonica/filled/wallet-filled.svg) | |![wallet-filled](icons/o2-new/filled/wallet-filled.svg) |![wallet-filled](icons/o2/filled/wallet-filled.svg) | |`wallet-filled`[![wallet-filled](.github/resources/anchor.svg)](#wallet-filled)|
-|![wallet-light](icons/telefonica/light/wallet-light.svg) | |![wallet-light](icons/o2-new/light/wallet-light.svg) |![wallet-light](icons/o2/light/wallet-light.svg) | |`wallet-light`[![wallet-light](.github/resources/anchor.svg)](#wallet-light)|
-|![wallet-regular](icons/telefonica/regular/wallet-regular.svg) | |![wallet-regular](icons/o2-new/regular/wallet-regular.svg) |![wallet-regular](icons/o2/regular/wallet-regular.svg) | |`wallet-regular`[![wallet-regular](.github/resources/anchor.svg)](#wallet-regular)|
-|![warning-filled](icons/telefonica/filled/warning-filled.svg) | |![warning-filled](icons/o2-new/filled/warning-filled.svg) |![warning-filled](icons/o2/filled/warning-filled.svg) | |`warning-filled`[![warning-filled](.github/resources/anchor.svg)](#warning-filled)|
-|![warning-light](icons/telefonica/light/warning-light.svg) | |![warning-light](icons/o2-new/light/warning-light.svg) |![warning-light](icons/o2/light/warning-light.svg) | |`warning-light`[![warning-light](.github/resources/anchor.svg)](#warning-light)|
-|![warning-regular](icons/telefonica/regular/warning-regular.svg) | |![warning-regular](icons/o2-new/regular/warning-regular.svg) |![warning-regular](icons/o2/regular/warning-regular.svg) |![warning-regular](icons/blau/regular/warning-regular.svg) |`warning-regular`[![warning-regular](.github/resources/anchor.svg)](#warning-regular)|
-|![water-drop-filled](icons/telefonica/filled/water-drop-filled.svg) | |![water-drop-filled](icons/o2-new/filled/water-drop-filled.svg) |![water-drop-filled](icons/o2/filled/water-drop-filled.svg) | |`water-drop-filled`[![water-drop-filled](.github/resources/anchor.svg)](#water-drop-filled)|
-|![water-drop-light](icons/telefonica/light/water-drop-light.svg) | |![water-drop-light](icons/o2-new/light/water-drop-light.svg) |![water-drop-light](icons/o2/light/water-drop-light.svg) | |`water-drop-light`[![water-drop-light](.github/resources/anchor.svg)](#water-drop-light)|
-|![water-drop-regular](icons/telefonica/regular/water-drop-regular.svg) | |![water-drop-regular](icons/o2-new/regular/water-drop-regular.svg) |![water-drop-regular](icons/o2/regular/water-drop-regular.svg) | |`water-drop-regular`[![water-drop-regular](.github/resources/anchor.svg)](#water-drop-regular)|
-|![wearable-filled](icons/telefonica/filled/wearable-filled.svg) | | | | |`wearable-filled`[![wearable-filled](.github/resources/anchor.svg)](#wearable-filled)|
-|![wearable-light](icons/telefonica/light/wearable-light.svg) | | | | |`wearable-light`[![wearable-light](.github/resources/anchor.svg)](#wearable-light)|
-|![wearable-regular](icons/telefonica/regular/wearable-regular.svg) | |![wearable-regular](icons/o2-new/regular/wearable-regular.svg) |![wearable-regular](icons/o2/regular/wearable-regular.svg) | |`wearable-regular`[![wearable-regular](.github/resources/anchor.svg)](#wearable-regular)|
-|![web-filled](icons/telefonica/filled/web-filled.svg) | | | | |`web-filled`[![web-filled](.github/resources/anchor.svg)](#web-filled)|
-|![web-light](icons/telefonica/light/web-light.svg) | | | | |`web-light`[![web-light](.github/resources/anchor.svg)](#web-light)|
-|![web-regular](icons/telefonica/regular/web-regular.svg) | | | | |`web-regular`[![web-regular](.github/resources/anchor.svg)](#web-regular)|
-| |![webcam-regular](icons/vivo-new/regular/webcam-regular.svg) | | | |`webcam-regular`[![webcam-regular](.github/resources/anchor.svg)](#webcam-regular)|
-|![wifi-filled](icons/telefonica/filled/wifi-filled.svg) | |![wifi-filled](icons/o2-new/filled/wifi-filled.svg) |![wifi-filled](icons/o2/filled/wifi-filled.svg) | |`wifi-filled`[![wifi-filled](.github/resources/anchor.svg)](#wifi-filled)|
-|![wifi-light](icons/telefonica/light/wifi-light.svg) | |![wifi-light](icons/o2-new/light/wifi-light.svg) |![wifi-light](icons/o2/light/wifi-light.svg) | |`wifi-light`[![wifi-light](.github/resources/anchor.svg)](#wifi-light)|
-|![wifi-regular](icons/telefonica/regular/wifi-regular.svg) | |![wifi-regular](icons/o2-new/regular/wifi-regular.svg) |![wifi-regular](icons/o2/regular/wifi-regular.svg) |![wifi-regular](icons/blau/regular/wifi-regular.svg) |`wifi-regular`[![wifi-regular](.github/resources/anchor.svg)](#wifi-regular)|
-| | |![winner-check-filled](icons/o2-new/filled/winner-check-filled.svg) |![winner-check-filled](icons/o2/filled/winner-check-filled.svg) | |`winner-check-filled`[![winner-check-filled](.github/resources/anchor.svg)](#winner-check-filled)|
-| | |![winner-check-light](icons/o2-new/light/winner-check-light.svg) |![winner-check-light](icons/o2/light/winner-check-light.svg) | |`winner-check-light`[![winner-check-light](.github/resources/anchor.svg)](#winner-check-light)|
-| | |![winner-check-regular](icons/o2-new/regular/winner-check-regular.svg) |![winner-check-regular](icons/o2/regular/winner-check-regular.svg) | |`winner-check-regular`[![winner-check-regular](.github/resources/anchor.svg)](#winner-check-regular)|
-| | |![winner-euro-filled](icons/o2-new/filled/winner-euro-filled.svg) |![winner-euro-filled](icons/o2/filled/winner-euro-filled.svg) | |`winner-euro-filled`[![winner-euro-filled](.github/resources/anchor.svg)](#winner-euro-filled)|
-| | |![winner-euro-light](icons/o2-new/light/winner-euro-light.svg) |![winner-euro-light](icons/o2/light/winner-euro-light.svg) | |`winner-euro-light`[![winner-euro-light](.github/resources/anchor.svg)](#winner-euro-light)|
-| | |![winner-euro-regular](icons/o2-new/regular/winner-euro-regular.svg) |![winner-euro-regular](icons/o2/regular/winner-euro-regular.svg) | |`winner-euro-regular`[![winner-euro-regular](.github/resources/anchor.svg)](#winner-euro-regular)|
-| | |![winner-fiber-quality-filled](icons/o2-new/filled/winner-fiber-quality-filled.svg) |![winner-fiber-quality-filled](icons/o2/filled/winner-fiber-quality-filled.svg) | |`winner-fiber-quality-filled`[![winner-fiber-quality-filled](.github/resources/anchor.svg)](#winner-fiber-quality-filled)|
-| | |![winner-fiber-quality-light](icons/o2-new/light/winner-fiber-quality-light.svg) |![winner-fiber-quality-light](icons/o2/light/winner-fiber-quality-light.svg) | |`winner-fiber-quality-light`[![winner-fiber-quality-light](.github/resources/anchor.svg)](#winner-fiber-quality-light)|
-| | |![winner-fiber-quality-regular](icons/o2-new/regular/winner-fiber-quality-regular.svg) |![winner-fiber-quality-regular](icons/o2/regular/winner-fiber-quality-regular.svg) | |`winner-fiber-quality-regular`[![winner-fiber-quality-regular](.github/resources/anchor.svg)](#winner-fiber-quality-regular)|
-|![winner-filled](icons/telefonica/filled/winner-filled.svg) | |![winner-filled](icons/o2-new/filled/winner-filled.svg) |![winner-filled](icons/o2/filled/winner-filled.svg) | |`winner-filled`[![winner-filled](.github/resources/anchor.svg)](#winner-filled)|
-|![winner-light](icons/telefonica/light/winner-light.svg) | |![winner-light](icons/o2-new/light/winner-light.svg) |![winner-light](icons/o2/light/winner-light.svg) | |`winner-light`[![winner-light](.github/resources/anchor.svg)](#winner-light)|
-| | |![winner-pound-filled](icons/o2-new/filled/winner-pound-filled.svg) |![winner-pound-filled](icons/o2/filled/winner-pound-filled.svg) | |`winner-pound-filled`[![winner-pound-filled](.github/resources/anchor.svg)](#winner-pound-filled)|
-| | |![winner-pound-light](icons/o2-new/light/winner-pound-light.svg) |![winner-pound-light](icons/o2/light/winner-pound-light.svg) | |`winner-pound-light`[![winner-pound-light](.github/resources/anchor.svg)](#winner-pound-light)|
-| | |![winner-pound-regular](icons/o2-new/regular/winner-pound-regular.svg) |![winner-pound-regular](icons/o2/regular/winner-pound-regular.svg) | |`winner-pound-regular`[![winner-pound-regular](.github/resources/anchor.svg)](#winner-pound-regular)|
-|![winner-regular](icons/telefonica/regular/winner-regular.svg) | |![winner-regular](icons/o2-new/regular/winner-regular.svg) |![winner-regular](icons/o2/regular/winner-regular.svg) | |`winner-regular`[![winner-regular](.github/resources/anchor.svg)](#winner-regular)|
-|![woman-filled](icons/telefonica/filled/woman-filled.svg) | |![woman-filled](icons/o2-new/filled/woman-filled.svg) |![woman-filled](icons/o2/filled/woman-filled.svg) | |`woman-filled`[![woman-filled](.github/resources/anchor.svg)](#woman-filled)|
-|![woman-light](icons/telefonica/light/woman-light.svg) | |![woman-light](icons/o2-new/light/woman-light.svg) |![woman-light](icons/o2/light/woman-light.svg) | |`woman-light`[![woman-light](.github/resources/anchor.svg)](#woman-light)|
-|![woman-regular](icons/telefonica/regular/woman-regular.svg) | |![woman-regular](icons/o2-new/regular/woman-regular.svg) |![woman-regular](icons/o2/regular/woman-regular.svg) | |`woman-regular`[![woman-regular](.github/resources/anchor.svg)](#woman-regular)|
-| | |![workflow-filled](icons/o2-new/filled/workflow-filled.svg) |![workflow-filled](icons/o2/filled/workflow-filled.svg) | |`workflow-filled`[![workflow-filled](.github/resources/anchor.svg)](#workflow-filled)|
-| | |![workflow-light](icons/o2-new/light/workflow-light.svg) |![workflow-light](icons/o2/light/workflow-light.svg) | |`workflow-light`[![workflow-light](.github/resources/anchor.svg)](#workflow-light)|
-| | |![workflow-regular](icons/o2-new/regular/workflow-regular.svg) |![workflow-regular](icons/o2/regular/workflow-regular.svg) | |`workflow-regular`[![workflow-regular](.github/resources/anchor.svg)](#workflow-regular)|
-| | |![workshop-meeting-filled](icons/o2-new/filled/workshop-meeting-filled.svg) |![workshop-meeting-filled](icons/o2/filled/workshop-meeting-filled.svg) | |`workshop-meeting-filled`[![workshop-meeting-filled](.github/resources/anchor.svg)](#workshop-meeting-filled)|
-| | |![workshop-meeting-light](icons/o2-new/light/workshop-meeting-light.svg) |![workshop-meeting-light](icons/o2/light/workshop-meeting-light.svg) | |`workshop-meeting-light`[![workshop-meeting-light](.github/resources/anchor.svg)](#workshop-meeting-light)|
-| | |![workshop-meeting-regular](icons/o2-new/regular/workshop-meeting-regular.svg) |![workshop-meeting-regular](icons/o2/regular/workshop-meeting-regular.svg) | |`workshop-meeting-regular`[![workshop-meeting-regular](.github/resources/anchor.svg)](#workshop-meeting-regular)|
-| | |![world-device-filled](icons/o2-new/filled/world-device-filled.svg) |![world-device-filled](icons/o2/filled/world-device-filled.svg) | |`world-device-filled`[![world-device-filled](.github/resources/anchor.svg)](#world-device-filled)|
-| | |![world-device-light](icons/o2-new/light/world-device-light.svg) |![world-device-light](icons/o2/light/world-device-light.svg) | |`world-device-light`[![world-device-light](.github/resources/anchor.svg)](#world-device-light)|
-| | |![world-device-regular](icons/o2-new/regular/world-device-regular.svg) |![world-device-regular](icons/o2/regular/world-device-regular.svg) | |`world-device-regular`[![world-device-regular](.github/resources/anchor.svg)](#world-device-regular)|
+This table shows the equivalence of icons between the different brands.
+
+[View icon table →](ICON_TABLE.md)
+
+[![Icon Table Preview](.github/resources/icon_table.png)](ICON_TABLE.md)