diff options
author | codecalm <codecalm@gmail.com> | 2020-09-17 23:26:11 +0200 |
---|---|---|
committer | codecalm <codecalm@gmail.com> | 2020-09-17 23:26:11 +0200 |
commit | b18631d6d2657adf13cf70bc193fd45795750c7f (patch) | |
tree | 21ceca97a3d6420f33f80b5b4796e0375e612a86 | |
parent | `brand-discord` icon #73 (diff) | |
download | tabler-icons-b18631d6d2657adf13cf70bc193fd45795750c7f.tar.xz |
filled icons fix
-rw-r--r-- | src/_includes/icon.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/_includes/icon.html b/src/_includes/icon.html index 39b96aaa..89bd3c60 100644 --- a/src/_includes/icon.html +++ b/src/_includes/icon.html @@ -1,2 +1,2 @@ {% assign stroke = include.stroke | default: 2 %}{% assign width = 24 %}{% assign name = include.name %}{% assign icon = site.icons | where: "slug", name | first %}{% capture replace-to %}<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-{{ name }}" width="{{ width }}" height="{{ width }}" viewBox="0 0 24 24" stroke-width="{{ stroke }}" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"> - <path stroke="none" d="M0 0h24v24H0z"/>{% endcapture %}{% assign content = icon.content | replace: '<svg>', replace-to %}{{ content }} + <path stroke="none" d="M0 0h24v24H0z" fill="none"/>{% endcapture %}{% assign content = icon.content | replace: '<svg>', replace-to %}{{ content }} |