aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2022-04-17 21:53:39 +0200
committercodecalm <codecalm@gmail.com>2022-04-17 21:53:39 +0200
commit235f9e5e2981abb64ecf4b6318917eac0c85ee4a (patch)
treee4549b661cb64eb6976d31e336bdeb81a67cf9b6
parent`eraser-off` fix (diff)
downloadtabler-icons-235f9e5e2981abb64ecf4b6318917eac0c85ee4a.tar.xz
fix "off" icons
-rwxr-xr-x_import.sh2
-rw-r--r--gulpfile.js5
-rw-r--r--src/_icons/anchor-off.svg2
-rw-r--r--src/_icons/api-off.svg2
-rw-r--r--src/_icons/atom-off.svg2
-rw-r--r--src/_icons/award-off.svg2
-rw-r--r--src/_icons/badge-off.svg2
-rw-r--r--src/_icons/badges-off.svg2
-rw-r--r--src/_icons/ballon-off.svg2
-rw-r--r--src/_icons/barrel-off.svg2
-rw-r--r--src/_icons/bath-off.svg2
-rw-r--r--src/_icons/bed-off.svg2
-rw-r--r--src/_icons/beer-off.svg2
-rw-r--r--src/_icons/box-off.svg2
-rw-r--r--src/_icons/bucket-off.svg2
-rw-r--r--src/_icons/cake-off.svg2
-rw-r--r--src/_icons/cash-off.svg2
-rw-r--r--src/_icons/coffee-off.svg2
-rw-r--r--src/_icons/container-off.svg2
-rw-r--r--src/_icons/cpu-off.svg2
-rw-r--r--src/_icons/crane-off.svg2
-rw-r--r--src/_icons/creative-commons-off.svg2
-rw-r--r--src/_icons/cross-off.svg2
-rw-r--r--src/_icons/crutches-off.svg2
-rw-r--r--src/_icons/cup-off.svg2
-rw-r--r--src/_icons/current-location-off.svg2
-rw-r--r--src/_icons/cursor-off.svg2
-rw-r--r--src/_icons/dental-off.svg2
-rw-r--r--src/_icons/device-nintendo-off.svg2
-rw-r--r--src/_icons/device-speaker-off.svg2
-rw-r--r--src/_icons/devices-pc-off.svg2
-rw-r--r--src/_icons/dialpad-off.svg2
-rw-r--r--src/_icons/diamond-off.svg2
-rw-r--r--src/_icons/directions-off.svg2
-rw-r--r--src/_icons/disabled-off.svg2
-rw-r--r--src/_icons/disc-off.svg2
-rw-r--r--src/_icons/dna-2-off.svg2
-rw-r--r--src/_icons/dna-off.svg2
-rw-r--r--src/_icons/door-off.svg2
-rw-r--r--src/_icons/download-off.svg2
-rw-r--r--src/_icons/edit-circle-off.svg2
-rw-r--r--src/_icons/edit-off.svg2
-rw-r--r--src/_icons/egg-off.svg2
-rw-r--r--src/_icons/engine-off.svg2
-rw-r--r--src/_icons/error-404-off.svg2
-rw-r--r--src/_icons/exchange-off.svg2
-rw-r--r--src/_icons/exclamation-mark-off.svg2
-rw-r--r--src/_icons/external-link-off.svg2
-rw-r--r--src/_icons/eyeglass-off.svg2
-rw-r--r--src/_icons/face-mask-off.svg2
-rw-r--r--src/_icons/feather-off.svg2
-rw-r--r--src/_icons/fence-off.svg2
-rw-r--r--src/_icons/fingerprint-off.svg2
-rw-r--r--src/_icons/fish-off.svg2
-rw-r--r--src/_icons/flag-2-off.svg2
-rw-r--r--src/_icons/flag-off.svg2
-rw-r--r--src/_icons/flame-off.svg2
-rw-r--r--src/_icons/flask-2-off.svg2
-rw-r--r--src/_icons/flask-off.svg2
-rw-r--r--src/_icons/flower-off.svg2
60 files changed, 5 insertions, 118 deletions
diff --git a/_import.sh b/_import.sh
index 3be4ac8d..6b7c1247 100755
--- a/_import.sh
+++ b/_import.sh
@@ -21,7 +21,9 @@ do
sed -i "" 's/xmlns="http:\/\/www.w3.org\/2000\/svg"//g' ${file}
sed -i "" 's/<path d="M0 0h24v24H0z"\/>"//g' ${file}
sed -i "" 's/<path stroke="red" stroke-width=".1" d="M5 1l18 18"\/>//g' ${file}
+ sed -i "" 's/<path stroke="red" stroke-width=".1" d="M5 1l18 18" \/>//g' ${file}
sed -i "" 's/<path stroke="red" stroke-width=".1" d="M3 3l18 18"\/>//g' ${file}
+ sed -i "" 's/<path stroke="red" stroke-width=".1" d="M3 3l18 18" \/>//g' ${file}
done
svgo -f ./new/ --pretty --disable mergePaths
diff --git a/gulpfile.js b/gulpfile.js
index 5cb1bf57..4a07d75d 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -54,7 +54,7 @@ if (fs.existsSync('./compile-options.json')) {
}
})
}
-
+
if (typeof tempOptions.excludeIcons !== "undefined") {
if (!Array.isArray(tempOptions.excludeIcons)) {
throw "property excludeIcons is not an array"
@@ -509,6 +509,7 @@ gulp.task('optimize', function (cb) {
svgFileContent = svgFileContent
.replace(/><\/(polyline|line|rect|circle|path)>/g, '/>')
.replace(/rx="([^"]+)"\s+ry="\1"/g, 'rx="$1"')
+ .replace(/<path stroke="red" stroke-width="\.1"([^>]+)?\/>/g, '')
.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"')
@@ -519,7 +520,7 @@ gulp.task('optimize', function (cb) {
})
.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")
+ .replace(/\n\s+\n+/g, "\n")
.replace(/<path d="M([0-9.]*) ([0-9.]*)l\s?([-0-9.]*) ([-0-9.]*)"/g, function (f, r1, r2, r3, r4) {
return `<line x1="${r1}" y1="${r2}" x2="${addFloats(r1, r3)}" y2="${addFloats(r2, r4)}"`
diff --git a/src/_icons/anchor-off.svg b/src/_icons/anchor-off.svg
index 06c434dc..11153e09 100644
--- a/src/_icons/anchor-off.svg
+++ b/src/_icons/anchor-off.svg
@@ -4,6 +4,4 @@
<path d="M12 12v9m-8 -8a8 8 0 1 0 16 0m1 0h-2m-14 0h-2" />
<path d="M12.866 8.873a3.001 3.001 0 1 0 -3.737 -3.747" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/api-off.svg b/src/_icons/api-off.svg
index 69101bfd..db93b834 100644
--- a/src/_icons/api-off.svg
+++ b/src/_icons/api-off.svg
@@ -6,6 +6,4 @@
<path d="M20 8v8" />
<path d="M9 16v-5.5a2.5 2.5 0 0 0 -5 0v5.5" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/atom-off.svg b/src/_icons/atom-off.svg
index 609a6be6..d8016cac 100644
--- a/src/_icons/atom-off.svg
+++ b/src/_icons/atom-off.svg
@@ -5,6 +5,4 @@
<path d="M9.172 9.172c-3.906 3.905 -5.805 8.337 -4.243 9.9c1.562 1.561 5.994 -.338 9.9 -4.244m1.884 -2.113c2.587 -3.277 3.642 -6.502 2.358 -7.786c-1.284 -1.284 -4.508 -.23 -7.784 2.357" />
<path d="M4.929 4.929c-1.562 1.562 .337 5.994 4.243 9.9c3.905 3.905 8.337 5.804 9.9 4.242m-.072 -4.071c-.767 -1.794 -2.215 -3.872 -4.172 -5.828c-1.944 -1.945 -4.041 -3.402 -5.828 -4.172" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/award-off.svg b/src/_icons/award-off.svg
index c265f5e3..4a4589ae 100644
--- a/src/_icons/award-off.svg
+++ b/src/_icons/award-off.svg
@@ -5,6 +5,4 @@
<path d="M12.002 15.003l3.4 5.89l1.598 -3.233l.707 .046m1.108 -2.902l-1.617 -2.8" />
<path d="M6.802 12.003l-3.4 5.89l3.598 -.233l1.598 3.232l3.4 -5.889" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/badge-off.svg b/src/_icons/badge-off.svg
index 35725d27..b6a97287 100644
--- a/src/_icons/badge-off.svg
+++ b/src/_icons/badge-off.svg
@@ -3,6 +3,4 @@
<svg>
<path d="M7 7v10l5 3l5 -3m0 -4v-9l-5 3l-2.496 -1.497" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/badges-off.svg b/src/_icons/badges-off.svg
index db3e2612..17c4f1c0 100644
--- a/src/_icons/badges-off.svg
+++ b/src/_icons/badges-off.svg
@@ -4,6 +4,4 @@
<path d="M14.505 14.497l-2.505 1.503l-5 -3v4l5 3l5 -3" />
<path d="M13.873 9.876l3.127 -1.876v-4l-5 3l-2.492 -1.495m-2.508 1.495v1l2.492 1.495" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/ballon-off.svg b/src/_icons/ballon-off.svg
index c652b917..eb934d01 100644
--- a/src/_icons/ballon-off.svg
+++ b/src/_icons/ballon-off.svg
@@ -5,6 +5,4 @@
<path d="M7.762 3.753a6 6 0 0 1 10.238 4.247c0 1.847 -.37 3.564 -1.007 4.993m-1.59 2.42c-.967 1.001 -2.14 1.587 -3.403 1.587c-3.314 0 -6 -4.03 -6 -9c0 -.593 .086 -1.166 .246 -1.707" />
<path d="M12 17v1a2 2 0 0 1 -2 2h-3a2 2 0 0 0 -2 2" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/barrel-off.svg b/src/_icons/barrel-off.svg
index 5efbc913..7ea313d0 100644
--- a/src/_icons/barrel-off.svg
+++ b/src/_icons/barrel-off.svg
@@ -7,6 +7,4 @@
<path d="M4.5 16h11.5" />
<path d="M19.5 8h-7.5m-4 0h-3.5" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/bath-off.svg b/src/_icons/bath-off.svg
index 68fcf9fa..5bc7750e 100644
--- a/src/_icons/bath-off.svg
+++ b/src/_icons/bath-off.svg
@@ -6,6 +6,4 @@
<path d="M4 21l1 -1.5" />
<path d="M20 21l-1 -1.5" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/bed-off.svg b/src/_icons/bed-off.svg
index 4414d6f2..0d16a235 100644
--- a/src/_icons/bed-off.svg
+++ b/src/_icons/bed-off.svg
@@ -8,6 +8,4 @@
<path d="M11 11v3" />
<circle cx="7" cy="10" r="1" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/beer-off.svg b/src/_icons/beer-off.svg
index f5d225ad..e47b8698 100644
--- a/src/_icons/beer-off.svg
+++ b/src/_icons/beer-off.svg
@@ -4,6 +4,4 @@
<path d="M7 7v1.111c0 1.242 .29 2.467 .845 3.578l.31 .622a8 8 0 0 1 .845 3.578v4.111h6v-4.111a8 8 0 0 1 .045 -.85m.953 -3.035l.157 -.315a7.999 7.999 0 0 0 .845 -3.578v-4.111h-9" />
<path d="M7 8h1m4 0h5" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/box-off.svg b/src/_icons/box-off.svg
index 98b90900..dc77ab61 100644
--- a/src/_icons/box-off.svg
+++ b/src/_icons/box-off.svg
@@ -6,6 +6,4 @@
<path d="M12 12v9" />
<path d="M12 12l-8 -4.5" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/bucket-off.svg b/src/_icons/bucket-off.svg
index 11ee19dd..79555633 100644
--- a/src/_icons/bucket-off.svg
+++ b/src/_icons/bucket-off.svg
@@ -4,6 +4,4 @@
<path d="M17.184 17.173l-.184 .827c-.193 1.183 -1.034 2.024 -2 2h-6c-.966 .024 -1.807 -.817 -2 -2l-2 -9h4m4 0h6l-1.089 4.9" />
<path d="M7 9c0 -.596 .104 -1.167 .295 -1.697m1.705 -2.303a5 5 0 0 1 8 4" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/cake-off.svg b/src/_icons/cake-off.svg
index 5713dbd3..29de262b 100644
--- a/src/_icons/cake-off.svg
+++ b/src/_icons/cake-off.svg
@@ -5,6 +5,4 @@
<path d="M2.996 14.803c.312 .135 .654 .204 1.004 .197a2.4 2.4 0 0 0 2 -1a2.4 2.4 0 0 1 2 -1a2.4 2.4 0 0 1 2 1a2.4 2.4 0 0 0 2 1a2.4 2.4 0 0 0 2 -1m4 0a2.4 2.4 0 0 0 2 1c.35 .007 .692 -.062 1.004 -.197" />
<path d="M10.172 6.188c.07 -.158 .163 -.31 .278 -.451l1.55 -1.737l1.465 1.638a2 2 0 0 1 -.65 3.19" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/cash-off.svg b/src/_icons/cash-off.svg
index 5bfd3095..ab09987d 100644
--- a/src/_icons/cash-off.svg
+++ b/src/_icons/cash-off.svg
@@ -5,6 +5,4 @@
<path d="M12.582 12.59a2 2 0 0 0 2.83 2.826" />
<path d="M17 9v-2a2 2 0 0 0 -2 -2h-6m-4 0a2 2 0 0 0 -2 2v6a2 2 0 0 0 2 2h2" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/coffee-off.svg b/src/_icons/coffee-off.svg
index 4e7556d6..17019137 100644
--- a/src/_icons/coffee-off.svg
+++ b/src/_icons/coffee-off.svg
@@ -7,6 +7,4 @@
<path d="M14 10h3v3m-.257 3.743a6.003 6.003 0 0 1 -5.743 4.257h-2a6 6 0 0 1 -6 -6v-5h7" />
<path d="M20.116 16.124a3 3 0 0 0 -3.118 -4.953" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/container-off.svg b/src/_icons/container-off.svg
index fbb1bd4a..a44b6ece 100644
--- a/src/_icons/container-off.svg
+++ b/src/_icons/container-off.svg
@@ -13,6 +13,4 @@
<path d="M4 12v.01" />
<path d="M4 8v.01" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/cpu-off.svg b/src/_icons/cpu-off.svg
index fdc6fef2..1485f2cd 100644
--- a/src/_icons/cpu-off.svg
+++ b/src/_icons/cpu-off.svg
@@ -12,6 +12,4 @@
<path d="M14 21v-2" />
<path d="M10 21v-2" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/crane-off.svg b/src/_icons/crane-off.svg
index a6eb8cf3..1d0f1d1c 100644
--- a/src/_icons/crane-off.svg
+++ b/src/_icons/crane-off.svg
@@ -9,6 +9,4 @@
<path d="M9 3l10 6" />
<path d="M17 9v4a2 2 0 0 1 2 2m-2 2a2 2 0 0 1 -2 -2" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/creative-commons-off.svg b/src/_icons/creative-commons-off.svg
index 40abcf3e..1e6091f3 100644
--- a/src/_icons/creative-commons-off.svg
+++ b/src/_icons/creative-commons-off.svg
@@ -5,6 +5,4 @@
<path d="M10.5 10.5a2.187 2.187 0 0 0 -2.914 .116a1.928 1.928 0 0 0 0 2.768a2.188 2.188 0 0 0 2.914 .116" />
<path d="M16.5 10.5a2.194 2.194 0 0 0 -2.309 -.302" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/cross-off.svg b/src/_icons/cross-off.svg
index 2e3d65c2..338b9225 100644
--- a/src/_icons/cross-off.svg
+++ b/src/_icons/cross-off.svg
@@ -3,6 +3,4 @@
<svg>
<path d="M16 12h3v-4h-5v-5h-4v3m-2 2h-3v4h5v9h4v-7" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/crutches-off.svg b/src/_icons/crutches-off.svg
index bb020c81..410c3796 100644
--- a/src/_icons/crutches-off.svg
+++ b/src/_icons/crutches-off.svg
@@ -7,6 +7,4 @@
<path d="M12 21v-4.092a3 3 0 0 0 -.504 -1.664l-.992 -1.488a3 3 0 0 1 -.504 -1.664v-2.092" />
<path d="M10 11h1" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/cup-off.svg b/src/_icons/cup-off.svg
index 7e34fb48..bea2a700 100644
--- a/src/_icons/cup-off.svg
+++ b/src/_icons/cup-off.svg
@@ -6,6 +6,4 @@
<path d="M6 8v-1c0 -.296 .064 -.577 .18 -.83m2.82 -1.17h7a2 2 0 0 1 2 2v1" />
<path d="M15 5v-2" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/current-location-off.svg b/src/_icons/current-location-off.svg
index a005552f..dc632e2b 100644
--- a/src/_icons/current-location-off.svg
+++ b/src/_icons/current-location-off.svg
@@ -8,6 +8,4 @@
<path d="M20 12h2" />
<path d="M2 12h2" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/cursor-off.svg b/src/_icons/cursor-off.svg
index f7475cfd..df06ac99 100644
--- a/src/_icons/cursor-off.svg
+++ b/src/_icons/cursor-off.svg
@@ -4,6 +4,4 @@
<path d="M9 4a3 3 0 0 1 3 3v1m0 9a3 3 0 0 1 -3 3" />
<path d="M15 4a3 3 0 0 0 -3 3v1m0 4v5a3 3 0 0 0 3 3" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/dental-off.svg b/src/_icons/dental-off.svg
index 308bbf29..5038c722 100644
--- a/src/_icons/dental-off.svg
+++ b/src/_icons/dental-off.svg
@@ -4,6 +4,4 @@
<path d="M19.277 15.281c.463 -1.75 .723 -3.844 .723 -6.281c0 -3.74 -1.908 -4.994 -4 -5c-1.423 -.004 -2.92 .911 -4 1.5c-1.074 -.586 -2.583 -1.5 -4 -1.5m-2.843 1.153c-.707 .784 -1.157 2.017 -1.157 3.847c0 4.899 1.056 8.41 2.671 10.537c.573 .756 1.97 .521 2.567 -.236c.398 -.505 .819 -1.439 1.262 -2.801c.292 -.771 .892 -1.504 1.5 -1.5c.602 .004 1.21 .737 1.5 1.5c.443 1.362 .864 2.295 1.262 2.8c.597 .759 1.994 .993 2.567 .237c.305 -.402 .59 -.853 .852 -1.353" />
<path d="M12 5.5l3 1.5" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/device-nintendo-off.svg b/src/_icons/device-nintendo-off.svg
index c5565ff3..7bbd8a44 100644
--- a/src/_icons/device-nintendo-off.svg
+++ b/src/_icons/device-nintendo-off.svg
@@ -5,6 +5,4 @@
<path d="M14 10v-6h3a4 4 0 0 1 4 4v8c0 .308 -.035 .608 -.1 .896m-1.62 2.39a3.982 3.982 0 0 1 -2.28 .714h-3v-6" />
<circle cx="6.5" cy="8.5" r="1" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/device-speaker-off.svg b/src/_icons/device-speaker-off.svg
index 44b82143..5265009c 100644
--- a/src/_icons/device-speaker-off.svg
+++ b/src/_icons/device-speaker-off.svg
@@ -5,6 +5,4 @@
<path d="M11.114 11.133a3.001 3.001 0 1 0 3.754 3.751" />
<path d="M12 7v.01" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/devices-pc-off.svg b/src/_icons/devices-pc-off.svg
index 44b9f37e..e2919e60 100644
--- a/src/_icons/devices-pc-off.svg
+++ b/src/_icons/devices-pc-off.svg
@@ -8,6 +8,4 @@
<path d="M6 13v.01" />
<path d="M6 16v.01" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/dialpad-off.svg b/src/_icons/dialpad-off.svg
index 6a8d18b7..8e759dbe 100644
--- a/src/_icons/dialpad-off.svg
+++ b/src/_icons/dialpad-off.svg
@@ -9,6 +9,4 @@
<path d="M14 14h-4v-4" />
<path d="M10 17h4v4h-4z" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/diamond-off.svg b/src/_icons/diamond-off.svg
index 93e4b2a8..0cf26a98 100644
--- a/src/_icons/diamond-off.svg
+++ b/src/_icons/diamond-off.svg
@@ -4,6 +4,4 @@
<path d="M9 5h9l3 5l-3.308 3.697m-1.883 2.104l-3.309 3.699a0.7 .7 0 0 1 -1 0l-8.5 -9.5l2.62 -4.368" />
<path d="M10 12l-2 -2.2l.6 -1" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/directions-off.svg b/src/_icons/directions-off.svg
index 65f97a0c..3e98a27b 100644
--- a/src/_icons/directions-off.svg
+++ b/src/_icons/directions-off.svg
@@ -8,6 +8,4 @@
<path d="M8 8v1h1m4 0h6l2 -2l-2 -2h-10" />
<path d="M14 14v3h-8l-2 -2l2 -2h7" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/disabled-off.svg b/src/_icons/disabled-off.svg
index 32805da6..02bd6181 100644
--- a/src/_icons/disabled-off.svg
+++ b/src/_icons/disabled-off.svg
@@ -6,6 +6,4 @@
<path d="M15 11h1" />
<path d="M7 11.5a5 5 0 1 0 6 7.5" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/disc-off.svg b/src/_icons/disc-off.svg
index 4120c060..89763da1 100644
--- a/src/_icons/disc-off.svg
+++ b/src/_icons/disc-off.svg
@@ -6,6 +6,4 @@
<path d="M7 12c0 -1.38 .559 -2.629 1.462 -3.534m2.607 -1.38c.302 -.056 .613 -.086 .931 -.086" />
<path d="M12 17a4.985 4.985 0 0 0 3.551 -1.48m1.362 -2.587c.057 -.302 .087 -.614 .087 -.933" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/dna-2-off.svg b/src/_icons/dna-2-off.svg
index d81bd5c3..a194f109 100644
--- a/src/_icons/dna-2-off.svg
+++ b/src/_icons/dna-2-off.svg
@@ -8,6 +8,4 @@
<path d="M12 8h4" />
<path d="M8 16h8" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/dna-off.svg b/src/_icons/dna-off.svg
index 5191a2b2..574981bf 100644
--- a/src/_icons/dna-off.svg
+++ b/src/_icons/dna-off.svg
@@ -5,6 +5,4 @@
<path d="M9.172 20.485a4 4 0 1 0 -5.657 -5.657" />
<path d="M14.828 3.515a4 4 0 1 0 5.657 5.657" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/door-off.svg b/src/_icons/door-off.svg
index 58afbcc0..b771f6cf 100644
--- a/src/_icons/door-off.svg
+++ b/src/_icons/door-off.svg
@@ -6,6 +6,4 @@
<path d="M7.18 3.175c.25 -.112 .528 -.175 .82 -.175h8a2 2 0 0 1 2 2v9" />
<path d="M18 18v3" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/download-off.svg b/src/_icons/download-off.svg
index e49248cc..15b03314 100644
--- a/src/_icons/download-off.svg
+++ b/src/_icons/download-off.svg
@@ -5,6 +5,4 @@
<path d="M7 11l5 5l2.005 -2.005m1.994 -1.994l1.001 -1.001" />
<path d="M12 4v4m0 4v4" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/edit-circle-off.svg b/src/_icons/edit-circle-off.svg
index 2c0045cf..716bb6c9 100644
--- a/src/_icons/edit-circle-off.svg
+++ b/src/_icons/edit-circle-off.svg
@@ -5,6 +5,4 @@
<path d="M16 5l3 3" />
<path d="M7.476 7.471a7.002 7.002 0 0 0 2.524 13.529a7.004 7.004 0 0 0 6.53 -4.474" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/edit-off.svg b/src/_icons/edit-off.svg
index bbd24189..2fc88fbd 100644
--- a/src/_icons/edit-off.svg
+++ b/src/_icons/edit-off.svg
@@ -5,6 +5,4 @@
<path d="M10.507 10.498l-1.507 1.502v3h3l1.493 -1.498m2.002 -2.01l4.89 -4.907a2.1 2.1 0 0 0 -2.97 -2.97l-4.913 4.896" />
<path d="M16 5l3 3" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/egg-off.svg b/src/_icons/egg-off.svg
index dc5313c6..d2c904eb 100644
--- a/src/_icons/egg-off.svg
+++ b/src/_icons/egg-off.svg
@@ -3,6 +3,4 @@
<svg>
<path d="M7.41 7.41a12.574 12.574 0 0 0 -1.896 7.229c0 3.513 2.904 6.361 6.486 6.361a6.504 6.504 0 0 0 5.692 -3.31m.8 -3.192a12.574 12.574 0 0 0 -3.249 -8.871a4.025 4.025 0 0 0 -3.243 -1.627a4.026 4.026 0 0 0 -2.832 1.155" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/engine-off.svg b/src/_icons/engine-off.svg
index fabd0dc6..c8a009df 100644
--- a/src/_icons/engine-off.svg
+++ b/src/_icons/engine-off.svg
@@ -7,6 +7,4 @@
<path d="M5 13h-2" />
<path d="M16 16h-1v2a1 1 0 0 1 -1 1h-3.465a1 1 0 0 1 -.832 -.445l-1.703 -2.555h-2v-6h2l.99 -.99m3.01 -1.01h1.382a1 1 0 0 1 .894 .553l1.448 2.894a1 1 0 0 0 .894 .553h1.382v-2h2a1 1 0 0 1 1 1v6" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/error-404-off.svg b/src/_icons/error-404-off.svg
index 2b4d781f..16a4711f 100644
--- a/src/_icons/error-404-off.svg
+++ b/src/_icons/error-404-off.svg
@@ -7,6 +7,4 @@
<path d="M17 7v4a1 1 0 0 0 1 1h3" />
<path d="M21 7v10" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/exchange-off.svg b/src/_icons/exchange-off.svg
index af66c4d6..ba426381 100644
--- a/src/_icons/exchange-off.svg
+++ b/src/_icons/exchange-off.svg
@@ -8,6 +8,4 @@
<path d="M5 16v-5c0 -1.632 .782 -3.082 1.992 -3.995m3.008 -1.005h3l-3 -3" />
<path d="M11.501 7.499l1.499 -1.499" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/exclamation-mark-off.svg b/src/_icons/exclamation-mark-off.svg
index f5f06c16..096a8bee 100644
--- a/src/_icons/exclamation-mark-off.svg
+++ b/src/_icons/exclamation-mark-off.svg
@@ -4,6 +4,4 @@
<path d="M12 19v.01" />
<path d="M12 15v-3m0 -4v-3" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/external-link-off.svg b/src/_icons/external-link-off.svg
index a7604dcf..63e5f83e 100644
--- a/src/_icons/external-link-off.svg
+++ b/src/_icons/external-link-off.svg
@@ -5,6 +5,4 @@
<path d="M10 14l1.996 -1.996m2.007 -2.007l5.997 -5.997" />
<path d="M15 4h5v5" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/eyeglass-off.svg b/src/_icons/eyeglass-off.svg
index 76c21494..f77546f1 100644
--- a/src/_icons/eyeglass-off.svg
+++ b/src/_icons/eyeglass-off.svg
@@ -7,6 +7,4 @@
<path d="M19.426 19.423a3.5 3.5 0 0 1 -5.426 -2.923v-2.5m4 0h3v2.5c0 .157 -.01 .312 -.03 .463" />
<path d="M10 16.5a3.5 3.5 0 0 1 -7 0v-2.5h7v2.5" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/face-mask-off.svg b/src/_icons/face-mask-off.svg
index 62de4d1f..0db86fa7 100644
--- a/src/_icons/face-mask-off.svg
+++ b/src/_icons/face-mask-off.svg
@@ -7,6 +7,4 @@
<path d="M9 14h5" />
<path d="M19 15v-6.49a2 2 0 0 0 -1.45 -1.923l-5 -1.429a2 2 0 0 0 -1.1 0l-1.788 .511m-3.118 .891l-.094 .027a2 2 0 0 0 -1.45 1.922v6.982a2 2 0 0 0 1.45 1.923l5 1.429a2 2 0 0 0 1.1 0l4.899 -1.4" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/feather-off.svg b/src/_icons/feather-off.svg
index 2f107bb1..63a5f42b 100644
--- a/src/_icons/feather-off.svg
+++ b/src/_icons/feather-off.svg
@@ -9,6 +9,4 @@
<path d="M19 10c.638 -.636 1 -1.515 1 -2.486a3.515 3.515 0 0 0 -3.517 -3.514c-.97 0 -1.847 .367 -2.483 1" />
<path d="M11 18l3.499 -3.499m2.008 -2.008l2.493 -2.493" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/fence-off.svg b/src/_icons/fence-off.svg
index 9d096aaa..35293e1f 100644
--- a/src/_icons/fence-off.svg
+++ b/src/_icons/fence-off.svg
@@ -7,6 +7,4 @@
<path d="M14 16v4h4v-2" />
<path d="M18 12v-6l-2 -2l-2 2v4" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/fingerprint-off.svg b/src/_icons/fingerprint-off.svg
index 3e1f0404..aed04b4c 100644
--- a/src/_icons/fingerprint-off.svg
+++ b/src/_icons/fingerprint-off.svg
@@ -7,6 +7,4 @@
<path d="M8 15a18 18 0 0 0 1.8 6" />
<path d="M4.9 19a22 22 0 0 1 -.9 -7v-1a8 8 0 0 1 1.854 -5.143m2.176 -1.825a8 8 0 0 1 7.97 .018" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/fish-off.svg b/src/_icons/fish-off.svg
index 13cf38aa..0cb1bb4c 100644
--- a/src/_icons/fish-off.svg
+++ b/src/_icons/fish-off.svg
@@ -6,6 +6,4 @@
<path d="M18 11v.01" />
<path d="M11.153 11.169c-.287 .777 -.171 1.554 .347 2.331" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/flag-2-off.svg b/src/_icons/flag-2-off.svg
index 745ee706..ce112aaf 100644
--- a/src/_icons/flag-2-off.svg
+++ b/src/_icons/flag-2-off.svg
@@ -3,6 +3,4 @@
<svg>
<path d="M5 14h9m4 0h1v-9h-10m-4 0v16" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/flag-off.svg b/src/_icons/flag-off.svg
index 66315469..5b685066 100644
--- a/src/_icons/flag-off.svg
+++ b/src/_icons/flag-off.svg
@@ -6,6 +6,4 @@
<path d="M7.641 3.645a4.994 4.994 0 0 1 4.359 1.355a5 5 0 0 0 7 0" />
<path d="M5 14a5 5 0 0 1 7 0a4.984 4.984 0 0 0 3.437 1.429m3.019 -.966c.19 -.14 .371 -.294 .544 -.463" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/flame-off.svg b/src/_icons/flame-off.svg
index 1afe2939..af8b27ec 100644
--- a/src/_icons/flame-off.svg
+++ b/src/_icons/flame-off.svg
@@ -3,6 +3,4 @@
<svg>
<path d="M8.973 8.974c-.335 .378 -.67 .716 -.973 1.026c-1.226 1.26 -2 3.24 -2 5a6 6 0 0 0 11.472 2.466m.383 -3.597c-.32 -1.409 -1.122 -3.045 -1.855 -3.869c-.281 .472 -.543 .87 -.79 1.202m-2.358 -2.35c-.068 -2.157 -1.182 -4.184 -1.852 -4.852c0 .968 -.18 1.801 -.465 2.527" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/flask-2-off.svg b/src/_icons/flask-2-off.svg
index 66c39b47..16ca37e3 100644
--- a/src/_icons/flask-2-off.svg
+++ b/src/_icons/flask-2-off.svg
@@ -5,6 +5,4 @@
<path d="M17.742 17.741a6 6 0 0 1 -2.424 3.259h-6.635a6.002 6.002 0 0 1 1.317 -10.66v-.326m0 -4.014v-3h4v7m.613 .598a6.004 6.004 0 0 1 2.801 2.817" />
<path d="M9 3h6" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/flask-off.svg b/src/_icons/flask-off.svg
index e11383eb..a45ba2ba 100644
--- a/src/_icons/flask-off.svg
+++ b/src/_icons/flask-off.svg
@@ -5,6 +5,4 @@
<path d="M13 9h1" />
<path d="M10 3v3m-.268 3.736l-3.732 10.264a0.7 .7 0 0 0 .5 1h11a0.7 .7 0 0 0 .5 -1l-1.143 -3.142m-2.288 -6.294l-.569 -1.564v-6" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>
diff --git a/src/_icons/flower-off.svg b/src/_icons/flower-off.svg
index 9d0bdac0..95654196 100644
--- a/src/_icons/flower-off.svg
+++ b/src/_icons/flower-off.svg
@@ -4,6 +4,4 @@
<path d="M9.875 9.882a3 3 0 0 0 4.247 4.238m.581 -3.423a3.012 3.012 0 0 0 -1.418 -1.409" />
<path d="M9 5a3 3 0 0 1 6 0c0 .562 -.259 1.442 -.776 2.64l-.724 1.36l1.76 -1.893c.499 -.6 .922 -1.002 1.27 -1.205a2.968 2.968 0 0 1 4.07 1.099a3.011 3.011 0 0 1 -1.09 4.098c-.374 .217 -.99 .396 -1.846 .535l-1.779 .244m.292 .282l1.223 .166c.995 .145 1.698 .337 2.11 .576a3.011 3.011 0 0 1 1.226 3.832m-2.277 1.733a2.968 2.968 0 0 1 -1.929 -.369c-.348 -.202 -.771 -.604 -1.27 -1.205l-1.76 -1.893l.724 1.36c.516 1.199 .776 2.079 .776 2.64a3 3 0 0 1 -6 0c0 -.562 .259 -1.442 .776 -2.64l.724 -1.36l-1.76 1.893c-.499 .601 -.922 1.003 -1.27 1.205a2.968 2.968 0 0 1 -4.07 -1.098a3.011 3.011 0 0 1 1.09 -4.098c.374 -.218 .99 -.396 1.846 -.536l2.664 -.366l-2.4 -.325c-.995 -.145 -1.698 -.337 -2.11 -.576a3.011 3.011 0 0 1 -1.09 -4.099a2.968 2.968 0 0 1 2.134 -1.467" />
<path d="M3 3l18 18" />
- <path stroke="red" stroke-width=".1" d="M5 1l18 18" />
- <path stroke="red" stroke-width=".1" d="M3 3l18 18" />
</svg>