diff --git a/material/mkdocs_theme.yml b/material/mkdocs_theme.yml
index df133a1cf..c60c657bd 100644
--- a/material/mkdocs_theme.yml
+++ b/material/mkdocs_theme.yml
@@ -52,12 +52,6 @@ font:
# icons that are part of the HTML can be configured and replaced
icon:
- # Shown if no logo is set
- logo: material/library
-
- # Repository icon
- repo: fontawesome/brands/git-alt
-
# Favicon to be rendered
favicon: assets/images/favicon.png
diff --git a/material/partials/header.html b/material/partials/header.html
index 90438e8cf..984512b5a 100644
--- a/material/partials/header.html
+++ b/material/partials/header.html
@@ -7,7 +7,8 @@
{% if config.theme.logo %}
{% else %}
- {% include ".icons/" ~ config.theme.icon.logo ~ ".svg" %}
+ {% set icon = config.theme.icon.logo or "material/library" %}
+ {% include ".icons/" ~ icon ~ ".svg" %}
{% endif %}