From 38f8dee567b2248f9f604a46399ebbb08d536fcc Mon Sep 17 00:00:00 2001 From: codecalm Date: Mon, 15 May 2023 00:48:59 +0200 Subject: [PATCH 1/2] add Filled section to icons page --- src/pages/icons.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/pages/icons.html b/src/pages/icons.html index 7a6cc186f4..a429501ddf 100644 --- a/src/pages/icons.html +++ b/src/pages/icons.html @@ -5,12 +5,15 @@ --- {% assign icons-brand = '' | split: ',' %} +{% assign icons-filled = '' | split: ',' %} {% assign icons-core = '' | split: ',' %} {% for icon in site.data.icons %} {% assign i = icon[0] %} {% if i contains 'brand-' %} {% assign icons-brand = icons-brand | push: i %} +{% elsif i contains '-filled' %} +{% assign icons-filled = icons-filled | push: i %} {% else %} {% assign icons-core = icons-core | push: i %} {% endif %} @@ -27,4 +30,7 @@
{% include cards/icons.html title="Brand icons" icons=icons-brand %}
+
+ {% include cards/icons.html title="Filled icons" icons=icons-filled %} +
From d5e19768ff04e9ead4d886b7c8d7daf893e6c1a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Kuna?= <1282324+codecalm@users.noreply.github.com> Date: Mon, 15 May 2023 00:50:06 +0200 Subject: [PATCH 2/2] Create twenty-tables-judge.md --- .changeset/twenty-tables-judge.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/twenty-tables-judge.md diff --git a/.changeset/twenty-tables-judge.md b/.changeset/twenty-tables-judge.md new file mode 100644 index 0000000000..48bc79cb61 --- /dev/null +++ b/.changeset/twenty-tables-judge.md @@ -0,0 +1,5 @@ +--- +"@tabler/core": patch +--- + +Add new Filled section to Icons page