aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2020-09-21 17:08:01 +0200
committercodecalm <codecalm@gmail.com>2020-09-21 17:08:01 +0200
commita106aed0960bd2542e30929af941002807c6323c (patch)
treeffad101975849c1491a3ffa61ae7ca0753ab1229
parentpercentage icon (diff)
downloadtabler-icons-a106aed0960bd2542e30929af941002807c6323c.tar.xz
icons optimize
-rw-r--r--gulpfile.js12
-rw-r--r--src/_icons/2fa.svg2
-rw-r--r--src/_icons/3d-cube-sphere.svg2
-rw-r--r--src/_icons/alert-octagon.svg2
-rw-r--r--src/_icons/alert-triangle.svg2
-rw-r--r--src/_icons/alien.svg2
-rw-r--r--src/_icons/ball-volleyball.svg6
-rw-r--r--src/_icons/battery-charging.svg2
-rw-r--r--src/_icons/biohazard.svg2
-rw-r--r--src/_icons/brand-discord.svg4
-rw-r--r--src/_icons/brand-github.svg2
-rw-r--r--src/_icons/brand-gitlab.svg2
-rw-r--r--src/_icons/brand-google-drive.svg4
-rw-r--r--src/_icons/brand-google.svg2
-rw-r--r--src/_icons/brand-paypal.svg2
-rw-r--r--src/_icons/brand-pinterest.svg2
-rw-r--r--src/_icons/brand-reddit.svg2
-rw-r--r--src/_icons/brand-sketch.svg2
-rw-r--r--src/_icons/brand-slack.svg4
-rw-r--r--src/_icons/brand-snapchat.svg2
-rw-r--r--src/_icons/brand-tailwind.svg2
-rw-r--r--src/_icons/brand-twitter.svg2
-rw-r--r--src/_icons/brand-windows.svg2
-rw-r--r--src/_icons/bulb.svg2
-rw-r--r--src/_icons/clipboard-list.svg2
-rw-r--r--src/_icons/clipboard-x.svg2
-rw-r--r--src/_icons/clipboard.svg2
-rw-r--r--src/_icons/color-swatch.svg2
-rw-r--r--src/_icons/discount.svg2
-rw-r--r--src/_icons/ear.svg2
-rw-r--r--src/_icons/edit.svg2
-rw-r--r--src/_icons/emphasis.svg2
-rw-r--r--src/_icons/filter.svg2
-rw-r--r--src/_icons/h-2.svg2
-rw-r--r--src/_icons/h-5.svg2
-rw-r--r--src/_icons/heart-broken.svg2
-rw-r--r--src/_icons/heart.svg2
-rw-r--r--src/_icons/infinity.svg2
-rw-r--r--src/_icons/location.svg2
-rw-r--r--src/_icons/map-pin.svg2
-rw-r--r--src/_icons/medal.svg2
-rw-r--r--src/_icons/medical-cross.svg2
-rw-r--r--src/_icons/mood-cry.svg4
-rw-r--r--src/_icons/mood-happy.svg2
-rw-r--r--src/_icons/moon-stars.svg2
-rw-r--r--src/_icons/moon.svg2
-rw-r--r--src/_icons/notification.svg2
-rw-r--r--src/_icons/octagon.svg2
-rw-r--r--src/_icons/paperclip.svg2
-rw-r--r--src/_icons/photo.svg4
-rw-r--r--src/_icons/play.svg2
-rw-r--r--src/_icons/question-mark.svg2
-rw-r--r--src/_icons/radioactive.svg6
-rw-r--r--src/_icons/send.svg2
-rw-r--r--src/_icons/skip-forward.svg2
-rw-r--r--src/_icons/slideshow.svg4
-rw-r--r--src/_icons/smart-home.svg2
-rw-r--r--src/_icons/star.svg2
-rw-r--r--src/_icons/sun.svg2
-rw-r--r--src/_icons/sunset.svg2
-rw-r--r--src/_icons/sunshine.svg2
-rw-r--r--src/_icons/tag.svg2
-rw-r--r--src/_icons/thumb-down.svg2
-rw-r--r--src/_icons/thumb-up.svg2
-rw-r--r--src/_icons/track-next.svg2
-rw-r--r--src/_icons/track-prev.svg2
-rw-r--r--src/_icons/trademark.svg2
-rw-r--r--src/_icons/triangle.svg2
-rw-r--r--src/_icons/urgent.svg2
-rw-r--r--src/_icons/volume-2.svg2
-rw-r--r--src/_icons/volume-3.svg2
-rw-r--r--src/_icons/volume.svg2
-rw-r--r--src/_icons/wave-saw-tool.svg2
-rw-r--r--src/_icons/wave-sine.svg2
-rw-r--r--src/_icons/wave-square.svg2
-rw-r--r--src/_icons/zodiac-aries.svg4
76 files changed, 97 insertions, 87 deletions
diff --git a/gulpfile.js b/gulpfile.js
index c5d7c83..d2896f8 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -416,6 +416,7 @@ gulp.task('optimize', function (cb) {
.replace(/\s?\/>/g, ' />')
.replace(/\n\s*<(line|circle|path|polyline|rect)/g, "\n <$1")
.replace(/polyline points="([0-9.]+)\s([0-9.]+)\s([0-9.]+)\s([0-9.]+)"/g, 'line x1="$1" y1="$2" x2="$3" y2="$4"')
+ .replace(/d="m/g, 'd="M')
.replace(/([Aa])\s?([0-9.]+)\s([0-9.]+)\s([0-9.]+)\s?([0-1])\s?([0-1])\s?(-?[0-9.]+)\s?(-?[0-9.]+)/gi, '$1$2 $3 $4 $5 $6 $7 $8')
.replace(/\n\n+/g, "\n")
@@ -427,7 +428,16 @@ gulp.task('optimize', function (cb) {
})
.replace(/<path d="M([0-9.]*) ([0-9.]*)h\s?([0-9.]*)"/g, function (f, r1, r2, r3) {
return `<line x1="${r1}" y1="${r2}" x2="${addFloats(r1, r3)}" y2="${r2}"`;
- });
+ })
+ .replace(/<path d="([^"]+)"/g, function (f, r1) {
+ r1 = r1
+ .replace(/ -0\./g, " -.")
+ .replace(/ 0\./g, " .")
+ .replace(/\s([a-z])/gi, "$1")
+ .replace(/([a-z])\s/gi, "$1");
+ return `<path d="${r1}"`;
+ })
+ ;
//
//
diff --git a/src/_icons/2fa.svg b/src/_icons/2fa.svg
index 5b776fd..3d60f63 100644
--- a/src/_icons/2fa.svg
+++ b/src/_icons/2fa.svg
@@ -1,7 +1,7 @@
---
---
<svg>
- <path d="M7 16h-4 l3.47 -4.66 a2 2 0 1 0 -3.47 -1.54" />
+ <path d="M7 16h-4l3.47 -4.66a2 2 0 1 0 -3.47 -1.54" />
<path d="M10 16v-8h4" />
<line x1="10" y1="12" x2="13" y2="12" />
<path d="M17 16v-6a2 2 0 0 1 4 0v6" />
diff --git a/src/_icons/3d-cube-sphere.svg b/src/_icons/3d-cube-sphere.svg
index 7856173..1139410 100644
--- a/src/_icons/3d-cube-sphere.svg
+++ b/src/_icons/3d-cube-sphere.svg
@@ -2,7 +2,7 @@
---
<svg>
<path d="M6 17.6l-2 -1.1v-2.5" />
- <path d="M4 10v-2.5 l 2 -1.1" />
+ <path d="M4 10v-2.5l2 -1.1" />
<path d="M10 4.1l2 -1.1l2 1.1" />
<path d="M18 6.4l2 1.1v2.5" />
<path d="M20 14v2.5l-2 1.12" />
diff --git a/src/_icons/alert-octagon.svg b/src/_icons/alert-octagon.svg
index 70a14fe..3d0537b 100644
--- a/src/_icons/alert-octagon.svg
+++ b/src/_icons/alert-octagon.svg
@@ -1,7 +1,7 @@
---
---
<svg>
- <path d="M8.7 3 h 6.6 c0.3 0 .5 .1 .7 .3 l4.7 4.7 c0.2 .2 .3 .4 .3 .7 v6.6 c0 .3 -.1 .5 -.3 .7 l-4.7 4.7 c-0.2 .2 -.4 .3 -.7 .3h-6.6 c-0.3 0 -.5 -.1 -.7 -.3 l-4.7 -4.7 c-0.2 -.2 -.3 -.4 -.3 -.7 v-6.6 c0 -.3 .1 -.5 .3 -.7l4.7 -4.7 c0.2 -.2 .4 -.3 .7 -.3z" />
+ <path d="M8.7 3h6.6c0.3 0 .5 .1 .7 .3l4.7 4.7c0.2 .2 .3 .4 .3 .7v6.6c0 .3 -.1 .5 -.3 .7l-4.7 4.7c-0.2 .2 -.4 .3 -.7 .3h-6.6c-0.3 0 -.5 -.1 -.7 -.3l-4.7 -4.7c-0.2 -.2 -.3 -.4 -.3 -.7v-6.6c0 -.3 .1 -.5 .3 -.7l4.7 -4.7c0.2 -.2 .4 -.3 .7 -.3z" />
<line x1="12" y1="8" x2="12" y2="12" />
<line x1="12" y1="16" x2="12.01" y2="16" />
</svg>
diff --git a/src/_icons/alert-triangle.svg b/src/_icons/alert-triangle.svg
index 989497c..943c792 100644
--- a/src/_icons/alert-triangle.svg
+++ b/src/_icons/alert-triangle.svg
@@ -3,5 +3,5 @@ tags: [warning, danger, caution, risk]
---
<svg>
<path d="M12 9v2m0 4v.01" />
- <path d="M5 19 h14 a2 2 0 0 0 1.84 -2.75 l-7.1 -12.25 a2 2 0 0 0 -3.5 0 l-7.1 12.25 a2 2 0 0 0 1.75 2.75" />
+ <path d="M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75" />
</svg>
diff --git a/src/_icons/alien.svg b/src/_icons/alien.svg
index 402c7e6..95d3e28 100644
--- a/src/_icons/alien.svg
+++ b/src/_icons/alien.svg
@@ -2,7 +2,7 @@
---
<svg>
<path d="M11 17a2.5 2.5 0 0 0 2 0" />
- <path d="M12 3C7.336 3 4.604 5.331 4.138 8.595a11.816 11.816 0 0 0 1.998 8.592 10.777 10.777 0 003.199 3.064h0c1.666.999 3.664.999 5.33 0h0a10.777 10.777 0 0 0 3.199 -3.064 11.89 11.89 0 001.998-8.592C19.396 5.33 16.664 3 12 3z" />
+ <path d="M12 3c-4.664 0 -7.396 2.331 -7.862 5.595a11.816 11.816 0 0 0 1.998 8.592a10.777 10.777 0 0 0 3.199 3.064h0c1.666 .999 3.664 .999 5.33 0h0a10.777 10.777 0 0 0 3.199 -3.064a11.89 11.89 0 0 0 1.998 -8.592c-.466 -3.265 -3.198 -5.595 -7.862 -5.595z" />
<line x1="8" y1="11" x2="10" y2="13" />
<line x1="16" y1="11" x2="14" y2="13" />
</svg>
diff --git a/src/_icons/ball-volleyball.svg b/src/_icons/ball-volleyball.svg
index 630a90b..431eb77 100644
--- a/src/_icons/ball-volleyball.svg
+++ b/src/_icons/ball-volleyball.svg
@@ -3,7 +3,7 @@ category: Sport
---
<svg>
<circle cx="12" cy="12" r="9" />
- {% for i in (0..2) %}
- <path d="M12 12a8 8 0 0 0 8 4M7.5 13.5a12 12 0 0 0 8.5 6.5"{% if i > 0 %} transform="rotate({{ i | times: 120 }} 12 12)"{% endif %} />
- {% endfor %}
+ <path d="M12 12a8 8 0 0 0 8 4m-12.5 -2.5a12 12 0 0 0 8.5 6.5" />
+ <path d="M12 12a8 8 0 0 0 8 4m-12.5 -2.5a12 12 0 0 0 8.5 6.5" transform="rotate(120 12 12)" />
+ <path d="M12 12a8 8 0 0 0 8 4m-12.5 -2.5a12 12 0 0 0 8.5 6.5" transform="rotate(240 12 12)" />
</svg>
diff --git a/src/_icons/battery-charging.svg b/src/_icons/battery-charging.svg
index 167718f..1fb5ec1 100644
--- a/src/_icons/battery-charging.svg
+++ b/src/_icons/battery-charging.svg
@@ -3,6 +3,6 @@ tags: [charge, energy, power, electricity]
---
<svg>
<path d="M16 7h1a2 2 0 0 1 2 2v.5a.5 .5 0 0 0 .5 .5a.5 .5 0 0 1 .5 .5v3a.5 .5 0 0 1 -.5 .5a.5 .5 0 0 0 -.5 .5v.5a2 2 0 0 1 -2 2h-2" />
- <path d="M8 7H6a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1" />
+ <path d="M8 7h-2a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h1" />
<path d="M12 8l-2 4h3l-2 4" />
</svg>
diff --git a/src/_icons/biohazard.svg b/src/_icons/biohazard.svg
index bba8754..bd26244 100644
--- a/src/_icons/biohazard.svg
+++ b/src/_icons/biohazard.svg
@@ -2,5 +2,5 @@
---
<svg>
<circle cx="12" cy="12" r="2" />
- <path d="M11.939 14 c0.03 0.173 0.048 0.351 0.056 0.533 l 0.005 0.217 a4.75 4.75 0 0 1 -4.533 4.745 l -0.217 0.005 m -4.75 -4.75 a4.75 4.75 0 0 1 7.737 -3.693 m 6.513 8.443 a4.75 4.75 0 0 1 -4.69 -5.503 l -0.06 0.003 m 1.764 -2.944 a4.75 4.75 0 0 1 7.731 3.477 l 0.005 0.217 m -11.195 -3.813 a4.75 4.75 0 0 1 -1.828 -7.624 l 0.164 -0.172 m 6.718 0 a4.75 4.75 0 0 1 -1.665 7.798" />
+ <path d="M11.939 14c0.03 .173 .048 .351 .056 .533l0.005 .217a4.75 4.75 0 0 1 -4.533 4.745l-0.217 .005m-4.75 -4.75a4.75 4.75 0 0 1 7.737 -3.693m6.513 8.443a4.75 4.75 0 0 1 -4.69 -5.503l-.06 .003m1.764 -2.944a4.75 4.75 0 0 1 7.731 3.477l0.005 .217m-11.195 -3.813a4.75 4.75 0 0 1 -1.828 -7.624l0.164 -.172m6.718 0a4.75 4.75 0 0 1 -1.665 7.798" />
</svg>
diff --git a/src/_icons/brand-discord.svg b/src/_icons/brand-discord.svg
index 89909a3..b9327ac 100644
--- a/src/_icons/brand-discord.svg
+++ b/src/_icons/brand-discord.svg
@@ -6,6 +6,6 @@ category: Brand
<circle cx="15" cy="12" r="1" />
<path d="M7.5 7.5c3.5-1 5.5-1 9 0" />
<path d="M7 16.5c3.5 1 6.5 1 10 0" />
- <path d="M15.5 17c0 1 1.5 3 2 3 1.5 0 2.833-1.667 3.5-3 .667-1.667.5-5.833-1.5-11.5C18.043 4.485 16.528 4.16 15 4l-1 2.5" />
- <path d="M8.5 17c0 1-1.356 3-1.832 3-1.429 0-2.698-1.667-3.333-3-.635-1.667-.476-5.833 1.428-11.5C6.151 4.485 7.545 4.16 9 4l1 2.5" />
+ <path d="M15.5 17c0 1 1.5 3 2 3c1.5 0 2.833 -1.667 3.5 -3c.667 -1.667 .5 -5.833 -1.5 -11.5c-1.457 -1.015 -2.972 -1.34 -4.5 -1.5l-1 2.5" />
+ <path d="M8.5 17c0 1 -1.356 3 -1.832 3c-1.429 0 -2.698 -1.667 -3.333 -3c-.635 -1.667 -.476 -5.833 1.428 -11.5c1.388 -1.015 2.782 -1.34 4.237 -1.5l1 2.5" />
</svg>
diff --git a/src/_icons/brand-github.svg b/src/_icons/brand-github.svg
index 78aa51d..7427998 100644
--- a/src/_icons/brand-github.svg
+++ b/src/_icons/brand-github.svg
@@ -2,5 +2,5 @@
category: Brand
---
<svg>
- <path d="M9 19c-4.286 1.35-4.286-2.55-6-3m12 5v-3.5c0-1 .099-1.405-.5-2 2.791-.3 5.5-1.366 5.5-6.04a4.567 4.567 0 0 0 -1.333 -3.21a4.192 4.192 0 0 0 -.08 -3.227s-1.05-.3-3.476 1.267a12.334 12.334 0 0 0 -6.222 0C6.462 2.723 5.413 3.023 5.413 3.023a4.192 4.192 0 0 0 -.08 3.227A4.566 4.566 0 0 0 4 9.486c0 4.64 2.709 5.68 5.5 6.014-.591.589-.56 1.183-.5 2V21" />
+ <path d="M9 19c-4.3 1.4 -4.3 -2.5 -6 -3m12 5v-3.5c0 -1 .1 -1.4 -.5 -2c2.8 -.3 5.5 -1.4 5.5 -6a4.6 4.6 0 0 0 -1.3 -3.2a4.2 4.2 0 0 0 -.1 -3.2s-1.1 -.3 -3.5 1.3a12.3 12.3 0 0 0 -6.2 0c-2.4 -1.6 -3.5 -1.3 -3.5 -1.3a4.2 4.2 0 0 0 -.1 3.2a4.6 4.6 0 0 0 -1.3 3.2c0 4.6 2.7 5.7 5.5 6c-.6 .6 -.6 1.2 -.5 2v3.5" />
</svg>
diff --git a/src/_icons/brand-gitlab.svg b/src/_icons/brand-gitlab.svg
index 06bbc07..3fbaf3b 100644
--- a/src/_icons/brand-gitlab.svg
+++ b/src/_icons/brand-gitlab.svg
@@ -2,5 +2,5 @@
category: Brand
---
<svg>
- <path d="M21 14l-9 7-9-7L6 3l3 7h6l3-7z" />
+ <path d="M21 14l-9 7l-9 -7l3 -11l3 7h6l3 -7z" />
</svg>
diff --git a/src/_icons/brand-google-drive.svg b/src/_icons/brand-google-drive.svg
index dd47fb9..db1cf4d 100644
--- a/src/_icons/brand-google-drive.svg
+++ b/src/_icons/brand-google-drive.svg
@@ -2,7 +2,7 @@
category: Brand
---
<svg>
- <path d="M12 10L6 20l-3-5L9 5z" />
+ <path d="M12 10l-6 10l-3 -5l6 -10z" />
<path d="M9 15h12l-3 5h-12" />
- <path d="M15 15L9 5h6l6 10z" />
+ <path d="M15 15l-6 -10h6l6 10z" />
</svg>
diff --git a/src/_icons/brand-google.svg b/src/_icons/brand-google.svg
index e0011ab..cdf5fc7 100644
--- a/src/_icons/brand-google.svg
+++ b/src/_icons/brand-google.svg
@@ -2,5 +2,5 @@
category: Brand
---
<svg>
- <path d="M17.788 5.108A9 9 0 1 0 21 12h-8" />
+ <path d="M17.788 5.108a9 9 0 1 0 3.212 6.892h-8" />
</svg>
diff --git a/src/_icons/brand-paypal.svg b/src/_icons/brand-paypal.svg
index 84bba01..0710852 100644
--- a/src/_icons/brand-paypal.svg
+++ b/src/_icons/brand-paypal.svg
@@ -2,5 +2,5 @@
category: Brand
---
<svg>
- <path d="M10 13l2.538-.003c2.46 0 4.962-2.497 4.962-4.997 0-3-1.89-5-4.962-5H7c-.5 0-1 .5-1 1L4 18c0 .5.5 1 1 1h2.846L9 14c.089-.564.43-1 1-1zm7.467-5.837C19.204 8.153 20 10 20 12c0 2.467-2.54 4.505-5 4.505h.021-2.629l-.576 3.65a.998 .998 0 0 1 -.988 .844l-2.712-.002a.5 .5 0 0 1 -.494 -.578L7.846 19" />
+ <path d="M10 13l2.5 -0c2.5 0 5 -2.5 5 -5c0 -3 -1.9 -5 -5 -5h-5.5c-.5 0 -1 .5 -1 1l-2 14c0 .5 .5 1 1 1h2.8l1.2 -5c.1 -.6 .4 -1 1 -1zm7.5 -5.8c1.7 1 2.5 2.8 2.5 4.8c0 2.5 -2.5 4.5 -5 4.5h0h-2.6l-.6 3.6a1 1 0 0 1 -1 .8l-2.7 -0a0.5 .5 0 0 1 -.5 -.6l.2 -1.4" />
</svg>
diff --git a/src/_icons/brand-pinterest.svg b/src/_icons/brand-pinterest.svg
index 9865dd0..41852e1 100644
--- a/src/_icons/brand-pinterest.svg
+++ b/src/_icons/brand-pinterest.svg
@@ -3,6 +3,6 @@ category: Brand
---
<svg>
<line x1="8" y1="20" x2="12" y2="11" />
- <path d="M10.7 14C11.137 15.263 12.13 16 13.25 16c2.071 0 3.75-1.554 3.75-4a5 5 0 1 0 -9.7 1.7" />
+ <path d="M10.7 14c.437 1.263 1.43 2 2.55 2c2.071 0 3.75 -1.554 3.75 -4a5 5 0 1 0 -9.7 1.7" />
<circle cx="12" cy="12" r="9" />
</svg>
diff --git a/src/_icons/brand-reddit.svg b/src/_icons/brand-reddit.svg
index e093ad1..199099e 100644
--- a/src/_icons/brand-reddit.svg
+++ b/src/_icons/brand-reddit.svg
@@ -2,7 +2,7 @@
category: Brand
---
<svg>
- <path d="M12 8c2.648 0 5.028 .826 6.675 2.14a2.5 2.5 0 0 1 2.326 4.36 C21 18.09 16.971 21 12 21c-4.875 0-8.845-2.8-8.996-6.294L3 14.5h0a2.5 2.5 0 0 1 2.326 -4.36C6.972 8.827 9.352 8 12 8z" />
+ <path d="M12 8c2.648 0 5.028 .826 6.675 2.14a2.5 2.5 0 0 1 2.326 4.36c-.001 3.59 -4.03 6.5 -9.001 6.5c-4.875 0 -8.845 -2.8 -8.996 -6.294l-.004 -.206h0a2.5 2.5 0 0 1 2.326 -4.36c1.646 -1.313 4.026 -2.14 6.674 -2.14z" />
<path d="M12 8l1-5 6 1" />
<circle cx="19" cy="4" r="1" />
<circle cx="9" cy="13" r=".5" fill="currentColor" />
diff --git a/src/_icons/brand-sketch.svg b/src/_icons/brand-sketch.svg
index 1b93990..5b97ee8 100644
--- a/src/_icons/brand-sketch.svg
+++ b/src/_icons/brand-sketch.svg
@@ -2,5 +2,5 @@
category: Brand
---
<svg>
- <path d="M3.262 10.878l7.991 8.789c.4.44 1.091.44 1.491 0l7.993-8.79c.313-.344.349-.859.087-1.243L17.287 4.44a1 1 0 0 0 -.823 -.436H7.538a1 1 0 0 0 -.823 .436l-3.54 5.192c-.263 .385 -.227 .901 .087 1.246z" />
+ <path d="M3.262 10.878l7.991 8.789c.4 .44 1.091 .44 1.491 0l7.993 -8.79c.313 -.344 .349 -.859 .087 -1.243l-3.537 -5.194a1 1 0 0 0 -.823 -.436h-8.926a1 1 0 0 0 -.823 .436l-3.54 5.192c-.263 .385 -.227 .901 .087 1.246z" />
</svg>
diff --git a/src/_icons/brand-slack.svg b/src/_icons/brand-slack.svg
index ee638e9..c2742d5 100644
--- a/src/_icons/brand-slack.svg
+++ b/src/_icons/brand-slack.svg
@@ -2,8 +2,8 @@
category: Brand
---
<svg>
- <path d="M12 12V6a2 2 0 0 1 4 0v6m0-2a2 2 0 1 1 2 2h-6" />
+ <path d="M12 12v-6a2 2 0 0 1 4 0v6m0 -2a2 2 0 1 1 2 2h-6" />
<path d="M12 12h6a2 2 0 0 1 0 4h-6m2 0a2 2 0 1 1 -2 2v-6" />
<path d="M12 12v6a2 2 0 0 1 -4 0v-6m0 2a2 2 0 1 1 -2 -2h6" />
- <path d="M12 12H6a2 2 0 0 1 0 -4h6m-2 0a2 2 0 1 1 2 -2v6" />
+ <path d="M12 12h-6a2 2 0 0 1 0 -4h6m-2 0a2 2 0 1 1 2 -2v6" />
</svg>
diff --git a/src/_icons/brand-snapchat.svg b/src/_icons/brand-snapchat.svg
index 26e97ad..13e350a 100644
--- a/src/_icons/brand-snapchat.svg
+++ b/src/_icons/brand-snapchat.svg
@@ -2,5 +2,5 @@
category: Brand
---
<svg>
- <path d="M16.882 7.842a4.882 4.882 0 0 0 -9.764 0c0 4.273-.213 6.409-4.118 8.118 2 .882 2 .882 3 3 3 0 4 2 6 2s3-2 6-2c1-2.118 1-2.118 3-3-3.906-1.709-4.118-3.845-4.118-8.118h0zM3 15.961c4-2.118 4-4.118 1-7.118m17 7.118c-4-2.118-4-4.118-1-7.118" />
+ <path d="M16.882 7.842a4.882 4.882 0 0 0 -9.764 0c0 4.273 -.213 6.409 -4.118 8.118c2 .882 2 .882 3 3c3 0 4 2 6 2s3 -2 6 -2c1 -2.118 1 -2.118 3 -3c-3.906 -1.709 -4.118 -3.845 -4.118 -8.118h0zm-13.882 8.119c4 -2.118 4 -4.118 1 -7.118m17 7.118c-4 -2.118 -4 -4.118 -1 -7.118" />
</svg>
diff --git a/src/_icons/brand-tailwind.svg b/src/_icons/brand-tailwind.svg
index 0f99ac3..14014a9 100644
--- a/src/_icons/brand-tailwind.svg
+++ b/src/_icons/brand-tailwind.svg
@@ -2,5 +2,5 @@
category: Brand
---
<svg>
- <path d="M11.667 6 c -2.49 0 -4.044 1.222 -4.667 3.667 c 0.933 -1.223 2.023 -1.68 3.267 -1.375 c 0.71 0.174 1.217 0.68 1.778 1.24 c 0.916 0.912 1.975 1.968 4.288 1.968 c 2.49 0 4.044 -1.222 4.667 -3.667 c -0.933 1.223 -2.023 1.68 -3.267 1.375 c -0.71 -0.174 -1.217 -0.68 -1.778 -1.24 c -0.916 -0.912 -1.975 -1.968 -4.288 -1.968 z m-4 6.5 c -2.49 0 -4.044 1.222 -4.667 3.667 c 0.933 -1.223 2.023 -1.68 3.267 -1.375 c 0.71 0.174 1.217 0.68 1.778 1.24 c 0.916 0.912 1.975 1.968 4.288 1.968 c 2.49 0 4.044 -1.222 4.667 -3.667 c -0.933 1.223 -2.023 1.68 -3.267 1.375 c -0.71 -0.174 -1.217 -0.68 -1.778 -1.24 c -0.916 -0.912 -1.975 -1.968 -4.288 -1.968 z" />
+ <path d="M11.667 6c-2.49 0 -4.044 1.222 -4.667 3.667c0.933 -1.223 2.023 -1.68 3.267 -1.375c0.71 .174 1.217 .68 1.778 1.24c0.916 .912 1.975 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968zm-4 6.5c-2.49 0 -4.044 1.222 -4.667 3.667c.933 -1.223 2.023 -1.68 3.267 -1.375c.71 .174 1.217 .68 1.778 1.24c.916 .912 1.975 1.968 4.288 1.968c2.49 0 4.044 -1.222 4.667 -3.667c-.933 1.223 -2.023 1.68 -3.267 1.375c-.71 -.174 -1.217 -.68 -1.778 -1.24c-.916 -.912 -1.975 -1.968 -4.288 -1.968z" />
</svg>
diff --git a/src/_icons/brand-twitter.svg b/src/_icons/brand-twitter.svg
index 493f893..6458b32 100644
--- a/src/_icons/brand-twitter.svg
+++ b/src/_icons/brand-twitter.svg
@@ -2,5 +2,5 @@
category: Brand
---
<svg>
- <path d="M22 4.01c-1 .49-1.98.689-3 .99-1.121-1.265-2.783-1.335-4.38-.737S11.977 6.323 12 8v1c-3.245.083-6.135-1.395-8-4 0 0-4.182 7.433 4 11-1.872 1.247-3.739 2.088-6 2 3.308 1.803 6.913 2.423 10.034 1.517 3.58-1.04 6.522-3.723 7.651-7.742a13.84 13.84 0 0 0 .497 -3.753C20.18 7.773 21.692 5.25 22 4.009z" />
+ <path d="M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0" />
</svg>
diff --git a/src/_icons/brand-windows.svg b/src/_icons/brand-windows.svg
index 9f0fbf1..a087dbe 100644
--- a/src/_icons/brand-windows.svg
+++ b/src/_icons/brand-windows.svg
@@ -2,7 +2,7 @@
category: Brand
---
<svg>
- <path d="M17.8 20l-12 -1.5c-1 -.1 -1.8 -.9 -1.8 -1.9v-9.2c0 -1 .8 -1.8 1.8 -1.9l12 -1.5c1.2 -.1 2.2 .8 2.2 1.9v12.1c0 1.2 -1.1 2.1 -2.2 1.9 z" />
+ <path d="M17.8 20l-12 -1.5c-1 -.1 -1.8 -.9 -1.8 -1.9v-9.2c0 -1 .8 -1.8 1.8 -1.9l12 -1.5c1.2 -.1 2.2 .8 2.2 1.9v12.1c0 1.2 -1.1 2.1 -2.2 1.9z" />
<line x1="12" y1="5" x2="12" y2="19" />
<line x1="4" y1="12" x2="20" y2="12" />
</svg>
diff --git a/src/_icons/bulb.svg b/src/_icons/bulb.svg
index 34c3fb5..f460cfd 100644
--- a/src/_icons/bulb.svg
+++ b/src/_icons/bulb.svg
@@ -2,7 +2,7 @@
tags: [energy, power, electricity, creativity, light, idea]
---
<svg>
- <path d="M3 12h1M12 3v1M20 12h1M5.6 5.6l.7 .7M18.4 5.6l-.7 .7" />
+ <path d="M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7" />
<path d="M9 16a5 5 0 1 1 6 0a3.5 3.5 0 0 0 -1 3a2 2 0 0 1 -4 0a3.5 3.5 0 0 0 -1 -3" />
<line x1="9.7" y1="17" x2="14.3" y2="17" />
</svg>
diff --git a/src/_icons/clipboard-list.svg b/src/_icons/clipboard-list.svg
index 61303d9..e5399de 100644
--- a/src/_icons/clipboard-list.svg
+++ b/src/_icons/clipboard-list.svg
@@ -2,7 +2,7 @@
tags: [copy, items]
---
<svg>
- <path d="M9 5H7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2V7a2 2 0 0 0 -2 -2h-2" />
+ <path d="M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2" />
<rect x="9" y="3" width="6" height="4" rx="2" />
<line x1="9" y1="12" x2="9.01" y2="12" />
<line x1="13" y1="12" x2="15" y2="12" />
diff --git a/src/_icons/clipboard-x.svg b/src/_icons/clipboard-x.svg
index 0dda240..074f081 100644
--- a/src/_icons/clipboard-x.svg
+++ b/src/_icons/clipboard-x.svg
@@ -2,7 +2,7 @@
tags: [copy, "no"]
---
<svg>
- <path d="M9 5H7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2V7a2 2 0 0 0 -2 -2h-2" />
+ <path d="M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2" />
<rect x="9" y="3" width="6" height="4" rx="2" />
<path d="M10 12l4 4m0 -4l-4 4" />
</svg>
diff --git a/src/_icons/clipboard.svg b/src/_icons/clipboard.svg
index 9e1681f..d52de6d 100644
--- a/src/_icons/clipboard.svg
+++ b/src/_icons/clipboard.svg
@@ -2,6 +2,6 @@
tags: [copy]
---
<svg>
- <path d="M9 5H7a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2V7a2 2 0 0 0 -2 -2h-2" />
+ <path d="M9 5h-2a2 2 0 0 0 -2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-12a2 2 0 0 0 -2 -2h-2" />
<rect x="9" y="3" width="6" height="4" rx="2" />
</svg>
diff --git a/src/_icons/color-swatch.svg b/src/_icons/color-swatch.svg
index ecddd1e..e0db6db 100644
--- a/src/_icons/color-swatch.svg
+++ b/src/_icons/color-swatch.svg
@@ -3,7 +3,7 @@ tags: [sample, choice, selection]
---
<svg>
<path d="M19 3h-4a2 2 0 0 0 -2 2v12a4 4 0 0 0 8 0v-12a2 2 0 0 0 -2 -2" />
- <path d="M13 7.35l-2 -2a2 2 0 0 0 -2.828 0l-2.828 2.828a2 2 0 0 0 0 2.828l 9 9" />
+ <path d="M13 7.35l-2 -2a2 2 0 0 0 -2.828 0l-2.828 2.828a2 2 0 0 0 0 2.828l9 9" />
<path d="M7.3 13h-2.3a2 2 0 0 0 -2 2v4a2 2 0 0 0 2 2h12" />
<line x1="17" y1="17" x2="17" y2="17.01" />
</svg>
diff --git a/src/_icons/discount.svg b/src/_icons/discount.svg
index 2194ffe..a6bdc10 100644
--- a/src/_icons/discount.svg
+++ b/src/_icons/discount.svg
@@ -5,5 +5,5 @@ tags: [sale, reduction, price, cost, money, shopping, bargain]
<line x1="9" y1="15" x2="15" y2="9" />
<circle cx="9.5" cy="9.5" r=".5" fill="currentColor" />
<circle cx="14.5" cy="14.5" r=".5" fill="currentColor" />
- <path d="M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7a2.2 2.2 0 0 0 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1a2.2 2.2 0 0 0 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55 v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55 v-1" />
+ <path d="M5 7.2a2.2 2.2 0 0 1 2.2 -2.2h1a2.2 2.2 0 0 0 1.55 -.64l.7 -.7a2.2 2.2 0 0 1 3.12 0l.7 .7a2.2 2.2 0 0 0 1.55 .64h1a2.2 2.2 0 0 1 2.2 2.2v1a2.2 2.2 0 0 0 .64 1.55l.7 .7a2.2 2.2 0 0 1 0 3.12l-.7 .7a2.2 2.2 0 0 0 -.64 1.55v1a2.2 2.2 0 0 1 -2.2 2.2h-1a2.2 2.2 0 0 0 -1.55 .64l-.7 .7a2.2 2.2 0 0 1 -3.12 0l-.7 -.7a2.2 2.2 0 0 0 -1.55 -.64h-1a2.2 2.2 0 0 1 -2.2 -2.2v-1a2.2 2.2 0 0 0 -.64 -1.55l-.7 -.7a2.2 2.2 0 0 1 0 -3.12l.7 -.7a2.2 2.2 0 0 0 .64 -1.55v-1" />
</svg>
diff --git a/src/_icons/ear.svg b/src/_icons/ear.svg
index bd46aef..0c9664f 100644
--- a/src/_icons/ear.svg
+++ b/src/_icons/ear.svg
@@ -2,6 +2,6 @@
tags: [sound, listen, music, hear, loud, speakers]
---
<svg>
- <path d="M6 10a7 7 0 1 1 13 3.6a10 10 0 0 1 -2 2a8 8 0 0 0 -2 3 a4.5 4.5 0 0 1 -6.8 1.4" />
+ <path d="M6 10a7 7 0 1 1 13 3.6a10 10 0 0 1 -2 2a8 8 0 0 0 -2 3a4.5 4.5 0 0 1 -6.8 1.4" />
<path d="M10 10a3 3 0 1 1 5 2.2" />
</svg>
diff --git a/src/_icons/edit.svg b/src/_icons/edit.svg
index ec34333..3da9d15 100644
--- a/src/_icons/edit.svg
+++ b/src/_icons/edit.svg
@@ -2,7 +2,7 @@
tags: [pencil, change, update]
---
<svg>
- <path d="M9 7 h-3a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-3" />
+ <path d="M9 7h-3a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-3" />
<path d="M9 15h3l8.5 -8.5a1.5 1.5 0 0 0 -3 -3l-8.5 8.5v3" />
<line x1="16" y1="5" x2="19" y2="8" />
</svg>
diff --git a/src/_icons/emphasis.svg b/src/_icons/emphasis.svg
index 4e16ff0..f07a144 100644
--- a/src/_icons/emphasis.svg
+++ b/src/_icons/emphasis.svg
@@ -3,7 +3,7 @@ tags: [highlight, priority, stress]
category: Text
---
<svg>
- <path d="M16 5 h-8v10h8m-1 -5h-7" />
+ <path d="M16 5h-8v10h8m-1 -5h-7" />
<line x1="6" y1="20" x2="6" y2="20.01" />
<line x1="10" y1="20" x2="10" y2="20.01" />
<line x1="14" y1="20" x2="14" y2="20.01" />
diff --git a/src/_icons/filter.svg b/src/_icons/filter.svg
index 3021225..ea7adee 100644
--- a/src/_icons/filter.svg
+++ b/src/_icons/filter.svg
@@ -2,5 +2,5 @@
tags: [funnel, hopper, filtration]
---
<svg>
- <path d="M5.5 5h13a1 1 0 0 1 0.5 1.5L14 12L14 19L10 16L10 12L5 6.5a1 1 0 0 1 0.5 -1.5" />
+ <path d="M5.5 5h13a1 1 0 0 1 .5 1.5l-5 5.5l0 7l-4 -3l0 -4l-5 -5.5a1 1 0 0 1 .5 -1.5" />
</svg>
diff --git a/src/_icons/h-2.svg b/src/_icons/h-2.svg
index 75b61ba..c97e8ae 100644
--- a/src/_icons/h-2.svg
+++ b/src/_icons/h-2.svg
@@ -4,5 +4,5 @@
<line x1="3" y1="5" x2="3" y2="19" />
<line x1="3" y1="12" x2="12" y2="12" />
<line x1="12" y1="5" x2="12" y2="19" />
- <path d="M21 19h-5 l 4.47 -5.96 a2.5 2.5 0 1 0 -4.47 -1.54" />
+ <path d="M21 19h-5l4.47 -5.96a2.5 2.5 0 1 0 -4.47 -1.54" />
</svg>
diff --git a/src/_icons/h-5.svg b/src/_icons/h-5.svg
index bf3c47a..9943879 100644
--- a/src/_icons/h-5.svg
+++ b/src/_icons/h-5.svg
@@ -4,5 +4,5 @@
<line x1="3" y1="5" x2="3" y2="19" />
<line x1="3" y1="12" x2="12" y2="12" />
<line x1="12" y1="5" x2="12" y2="19" />
- <path d="M16 18.27 a3 3 0 1 0 0 -4.537 l0 -4.733 h 5" />
+ <path d="M16 18.27a3 3 0 1 0 0 -4.537l0 -4.733h5" />
</svg>
diff --git a/src/_icons/heart-broken.svg b/src/_icons/heart-broken.svg
index 25c584d..3951204 100644
--- a/src/_icons/heart-broken.svg
+++ b/src/_icons/heart-broken.svg
@@ -2,6 +2,6 @@
tags: [love, emotion, like, favorite, relationship]
---
<svg>
- <path d="M19.5 13.572 l-7.5 7.428 l-7.5 -7.428a5 5 0 1 1 7.5 -6.566 a5 5 0 1 1 7.5 6.572" />
+ <path d="M19.5 13.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" />
<path d="M12 7l-2 4l4 3l-2 4v3" />
</svg>
diff --git a/src/_icons/heart.svg b/src/_icons/heart.svg
index be6343d..8b32f51 100644
--- a/src/_icons/heart.svg
+++ b/src/_icons/heart.svg
@@ -3,5 +3,5 @@ category: Shapes
tags: [love, emotion, like, favorite, relationship]
---
<svg>
- <path d="M19.5 13.572 l -7.5 7.428 l -7.5 -7.428 m 0 0 a5 5 0 1 1 7.5 -6.566 a5 5 0 1 1 7.5 6.572" />
+ <path d="M19.5 13.572l-7.5 7.428l-7.5 -7.428m0 0a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572" />
</svg>
diff --git a/src/_icons/infinity.svg b/src/_icons/infinity.svg
index 1b5d251..48e82e6 100644
--- a/src/_icons/infinity.svg
+++ b/src/_icons/infinity.svg
@@ -2,5 +2,5 @@
tags: [endless, eternity, continuum, time]
---
<svg>
- <path d="M9.828 9.172a4 4 0 1 0 0 5.656 a10 10 0 0 0 2.172 -2.828a10 10 0 0 1 2.172 -2.828 a4 4 0 1 1 0 5.656a10 10 0 0 1 -2.172 -2.828a10 10 0 0 0 -2.172 -2.828" />
+ <path d="M9.828 9.172a4 4 0 1 0 0 5.656a10 10 0 0 0 2.172 -2.828a10 10 0 0 1 2.172 -2.828a4 4 0 1 1 0 5.656a10 10 0 0 1 -2.172 -2.828a10 10 0 0 0 -2.172 -2.828" />
</svg>
diff --git a/src/_icons/location.svg b/src/_icons/location.svg
index 2443914..e03e60a 100644
--- a/src/_icons/location.svg
+++ b/src/_icons/location.svg
@@ -2,5 +2,5 @@
tags: [navigation, map, direction, discover, travel]
---
<svg>
- <path d="M21 3L14.5 21a.55 .55 0 0 1 -1 0L10 14L3 10.5a.55 .55 0 0 1 0 -1L21 3" />
+ <path d="M21 3l-6.5 18a0.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a0.55 .55 0 0 1 0 -1l18 -6.5" />
</svg>
diff --git a/src/_icons/map-pin.svg b/src/_icons/map-pin.svg
index a83b6c3..ae26a91 100644
--- a/src/_icons/map-pin.svg
+++ b/src/_icons/map-pin.svg
@@ -3,5 +3,5 @@ tags: [navigation, location, travel, pin, position, marker]
---
<svg>
<circle cx="12" cy="11" r="3" />
- <path d="M17.657 16.657L13.414 20.9a1.998 1.998 0 0 1 -2.827 0l-4.244-4.243a8 8 0 1 1 11.314 0z" />
+ <path d="M17.657 16.657l-4.243 4.243a1.998 1.998 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 11.314 0z" />
</svg>
diff --git a/src/_icons/medal.svg b/src/_icons/medal.svg
index c595fc1..1af28cd 100644
--- a/src/_icons/medal.svg
+++ b/src/_icons/medal.svg
@@ -1,6 +1,6 @@
---
---
<svg>
- <path d="M12 4v3M8 4v6m8-6v6" />
+ <path d="M12 4v3m-4 -3v6m8 -6v6" />
<path d="M12 18.5l-3 1.5l.5-3.5-2-2 3-.5 1.5-3 1.5 3 3 .5-2 2 .5 3.5z" />
</svg>
diff --git a/src/_icons/medical-cross.svg b/src/_icons/medical-cross.svg
index 3a9b1c8..81230de 100644
--- a/src/_icons/medical-cross.svg
+++ b/src/_icons/medical-cross.svg
@@ -1,5 +1,5 @@
---
---
<svg>
- <path d="M13 3a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366L16.001 12l3.927 2.269a1 1 0 0 1 .366 1.366l-1 1.732a1 1 0 0 1 -1.366 .366L14 15.464V20a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1-1.732a1 1 0 0 1 .366 -1.366L7.999 12 4.072 9.732a1 1 0 0 1 -.366 -1.366l1-1.732a1 1 0 0 1 1.366 -.366L10 8.535V4a1 1 0 0 1 1 -1h2z" />
+ <path d="M13 3a1 1 0 0 1 1 1v4.535l3.928 -2.267a1 1 0 0 1 1.366 .366l1 1.732a1 1 0 0 1 -.366 1.366l-3.927 2.268l3.927 2.269a1 1 0 0 1 .366 1.366l-1 1.732a1 1 0 0 1 -1.366 .366l-3.928 -2.269v4.536a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-4.536l-3.928 2.268a1 1 0 0 1 -1.366 -.366l-1 -1.732a1 1 0 0 1 .366 -1.366l3.927 -2.268l-3.927 -2.268a1 1 0 0 1 -.366 -1.366l1 -1.732a1 1 0 0 1 1.366 -.366l3.928 2.267v-4.535a1 1 0 0 1 1 -1h2z" />
</svg>
diff --git a/src/_icons/mood-cry.svg b/src/_icons/mood-cry.svg
index 99d5634..2463b74 100644
--- a/src/_icons/mood-cry.svg
+++ b/src/_icons/mood-cry.svg
@@ -6,6 +6,6 @@ category: Mood
<line x1="9" y1="10" x2="9.01" y2="10" />
<line x1="15" y1="10" x2="15.01" y2="10" />
<path d="M9.5 15.25a3.5 3.5 0 0 1 5 0" />
- <path d="M17.566 17.606 a2 2 0 1 0 2.897 0.03 l-1.463 -1.636 l-1.434 1.606z" />
- <path d="M20.865 13.517 a8.937 8.937 0 0 0 0.135 -1.517 a9 9 0 1 0 -9 9 c0.69 0 1.36 -0.076 2.005 -0.222" />
+ <path d="M17.566 17.606a2 2 0 1 0 2.897 .03l-1.463 -1.636l-1.434 1.606z" />
+ <path d="M20.865 13.517a8.937 8.937 0 0 0 .135 -1.517a9 9 0 1 0 -9 9c0.69 0 1.36 -.076 2.005 -.222" />
</svg>
diff --git a/src/_icons/mood-happy.svg b/src/_icons/mood-happy.svg
index 97865e0..1fe99c4 100644
--- a/src/_icons/mood-happy.svg
+++ b/src/_icons/mood-happy.svg
@@ -6,5 +6,5 @@ category: Mood
<circle cx="12" cy="12" r="9" />
<line x1="9" y1="9" x2="9.01" y2="9" />
<line x1="15" y1="9" x2="15.01" y2="9" />
- <path d="M8 13a4 4 0 1 0 8 0m0 0H8" />
+ <path d="M8 13a4 4 0 1 0 8 0m0 0h-8" />
</svg>
diff --git a/src/_icons/moon-stars.svg b/src/_icons/moon-stars.svg
index 50126a8..9a44207 100644
--- a/src/_icons/moon-stars.svg
+++ b/src/_icons/moon-stars.svg
@@ -3,7 +3,7 @@ tags: [night, dark mode]
category: Weather
---
<svg>
- <path d="M12 3 c 0.132 0 0.263 0.003 0.393 0.008 a7.5 7.5 0 0 0 7.92 12.446 a9 9 0 1 1 -8.313 -12.454 z" />
+ <path d="M12 3c0.132 0 .263 .003 .393 .008a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z" />
<path d="M17 4a2 2 0 0 0 2 2a2 2 0 0 0 -2 2a2 2 0 0 0 -2 -2a2 2 0 0 0 2 -2" />
<path d="M19 11h2m-1 -1v2" />
</svg>
diff --git a/src/_icons/moon.svg b/src/_icons/moon.svg
index 4ae2946..a2e240d 100644
--- a/src/_icons/moon.svg
+++ b/src/_icons/moon.svg
@@ -3,5 +3,5 @@ tags: [night, dark mode]
category: Weather
---
<svg>
- <path d="m 12 3 c 0.132 0 0.263 0.003 0.393 0.008 a7.5 7.5 0 0 0 7.92 12.446 a9 9 0 1 1 -8.313 -12.454 z" />
+ <path d="M12 3c0.132 0 .263 .003 .393 .008a7.5 7.5 0 0 0 7.92 12.446a9 9 0 1 1 -8.313 -12.454z" />
</svg>
diff --git a/src/_icons/notification.svg b/src/_icons/notification.svg
index d52c8d8..cbe34cf 100644
--- a/src/_icons/notification.svg
+++ b/src/_icons/notification.svg
@@ -2,6 +2,6 @@
tags: [bell, alarm, reminder, important]
---
<svg>
- <path d="M9 7 h-3a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-3" />
+ <path d="M9 7h-3a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-3" />
<circle cx="16" cy="8" r="3" />
</svg>
diff --git a/src/_icons/octagon.svg b/src/_icons/octagon.svg
index 5ace1b8..2377188 100644
--- a/src/_icons/octagon.svg
+++ b/src/_icons/octagon.svg
@@ -2,5 +2,5 @@
category: Shapes
---
<svg>
- <path d="M8.7 3 h 6.6 c0.3 0 .5 .1 .7 .3 l4.7 4.7 c0.2 .2 .3 .4 .3 .7 v6.6 c0 .3 -.1 .5 -.3 .7 l-4.7 4.7 c-0.2 .2 -.4 .3 -.7 .3h-6.6 c-0.3 0 -.5 -.1 -.7 -.3 l-4.7 -4.7 c-0.2 -.2 -.3 -.4 -.3 -.7 v-6.6 c0 -.3 .1 -.5 .3 -.7l4.7 -4.7 c0.2 -.2 .4 -.3 .7 -.3z" />
+ <path d="M8.7 3h6.6c0.3 0 .5 .1 .7 .3l4.7 4.7c0.2 .2 .3 .4 .3 .7v6.6c0 .3 -.1 .5 -.3 .7l-4.7 4.7c-0.2 .2 -.4 .3 -.7 .3h-6.6c-0.3 0 -.5 -.1 -.7 -.3l-4.7 -4.7c-0.2 -.2 -.3 -.4 -.3 -.7v-6.6c0 -.3 .1 -.5 .3 -.7l4.7 -4.7c0.2 -.2 .4 -.3 .7 -.3z" />
</svg>
diff --git a/src/_icons/paperclip.svg b/src/_icons/paperclip.svg
index 2f29638..6254481 100644
--- a/src/_icons/paperclip.svg
+++ b/src/_icons/paperclip.svg
@@ -2,5 +2,5 @@
tags: [attachment, annex, hold]
---
<svg>
- <path d="M15 7l-6.5 6.5a1.5 1.5 0 0 0 3 3l6.5 -6.5a3 3 0 0 0 -6 -6l-6.5 6.5a4.5 4.5 0 0 0 9 9 l6.5 -6.5" />
+ <path d="M15 7l-6.5 6.5a1.5 1.5 0 0 0 3 3l6.5 -6.5a3 3 0 0 0 -6 -6l-6.5 6.5a4.5 4.5 0 0 0 9 9l6.5 -6.5" />
</svg>
diff --git a/src/_icons/photo.svg b/src/_icons/photo.svg
index 8545b54..4fac48d 100644
--- a/src/_icons/photo.svg
+++ b/src/_icons/photo.svg
@@ -4,6 +4,6 @@ tags: [image, picture, landscape, camera]
<svg>
<line x1="15" y1="8" x2="15.01" y2="8" />
<rect x="4" y="4" width="16" height="16" rx="3" />
- <path d="M4 15l4 -4a3 5 0 0 1 3 0l 5 5" />
- <path d="M14 14l1 -1a3 5 0 0 1 3 0l 2 2" />
+ <path d="M4 15l4 -4a3 5 0 0 1 3 0l5 5" />
+ <path d="M14 14l1 -1a3 5 0 0 1 3 0l2 2" />
</svg>
diff --git a/src/_icons/play.svg b/src/_icons/play.svg
index be2d108..093a459 100644
--- a/src/_icons/play.svg
+++ b/src/_icons/play.svg
@@ -1,5 +1,5 @@
---
---
<svg>
- <path d="M5 5 v14 a2 2 0 0 0 2.75 1.84 l12.25 -7.1 a2 2 0 0 0 0 -3.5 l-12.25 -7.1 a2 2 0 0 0 -2.75 1.75" />
+ <path d="M5 5v14a2 2 0 0 0 2.75 1.84l12.25 -7.1a2 2 0 0 0 0 -3.5l-12.25 -7.1a2 2 0 0 0 -2.75 1.75" />
</svg>
diff --git a/src/_icons/question-mark.svg b/src/_icons/question-mark.svg
index 65262e6..22d34cb 100644
--- a/src/_icons/question-mark.svg
+++ b/src/_icons/question-mark.svg
@@ -1,6 +1,6 @@
---
---
<svg>
- <path d="M8 8 a3.5 3 0 0 1 3.5 -3h1a3.5 3 0 0 1 3.5 3a3 3 0 0 1 -2 3a3 4 0 0 0 -2 4" />
+ <path d="M8 8a3.5 3 0 0 1 3.5 -3h1a3.5 3 0 0 1 3.5 3a3 3 0 0 1 -2 3a3 4 0 0 0 -2 4" />
<line x1="12" y1="19" x2="12" y2="19.01" />
</svg>
diff --git a/src/_icons/radioactive.svg b/src/_icons/radioactive.svg
index 3c514d1..0bb9bf2 100644
--- a/src/_icons/radioactive.svg
+++ b/src/_icons/radioactive.svg
@@ -1,7 +1,7 @@
---
---
<svg>
- <path d="M13.5 14.6 l 3 5.19 a9 9 0 0 0 4.5 -7.79 h -6 a3 3 0 0 1 -1.5 2.6" />
- <path d="M13.5 9.4 l 3 -5.19 a9 9 0 0 0 -9 0 l 3 5.19 a3 3 0 0 1 3 0" />
- <path d="M10.5 14.6 l -3 5.19 a9 9 0 0 1 -4.5 -7.79 h6 a3 3 0 0 0 1.5 2.6" />
+ <path d="M13.5 14.6l3 5.19a9 9 0 0 0 4.5 -7.79h-6a3 3 0 0 1 -1.5 2.6" />
+ <path d="M13.5 9.4l3 -5.19a9 9 0 0 0 -9 0l3 5.19a3 3 0 0 1 3 0" />
+ <path d="M10.5 14.6l-3 5.19a9 9 0 0 1 -4.5 -7.79h6a3 3 0 0 0 1.5 2.6" />
</svg>
diff --git a/src/_icons/send.svg b/src/_icons/send.svg
index 47ba725..5bb2598 100644
--- a/src/_icons/send.svg
+++ b/src/_icons/send.svg
@@ -3,5 +3,5 @@ tags: [message, mail, email, gmail, paper, airplane, aeroplane]
---
<svg>
<line x1="10" y1="14" x2="21" y2="3" />
- <path d="M21 3L14.5 21a.55 .55 0 0 1 -1 0L10 14L3 10.5a.55 .55 0 0 1 0 -1L21 3" />
+ <path d="M21 3l-6.5 18a0.55 .55 0 0 1 -1 0l-3.5 -7l-7 -3.5a0.55 .55 0 0 1 0 -1l18 -6.5" />
</svg>
diff --git a/src/_icons/skip-forward.svg b/src/_icons/skip-forward.svg
index 41cdb9b..e1db7ed 100644
--- a/src/_icons/skip-forward.svg
+++ b/src/_icons/skip-forward.svg
@@ -1,6 +1,6 @@
---
---
<svg>
- <path d="M4 6v12 a2 2 0 0 0 2.75 1.84 l8.25 -6.1 a2 2 0 0 0 0 -3.5 l-8.25 -6.1 a2 2 0 0 0 -2.75 1.75" />
+ <path d="M4 6v12a2 2 0 0 0 2.75 1.84l8.25 -6.1a2 2 0 0 0 0 -3.5l-8.25 -6.1a2 2 0 0 0 -2.75 1.75" />
<line x1="20" y1="4" x2="20" y2="20" />
</svg>
diff --git a/src/_icons/slideshow.svg b/src/_icons/slideshow.svg
index c4fe266..ee64c14 100644
--- a/src/_icons/slideshow.svg
+++ b/src/_icons/slideshow.svg
@@ -5,8 +5,8 @@ category: Text
<svg>
<line x1="15" y1="6" x2="15.01" y2="6" />
<rect x="3" y="3" width="18" height="14" rx="3" />
- <path d="M3 13l4 -4a3 5 0 0 1 3 0l 4 4" />
- <path d="M13 12l2 -2a3 5 0 0 1 3 0l 3 3" />
+ <path d="M3 13l4 -4a3 5 0 0 1 3 0l4 4" />
+ <path d="M13 12l2 -2a3 5 0 0 1 3 0l3 3" />
<line x1="8" y1="21" x2="8.01" y2="21" />
<line x1="12" y1="21" x2="12.01" y2="21" />
<line x1="16" y1="21" x2="16.01" y2="21" />
diff --git a/src/_icons/smart-home.svg b/src/_icons/smart-home.svg
index 8f29ad3..976e877 100644
--- a/src/_icons/smart-home.svg
+++ b/src/_icons/smart-home.svg
@@ -1,6 +1,6 @@
---
---
<svg>
- <path d="M18.97 8.71l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-5.334 4.148a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-7.2c0 -0.823 -0.38 -1.6 -1.03 -2.105" />
+ <path d="M18.97 8.71l-5.333 -4.148a2.666 2.666 0 0 0 -3.274 0l-5.334 4.148a2.665 2.665 0 0 0 -1.029 2.105v7.2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-7.2c0 -.823 -.38 -1.6 -1.03 -2.105" />
<path d="M16 15c-2.21 1.333-5.792 1.333-8 0" />
</svg>
diff --git a/src/_icons/star.svg b/src/_icons/star.svg
index c9551ff..57d9c7f 100644
--- a/src/_icons/star.svg
+++ b/src/_icons/star.svg
@@ -2,5 +2,5 @@
tags: [favorite, like, mark, bookmark, grade]
---
<svg>
- <path d="M12 17.75l-6.172 3.245 1.179-6.873-4.993-4.867 6.9-1.002L12 2l3.086 6.253 6.9 1.002-4.993 4.867 1.179 6.873z" />
+ <path d="M12 17.75l-6.172 3.245l1.179 -6.873l-4.993 -4.867l6.9 -1.002l3.086 -6.253l3.086 6.253l6.9 1.002l-4.993 4.867l1.179 6.873z" />
</svg>
diff --git a/src/_icons/sun.svg b/src/_icons/sun.svg
index 031a073..3773309 100644
--- a/src/_icons/sun.svg
+++ b/src/_icons/sun.svg
@@ -4,5 +4,5 @@ category: Weather
---
<svg>
<circle cx="12" cy="12" r="4" />
- <path d="M3 12h1M12 3v1M20 12h1M12 20v1M5.6 5.6l.7 .7M18.4 5.6l-.7 .7M17.7 17.7l.7 .7M6.3 17.7l-.7 .7" />
+ <path d="M3 12h1m8 -9v1m8 8h1m-9 8v1m-6.4 -15.4l.7 .7m12.1 -.7l-.7 .7m0 11.4l.7 .7m-12.1 -.7l-.7 .7" />
</svg>
diff --git a/src/_icons/sunset.svg b/src/_icons/sunset.svg
index 47e617b..cf35407 100644
--- a/src/_icons/sunset.svg
+++ b/src/_icons/sunset.svg
@@ -2,7 +2,7 @@
category: Weather
---
<svg>
- <path d="M3 17h1m16 0h1M5.6 10.6l.7.7m12.1-.7l-.7.7M8 17a4 4 0 0 1 8 0" />
+ <path d="M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0" />
<line x1="3" y1="21" x2="21" y2="21" />
<path d="M12 9v-6l3 3m-6 0l3 -3" />
</svg>
diff --git a/src/_icons/sunshine.svg b/src/_icons/sunshine.svg
index a99b4e8..d244036 100644
--- a/src/_icons/sunshine.svg
+++ b/src/_icons/sunshine.svg
@@ -2,7 +2,7 @@
category: Weather
---
<svg>
- <path d="M3 17h1m16 0h1M5.6 10.6l.7.7m12.1-.7l-.7.7M8 17a4 4 0 0 1 8 0" />
+ <path d="M3 17h1m16 0h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7m-9.7 5.7a4 4 0 0 1 8 0" />
<line x1="3" y1="21" x2="21" y2="21" />
<path d="M12 3v6l3 -3m-6 0l3 3" />
</svg>
diff --git a/src/_icons/tag.svg b/src/_icons/tag.svg
index 0e12e2e..d9a7fc9 100644
--- a/src/_icons/tag.svg
+++ b/src/_icons/tag.svg
@@ -2,6 +2,6 @@
tags: [label, price]
---
<svg>
- <path d="M11 3L20 12a1.5 1.5 0 0 1 0 2L14 20a1.5 1.5 0 0 1 -2 0L3 11v-4a4 4 0 0 1 4 -4h4" />
+ <path d="M11 3l9 9a1.5 1.5 0 0 1 0 2l-6 6a1.5 1.5 0 0 1 -2 0l-9 -9v-4a4 4 0 0 1 4 -4h4" />
<circle cx="9" cy="9" r="2" />
</svg>
diff --git a/src/_icons/thumb-down.svg b/src/_icons/thumb-down.svg
index cf5fe09..930fb14 100644
--- a/src/_icons/thumb-down.svg
+++ b/src/_icons/thumb-down.svg
@@ -2,5 +2,5 @@
tags: [dislike, bad, emotion]
---
<svg>
- <path d="M7 13v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v 1a2 2 0 0 0 4 0v-5h3a2 2 0 0 0 2 -2l-1 -5a2 3 0 0 0 -2 -2h-7a3 3 0 0 0 -3 3" />
+ <path d="M7 13v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 0 0 4 0v-5h3a2 2 0 0 0 2 -2l-1 -5a2 3 0 0 0 -2 -2h-7a3 3 0 0 0 -3 3" />
</svg>
diff --git a/src/_icons/thumb-up.svg b/src/_icons/thumb-up.svg
index 1750d9b..43b3e48 100644
--- a/src/_icons/thumb-up.svg
+++ b/src/_icons/thumb-up.svg
@@ -2,5 +2,5 @@
tags: [like, emotion, good, love]
---
<svg>
- <path d="M7 11v 8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a4 4 0 0 0 4 -4v-1a2 2 0 0 1 4 0v5h3a2 2 0 0 1 2 2l-1 5a2 3 0 0 1 -2 2h-7a3 3 0 0 1 -3 -3" />
+ <path d="M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a4 4 0 0 0 4 -4v-1a2 2 0 0 1 4 0v5h3a2 2 0 0 1 2 2l-1 5a2 3 0 0 1 -2 2h-7a3 3 0 0 1 -3 -3" />
</svg>
diff --git a/src/_icons/track-next.svg b/src/_icons/track-next.svg
index 60a4090..08f02c3 100644
--- a/src/_icons/track-next.svg
+++ b/src/_icons/track-next.svg
@@ -1,5 +1,5 @@
---
---
<svg>
- <path d="M13.69 4.198 l 6.56 6.25 c 1 0.798 1 2.306 0 3.105 l -6.564 6.252 c -0.67 0.48 -1.686 0.008 -1.686 -0.805 v -4 l -5.394 4.808 c -0.669 0.478 -1.606 0.003 -1.606 -0.808 v -14 c 0 -0.812 0.936 -1.285 1.602 -0.809 l 5.398 4.809 v -4 c 0 -0.816 1.02 -1.28 1.69 -0.802 z" />
+ <path d="M13.69 4.198l6.56 6.25c1 .798 1 2.306 0 3.105l-6.564 6.252c-.67 .48 -1.686 .008 -1.686 -.805v-4l-5.394 4.808c-.669 .478 -1.606 .003 -1.606 -.808v-14c0 -.812 .936 -1.285 1.602 -.809l5.398 4.809v-4c0 -.816 1.02 -1.28 1.69 -.802z" />
</svg>
diff --git a/src/_icons/track-prev.svg b/src/_icons/track-prev.svg
index a085b1d..a373125 100644
--- a/src/_icons/track-prev.svg
+++ b/src/_icons/track-prev.svg
@@ -1,5 +1,5 @@
---
---
<svg>
- <path d="M10.31 19.802 l -6.56 -6.249 c -1 -0.799 -1 -2.307 0 -3.106 l 6.564 -6.252 c 0.67 -0.48 1.686 -0.008 1.686 0.805 v 4 l 5.394 -4.808 c 0.669 -0.478 1.606 -0.003 1.606 0.808 v 14 c 0 0.812 -0.936 1.285 -1.602 0.809 l -5.398 -4.809 v 4 c 0 0.816 -1.02 1.281 -1.69 0.802 z" />
+ <path d="M10.31 19.802l-6.56 -6.249c-1 -.799 -1 -2.307 0 -3.106l6.564 -6.252c.67 -.48 1.686 -.008 1.686 .805v4l5.394 -4.808c.669 -.478 1.606 -.003 1.606 .808v14c0 .812 -.936 1.285 -1.602 .809l-5.398 -4.809v4c0 .816 -1.02 1.281 -1.69 .802z" />
</svg>
diff --git a/src/_icons/trademark.svg b/src/_icons/trademark.svg
index 5e883c2..f581153 100644
--- a/src/_icons/trademark.svg
+++ b/src/_icons/trademark.svg
@@ -1,6 +1,6 @@
---
---
<svg>
- <path d="M4.5 9 h5m-2.5 0v6" />
+ <path d="M4.5 9h5m-2.5 0v6" />
<path d="M13 15v-6l3 4l3 -4v6" />
</svg>
diff --git a/src/_icons/triangle.svg b/src/_icons/triangle.svg
index 3bdd2e9..25e3109 100644
--- a/src/_icons/triangle.svg
+++ b/src/_icons/triangle.svg
@@ -3,5 +3,5 @@ category: Shapes
tags: [delta]
---
<svg>
- <path d="M5 19 h14 a2 2 0 0 0 1.84 -2.75 l-7.1 -12.25 a2 2 0 0 0 -3.5 0 l-7.1 12.25 a2 2 0 0 0 1.75 2.75" />
+ <path d="M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75" />
</svg>
diff --git a/src/_icons/urgent.svg b/src/_icons/urgent.svg
index 87ab50f..67829e0 100644
--- a/src/_icons/urgent.svg
+++ b/src/_icons/urgent.svg
@@ -3,6 +3,6 @@ tags: [alert, important]
---
<svg>
<path d="M8 16v-4a4 4 0 0 1 8 0v4" />
- <path d="M3 12h1M12 3v1M20 12h1M5.6 5.6l.7 .7M18.4 5.6l-.7 .7" />
+ <path d="M3 12h1m8 -9v1m8 8h1m-15.4 -6.4l.7 .7m12.1 -.7l-.7 .7" />
<rect x="6" y="16" width="12" height="4" rx="1" />
</svg>
diff --git a/src/_icons/volume-2.svg b/src/_icons/volume-2.svg
index a17650a..a01730c 100644
--- a/src/_icons/volume-2.svg
+++ b/src/_icons/volume-2.svg
@@ -3,5 +3,5 @@ tags: [music, sound, speaker]
---
<svg>
<path d="M15 8a5 5 0 0 1 0 8" />
- <path d="M6 15 h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5" />
+ <path d="M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5" />
</svg>
diff --git a/src/_icons/volume-3.svg b/src/_icons/volume-3.svg
index 1a3f829..1f22396 100644
--- a/src/_icons/volume-3.svg
+++ b/src/_icons/volume-3.svg
@@ -2,6 +2,6 @@
tags: [mute, music, sound, off, speaker]
---
<svg>
- <path d="M6 15 h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5" />
+ <path d="M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5" />
<path d="M16 10l4 4m0 -4l-4 4" />
</svg>
diff --git a/src/_icons/volume.svg b/src/_icons/volume.svg
index 97d7180..0a6b16b 100644
--- a/src/_icons/volume.svg
+++ b/src/_icons/volume.svg
@@ -4,5 +4,5 @@ tags: [music, sound, speaker]
<svg>
<path d="M15 8a5 5 0 0 1 0 8" />
<path d="M17.7 5a9 9 0 0 1 0 14" />
- <path d="M6 15 h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5" />
+ <path d="M6 15h-2a1 1 0 0 1 -1 -1v-4a1 1 0 0 1 1 -1h2l3.5 -4.5a.8 .8 0 0 1 1.5 .5v14a.8 .8 0 0 1 -1.5 .5l-3.5 -4.5" />
</svg>
diff --git a/src/_icons/wave-saw-tool.svg b/src/_icons/wave-saw-tool.svg
index 0920677..eff832e 100644
--- a/src/_icons/wave-saw-tool.svg
+++ b/src/_icons/wave-saw-tool.svg
@@ -1,5 +1,5 @@
---
---
<svg>
- <path d="M3 12 h5 l4 8 v-16 l4 8h5" />
+ <path d="M3 12h5l4 8v-16l4 8h5" />
</svg>
diff --git a/src/_icons/wave-sine.svg b/src/_icons/wave-sine.svg
index 404d027..998c3c8 100644
--- a/src/_icons/wave-sine.svg
+++ b/src/_icons/wave-sine.svg
@@ -1,5 +1,5 @@
---
---
<svg>
- <path d="M21 12 h -2 c -0.894 0 -1.662 -0.857 -1.761 -2 c -0.296 -3.45 -0.749 -6 -2.749 -6 s -2.5 3.582 -2.5 8 s -0.5 8 -2.5 8 s -2.452 -2.547 -2.749 -6 c -0.1 -1.147 -0.867 -2 -1.763 -2 h -2" />
+ <path d="M21 12h-2c-0.894 0 -1.662 -.857 -1.761 -2c-0.296 -3.45 -.749 -6 -2.749 -6s-2.5 3.582 -2.5 8s-.5 8 -2.5 8s-2.452 -2.547 -2.749 -6c-.1 -1.147 -.867 -2 -1.763 -2h-2" />
</svg>
diff --git a/src/_icons/wave-square.svg b/src/_icons/wave-square.svg
index 32295b2..3d4f79f 100644
--- a/src/_icons/wave-square.svg
+++ b/src/_icons/wave-square.svg
@@ -1,5 +1,5 @@
---
---
<svg>
- <path d="M3 12 h5 v8 h4 v-16 h4 v8 h5" />
+ <path d="M3 12h5v8h4v-16h4v8h5" />
</svg>
diff --git a/src/_icons/zodiac-aries.svg b/src/_icons/zodiac-aries.svg
index 44ffbcd..357b613 100644
--- a/src/_icons/zodiac-aries.svg
+++ b/src/_icons/zodiac-aries.svg
@@ -2,7 +2,7 @@
category: Zodiac
---
<svg>
- <path d="M12 5 a5 5 0 1 0 -4 8" />
+ <path d="M12 5a5 5 0 1 0 -4 8" />
<path d="M16 13a5 5 0 1 0 -4 -8" />
- <path d="M12 21 v -16" />
+ <path d="M12 21v-16" />
</svg>