Ship Material Symbols in the 20 optical-size cut

M3 draws icons at 20 dp from the optical size 20 cut, whose strokes stay as
heavy as the 24 dp design's instead of thinning with the glyph (styles.md
§ Icons, the optical size axis). The package only shipped the 24 cut, so every
20 px icon was a scaled-down 24 (core audit C16). bin/fetch-symbols now checks
out both cuts from the same commit of google/material-design-icons and writes
the new one to resources/svg/symbols/{outlined-20,filled-20}: 4,135 symbols
each, the same names and the same normalisation as the 24 cut.

Plan step 10; finding C16.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Qwx5USif3wFFmxtHg5U1g9
This commit is contained in:
Andreas Reinhold / reini
2026-09-14 04:00:16 +02:00
co-authored by Claude Fable 5.1
parent b1fc0c9cfa
commit c22d693334
8272 changed files with 8310 additions and 17 deletions
+2
View File
@@ -5,6 +5,8 @@ This package bundles or derives from the following works.
Material Symbols (resources/svg/symbols) Material Symbols (resources/svg/symbols)
From google/material-design-icons, commit recorded in resources/svg/symbols/SOURCE. From google/material-design-icons, commit recorded in resources/svg/symbols/SOURCE.
Rounded, weight 400, grade 0, in two cuts of the same source: optical size 24
(outlined, filled) and optical size 20 (outlined-20, filled-20).
Copyright Google LLC. Apache License 2.0. Copyright Google LLC. Apache License 2.0.
M3 Expressive shapes (resources/svg/shapes) M3 Expressive shapes (resources/svg/shapes)
+38 -17
View File
@@ -2,12 +2,15 @@
# #
# Refresh resources/svg/symbols from google/material-design-icons (Apache-2.0). # Refresh resources/svg/symbols from google/material-design-icons (Apache-2.0).
# #
# Material Symbols Rounded at weight 400, grade 0 and optical size 24, outlined and # Material Symbols Rounded at weight 400 and grade 0, outlined and filled, in two cuts:
# filled, for every symbol Google publishes. Maintenance only: applications never run # optical size 24 (the standard size) and optical size 20. M3 draws an icon at 20 dp or
# this, and bin/ is not part of the archive Composer installs. # smaller from the 20 cut, whose strokes stay as heavy as the 24 dp design's instead of
# thinning as the glyph is scaled down (docs/reference/m3/styles.md § Icons, the optical
# size axis). Maintenance only: applications never run this, and bin/ is not part of the
# archive Composer installs.
# #
# The repository is ~5 GB, so it is cloned without blobs and checked out sparsely: # The repository is ~5 GB, so it is cloned without blobs and checked out sparsely:
# git downloads only the two files per symbol that are kept. The @material-symbols # git downloads only the four files per symbol that are kept. The @material-symbols
# npm packages were not used because their SVGs are drawn at optical size 48, whose # npm packages were not used because their SVGs are drawn at optical size 48, whose
# strokes are thinner than the 24px design. # strokes are thinner than the 24px design.
@@ -24,6 +27,7 @@ cd "$work/repo"
git sparse-checkout set --no-cone \ git sparse-checkout set --no-cone \
'/symbols/web/*/materialsymbolsrounded/*_24px.svg' \ '/symbols/web/*/materialsymbolsrounded/*_24px.svg' \
'/symbols/web/*/materialsymbolsrounded/*_20px.svg' \
'!/symbols/web/*/materialsymbolsrounded/*_wght[0-9]*' \ '!/symbols/web/*/materialsymbolsrounded/*_wght[0-9]*' \
'!/symbols/web/*/materialsymbolsrounded/*_grad200*' \ '!/symbols/web/*/materialsymbolsrounded/*_grad200*' \
'!/symbols/web/*/materialsymbolsrounded/*_gradN25*' '!/symbols/web/*/materialsymbolsrounded/*_gradN25*'
@@ -31,14 +35,28 @@ git sparse-checkout set --no-cone \
git checkout --quiet "$(git symbolic-ref --short HEAD)" git checkout --quiet "$(git symbolic-ref --short HEAD)"
out="$root/resources/svg/symbols" out="$root/resources/svg/symbols"
rm -rf "$out/outlined" "$out/filled"
mkdir -p "$out/outlined" "$out/filled" # The 24 cut keeps the folder names it has always had; the 20 cut is suffixed, so a
# name resolves to a folder without a lookup table (Support\SvgFile::symbol()).
folder() { # optical size, style
case "$1" in
24) echo "$out/$2" ;;
*) echo "$out/$2-$1" ;;
esac
}
for size in 24 20; do
for style in outlined filled; do
rm -rf "$(folder "$size" "$style")"
mkdir -p "$(folder "$size" "$style")"
done
done
# Google's files carry width="24" height="24" and no fill. Drop the size so CSS decides # Google's files carry width="24" height="24" and no fill. Drop the size so CSS decides
# it, and paint in currentColor so an icon takes the colour of the text around it. # it, and paint in currentColor so an icon takes the colour of the text around it.
normalise() { normalise() {
sed -E \ sed -E \
-e 's/ (width|height)="[0-9]+"//g' \ -e 's/ (width|height)="[0-9]+(px)?"//g' \
-e 's/<svg /<svg fill="currentColor" /' \ -e 's/<svg /<svg fill="currentColor" /' \
"$1" "$1"
} }
@@ -47,19 +65,22 @@ missing=0
for dir in symbols/web/*/materialsymbolsrounded; do for dir in symbols/web/*/materialsymbolsrounded; do
name="$(basename "$(dirname "$dir")")" name="$(basename "$(dirname "$dir")")"
outlined="$dir/${name}_24px.svg"
filled="$dir/${name}_fill1_24px.svg"
if [[ ! -f "$outlined" || ! -f "$filled" ]]; then for size in 24 20; do
echo "skipped $name: no outlined and filled 24px pair" >&2 outlined="$dir/${name}_${size}px.svg"
missing=$((missing + 1)) filled="$dir/${name}_fill1_${size}px.svg"
continue
fi
normalise "$outlined" > "$out/outlined/$name.svg" if [[ ! -f "$outlined" || ! -f "$filled" ]]; then
normalise "$filled" > "$out/filled/$name.svg" echo "skipped $name: no outlined and filled ${size}px pair" >&2
missing=$((missing + 1))
continue
fi
normalise "$outlined" > "$(folder "$size" outlined)/$name.svg"
normalise "$filled" > "$(folder "$size" filled)/$name.svg"
done
done done
git rev-parse HEAD > "$out/SOURCE" git rev-parse HEAD > "$out/SOURCE"
echo "$(ls "$out/outlined" | wc -l | tr -d ' ') symbols from google/material-design-icons@$(cut -c1-12 "$out/SOURCE"), $missing skipped" echo "$(ls "$out/outlined" | wc -l | tr -d ' ') symbols at optical size 24 and $(ls "$out/outlined-20" | wc -l | tr -d ' ') at 20 from google/material-design-icons@$(cut -c1-12 "$out/SOURCE"), $missing skipped"
+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M288-528v119.63q0 10.37 6.8 17.37 6.8 7 17.2 7 10.4 0 17.2-6.78 6.8-6.79 6.8-17.17v-143.67q0-10.38-6.8-17.38-6.8-7-17.2-7h-48q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h24Zm120 144h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.2 6.9 17.1 6.9 6.9 17.1 6.9Zm24-48v-96h48v96h-48Zm192-24 49 63q1 1 17.76 9Q705-384 711-396.5q6-12.5-2-23.5l-45-60 46-61q8-11 1.65-23-6.36-12-20.65-12-5 0-9.77 2.45-4.76 2.46-8.23 6.55l-49 63v-48q0-10.4-6.8-17.2-6.8-6.8-17.2-6.8-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-48ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Z"/></svg>

After

Width:  |  Height:  |  Size: 943 B

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M384-648.06v119.69q0 10.37 6.8 17.37 6.8 7 17.2 7 10.4 0 17.2-6.78 6.8-6.79 6.8-17.17v-143.67q0-10.38-6.77-17.38-6.76-7-17.11-7h-47.77Q350-696 343-689.2q-7 6.8-7 17.2 0 10.37 6.8 17.16 6.8 6.78 17.2 6.78h24ZM504-504h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.2 6.9 17.1 6.9 6.9 17.1 6.9Zm24-48v-96h48v96h-48ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Zm120-264h32v72q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-72h32v120q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9H312q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-120Zm240 96h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-96q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-24Zm0-48v-48h48v48h-48Z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M384-648.06v119.69q0 10.37 6.8 17.37 6.8 7 17.2 7 10.4 0 17.2-6.78 6.8-6.79 6.8-17.17v-143.67q0-10.38-6.77-17.38-6.76-7-17.11-7h-47.77Q350-696 343-689.2q-7 6.8-7 17.2 0 10.37 6.8 17.16 6.8 6.78 17.2 6.78h24Zm192 0v119.69q0 10.37 6.8 17.37 6.8 7 17.2 7 10.4 0 17.2-6.78 6.8-6.79 6.8-17.17v-143.67q0-10.38-6.77-17.38-6.76-7-17.11-7h-47.77Q542-696 535-689.2q-7 6.8-7 17.2 0 10.37 6.8 17.16 6.8 6.78 17.2 6.78h24ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Zm120-264h32v72q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-72h32v120q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9H312q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-120Zm240 96h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-96q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-24Zm0-48v-48h48v48h-48Z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M240.16-528h-23.83Q206-528 199-534.8q-7-6.8-7-17.2 0-10.4 6.77-17.2 6.76-6.8 17.11-6.8h47.77q10.35 0 17.35 6.78 7 6.79 7 17.17v143.67q0 10.38-6.8 17.38-6.8 7-17.2 7-10.33 0-17.08-6.8-6.76-6.8-6.76-17.2v-120ZM384-408v-72q0-10.2 6.9-17.1 6.9-6.9 17.1-6.9h72v-24h-72q-10.4 0-17.2-6.8-6.8-6.8-6.8-17.2 0-10.4 6.8-17.2 6.8-6.8 17.2-6.8h96q10.2 0 17.1 6.9 6.9 6.9 6.9 17.1v72q0 10.2-6.9 17.1-6.9 6.9-17.1 6.9h-72v24h72q10.4 0 17.2 6.8 6.8 6.8 6.8 17.2 0 10.4-6.78 17.2-6.78 6.8-17.15 6.8h-95.7Q398-384 391-390.8q-7-6.8-7-17.2Zm336 24h-96q-10.4 0-17.2-6.8-6.8-6.8-6.8-17.2 0-10.4 6.8-17.2 6.8-6.8 17.2-6.8h72v-24h-24q-9.6 0-16.8-7.2-7.2-7.2-7.2-16.8 0-9.6 7.2-16.8 7.2-7.2 16.8-7.2h24v-24h-72q-10.4 0-17.2-6.8-6.8-6.8-6.8-17.2 0-10.4 6.8-17.2 6.8-6.8 17.2-6.8h96q10.2 0 17.1 6.9 6.9 6.9 6.9 17.1v144q0 10.2-6.9 17.1-6.9 6.9-17.1 6.9Z"/></svg>

After

Width:  |  Height:  |  Size: 929 B

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M384-648.06v119.69q0 10.37 6.8 17.37 6.8 7 17.2 7 10.4 0 17.2-6.78 6.8-6.79 6.8-17.17v-143.67q0-10.38-6.77-17.38-6.76-7-17.11-7h-47.77Q350-696 343-689.2q-7 6.8-7 17.2 0 10.37 6.8 17.16 6.8 6.78 17.2 6.78h24ZM528-552v-28h48q20.4 0 34.2-13.8Q624-607.6 624-628v-20q0-20.4-13.8-34.2Q596.4-696 576-696h-72q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h72v28h-48q-20.4 0-34.2 13.8Q480-592.4 480-572v44q0 10.4 6.78 17.2 6.78 6.8 17.15 6.8h95.7q10.37 0 17.37-6.8 7-6.8 7-17.2 0-10.4-6.8-17.2-6.8-6.8-17.2-6.8h-72ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Zm120-264h32v72q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-72h32v120q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9H312q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-120Zm240 96h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-96q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-24Zm0-48v-48h48v48h-48Z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M384-648.06v119.69q0 10.37 6.8 17.37 6.8 7 17.2 7 10.4 0 17.2-6.78 6.8-6.79 6.8-17.17v-143.67q0-10.38-6.77-17.38-6.76-7-17.11-7h-47.77Q350-696 343-689.2q-7 6.8-7 17.2 0 10.37 6.8 17.16 6.8 6.78 17.2 6.78h24ZM576-552h-71.65Q494-552 487-545.2q-7 6.8-7 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h72v28h-28q-8 0-14 6t-6 14q0 8 6 14t14 6h28v28ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Zm120-264h32v72q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-72h32v120q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9H312q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-120Zm240 96h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-96q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-24Zm0-48v-48h48v48h-48Z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M384-648.06v119.69q0 10.37 6.8 17.37 6.8 7 17.2 7 10.4 0 17.2-6.78 6.8-6.79 6.8-17.17v-143.67q0-10.38-6.77-17.38-6.76-7-17.11-7h-47.77Q350-696 343-689.2q-7 6.8-7 17.2 0 10.37 6.8 17.16 6.8 6.78 17.2 6.78h24Zm192.35 95.75v24.15q0 10.47 6.83 17.32Q590-504 600-504t17-6.8q7-6.8 7-17.2v-24q10.4 0 17.2-6.8 6.8-6.8 6.8-17.2 0-10-9-14t-15-10v-71.65q0-10.35-6.8-17.35-6.8-7-17.2-7-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2v72h-48v-72q0-10.4-6.8-17.2-6.8-6.8-17.2-6.8-10.4 0-17.2 6.78-6.8 6.78-6.8 17.15v95.7q0 10.37 6.82 17.21 6.83 6.85 17.27 6.85h72.26ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Zm120-264h32v72q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-72h32v120q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9H312q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-120Zm240 96h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-96q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-24Zm0-48v-48h48v48h-48Z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M384-648.06v119.69q0 10.37 6.8 17.37 6.8 7 17.2 7 10.4 0 17.2-6.78 6.8-6.79 6.8-17.17v-143.67q0-10.38-6.77-17.38-6.76-7-17.11-7h-47.77Q350-696 343-689.2q-7 6.8-7 17.2 0 10.37 6.8 17.16 6.8 6.78 17.2 6.78h24ZM576-552h-71.65Q494-552 487-545.2q-7 6.8-7 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-68q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-72v-28h72q10.4 0 17.2-6.8 6.8-6.8 6.8-17.2 0-10.4-6.78-17.2-6.78-6.8-17.15-6.8h-95.7Q494-696 487-689.2q-7 6.8-7 17.2v68q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h72v28ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Zm120-264h32v72q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-72h32v120q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9H312q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-120Zm240 96h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-96q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-24Zm0-48v-48h48v48h-48Z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M384-648.06v119.69q0 10.37 6.8 17.37 6.8 7 17.2 7 10.4 0 17.2-6.78 6.8-6.79 6.8-17.17v-143.67q0-10.38-6.77-17.38-6.76-7-17.11-7h-47.77Q350-696 343-689.2q-7 6.8-7 17.2 0 10.37 6.8 17.16 6.8 6.78 17.2 6.78h24ZM504-504h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-64q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-72v-32h72q10.4 0 17.2-6.8 6.8-6.8 6.8-17.2 0-10.4-6.8-17.2-6.8-6.8-17.2-6.8h-96q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.2 6.9 17.1 6.9 6.9 17.1 6.9Zm24-40v-32h48v32h-48ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Zm120-264h32v72q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-72h32v120q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9H312q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-120Zm240 96h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-96q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-24Zm0-48v-48h48v48h-48Z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M384-648.06v119.69q0 10.37 6.8 17.37 6.8 7 17.2 7 10.4 0 17.2-6.78 6.8-6.79 6.8-17.17v-143.67q0-10.38-6.77-17.38-6.76-7-17.11-7h-47.77Q350-696 343-689.2q-7 6.8-7 17.2 0 10.37 6.8 17.16 6.8 6.78 17.2 6.78h24Zm185 .06-38 114q-4 11 3.08 20.5 7.09 9.5 19.13 9.5 7.79 0 13.36-4.06 5.57-4.07 7.43-10.94l49-145q4-11-3.36-21.5Q612.27-696 600-696h-96q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h65ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Zm120-264h32v72q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-72h32v120q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9H312q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-120Zm240 96h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-96q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-24Zm0-48v-48h48v48h-48Z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M384-528.06v119.69q0 10.37 6.8 17.37 6.8 7 17.2 7 10.4 0 17.2-6.78 6.8-6.79 6.8-17.17v-143.67q0-10.38-6.77-17.38-6.76-7-17.11-7h-47.77Q350-576 343-569.2q-7 6.8-7 17.2 0 10.37 6.8 17.16 6.8 6.78 17.2 6.78h24ZM504-384h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.2 6.9 17.1 6.9 6.9 17.1 6.9Zm24-48v-36h48v36h-48Zm0-60v-36h48v36h-48ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Z"/></svg>

After

Width:  |  Height:  |  Size: 684 B

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M384-648.06v119.69q0 10.37 6.8 17.37 6.8 7 17.2 7 10.4 0 17.2-6.78 6.8-6.79 6.8-17.17v-143.67q0-10.38-6.77-17.38-6.76-7-17.11-7h-47.77Q350-696 343-689.2q-7 6.8-7 17.2 0 10.37 6.8 17.16 6.8 6.78 17.2 6.78h24ZM504-504h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.2 6.9 17.1 6.9 6.9 17.1 6.9Zm24-116v-36h48v36h-48Zm0 76v-36h48v36h-48ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Zm120-264h32v72q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-72h32v120q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9H312q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-120Zm240 96h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-96q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-24Zm0-48v-48h48v48h-48Z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M384-648.06v119.69q0 10.37 6.8 17.37 6.8 7 17.2 7 10.4 0 17.2-6.78 6.8-6.79 6.8-17.17v-143.67q0-10.38-6.77-17.38-6.76-7-17.11-7h-47.77Q350-696 343-689.2q-7 6.8-7 17.2 0 10.37 6.8 17.16 6.8 6.78 17.2 6.78h24ZM576-552h-72q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v72q0 10.2 6.9 17.1 6.9 6.9 17.1 6.9h72v24Zm-48-64v-40h48v40h-48ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Zm120-264h32v72q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-72h32v120q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9H312q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-120Zm240 96h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-96q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-24Zm0-48v-48h48v48h-48Z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="m528-456 49 63q1 1 17.76 9Q609-384 615-396.5q6-12.5-2-23.5l-45-60 46-61q8-11 1.65-23-6.36-12-20.65-12-5 0-9.77 2.45-4.76 2.46-8.23 6.55l-49 63v-48q0-10.4-6.8-17.2-6.8-6.8-17.2-6.8-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-48Zm-144-72.06v119.69q0 10.37 6.8 17.37 6.8 7 17.2 7 10.4 0 17.2-6.78 6.8-6.79 6.8-17.17v-143.67q0-10.38-6.77-17.38-6.76-7-17.11-7h-47.77Q350-576 343-569.2q-7 6.8-7 17.2 0 10.37 6.8 17.16 6.8 6.78 17.2 6.78h24ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Z"/></svg>

After

Width:  |  Height:  |  Size: 776 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M648-456v24q0 9.6 7.2 16.8 7.2 7.2 16.8 7.2 9.6 0 16.8-7.2 7.2-7.2 7.2-16.8v-24h24q9.6 0 16.8-7.2 7.2-7.2 7.2-16.8 0-9.6-7.2-16.8-7.2-7.2-16.8-7.2h-24v-24q0-9.6-7.2-16.8-7.2-7.2-16.8-7.2-9.6 0-16.8 7.2-7.2 7.2-7.2 16.8v24h-24q-9.6 0-16.8 7.2-7.2 7.2-7.2 16.8 0 9.6 7.2 16.8 7.2 7.2 16.8 7.2h24Zm-168 0 49 63q1 1 17.76 9Q561-384 567-396.5q6-12.5-2-23.5l-45-60 46-61q8-11 1.65-23-6.36-12-20.65-12-5 0-9.77 2.45-4.76 2.46-8.23 6.55l-49 63v-48q0-10.4-6.8-17.2-6.8-6.8-17.2-6.8-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-48Zm-144-72.06v119.69q0 10.37 6.8 17.37 6.8 7 17.2 7 10.4 0 17.2-6.78 6.8-6.79 6.8-17.17v-143.67q0-10.38-6.77-17.38-6.76-7-17.11-7h-47.77Q302-576 295-569.2q-7 6.8-7 17.2 0 10.37 6.8 17.16 6.8 6.78 17.2 6.78h24ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Z"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M264-600h-35.79q-15.21 0-25.71-10.29t-10.5-25.5q0-15.21 10.32-25.71 10.33-10.5 25.59-10.5h71.83q15.26 0 25.76 10.35Q336-651.3 336-636v312q0 15.3-10.29 25.65Q315.42-288 300.21-288t-25.71-10.35Q264-308.7 264-324v-276Zm351 192-59 102q-5 8-12.81 13-7.81 5-17.92 5-21.13 0-31.7-18t.14-36.14L574-480l-80-138q-11-18-.51-36t31.47-18q10.04 0 18.04 5t13 13l59 102 60-102q5-8 13.16-13t18.13-5q20.86 0 31.28 18 10.43 18-.57 36l-80 138 80.29 137.75Q748-324 737.69-306t-31.83 18q-9.86 0-17.86-5t-13-13l-60-102Z"/></svg>

After

Width:  |  Height:  |  Size: 599 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M120-144q-29.7 0-50.85-21.15Q48-186.3 48-216v-528q0-29.7 21.15-50.85Q90.3-816 120-816h720q29.7 0 50.85 21.15Q912-773.7 912-744v528q0 29.7-21.15 50.85Q869.7-144 840-144H120Zm184-456v276q0 15.3 10.29 25.65Q324.58-288 339.79-288t25.71-10.35Q376-308.7 376-324v-312q0-15.3-10.32-25.65Q355.35-672 340.09-672h-71.83q-15.26 0-25.76 10.29-10.5 10.29-10.5 25.5t10.35 25.71Q252.7-600 268-600h36Zm296 184 62.77 111.79q5.23 8.21 12 12.21t15.23 4q18.5 0 27.75-15.5T718-335l-82-145 82-145q9-16-.48-31.5Q708.05-672 690-672q-8.46 0-15.23 4t-12 12.21L600-544l-62.77-111.79Q532-664 525.23-668T510-672q-18.5 0-27.75 15.5T482-625l82 145-82 145q-9 16 .48 31.5Q491.95-288 510-288q8.46 0 15.23-4t12-12.21L600-416Z"/></svg>

After

Width:  |  Height:  |  Size: 792 B

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M360-552v-28h48q20.4 0 34.2-13.8Q456-607.6 456-628v-20q0-20.4-13.8-34.2Q428.4-696 408-696h-72q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h72v28h-48q-20.4 0-34.2 13.8Q312-592.4 312-572v44q0 10.4 6.78 17.2 6.78 6.8 17.15 6.8h95.7q10.37 0 17.37-6.8 7-6.8 7-17.2 0-10.4-6.8-17.2-6.8-6.8-17.2-6.8h-72Zm168 48h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.2 6.9 17.1 6.9 6.9 17.1 6.9Zm24-48v-96h48v96h-48ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Zm120-264h32v72q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-72h32v120q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9H312q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-120Zm240 96h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-96q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-24Zm0-48v-48h48v48h-48Z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M384-552v-28h48q20.4 0 34.2-13.8Q480-607.6 480-628v-20q0-20.4-13.8-34.2Q452.4-696 432-696h-72q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h72v28h-48q-20.4 0-34.2 13.8Q336-592.4 336-572v44q0 10.4 6.78 17.2 6.78 6.8 17.15 6.8h95.7q10.37 0 17.37-6.8 7-6.8 7-17.2 0-10.4-6.8-17.2-6.8-6.8-17.2-6.8h-72Zm192-96.06v119.69q0 10.37 6.8 17.37 6.8 7 17.2 7 10.4 0 17.2-6.78 6.8-6.79 6.8-17.17v-143.67q0-10.38-6.77-17.38-6.76-7-17.11-7h-47.77Q542-696 535-689.2q-7 6.8-7 17.2 0 10.37 6.8 17.16 6.8 6.78 17.2 6.78h24ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Zm120-264h32v72q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-72h32v120q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9H312q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-120Zm240 96h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-96q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-24Zm0-48v-48h48v48h-48Z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M360-552v-28h48q20.4 0 34.2-13.8Q456-607.6 456-628v-20q0-20.4-13.8-34.2Q428.4-696 408-696h-72q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h72v28h-48q-20.4 0-34.2 13.8Q312-592.4 312-572v44q0 10.4 6.78 17.2 6.78 6.8 17.15 6.8h95.7q10.37 0 17.37-6.8 7-6.8 7-17.2 0-10.4-6.8-17.2-6.8-6.8-17.2-6.8h-72Zm192 0v-28h48q20.4 0 34.2-13.8Q648-607.6 648-628v-20q0-20.4-13.8-34.2Q620.4-696 600-696h-72q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h72v28h-48q-20.4 0-34.2 13.8Q504-592.4 504-572v44q0 10.4 6.78 17.2 6.78 6.8 17.15 6.8h95.7q10.37 0 17.37-6.8 7-6.8 7-17.2 0-10.4-6.8-17.2-6.8-6.8-17.2-6.8h-72ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Zm120-264h32v72q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-72h32v120q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9H312q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-120Zm240 96h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-96q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-24Zm0-48v-48h48v48h-48Z"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M360-552v-28h48q20.4 0 34.2-13.8Q456-607.6 456-628v-20q0-20.4-13.8-34.2Q428.4-696 408-696h-72q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h72v28h-48q-20.4 0-34.2 13.8Q312-592.4 312-572v44q0 10.4 6.78 17.2 6.78 6.8 17.15 6.8h95.7q10.37 0 17.37-6.8 7-6.8 7-17.2 0-10.4-6.8-17.2-6.8-6.8-17.2-6.8h-72Zm240 0h-71.65Q518-552 511-545.2q-7 6.8-7 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h72v28h-28q-8 0-14 6t-6 14q0 8 6 14t14 6h28v28ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Zm120-264h32v72q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-72h32v120q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9H312q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-120Zm240 96h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-96q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-24Zm0-48v-48h48v48h-48Z"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M732.21-384q-15.21 0-25.71-10.35T696-420v-84H564q-15.3 0-25.65-10.35Q528-524.7 528-540v-192q0-15.3 10.29-25.65Q548.58-768 563.79-768t25.71 10.35Q600-747.3 600-732v156h96v-156q0-15.3 10.29-25.65Q716.58-768 731.79-768t25.71 10.35Q768-747.3 768-732v156h12q15.3 0 25.65 10.29Q816-555.42 816-540.21t-10.35 25.71Q795.3-504 780-504h-12v84q0 15.3-10.29 25.65Q747.42-384 732.21-384ZM252-384q-15.3 0-25.65-10.35Q216-404.7 216-420v-120q0-29.7 21.15-50.85Q258.3-612 288-612h96v-84H252q-15.3 0-25.65-10.29Q216-716.58 216-731.79t10.35-25.71Q236.7-768 252-768h132q29.7 0 50.85 21.15Q456-725.7 456-696v84q0 29.7-21.15 50.85Q413.7-540 384-540h-96v84h132q15.3 0 25.65 10.29Q456-435.42 456-420.21t-10.35 25.71Q435.3-384 420-384H252ZM180.21-96Q165-96 154.5-106.35T144-132v-120q0-15.3 10.29-25.65Q164.58-288 179.79-288t25.71 10.35Q216-267.3 216-252v120q0 15.3-10.29 25.65Q195.42-96 180.21-96Zm144 0Q309-96 298.5-106.35T288-132v-120q0-15.3 10.29-25.65Q308.58-288 323.79-288t25.71 10.35Q360-267.3 360-252v120q0 15.3-10.29 25.65Q339.42-96 324.21-96Zm144 0Q453-96 442.5-106.35T432-132v-120q0-15.3 10.29-25.65Q452.58-288 467.79-288t25.71 10.35Q504-267.3 504-252v120q0 15.3-10.29 25.65Q483.42-96 468.21-96ZM612-96q-15.3 0-25.65-10.35Q576-116.7 576-132v-120q0-15.3 10.35-25.65Q596.7-288 612-288h168q15.3 0 25.65 10.35Q816-267.3 816-252v120q0 15.3-10.35 25.65Q795.3-96 780-96H612Z"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M360-552v-28h48q20.4 0 34.2-13.8Q456-607.6 456-628v-20q0-20.4-13.8-34.2Q428.4-696 408-696h-72q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h72v28h-48q-20.4 0-34.2 13.8Q312-592.4 312-572v44q0 10.4 6.78 17.2 6.78 6.8 17.15 6.8h95.7q10.37 0 17.37-6.8 7-6.8 7-17.2 0-10.4-6.8-17.2-6.8-6.8-17.2-6.8h-72Zm216.35-.31v24.15q0 10.47 6.83 17.32Q590-504 600-504t17-6.8q7-6.8 7-17.2v-24q10.4 0 17.2-6.8 6.8-6.8 6.8-17.2 0-10-9-14t-15-10v-71.65q0-10.35-6.8-17.35-6.8-7-17.2-7-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2v72h-48v-72q0-10.4-6.8-17.2-6.8-6.8-17.2-6.8-10.4 0-17.2 6.78-6.8 6.78-6.8 17.15v95.7q0 10.37 6.82 17.21 6.83 6.85 17.27 6.85h72.26ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Zm120-264h32v72q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-72h32v120q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9H312q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-120Zm240 96h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-96q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-24Zm0-48v-48h48v48h-48Z"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M360-432v-28h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-68q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h72v28h-72q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v68q0 10.4 6.78 17.2 6.78 6.8 17.15 6.8h95.7q10.37 0 17.37-6.8 7-6.8 7-17.2 0-10.4-6.8-17.2-6.8-6.8-17.2-6.8h-72Zm168 48h75q18.75 0 31.88-13.13Q648-410.25 648-429v-102q0-18.75-13.12-31.88Q621.75-576 603-576h-75q-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7Zm24-48v-96h48v96h-48ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Z"/></svg>

After

Width:  |  Height:  |  Size: 785 B

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M386-300H202.87q-9.87 0-16.37-6.16-6.5-6.16-6.5-15.84v-29.41q0-4.59 2-9.09t6-7.5q47-38 77-64t44-44q16-20 23-37t7-35q0-28-14.73-44-14.74-16-35.54-16-14.73 0-26.85 8.64Q249.76-590.73 242-578q-6.18 10.74-18.09 14.87-11.91 4.13-22.98-.49Q189-569 184.5-581.5t.5-25.5q11-32 42-47t63-15q54 0 85 29t31 79q0 34.44-12.5 64.22T359-441q-21 26-41 43t-48 38.12l2 2.88h114q12 0 20.5 8.5t8.5 20.67q0 12.18-8.5 20Q398-300 386-300Zm137.36 0Q508-300 498-310.38t-10-25.73v-289.78q0-15.35 10.5-25.73T524-662h84.41q87.1 0 133.35 46.5Q788-569 788-481.14q0 87.85-46.5 134.5Q695-300 608.28-300h-84.92ZM555-365h49.95Q666-365 693-392.5t27-88.5q0-61-27-88.5T604.95-597H555v232Z"/></svg>

After

Width:  |  Height:  |  Size: 752 B

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="m552-456 49 63q1 1 17.76 9Q633-384 639-396.5q6-12.5-2-23.5l-45-60 46-61q8-11 1.65-23-6.36-12-20.65-12-5 0-9.77 2.45-4.76 2.46-8.23 6.55l-49 63v-48q0-10.4-6.8-17.2-6.8-6.8-17.2-6.8-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-48Zm-192 24v-28h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-68q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h72v28h-72q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v68q0 10.4 6.78 17.2 6.78 6.8 17.15 6.8h95.7q10.37 0 17.37-6.8 7-6.8 7-17.2 0-10.4-6.8-17.2-6.8-6.8-17.2-6.8h-72ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Z"/></svg>

After

Width:  |  Height:  |  Size: 882 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M648-456v24q0 9.6 7.2 16.8 7.2 7.2 16.8 7.2 9.6 0 16.8-7.2 7.2-7.2 7.2-16.8v-24h24q9.6 0 16.8-7.2 7.2-7.2 7.2-16.8 0-9.6-7.2-16.8-7.2-7.2-16.8-7.2h-24v-24q0-9.6-7.2-16.8-7.2-7.2-16.8-7.2-9.6 0-16.8 7.2-7.2 7.2-7.2 16.8v24h-24q-9.6 0-16.8 7.2-7.2 7.2-7.2 16.8 0 9.6 7.2 16.8 7.2 7.2 16.8 7.2h24Zm-144 0 49 63q1 1 17.76 9Q585-384 591-396.5q6-12.5-2-23.5l-45-60 46-61q8-11 1.65-23-6.36-12-20.65-12-5 0-9.77 2.45-4.76 2.46-8.23 6.55l-49 63v-48q0-10.4-6.8-17.2-6.8-6.8-17.2-6.8-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-48Zm-192 24v-28h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-68q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h72v28h-72q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v68q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h96q10.4 0 17.2-6.8 6.8-6.8 6.8-17.2 0-10.4-6.8-17.2-6.8-6.8-17.2-6.8h-72Zm-96 288q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M336-408h32v72q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-72h32v120q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9H312q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-120Zm120-144v-28h48q20.4 0 34.2-13.8Q552-607.6 552-628v-20q0-20.4-13.8-34.2Q524.4-696 504-696h-72q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h72v28h-48q-20.4 0-34.2 13.8Q408-592.4 408-572v44q0 10.4 6.78 17.2 6.78 6.8 17.15 6.8h95.7q10.37 0 17.37-6.8 7-6.8 7-17.2 0-10.4-6.8-17.2-6.8-6.8-17.2-6.8h-72Zm120 240h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-96q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-24Zm0-48v-48h48v48h-48ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M336-240H192q-20 0-34-14t-14-34q0-20 14-34t34-14h144v-96H216q-20 0-34-14t-14-34q0-20 14-34t34-14h120v-96H192q-20 0-34-14t-14-34q0-20 14-34t34-14h144q40 0 68 28t28 68v48q0 40-28 68t-68 28q40 0 68 28t28 68v48q0 40-28 68t-68 28Zm240-96h144v-288H576v288Zm0 96q-40 0-68-28t-28-68v-288q0-40 28-68t68-28h144q40 0 68 28t28 68v288q0 40-28 68t-68 28H576Z"/></svg>

After

Width:  |  Height:  |  Size: 447 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M228-384q-15.3 0-25.65-10.29Q192-404.58 192-419.79t10.35-25.71Q212.7-456 228-456h132v-84h-84q-15.3 0-25.65-10.29Q240-560.58 240-575.79t10.35-25.71Q260.7-612 276-612h84v-84H228q-15.3 0-25.65-10.29Q192-716.58 192-731.79t10.35-25.71Q212.7-768 228-768h132q29.7 0 50.85 21.15Q432-725.7 432-696v72q0 20-14 34t-34 14q20 0 34 14t14 34v72q0 29.7-21.15 50.85Q389.7-384 360-384H228Zm372 0q-29.7 0-50.85-21.15Q528-426.3 528-456v-240q0-29.7 21.15-50.85Q570.3-768 600-768h96q29.7 0 50.85 21.15Q768-725.7 768-696v240q0 29.7-21.15 50.85Q725.7-384 696-384h-96Zm0-72h96v-240h-96v240ZM180.21-96Q165-96 154.5-106.35T144-132v-120q0-15.3 10.29-25.65Q164.58-288 179.79-288t25.71 10.35Q216-267.3 216-252v120q0 15.3-10.29 25.65Q195.42-96 180.21-96Zm144 0Q309-96 298.5-106.35T288-132v-120q0-15.3 10.29-25.65Q308.58-288 323.79-288t25.71 10.35Q360-267.3 360-252v120q0 15.3-10.29 25.65Q339.42-96 324.21-96Zm144 0Q453-96 442.5-106.35T432-132v-120q0-15.3 10.29-25.65Q452.58-288 467.79-288t25.71 10.35Q504-267.3 504-252v120q0 15.3-10.29 25.65Q483.42-96 468.21-96ZM612-96q-15.3 0-25.65-10.35Q576-116.7 576-132v-120q0-15.3 10.35-25.65Q596.7-288 612-288h168q15.3 0 25.65 10.35Q816-267.3 816-252v120q0 15.3-10.35 25.65Q795.3-96 780-96H612Z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M395-293q-131-14-215-67T96-480q0-80 112-136t272-56q160 0 272 56t112 136q0 54-54.5 99.5T662-311q-14 4-26-5t-12-23q0-16 9-28.5t24-17.5q59-18 97-44t38-51q0-46-97-83t-215-37q-117 0-214.5 37.5T168-480q0 34 64.5 68T383-367l-25-25q-11-11-11-25.5t11-25.5q11-11 25.5-11t25.5 11l94 94q11 11 11 25t-11 25l-94 94q-11 11-25 10.5T359-206q-11-11-11-25.5t11-25.5l36-36Z"/></svg>

After

Width:  |  Height:  |  Size: 456 B

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M504-384h96q29.7 0 50.85-21.15Q672-426.3 672-456v-48q0-29.7-21.15-50.85Q629.7-576 600-576h-96v192Zm48-48v-96h48q9.6 0 16.8 7.2 7.2 7.2 7.2 16.8v48q0 9.6-7.2 16.8-7.2 7.2-16.8 7.2h-48Zm-144 48q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-48q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9 10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-48q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h72v24h-48q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h48v24h-72q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h96ZM168-192q-29.7 0-50.85-21.16Q96-234.32 96-264.04v-432.24Q96-726 117.15-747T168-768h624q29.7 0 50.85 21.16Q864-725.68 864-695.96v432.24Q864-234 842.85-213T792-192H168Z"/></svg>

After

Width:  |  Height:  |  Size: 829 B

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M525.16-300q-15.37 0-25.76-10.31-10.4-10.32-10.4-25.56v-287.88q0-15.25 10.4-25.75t25.77-10.5h84.11Q697-660 743-614t46 134q0 88-46.5 134t-133.28 46h-84.06ZM556-364h50.45Q667-364 694-391.5t27-88.5q0-61-27-88.5T606.45-596H556v232Zm-259 73q-40.95 0-70.97-16.5Q196-324 182.09-355.43 176-368 181-381.5t18-19.5q13-6 25.93-.94Q237.86-396.88 245-384q7.25 14.06 20.38 21.53 13.14 7.47 31.26 7.47Q322-355 337-368.5t15-38.97q0-24.53-16.23-39.03Q319.55-461 289.8-461H288q-12.25 0-20.12-8.5Q260-478 260-490t7.88-20.5q7.87-8.5 20.12-8.5 25 0 40-12t15-33.5q0-21.5-13.48-33.5t-35.79-12q-16.73 0-28.23 6.5T247-583q-6 12-18.5 16t-24.5-2q-12-6-16-19t2-25q6-11 13.59-19.44 7.59-8.45 17.41-15.56 15-11 33-16t40.81-5Q345-669 376-644.29t31 72.33Q407-545 395-528t-32 31.78v4.22q27 11 41.5 34.5T419-403q0 54.16-33.64 83.08T297-291Z"/></svg>

After

Width:  |  Height:  |  Size: 908 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M624-384H522.15q-8.15 0-13.15-5t-5-13v-156q0-8 5-13t13.15-5H624q10.2 0 17.1 6.9 6.9 6.9 6.9 17.1v144q0 10.2-6.9 17.1-6.9 6.9-17.1 6.9Zm-192 0h-96q-10.4 0-17.2-6.8-6.8-6.8-6.8-17.2 0-10.4 6.8-17.2 6.8-6.8 17.2-6.8h72v-28h-28q-8 0-14-6t-6-14q0-8 6-14t14-6h28v-28h-72q-10.4 0-17.2-6.8-6.8-6.8-6.8-17.2 0-10.4 6.8-17.2 6.8-6.8 17.2-6.8h96q10.2 0 17.1 6.9 6.9 6.9 6.9 17.1v144q0 10.2-6.9 17.1-6.9 6.9-17.1 6.9Zm120-48h48v-96h-48v96Zm324.21-12q-15.21 0-25.71-10.35T840-480q0-143-96-245.5T508-839l67 67q11 11 10.5 25.5T574-721q-11 11-25 11t-25-11L367-877q-5-5-3.17-12.11 1.84-7.11 9.17-8.89 17-5 45-9.5t62-4.5q89.64 0 168.48 34.02 78.84 34.02 137.16 92.34 58.32 58.32 92.34 137.16T912-480q0 15.3-10.29 25.65Q891.42-444 876.21-444ZM480-48q-89.64 0-168.48-34.02-78.84-34.02-137.16-92.34-58.32-58.32-92.34-137.16T48-480q0-15.3 10.29-25.65Q68.58-516 83.79-516t25.71 10.35Q120-495.3 120-480q0 143 96 245.5T452-121l-67-67q-11-11-10.5-25.5T386-239q11-11 25-11t25 11L593-83q5 5 3.17 12.11-1.84 7.11-9.17 8.89-17 5-44.5 9.5T480-48Z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M180-288q-15.3 0-25.65-10.29Q144-308.58 144-323.79t10.35-25.71Q164.7-360 180-360h132v-84h-84q-15.3 0-25.65-10.29Q192-464.58 192-479.79t10.35-25.71Q212.7-516 228-516h84v-84H180q-15.3 0-25.65-10.29Q144-620.58 144-635.79t10.35-25.71Q164.7-672 180-672h132q29.7 0 50.85 21.15Q384-629.7 384-600v72q0 20-14 34t-34 14q20 0 34 14t14 34v72q0 29.7-21.15 50.85Q341.7-288 312-288H180Zm372 0q-29.7 0-50.85-21.15Q480-330.3 480-360v-240q0-29.7 21.15-50.85Q522.3-672 552-672h228q15.3 0 25.65 10.29Q816-651.42 816-636.21t-10.35 25.71Q795.3-600 780-600H552v240h192v-84h-84q-15.3 0-25.65-10.29Q624-464.58 624-479.79t10.35-25.71Q644.7-516 660-516h120q15.3 0 25.65 10.35Q816-495.3 816-480v120q0 29.7-21.15 50.85Q773.7-288 744-288H552Z"/></svg>

After

Width:  |  Height:  |  Size: 815 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M120-144q-29.7 0-50.85-21.15Q48-186.3 48-216v-528q0-29.7 21.15-50.85Q90.3-816 120-816h720q29.7 0 50.85 21.15Q912-773.7 912-744v528q0 29.7-21.15 50.85Q869.7-144 840-144H120Zm432-144h144q29.7 0 50.85-21.15Q768-330.3 768-360v-120q0-15.3-10.35-25.65Q747.3-516 732-516h-72q-15.3 0-25.65 10.29Q624-495.42 624-480.21t10.35 25.71Q644.7-444 660-444h36v84H552v-240h214q0-29.7-21.15-50.85Q723.7-672 694-672H552q-29.7 0-50.85 21.15Q480-629.7 480-600v240q0 29.7 21.15 50.85Q522.3-288 552-288Zm-192 0q29.7 0 50.85-21.15Q432-330.3 432-360v-72q0-20-14-34t-34-14q20 0 34-14t14-34v-72q0-29.7-21.15-50.85Q389.7-672 360-672H228q-15.3 0-25.65 10.29Q192-651.42 192-636.21t10.35 25.71Q212.7-600 228-600h132v84h-84q-15.3 0-25.65 10.29Q240-495.42 240-480.21t10.35 25.71Q260.7-444 276-444h84v84H228q-15.3 0-25.65 10.29Q192-339.42 192-324.21t10.35 25.71Q212.7-288 228-288h132Z"/></svg>

After

Width:  |  Height:  |  Size: 952 B

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="m552-456 49 63q1 1 17.76 9Q633-384 639-396.5q6-12.5-2-23.5l-45-60 46-61q8-11 1.65-23-6.36-12-20.65-12-5 0-9.77 2.45-4.76 2.46-8.23 6.55l-49 63v-48q0-10.4-6.8-17.2-6.8-6.8-17.2-6.8-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-48Zm-144 24h-71.65Q326-432 319-425.2q-7 6.8-7 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h72v28h-28q-8 0-14 6t-6 14q0 8 6 14t14 6h28v28ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Z"/></svg>

After

Width:  |  Height:  |  Size: 841 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M648-456v24q0 9.6 7.2 16.8 7.2 7.2 16.8 7.2 9.6 0 16.8-7.2 7.2-7.2 7.2-16.8v-24h24q9.6 0 16.8-7.2 7.2-7.2 7.2-16.8 0-9.6-7.2-16.8-7.2-7.2-16.8-7.2h-24v-24q0-9.6-7.2-16.8-7.2-7.2-16.8-7.2-9.6 0-16.8 7.2-7.2 7.2-7.2 16.8v24h-24q-9.6 0-16.8 7.2-7.2 7.2-7.2 16.8 0 9.6 7.2 16.8 7.2 7.2 16.8 7.2h24Zm-144 0 49 63q1 1 17.76 9Q585-384 591-396.5q6-12.5-2-23.5l-45-60 46-61q8-11 1.65-23-6.36-12-20.65-12-5 0-9.77 2.45-4.76 2.46-8.23 6.55l-49 63v-48q0-10.4-6.8-17.2-6.8-6.8-17.2-6.8-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-48Zm-144 24h-71.65Q278-432 271-425.2q-7 6.8-7 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h72v28h-28q-8 0-14 6t-6 14q0 8 6 14t14 6h28v28ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M504-552h-71.65Q422-552 415-545.2q-7 6.8-7 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h72v28h-28q-8 0-14 6t-6 14q0 8 6 14t14 6h28v28ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Zm120-264h32v72q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-72h32v120q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9H312q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-120Zm240 96h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-96q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-24Zm0-48v-48h48v48h-48Z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M324-384h312v-41q0-35-45-59.5T480-509q-66 0-111 24.5T324-425v41Zm156.21-168Q510-552 531-573.21t21-51Q552-654 530.79-675t-51-21Q450-696 429-674.79t-21 51Q408-594 429.21-573t51 21ZM240-240l-82.88 82.88Q140-140 118-149.41q-22-9.4-22-33.59v-609q0-29.7 21.15-50.85Q138.3-864 168-864h624q29.7 0 50.85 21.15Q864-821.7 864-792v480q0 29.7-21.15 50.85Q821.7-240 792-240H240Z"/></svg>

After

Width:  |  Height:  |  Size: 467 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M348.21-288q-15.21 0-25.71-10.35T312-324v-84H180q-15.3 0-25.65-10.35Q144-428.7 144-444v-192q0-15.3 10.29-25.65Q164.58-672 179.79-672t25.71 10.35Q216-651.3 216-636v156h96v-156q0-15.3 10.29-25.65Q332.58-672 347.79-672t25.71 10.35Q384-651.3 384-636v156h12q15.3 0 25.65 10.29Q432-459.42 432-444.21t-10.35 25.71Q411.3-408 396-408h-12v84q0 15.3-10.29 25.65Q363.42-288 348.21-288ZM552-288q-29.7 0-50.85-21.15Q480-330.3 480-360v-240q0-29.7 21.15-50.85Q522.3-672 552-672h228q15.3 0 25.65 10.29Q816-651.42 816-636.21t-10.35 25.71Q795.3-600 780-600H552v240h192v-84h-84q-15.3 0-25.65-10.29Q624-464.58 624-479.79t10.35-25.71Q644.7-516 660-516h120q15.3 0 25.65 10.35Q816-495.3 816-480v120q0 29.7-21.15 50.85Q773.7-288 744-288H552Z"/></svg>

After

Width:  |  Height:  |  Size: 819 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M120-144q-29.7 0-50.85-21.15Q48-186.3 48-216v-528q0-29.7 21.15-50.85Q90.3-816 120-816h720q29.7 0 50.85 21.15Q912-773.7 912-744v528q0 29.7-21.15 50.85Q869.7-144 840-144H120Zm456-144h144q29.7 0 50.85-21.15Q792-330.3 792-360v-120q0-15.3-10.35-25.65Q771.3-516 756-516h-72q-15.3 0-25.65 10.29Q648-495.42 648-480.21t10.35 25.71Q668.7-444 684-444h36v84H576v-240h216q0-30-21.15-51T720-672H576q-29.7 0-50.85 21.15Q504-629.7 504-600v240q0 29.7 21.15 50.85Q546.3-288 576-288ZM336-408v84q0 15.3 10.29 25.65Q356.58-288 371.79-288t25.71-10.35Q408-308.7 408-324v-84h12q15.3 0 25.65-10.29Q456-428.58 456-443.79t-10.35-25.71Q435.3-480 420-480h-12v-156q0-15.3-10.29-25.65Q387.42-672 372.21-672t-25.71 10.35Q336-651.3 336-636v156h-96v-156q0-15.3-10.29-25.65Q219.42-672 204.21-672t-25.71 10.35Q168-651.3 168-636v192q0 15.3 10.35 25.65Q188.7-408 204-408h132Z"/></svg>

After

Width:  |  Height:  |  Size: 940 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M816.23-444h-36.11q-15.35 0-25.74-10.35Q744-464.7 744-480q0-15.3 10.38-25.65Q764.77-516 780.12-516h36.11v-36q0-15.3 10.39-25.65Q837-588 852.21-588q15.21 0 25.5 10.35T888-552v36h35.79q15.21 0 25.71 10.29t10.5 25.5q0 15.21-10.35 25.59-10.35 10.39-25.65 10.39h-36v36.11q0 15.35-10.35 25.74Q867.3-372 852-372q-15 0-25.38-10.35-10.39-10.35-10.39-25.65v-36ZM432-288q-29.7 0-50.85-21.15Q360-330.3 360-360v-240q0-29.7 21.15-50.85Q402.3-672 432-672h228q15.3 0 25.65 10.29Q696-651.42 696-636.21t-10.35 25.71Q675.3-600 660-600H432v240h192v-84h-84q-15.3 0-25.65-10.29Q504-464.58 504-479.79t10.35-25.71Q524.7-516 540-516h120q15.3 0 25.65 10.35Q696-495.3 696-480v120q0 29.7-21.15 50.85Q653.7-288 624-288H432ZM120-636v156h72v-156q0-15.3 10.29-25.65Q212.58-672 227.79-672t25.71 10.35Q264-651.3 264-636v156h12q15.3 0 25.65 10.29Q312-459.42 312-444.21t-10.35 25.71Q291.3-408 276-408h-12v84q0 15.3-10.29 25.65Q243.42-288 228.21-288t-25.71-10.35Q192-308.7 192-324v-84H84.26Q69-408 58.5-418.35 48-428.7 48-444v-192q0-15.3 10.29-25.65Q68.58-672 83.79-672t25.71 10.35Q120-651.3 120-636Z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="m576-456 49 63q1 1 17.76 9Q657-384 663-396.5q6-12.5-2-23.5l-45-60 46-61q8-11 1.65-23-6.36-12-20.65-12-5 0-9.77 2.45-4.76 2.46-8.23 6.55l-49 63v-48q0-10.4-6.8-17.2-6.8-6.8-17.2-6.8-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-48Zm-191.65 23.69v24.15q0 10.47 6.83 17.32Q398-384 408-384t17-6.8q7-6.8 7-17.2v-24h24q10.4 0 17.2-6.8 6.8-6.8 6.8-17.2 0-10.4-6.8-17.2-6.8-6.8-17.2-6.8h-24v-71.65q0-10.35-6.8-17.35-6.8-7-17.2-7-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2v72h-48v-72q0-10.4-6.8-17.2-6.8-6.8-17.2-6.8-10.4 0-17.2 6.78-6.8 6.78-6.8 17.15v95.7q0 10.37 6.82 17.21 6.83 6.85 17.27 6.85h72.26ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Z"/></svg>

After

Width:  |  Height:  |  Size: 924 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M648-456v24q0 9.6 7.2 16.8 7.2 7.2 16.8 7.2 9.6 0 16.8-7.2 7.2-7.2 7.2-16.8v-24h24q9.6 0 16.8-7.2 7.2-7.2 7.2-16.8 0-9.6-7.2-16.8-7.2-7.2-16.8-7.2h-24v-24q0-9.6-7.2-16.8-7.2-7.2-16.8-7.2-9.6 0-16.8 7.2-7.2 7.2-7.2 16.8v24h-24q-9.6 0-16.8 7.2-7.2 7.2-7.2 16.8 0 9.6 7.2 16.8 7.2 7.2 16.8 7.2h24Zm-152 0 49 63q1 1 17.76 9Q577-384 583-396.5q6-12.5-2-23.5l-45-60 46-61q8-11 1.65-23-6.36-12-20.65-12-5 0-9.77 2.45-4.76 2.46-8.23 6.55l-49 63v-48q0-10.4-6.8-17.2-6.8-6.8-17.2-6.8-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-48Zm-159.65 23.69v24.15q0 10.47 6.83 17.32Q350-384 360-384t17-6.8q7-6.8 7-17.2v-24q10.4 0 17.2-6.8 6.8-6.8 6.8-17.2 0-10-9-14t-15-10v-71.65q0-10.35-6.8-17.35-6.8-7-17.2-7-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2v72h-48v-72q0-10.4-6.8-17.2-6.8-6.8-17.2-6.8-10.4 0-17.2 6.78-6.8 6.78-6.8 17.15v95.7q0 10.37 6.82 17.21 6.83 6.85 17.27 6.85h72.26ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M480.35-552.31v24.15q0 10.47 6.83 17.32Q494-504 504-504t17-6.8q7-6.8 7-17.2v-24q10.4 0 17.2-6.8 6.8-6.8 6.8-17.2 0-10-9-14t-15-10v-71.65q0-10.35-6.8-17.35-6.8-7-17.2-7-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2v72h-48v-72q0-10.4-6.8-17.2-6.8-6.8-17.2-6.8-10.4 0-17.2 6.78-6.8 6.78-6.8 17.15v95.7q0 10.37 6.82 17.21 6.83 6.85 17.27 6.85h72.26ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Zm120-264h32v72q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-72h32v120q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9H312q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-120Zm240 96h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-96q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-24Zm0-48v-48h48v48h-48Z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M528-504h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.2 6.9 17.1 6.9 6.9 17.1 6.9Zm24-48v-96h48v96h-48ZM336-408h32v72q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-72h32v120q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9H312q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-120Zm240 96h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-96q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-84q-15.3 0-25.65 10.35Q528-435.3 528-420v131.91q0 10.09 6.8 17.09t17.2 7q10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-24Zm0-48v-48h48v48h-48ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Zm192-432v24h-72q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-72q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-72v-24h72q10.4 0 17.2-6.8 6.8-6.8 6.8-17.2 0-10.4-6.8-17.2-6.8-6.8-17.2-6.8h-84q-15.3 0-25.65 10.35Q312-675.3 312-660v48q0 15.3 10.35 25.65Q332.7-576 348-576h60Z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M312-288H180q-15.3 0-25.65-10.29Q144-308.58 144-323.79t10.35-25.71Q164.7-360 180-360h132v-84H180q-15.3 0-25.65-10.35Q144-464.7 144-480v-156q0-15.3 10.35-25.65Q164.7-672 180-672h168q15.3 0 25.65 10.29Q384-651.42 384-636.21t-10.35 25.71Q363.3-600 348-600H216v84h96q29.7 0 50.85 21.15Q384-473.7 384-444v84q0 29.7-21.15 50.85Q341.7-288 312-288Zm240 0q-29.7 0-50.85-21.15Q480-330.3 480-360v-240q0-29.7 21.15-50.85Q522.3-672 552-672h228q15.3 0 25.65 10.29Q816-651.42 816-636.21t-10.35 25.71Q795.3-600 780-600H552v240h192v-84h-84q-15.3 0-25.65-10.29Q624-464.58 624-479.79t10.35-25.71Q644.7-516 660-516h120q15.3 0 25.65 10.35Q816-495.3 816-480v120q0 29.7-21.15 50.85Q773.7-288 744-288H552Z"/></svg>

After

Width:  |  Height:  |  Size: 784 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M120-144q-29.7 0-50.85-21.15Q48-186.3 48-216v-528q0-29.7 21.15-50.85Q90.3-816 120-816h720q29.7 0 50.85 21.15Q912-773.7 912-744v528q0 29.7-21.15 50.85Q869.7-144 840-144H120Zm432-144h144q29.7 0 50.85-21.15Q768-330.3 768-360v-120q0-15.3-10.35-25.65Q747.3-516 732-516h-72q-15.3 0-25.65 10.29Q624-495.42 624-480.21t10.35 25.71Q644.7-444 660-444h36v84H552v-240h214q0-29.7-21.15-50.85Q723.7-672 694-672H552q-29.7 0-50.85 21.15Q480-629.7 480-600v240q0 29.7 21.15 50.85Q522.3-288 552-288Zm-192 0q29.7 0 50.85-21.15Q432-330.3 432-360v-84q0-29.7-21.15-50.85Q389.7-516 360-516h-96v-84h132q15.3 0 25.65-10.29Q432-620.58 432-635.79t-10.35-25.71Q411.3-672 396-672H228q-15.3 0-25.65 10.35Q192-651.3 192-636v156q0 15.3 10.35 25.65Q212.7-444 228-444h132v84H228q-15.3 0-25.65 10.29Q192-339.42 192-324.21t10.35 25.71Q212.7-288 228-288h132Z"/></svg>

After

Width:  |  Height:  |  Size: 922 B

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="m552-456 49 63q1 1 17.76 9Q633-384 639-396.5q6-12.5-2-23.5l-45-60 46-61q8-11 1.65-23-6.36-12-20.65-12-5 0-9.77 2.45-4.76 2.46-8.23 6.55l-49 63v-48q0-10.4-6.8-17.2-6.8-6.8-17.2-6.8-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-48Zm-144 24h-71.65Q326-432 319-425.2q-7 6.8-7 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-68q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-72v-28h72q10.4 0 17.2-6.8 6.8-6.8 6.8-17.2 0-10.4-6.78-17.2-6.78-6.8-17.15-6.8h-95.7Q326-576 319-569.2q-7 6.8-7 17.2v68q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h72v28ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Z"/></svg>

After

Width:  |  Height:  |  Size: 883 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M648-456v24q0 9.6 7.2 16.8 7.2 7.2 16.8 7.2 9.6 0 16.8-7.2 7.2-7.2 7.2-16.8v-24h24q9.6 0 16.8-7.2 7.2-7.2 7.2-16.8 0-9.6-7.2-16.8-7.2-7.2-16.8-7.2h-24v-24q0-9.6-7.2-16.8-7.2-7.2-16.8-7.2-9.6 0-16.8 7.2-7.2 7.2-7.2 16.8v24h-24q-9.6 0-16.8 7.2-7.2 7.2-7.2 16.8 0 9.6 7.2 16.8 7.2 7.2 16.8 7.2h24Zm-168 0 49 63q1 1 17.76 9Q561-384 567-396.5q6-12.5-2-23.5l-45-60 46-61q8-11 1.65-23-6.36-12-20.65-12-5 0-9.77 2.45-4.76 2.46-8.23 6.55l-49 63v-48q0-10.4-6.8-17.2-6.8-6.8-17.2-6.8-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-48Zm-144 24h-72q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-68q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-72v-28h72q10.4 0 17.2-6.8 6.8-6.8 6.8-17.2 0-10.4-6.8-17.2-6.8-6.8-17.2-6.8h-96q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2v68q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h72v28ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M504-552h-71.65Q422-552 415-545.2q-7 6.8-7 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-68q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-72v-28h72q10.4 0 17.2-6.8 6.8-6.8 6.8-17.2 0-10.4-6.78-17.2-6.78-6.8-17.15-6.8h-95.7Q422-696 415-689.2q-7 6.8-7 17.2v68q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h72v28ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Zm120-264h32v72q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-72h32v120q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9H312q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-120Zm240 96h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-96q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-24Zm0-48v-48h48v48h-48Z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M384-240H192q-20 0-34-14t-14-34v-384q0-20 14-34t34-14h168q20 0 34 14t14 34q0 20-14 34t-34 14H240v96h144q20-1 34 13.29T432-480v192q0 20-14 34t-34 14ZM240-432v96h96v-96h-96Zm336 96h144v-288H576v288Zm0 96q-40 0-68-28t-28-68v-288q0-40 28-68t68-28h144q40 0 68 28t28 68v288q0 40-28 68t-68 28H576Z"/></svg>

After

Width:  |  Height:  |  Size: 393 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M264-384q-29.7 0-50.85-21.15Q192-426.3 192-456v-240q0-29.7 21.15-50.85Q234.3-768 264-768h132q15.3 0 25.65 10.29Q432-747.42 432-732.21t-10.35 25.71Q411.3-696 396-696H264v84h96q29.7 0 50.85 21.15Q432-569.7 432-540v84q0 29.7-21.15 50.85Q389.7-384 360-384h-96Zm0-72h96v-84h-96v84Zm336 72q-29.7 0-50.85-21.15Q528-426.3 528-456v-240q0-29.7 21.15-50.85Q570.3-768 600-768h96q29.7 0 50.85 21.15Q768-725.7 768-696v240q0 29.7-21.15 50.85Q725.7-384 696-384h-96Zm0-72h96v-240h-96v240ZM180.21-96Q165-96 154.5-106.35T144-132v-120q0-15.3 10.29-25.65Q164.58-288 179.79-288t25.71 10.35Q216-267.3 216-252v120q0 15.3-10.29 25.65Q195.42-96 180.21-96Zm144 0Q309-96 298.5-106.35T288-132v-120q0-15.3 10.29-25.65Q308.58-288 323.79-288t25.71 10.35Q360-267.3 360-252v120q0 15.3-10.29 25.65Q339.42-96 324.21-96Zm144 0Q453-96 442.5-106.35T432-132v-120q0-15.3 10.29-25.65Q452.58-288 467.79-288t25.71 10.35Q504-267.3 504-252v120q0 15.3-10.29 25.65Q483.42-96 468.21-96ZM612-96q-15.3 0-25.65-10.35Q576-116.7 576-132v-120q0-15.3 10.35-25.65Q596.7-288 612-288h168q15.3 0 25.65 10.35Q816-267.3 816-252v120q0 15.3-10.35 25.65Q795.3-96 780-96H612Z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M263.63-96Q254-96 247-103.22q-7-7.21-7-16.83v-144.33q0-9.62 7.22-16.62 7.22-7 16.85-7h96.3q9.63 0 16.63 7.2 7 7.2 7 16.8 0 9.6-7.2 16.8-7.2 7.2-16.8 7.2h-72v24h72q9.6 0 16.8 7.23 7.2 7.22 7.2 16.86v72.27q0 9.64-7.22 16.64t-16.85 7h-96.3ZM504-167.88v48.23q0 9.65-7.2 16.65-7.2 7-16.8 7-9.6 0-16.8-7.2-7.2-7.2-7.2-16.8v-150q0-8 5-13t13-5h77.65q10.35 0 17.35 7.2 7 7.2 7 16.8 0 9.6-7.2 16.8-7.2 7.2-16.8 7.2h-48v24h24q9.6 0 16.8 7.2 7.2 7.2 7.2 16.8 0 9.65-7.2 16.88-7.2 7.24-16.8 7.24h-24ZM647.83-240h-24.16q-9.67 0-16.67-7.2-7-7.2-7-16.8 0-9.6 7.22-16.8 7.22-7.2 16.85-7.2h96.3q9.63 0 16.63 7.2 7 7.2 7 16.8 0 9.62-7.2 16.84-7.2 7.22-16.8 7.22h-24v120.31q0 9.63-7.2 16.63-7.2 7-16.8 7-9.67 0-16.92-7.2-7.25-7.2-7.25-16.8v-120ZM288-144h48v-24h-48v24Zm-88-240 21 21q7 7.36 7 17.18T221-329q-7 7-16.82 7T187-329l-65.87-65.87Q110-406 110-420.18q0-14.18 11-24.82l66-66q7.36-7 17.18-7t16.82 7q7 7 7 16.82T221-477l-21 21h560l-21-21q-7-7.36-7-17.18t7-16.82q7-7 16.82-7t17.18 7l65.87 65.87Q850-434 850-419.82q0 14.18-11 24.82l-66 66q-7.36 7-17.18 7T739-329q-7-7-7-16.82t7-17.18l21-21H200ZM96-576v-33q0-22 12-39.5t32.18-26.55Q163-685 187.87-690.5q24.87-5.5 52-5.5t51.91 5.48Q316.57-685.04 340-675q20 9 32 26.5t12 39.5v33H96Zm480 0v-33q0-22 12-39.5t32.18-26.55Q643-685 667.87-690.5q24.87-5.5 52-5.5t51.91 5.48Q796.57-685.04 820-675q20 9 32 26.5t12 39.5v33H576ZM239.79-720Q210-720 189-741.21t-21-51Q168-822 189.21-843t51-21Q270-864 291-842.79t21 51Q312-762 290.79-741t-51 21Zm480 0Q690-720 669-741.21t-21-51Q648-822 669.21-843t51-21Q750-864 771-842.79t21 51Q792-762 770.79-741t-51 21Z"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="m552-456 49 63q1 1 17.76 9Q633-384 639-396.5q6-12.5-2-23.5l-45-60 46-61q8-11 1.65-23-6.36-12-20.65-12-5 0-9.77 2.45-4.76 2.46-8.23 6.55l-49 63v-48q0-10.4-6.8-17.2-6.8-6.8-17.2-6.8-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-48Zm-216 72h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-68q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-72v-28h72q10.4 0 17.2-6.8 6.8-6.8 6.8-17.2 0-10.4-6.8-17.2-6.8-6.8-17.2-6.8h-96q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.2 6.9 17.1 6.9 6.9 17.1 6.9Zm24-40v-36h48v36h-48ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Z"/></svg>

After

Width:  |  Height:  |  Size: 824 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M288-384h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-68q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-72v-28h72q10.4 0 17.2-6.8 6.8-6.8 6.8-17.2 0-10.4-6.8-17.2-6.8-6.8-17.2-6.8h-96q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.2 6.9 17.1 6.9 6.9 17.1 6.9Zm24-40v-36h48v36h-48Zm192-32 49 63q1 1 17.76 9Q585-384 591-396.5q6-12.5-2-23.5l-45-60 46-61q8-11 1.65-23-6.36-12-20.65-12-5 0-9.77 2.45-4.76 2.46-8.23 6.55l-49 63v-48q0-10.4-6.8-17.2-6.8-6.8-17.2-6.8-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-48Zm144 0v24q0 9.6 7.2 16.8 7.2 7.2 16.8 7.2 9.6 0 16.8-7.2 7.2-7.2 7.2-16.8v-24h24q9.6 0 16.8-7.2 7.2-7.2 7.2-16.8 0-9.6-7.2-16.8-7.2-7.2-16.8-7.2h-24v-24q0-9.6-7.2-16.8-7.2-7.2-16.8-7.2-9.6 0-16.8 7.2-7.2 7.2-7.2 16.8v24h-24q-9.6 0-16.8 7.2-7.2 7.2-7.2 16.8 0 9.6 7.2 16.8 7.2 7.2 16.8 7.2h24ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M432-504h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-64q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-72v-32h72q10.4 0 17.2-6.8 6.8-6.8 6.8-17.2 0-10.4-6.8-17.2-6.8-6.8-17.2-6.8h-96q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.2 6.9 17.1 6.9 6.9 17.1 6.9Zm24-40v-32h48v32h-48ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Zm120-264h32v72q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-72h32v120q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9H312q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-120Zm240 96h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-96q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-24Zm0-48v-48h48v48h-48Z"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="m552-456 49 63q1 1 17.76 9Q633-384 639-396.5q6-12.5-2-23.5l-45-60 46-61q8-11 1.65-23-6.36-12-20.65-12-5 0-9.77 2.45-4.76 2.46-8.23 6.55l-49 63v-48q0-10.4-6.8-17.2-6.8-6.8-17.2-6.8-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-48Zm-144-72-38 114q-4 11 3.08 20.5 7.09 9.5 19.13 9.5 7.79 0 13.36-4.33 5.57-4.34 7.43-11.67l48-144q4-12-3.09-22T439-576H336q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h72ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Z"/></svg>

After

Width:  |  Height:  |  Size: 761 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="m348-528-38 114q-4 11 3.08 20.5 7.09 9.5 19.13 9.5 7.79 0 13.36-4.06 5.57-4.07 7.43-10.94l49-145q5-12-3-22t-20-10h-96q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h65Zm144 72 50 64q1.64 2.18 18.05 8Q574-384 580-396.5t-2-23.5l-45-60 46-61q8-11 1.76-23-6.25-12-20.3-12-5.46 0-10.46 2-5 2-8.21 6.05L492-504v-48q0-10.4-6.8-17.2-6.8-6.8-17.2-6.8-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-48Zm156 0v24q0 9.6 7.2 16.8 7.2 7.2 16.8 7.2 9.6 0 16.8-7.2 7.2-7.2 7.2-16.8v-24h24q9.6 0 16.8-7.2 7.2-7.2 7.2-16.8 0-9.6-7.2-16.8-7.2-7.2-16.8-7.2h-24v-24q0-9.6-7.2-16.8-7.2-7.2-16.8-7.2-9.6 0-16.8 7.2-7.2 7.2-7.2 16.8v24h-24q-9.6 0-16.8 7.2-7.2 7.2-7.2 16.8 0 9.6 7.2 16.8 7.2 7.2 16.8 7.2h24ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Z"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="m497-648-38 114q-4 11 3.08 20.5 7.09 9.5 19.13 9.5 7.79 0 13.36-4.06 5.57-4.07 7.43-10.94l49-145q4-12-3.36-22-7.37-10-19.64-10h-96q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h65ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Zm120-264h32v72q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-72h32v120q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9H312q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-120Zm240 96h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-96q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-24Zm0-48v-48h48v48h-48Z"/></svg>

After

Width:  |  Height:  |  Size: 1005 B

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="m552-456 49 63q1 1 17.76 9Q633-384 639-396.5q6-12.5-2-23.5l-45-60 46-61q8-11 1.65-23-6.36-12-20.65-12-5 0-9.77 2.45-4.76 2.46-8.23 6.55l-49 63v-48q0-10.4-6.8-17.2-6.8-6.8-17.2-6.8-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-48Zm-216 72h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.2 6.9 17.1 6.9 6.9 17.1 6.9Zm24-116v-36h48v36h-48Zm0 76v-36h48v36h-48ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Z"/></svg>

After

Width:  |  Height:  |  Size: 769 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M288-384h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.2 6.9 17.1 6.9 6.9 17.1 6.9Zm24-40v-36h48v36h-48Zm0-76v-36h48v36h-48Zm192 44 49 63q1 1 17.76 9Q585-384 591-396.5q6-12.5-2-23.5l-45-60 46-61q8-11 1.65-23-6.36-12-20.65-12-5 0-9.77 2.45-4.76 2.46-8.23 6.55l-49 63v-48q0-10.4-6.8-17.2-6.8-6.8-17.2-6.8-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-48Zm144 0v24q0 9.6 7.2 16.8 7.2 7.2 16.8 7.2 9.6 0 16.8-7.2 7.2-7.2 7.2-16.8v-24h24q9.6 0 16.8-7.2 7.2-7.2 7.2-16.8 0-9.6-7.2-16.8-7.2-7.2-16.8-7.2h-24v-24q0-9.6-7.2-16.8-7.2-7.2-16.8-7.2-9.6 0-16.8 7.2-7.2 7.2-7.2 16.8v24h-24q-9.6 0-16.8 7.2-7.2 7.2-7.2 16.8 0 9.6 7.2 16.8 7.2 7.2 16.8 7.2h24ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Z"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M432-504h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.2 6.9 17.1 6.9 6.9 17.1 6.9Zm24-116v-36h48v36h-48Zm0 76v-36h48v36h-48ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Zm120-264h32v72q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-72h32v120q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9H312q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-120Zm240 96h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-96q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-24Zm0-48v-48h48v48h-48Z"/></svg>

After

Width:  |  Height:  |  Size: 1004 B

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M408-432h-72q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v72q0 10.2 6.9 17.1 6.9 6.9 17.1 6.9h72v24Zm-48-64v-40h48v40h-48Zm192 40 49 63q1 1 17.76 9Q633-384 639-396.5q6-12.5-2-23.5l-45-60 46-61q8-11 1.65-23-6.36-12-20.65-12-5 0-9.77 2.45-4.76 2.46-8.23 6.55l-49 63v-48q0-10.4-6.8-17.2-6.8-6.8-17.2-6.8-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-48ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Z"/></svg>

After

Width:  |  Height:  |  Size: 824 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M360-432h-72q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v72q0 10.2 6.9 17.1 6.9 6.9 17.1 6.9h72v24Zm-48-64v-40h48v40h-48Zm192 40 49 63q1 1 17.76 9Q585-384 591-396.5q6-12.5-2-23.5l-45-60 46-61q8-11 1.65-23-6.36-12-20.65-12-5 0-9.77 2.45-4.76 2.46-8.23 6.55l-49 63v-48q0-10.4-6.8-17.2-6.8-6.8-17.2-6.8-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-48Zm144 0v24q0 9.6 7.2 16.8 7.2 7.2 16.8 7.2 9.6 0 16.8-7.2 7.2-7.2 7.2-16.8v-24h24q9.6 0 16.8-7.2 7.2-7.2 7.2-16.8 0-9.6-7.2-16.8-7.2-7.2-16.8-7.2h-24v-24q0-9.6-7.2-16.8-7.2-7.2-16.8-7.2-9.6 0-16.8 7.2-7.2 7.2-7.2 16.8v24h-24q-9.6 0-16.8 7.2-7.2 7.2-7.2 16.8 0 9.6 7.2 16.8 7.2 7.2 16.8 7.2h24ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M504-552h-72q-10.4 0-17.2 6.8-6.8 6.8-6.8 17.2 0 10.4 6.8 17.2 6.8 6.8 17.2 6.8h96q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v72q0 10.2 6.9 17.1 6.9 6.9 17.1 6.9h72v24Zm-48-64v-40h48v40h-48ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Zm120-264h32v72q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-72h32v120q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-144q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9H312q-10.2 0-17.1 6.9-6.9 6.9-6.9 17.1v144q0 10.4 6.8 17.2 6.8 6.8 17.2 6.8 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-120Zm240 96h72q10.2 0 17.1-6.9 6.9-6.9 6.9-17.1v-96q0-10.2-6.9-17.1-6.9-6.9-17.1-6.9h-96q-10.4 0-17.2 6.78-6.8 6.79-6.8 17.17v143.67q0 10.38 6.8 17.38 6.8 7 17.2 7 10.4 0 17.2-6.8 6.8-6.8 6.8-17.2v-24Zm0-48v-48h48v48h-48Z"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M426-384q-8 0-13-5t-5-13v-156q0-8 5-13t13-5h102q10.2 0 17.1 6.9 6.9 6.9 6.9 17.1v48q0 10.2-6.9 17.1-6.9 6.9-17.1 6.9 10.2 0 17.1 6.9 6.9 6.9 6.9 17.1v48q0 10.2-6.9 17.1-6.9 6.9-17.1 6.9H426Zm30-120h48v-24h-48v24Zm0 72h48v-24h-48v24Zm-240 48q-10.4 0-17.2-6.8-6.8-6.8-6.8-17.2v-144q0-10.2 6.9-17.1 6.9-6.9 17.1-6.9h96q10.2 0 17.1 6.9 6.9 6.9 6.9 17.1v144q0 10.4-6.8 17.2-6.8 6.8-17.2 6.8-10.4 0-17.2-6.8-6.8-6.8-6.8-17.2v-24h-48v23.72q0 10.28-6.8 17.28-6.8 7-17.2 7Zm24-96h48v-48h-48v48Zm408 96q-10.2 0-17.1-6.9-6.9-6.9-6.9-17.1v-144q0-10.2 6.9-17.1 6.9-6.9 17.1-6.9h96q10.2 0 17.1 6.9 6.9 6.9 6.9 17.1v24q0 10.4-6.8 17.2-6.8 6.8-17.2 6.8-10.4 0-17.2-6.8-6.8-6.8-6.8-17.2h-48v96h48q0-10 6.8-17t17.2-7q10.4 0 17.2 6.8 6.8 6.8 6.8 17.2v24q0 10.2-6.9 17.1-6.9 6.9-17.1 6.9h-96Z"/></svg>

After

Width:  |  Height:  |  Size: 875 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M444-261 341-158q-11 11-25.5 11T290-158q-11-11-11-25.5t11-25.5l154-153v-82h-82L208-290q-11 11-25.5 11T157-290q-11-11-11-25.5t11-25.5l104-103H131q-14 0-24.5-10.5T96-480q0-14 10.5-25t25.5-11h129L158-618q-11-11-11-25.5t11-25.5q11-11 25.5-11t25.5 11l153 153h82v-82L290-750q-11-11-11-25.5t11-25.5q11-11 25.5-11t25.5 11l103 102v-129q0-14 10.5-25t25.5-11q14 0 25 11t11 25v129l102-103q11-11 25.5-11t25.5 11q11 11 11 25.5T669-751L516-598v82h82l152-153q11-11 25.5-11t25.5 11q11 11 11 25.5T801-618L699-516h129q14 0 25 11t11 25q0 15-11 25.5T828-444H699l103 103q11 11 11 25.5T802-290q-11 11-25.5 11T751-290L598-444h-82v82l153 154q11 11 11 25.5T669-157q-11 11-25.5 11T618-157L516-261v130q0 14-11 24.5T480-96q-15 0-25.5-10.5T444-132v-129Z"/></svg>

After

Width:  |  Height:  |  Size: 826 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M479.75-696q-34.75 0-59.25-24.75t-24.5-59.5q0-34.75 24.75-59.25t59.5-24.5q34.75 0 59.25 24.75t24.5 59.5q0 34.75-24.75 59.25t-59.5 24.5ZM360-144v-420H180.28q-15.28 0-25.78-10.29-10.5-10.29-10.5-25.5t10.35-25.71Q164.7-636 180-636h600q15.3 0 25.65 10.29Q816-615.42 816-600.21t-10.35 25.71Q795.3-564 780-564H600v420.12q0 14.88-10.64 25.38Q578.72-108 563-108q-14 0-24.5-10T527-142l-8-186h-77l-8 186q-1 14-11.64 24-10.63 10-26.36 10-15.3 0-25.65-10.35Q360-128.7 360-144Z"/></svg>

After

Width:  |  Height:  |  Size: 567 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M480-696q-35 0-59.5-24.5T396-780q0-35 24.5-59.5T480-864q35 0 59.5 24.5T564-780q0 35-24.5 59.5T480-696ZM360-144v-427q-46-3-90.5-12T180-603q-15-4-23-17t-4-27q4-14 18-20.5t29-2.5q69 17 139 25.5t141 8.5q71 0 141-8.5T760-670q15-4 29 3t18 21q4 14-4 26.5T780-603q-45 11-89.5 20T600-571v427q0 15-10.5 25.5T563-108q-14 0-24.5-10.5T527-143l-8-187h-77l-8 188q-1 14-11.5 24T396-108q-15 0-25.5-10.5T360-144Z"/></svg>

After

Width:  |  Height:  |  Size: 497 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M384-108q-79.68 0-135.84-56.16T192-300q0-61 33.5-109t87.5-69q14-5 28 .5t19 19.5q5 14-.5 28T340-411q-33 14-54.5 43.5T264-300q0 50 35 85t85 35q28 0 53-12.5t42-34.5q9-12 23.26-14.5Q516.52-244 529-235q12 9 14 24t-7 27q-26 35-66 55.5T384-108Zm348.21 0q-15.21 0-25.71-10.35T696-144v-156H504q-29.7 0-50.85-20Q432-340 432-372v-216q0-29 20.56-50.5Q473.13-660 502-660q23 0 37 9.5t26 25.5q32 43 73.5 70.5T731-519q16 2 26.5 12.76t10.5 26q0 15.24-11 25.74-11 10.5-25.93 8.59Q690-451 652-466.5 614-482 576-511v127h109q35 0 59 24.67 24 24.68 24 59.33v156.24q0 14.76-10.29 25.26-10.29 10.5-25.5 10.5ZM503.75-696q-34.75 0-59.25-24.75t-24.5-59.5q0-34.75 24.75-59.25t59.5-24.5q34.75 0 59.25 24.75t24.5 59.5q0 34.75-24.75 59.25t-59.5 24.5Z"/></svg>

After

Width:  |  Height:  |  Size: 822 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M336.1-96Q256-96 200-152.16T144-288q0-67.83 42.5-120.92Q229-462 295-476q14-3 27 5.5t16 22.5q3 14-5.5 27T310-405q-42 9-68 41.8-26 32.81-26 75.2 0 50 35 85t85 35q41 0 73-24.5t43-64.5q4-14 17-22t27-4q14 4 22 17t4 27q-17 63-68.63 103-51.64 40-117.27 40Zm323.65-588q-34.75 0-59.25-24.75t-24.5-59.5q0-34.75 24.75-59.25t59.5-24.5q34.75 0 59.25 24.75t24.5 59.5q0 34.75-24.75 59.25t-59.5 24.5ZM479-336q-38 0-59.5-31.5T413-435l59-165H368.24l-12.54 27.33Q350-559 336.5-553.5 323-548 309-554t-19.5-19.5Q284-587 290-601l10.86-26.98Q309-648 327.61-660q18.61-12 40.39-12h208q39 0 60.5 33t4.5 69l-65 162h96q29.7 0 50.85 21.15Q744-365.7 744-336v156.24q0 14.76-10.29 25.26-10.29 10.5-25.5 10.5t-25.71-10.35Q672-164.7 672-180v-156H479Z"/></svg>

After

Width:  |  Height:  |  Size: 819 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M479.75-732q-34.75 0-59.25-24.75t-24.5-59.5q0-34.75 24.75-59.25t59.5-24.5q34.75 0 59.25 24.75t24.5 59.5q0 34.75-24.75 59.25t-59.5 24.5ZM361-144v-463q-60-6-114-16t-103-26l18-67q82 22 161 33t156.5 11q77.5 0 156.5-11t162-33l18 67q-64 17-115.5 27T601-607v463h-72v-240h-96v240h-72Zm419.21-312q-15.21 0-25.71-10.29t-10.5-25.5q0-15.21 10.29-25.71t25.5-10.5q15.21 0 25.71 10.29t10.5 25.5q0 15.21-10.29 25.71t-25.5 10.5Zm0 156q-15.21 0-25.71-10.29t-10.5-25.5q0-15.21 10.29-25.71t25.5-10.5q15.21 0 25.71 10.29t10.5 25.5q0 15.21-10.29 25.71t-25.5 10.5Zm0 156q-15.21 0-25.71-10.29t-10.5-25.5q0-15.21 10.29-25.71t25.5-10.5q15.21 0 25.71 10.29t10.5 25.5q0 15.21-10.29 25.71t-25.5 10.5Z"/></svg>

After

Width:  |  Height:  |  Size: 774 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M192-300v-240q0-15.3 10.29-25.65Q212.58-576 227.79-576t25.71 10.35Q264-555.3 264-540v240q0 15.3-10.29 25.65Q243.42-264 228.21-264t-25.71-10.35Q192-284.7 192-300Zm252 0v-240q0-15.3 10.29-25.65Q464.58-576 479.79-576t25.71 10.35Q516-555.3 516-540v240q0 15.3-10.29 25.65Q495.42-264 480.21-264t-25.71-10.35Q444-284.7 444-300ZM132-144q-15.3 0-25.65-10.29Q96-164.58 96-179.79t10.35-25.71Q116.7-216 132-216h696q15.3 0 25.65 10.29Q864-195.42 864-180.21t-10.35 25.71Q843.3-144 828-144H132Zm564-156v-240q0-15.3 10.29-25.65Q716.58-576 731.79-576t25.71 10.35Q768-555.3 768-540v240q0 15.3-10.29 25.65Q747.42-264 732.21-264t-25.71-10.35Q696-284.7 696-300Zm120-324H139q-17.92 0-30.46-12.49T96-666.83V-693q0-12 6.5-23t17.5-16l328-164q15.11-8 32-8t32 8l326 163q12 6 19 17.5t7 25.04V-672q0 20.4-13.8 34.2Q836.4-624 816-624Z"/></svg>

After

Width:  |  Height:  |  Size: 907 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744H504q-60 0-102 42t-42 102v240q0 60 42 102t102 42h312q0 30-21.15 51T744-144H216Zm288-144q-29.7 0-50.85-21.15Q432-330.3 432-360v-240q0-29.7 21.15-50.85Q474.3-672 504-672h288q29.7 0 50.85 21.15Q864-629.7 864-600v240q0 29.7-21.15 50.85Q821.7-288 792-288H504Zm144-132q25 0 42.5-17.5T708-480q0-25-17.5-42.5T648-540q-25 0-42.5 17.5T588-480q0 25 17.5 42.5T648-420Z"/></svg>

After

Width:  |  Height:  |  Size: 588 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M480.24-408Q540-408 582-450.24q42-42.24 42-102T581.76-654q-42.24-42-102-42T378-653.76q-42 42.24-42 102T378.24-450q42.24 42 102 42ZM216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-528q0-29.7 21.15-50.85Q186.3-816 216-816h528q29.7 0 50.85 21.15Q816-773.7 816-744v528q0 29.7-21.15 50.85Q773.7-144 744-144H216Zm0-72h528v-53q-57-45-124.5-68T480-360q-72 0-139.5 23T216-269v53Z"/></svg>

After

Width:  |  Height:  |  Size: 472 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M480-864q79.68 0 149.28 30.24T751.2-751.2q52.32 52.32 82.56 121.92Q864-559.68 864-480q0 78.72-30.24 148.8-30.24 70.08-82.56 122.4-52.32 52.32-121.92 82.56Q559.68-96 480-96q-78.72 0-148.8-30.24-70.08-30.24-122.4-82.56-52.32-52.32-82.56-122.4Q96-401.28 96-480q0-79.68 30.24-149.28T208.8-751.2q52.32-52.32 122.4-82.56Q401.28-864 480-864Zm-72 216.21Q408-618 429.21-597t51 21Q510-576 531-597.21t21-51Q552-678 530.79-699t-51-21Q450-720 429-698.79t-21 51ZM480-528q-54 0-99 19t-45 65v120q0 45.37 45.6 61.68Q427.2-246 480-246q10.63 0 17.81-7.19Q505-260.38 505-271q0-11-7.19-17.5-7.18-6.5-17.81-6.5-4 20-24.5 12.5T412-301q-11-5-11-17t11-18q16-7 33.5-9.5t34.42-2.5q26.08 0 50.58 7.5T576-318v3q0 11 7.03 18 7.04 7 16.97 7 10.82 0 17.41-10.42T624-324v-120q0-46-45-65t-99-19Zm.11 144Q460-384 446-397.89q-14-13.88-14-34Q432-452 445.89-466q13.88-14 34-14Q500-480 514-466.11q14 13.88 14 34Q528-412 514.11-398q-13.88 14-34 14Z"/></svg>

After

Width:  |  Height:  |  Size: 1011 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M480-864q50 0 85 35t35 85q0 50-35 85t-85 35q-50 0-85-35t-35-85q0-50 35-85t85-35Zm.5 288q42.5 0 86 10t81.5 29q39 20 55.5 39t16.5 45v235q0 28-19 48t-45.67 20Q642-150 633-158.5q-9-8.5-9-29.5v-16q0-41-37.5-62.5T480-288q-57 0-94 16t-47 46q-3 10 2 18.5t15 13.5q28 12 60.5 19t63.5 7q14.94 0 25.47 10.54t10.53 25.5q0 14.96-10.53 25.46T480-96q-38 0-80.5-9T322-130q-40-18-61-37.5T240-219v-235q0-26 16.5-45.5t54.49-37.53Q350-556 394-566q44-10 86.5-10Zm-.29 240Q510-336 531-357.21t21-51Q552-438 530.79-459t-51-21Q450-480 429-458.79t-21 51Q408-378 429.21-357t51 21Z"/></svg>

After

Width:  |  Height:  |  Size: 655 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M237-285q54-38 115.5-56.5T480-360q66 0 127.5 18.5T723-285q35-41 52-91t17-104q0-129.67-91.23-220.84-91.23-91.16-221-91.16Q350-792 259-700.84 168-609.67 168-480q0 54 17 104t52 91Zm243-123q-60 0-102-42t-42-102q0-60 42-102t102-42q60 0 102 42t42 102q0 60-42 102t-102 42Zm.28 312Q401-96 331-126t-122.5-82.5Q156-261 126-330.96t-30-149.5Q96-560 126-629.5q30-69.5 82.5-122T330.96-834q69.96-30 149.5-30t149.04 30q69.5 30 122 82.5T834-629.28q30 69.73 30 149Q864-401 834-331t-82.5 122.5Q699-156 629.28-126q-69.73 30-149 30Z"/></svg>

After

Width:  |  Height:  |  Size: 614 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M480-168q44 0 84.5-13t78.5-34L498-360h-18q-54 0-105.5 12.5T276-309.22q-16 7.93-18 26.27-2 18.35 11 31.24Q313-212 367-190t113 22Zm263 52-47-46q-48 32-103 49T480-96q-79 0-149-30t-122.5-82.5Q156-261 126-331T96-480q0-58 17-112.5T162-695l-47-48q-11-11-10.5-25.5T116-794q11-11 25.5-11t25.5 11l627 628q11 11 11 25t-11 25q-11 11-25.5 11T743-116Zm45-176q-9 0-17.5-3.5T755-306L611-450q-7-7-8-17t4-18q8-15 12.5-32.5T624-552q0-60-42-102t-102-42q-17 0-34.5 4.5T413-679q-8 5-18 4t-17-8l-72-72q-7-7-10.5-15.5T292-788q0-12 6-22.5t18-16.5q38-19 79.5-28t84.5-9q80 0 149.5 30t122 82.5Q804-699 834-629.5T864-480q0 43-9.5 84.5T827-316q-5 12-16 18t-23 6Z"/></svg>

After

Width:  |  Height:  |  Size: 735 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M624-216v-36H516q-29.7 0-50.85-21.15Q444-294.3 444-324v-312H336v36q0 29.7-21.15 50.85Q293.7-528 264-528h-96q-29.7 0-50.85-21.18Q96-570.35 96-600.09v-144.17Q96-774 117.15-795q21.15-21 50.85-21h96q29.7 0 50.85 21.15Q336-773.7 336-744v36h288v-36.16Q624-774 645.15-795q21.15-21 50.85-21h96q29.7 0 50.85 21.18Q864-773.65 864-743.91v144.17Q864-570 842.85-549 821.7-528 792-528h-96q-29.7 0-50.85-21.15Q624-570.3 624-600v-36H516v312h108v-36.16Q624-390 645.15-411q21.15-21 50.85-21h96q29.7 0 50.85 21.18Q864-389.65 864-359.91v144.17Q864-186 842.85-165 821.7-144 792-144h-96q-29.7 0-50.85-21.15Q624-186.3 624-216Z"/></svg>

After

Width:  |  Height:  |  Size: 706 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M660.49-144Q595-144 549.5-189.5T504-300q0-65 45.5-110.5T660-456q65 0 110.5 45.5T816-299.74q0 22.74-6.5 43.74-6.5 21-17.5 38.84L886-124q5 5 8 11.53 3 6.53 3 13.5T894-85q-3 7-8.29 12.29-4.4 4.42-11.01 7.06Q868.1-63 861.05-63q-7.05 0-13.55-2.5Q841-68 836-73l-95-94q-18 11-38.34 17-20.34 6-42.17 6ZM228-144q-65 0-110.5-45.5T72-300q0-65 45.5-110.5T228-456q65 0 110.5 45.5T384-300q0 65-45.5 110.5T228-144Zm432.25-72q34.75 0 59.25-24.75t24.5-59.5q0-34.75-24.75-59.25t-59.5-24.5q-34.75 0-59.25 24.75t-24.5 59.5q0 34.75 24.75 59.25t59.5 24.5ZM228-576q-65 0-110.5-45.5T72-732q0-65 45.5-110.5T228-888q65 0 110.5 45.5T384-732q0 65-45.5 110.5T228-576Zm432 0q-65 0-110.5-45.5T504-732q0-65 45.5-110.5T660-888q65 0 110.5 45.5T816-732q0 65-45.5 110.5T660-576Z"/></svg>

After

Width:  |  Height:  |  Size: 845 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M216-96q-50 0-85-35t-35-85q0-39 24-70t60-45v-300q-36-14-60-44.5T96-744q0-51 35-85.5t85-34.5q39 0 69.5 23.5T330-780h301q13-38 44-61t69-23q51 0 85.5 34.5T864-744q0 38-23 69t-61 44v301q37 14 60.5 44.5T864-216q0 50-34.5 85T744-96q-38 0-69-24t-45-60H330q-14 36-44.5 60T216-96Zm114-156h301q10-28 30-48.5t47-30.5v-300q-27-10-47.5-30T630-708H330q-10 27-30 47t-48 30v301q28 10 48 30t30 48Z"/></svg>

After

Width:  |  Height:  |  Size: 483 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M444.28-144q-15.28 0-25.78-10.29-10.5-10.29-10.5-25.5t10.43-25.71q10.42-10.5 25.84-10.5H476l-13.29-139.2Q445-357 427-358.5q-18-1.5-37-1.5-17 0-32.5 1.5T325-355l14 60q4 14.18-4.5 26.59T311.75-252q-14.25 4-26.72-3.96Q272.56-263.92 269-278l-14.21-60q-15.79 5-31.29 10.5T192-316q-14 5-28-.5T144-336q-6-14-1-27.5t19-19.5q19-8 37.5-15.5T238-411l-44-190q-42-4-70-34.31-28-30.32-28-73.11 0-44.58 31.5-76.08T204-816q45 0 76.5 31.5T312-708q0 29.11-13 53.05Q286-631 263-617l45 191q20-3 40.46-4.5T390-432q17 0 33 .5t33 2.5l-10-104q-32-11-53-38.76-21-27.76-21-64.47 0-44.77 31.5-76.27Q435-744 480-744t76.5 31.5Q588-681 588-636q0 34.55-19.5 62.27Q549-546 518-535l11 118q35 7 68.5 16t67.5 19l33-234q-23-14-37.5-38.42T646-707.78q0-45.22 31.5-76.72T754-816q45 0 76.5 31.63 31.5 31.62 31.5 76.8Q862-666 835-636q-27 30-66 35l-32 235q11 2 21.67 3.07 10.66 1.07 21.33 1.93 15 1 25.5 11.29t10.5 25.5q0 15.21-10.5 25.71T780-289l-27-2q-13.5-1-27-3l-1 11q-2 15-13.95 24t-27 7Q669-254 660-265.79T653-293l2-16q-29-9-59-17.5T536-342l12 126h39.81q15.38 0 25.79 10.29 10.4 10.29 10.4 25.5t-10.33 25.71Q603.33-144 588.06-144H444.28Z"/></svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M611.95-192Q492-192 408-276q-84-84-84-203.95Q324-599 408-683.5 492-768 611.95-768 731-768 815.5-683.5 900-599 900-479.95 900-360 815.5-276q-84.5 84-203.55 84Zm36.11-302.09v-93.82q0-15.34-10.37-25.72Q627.33-624 612-624q-15.3 0-25.65 10.28Q576-603.45 576-588.26v108.11q0 7.15 2.5 14.15t7.5 12l83.05 82.17Q680-361 694.67-361q14.66 0 25.33-11 11-10.67 11-25.33 0-14.67-10.82-25.5l-72.12-71.26ZM156.26-600q-15.26 0-25.76-10.29-10.5-10.29-10.5-25.5t10.32-25.71q10.33-10.5 25.59-10.5h71.83q15.26 0 25.76 10.29 10.5 10.29 10.5 25.5t-10.32 25.71Q243.35-600 228.09-600h-71.83ZM108-444q-15.3 0-25.65-10.29Q72-464.58 72-479.79t10.35-25.71Q92.7-516 108-516h120q15.3 0 25.65 10.29Q264-495.42 264-480.21t-10.35 25.71Q243.3-444 228-444H108Zm48.26 156q-15.26 0-25.76-10.29-10.5-10.29-10.5-25.5t10.32-25.71q10.33-10.5 25.59-10.5h71.83q15.26 0 25.76 10.29 10.5 10.29 10.5 25.5t-10.32 25.71Q243.35-288 228.09-288h-71.83Z"/></svg>

After

Width:  |  Height:  |  Size: 1003 B

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M216-144q-29.7 0-50.85-21.5Q144-187 144-216v-528q0-29 21.15-50.5T216-816h528q29.7 0 50.85 21.5Q816-773 816-744v528q0 29-21.15 50.5T744-144H216Zm0-72h528v-408H216v408Z"/></svg>

After

Width:  |  Height:  |  Size: 269 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M312-240q-29.7 0-50.85-21.15Q240-282.3 240-312v-480q0-29.7 21.15-50.85Q282.3-864 312-864h480q29.7 0 50.85 21.15Q864-821.7 864-792v480q0 29.7-21.15 50.85Q821.7-240 792-240H312ZM168-96q-29.7 0-50.85-21.15Q96-138.3 96-168v-516q0-15.3 10.29-25.65Q116.58-720 131.79-720t25.71 10.35Q168-699.3 168-684v516h516q15.3 0 25.65 10.29Q720-147.42 720-132.21t-10.35 25.71Q699.3-96 684-96H168Zm144-624h480v-72H312v72Z"/></svg>

After

Width:  |  Height:  |  Size: 504 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M312-240q-29.7 0-50.85-21.15Q240-282.3 240-312v-243L49-746q-11-11-11-25.5T49-797q11-11 25.5-11t25.5 11l697 697q11 11 11 25t-11 25q-11 11-25.5 11T746-50L555-240H312ZM168-96q-29.7 0-50.85-21.15Q96-138.3 96-168v-516q0-15.3 10.29-25.65Q116.58-720 131.79-720t25.71 10.35Q168-699.3 168-684v516h504q15.3 0 25.65 10.29Q708-147.42 708-132.21t-10.35 25.71Q687.3-96 672-96H168Zm590-144L309-689q-8-8-3.83-19.5Q309.33-720 321-720h471v-72l-452 29q-31 2-46-24.54-15-26.53 2-52.5 8-10.96 19.02-17.46Q326.05-864 340-864h452q29.7 0 50.85 21.15Q864-821.7 864-792v480q0 30-21 51t-51 21h-34Z"/></svg>

After

Width:  |  Height:  |  Size: 673 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M216-144q-29.7 0-50.85-21.15Q144-186.3 144-216v-498l-29-29q-11-11-11-25t11-25q11-11 25.5-11t25.5 11l627.92 627.92Q805-154 805-140q0 14-11 25.48Q783-104 769-104t-25-11l-30-29H216Zm0-72h426L216-642v426Zm564-72q-13.5 0-24.75-9.22T744-324v-300H468q-14.22 0-27.11-5-12.89-5-23.98-16.09L307-755q-8-8-9.5-18.25t2.93-20.5Q304-804 312.5-810t20.5-6h411q29.7 0 50.85 21.15Q816-773.7 816-744v420q0 18-11.25 27T780-288Z"/></svg>

After

Width:  |  Height:  |  Size: 509 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M372.28-600q-15.28 0-25.78-10.29-10.5-10.29-10.5-25.5t10.34-25.71q10.34-10.5 25.62-10.5h215.76q15.28 0 25.78 10.29 10.5 10.29 10.5 25.5t-10.34 25.71Q603.32-600 588.04-600H372.28ZM264-48q-29.7 0-50.85-21.15Q192-90.3 192-120v-720q0-29.7 21.15-50.85Q234.3-912 264-912h432q29.7 0 50.85 21.15Q768-869.7 768-840v720q0 29.7-21.15 50.85Q725.7-48 696-48H264Zm0-192h432v-480H264v480Z"/></svg>

After

Width:  |  Height:  |  Size: 476 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M480.5-276q-29.5 0-51-20T408-345v-90q0-29 21.5-49t51-20q29.49 0 50.5 20 21 20 21 49v90q0 29-21 49-21.01 20-50.5 20Zm0 48q41.5 0 73-24t42.5-66q1.67-8.25 8.33-13.13Q611-336 619-336q12 0 19 9t4.09 20.2Q629-258 592-224t-88 42v62q0 10.4-6.8 17.2Q490.4-96 480-96q-10.4 0-17.2-6.8-6.8-6.8-6.8-17.2v-62q-51-8-87.5-42t-50.41-82.8Q315-318 322-327t19-9q8 0 14.67 4.87 6.66 4.88 8.33 13.13 11 42 43 66t73.5 24ZM84-384q-15.3 0-25.65-10.35Q48-404.7 48-420v-32q0-25 14-46t38-33q45-23 92-34t96-11q25.97 0 50.31 3 24.35 3 48.69 9 8 2 8.5 10t-7.2 11.75Q345-522 313.5-484.5T271-400.32q-2 7.32-7 11.82t-12 4.5H84Zm624 0q-7 0-12-4.5t-7-11.82Q678-447 646.5-484.5 615-522 571.7-542.25 564-546 564.5-554t8.5-10q24.34-6 48.69-9 24.34-3 50.31-3 49 0 96 11t92 34q24 12 38 33t14 46v32q0 15.3-10.35 25.65Q891.3-384 876-384H708ZM288-624q-50 0-85-35t-35-85q0-50 35-85t85-35q50 0 85 35t35 85q0 50-35 85t-85 35Zm384 0q-50 0-85-35t-35-85q0-50 35-85t85-35q50 0 85 35t35 85q0 50-35 85t-85 35Z"/></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M743-116 115-743q-11-11-10.5-25.5T116-794q11-11 25.5-11t25.5 11l627 628q11 11 11 25t-11 25q-11 11-25.5 11T743-116Zm-71-508q-50 0-85-35t-35-85q0-50 35-85t85-35q50 0 85 35t35 85q0 50-35 85t-85 35ZM373-829q17 17 26 38.5t9 46.5q0 11-2 21.5t-6 20.5q-4 11-15.5 12t-19.5-7L241-822q-8-8-6-19t12-16q10-4 20-5.5t21-1.5q25 0 46.5 9t38.5 26Zm107 553q-29 0-50.5-20T408-345v-90q0-23 14.5-41t36.5-25l93 93v63q0 29-21 49t-51 20Zm0 180q-10 0-17-7t-7-17v-62q-51-8-87.5-42T318-307q-3-11 4-20t19-9q8 0 14.5 5t8.5 13q11 42 43 66t73 24q46 0 79.5-34.5T598-362l46 46q-10 52-48.5 89T504-182v62q0 10-7 17t-17 7ZM84-384q-15 0-25.5-10.5T48-420v-32q0-25 14-46t38-33q45-23 92-34t96-11q26 0 50.5 3t48.5 9q8 2 8.5 10t-7.5 12q-43 20-74.5 57.5T271-400q-2 7-7 11.5t-12 4.5H84Zm624 0q-7 0-12-4.5t-7-11.5q-11-47-42.5-84.5T572-542q-8-4-7.5-12t8.5-10q24-6 48.5-9t50.5-3q49 0 96 11t92 34q24 12 38 33t14 46v32q0 15-10.5 25.5T876-384H708Z"/></svg>

After

Width:  |  Height:  |  Size: 999 B

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M240-528v-48q0-55 23-104t67-81l-69-69 34-34 76 76q26-13 53-20.5t56-7.5q29 0 56 7.5t53 20.5l76-76 34 34-68 69q44 32 66.5 81.5T720-576v48H240Zm347.79-84q15.21 0 25.71-10.29t10.5-25.5q0-15.21-10.29-25.71t-25.5-10.5q-15.21 0-25.71 10.29t-10.5 25.5q0 15.21 10.29 25.71t25.5 10.5Zm-216 0q15.21 0 25.71-10.29t10.5-25.5q0-15.21-10.29-25.71t-25.5-10.5q-15.21 0-25.71 10.29t-10.5 25.5q0 15.21 10.29 25.71t25.5 10.5ZM480.2-96Q380-96 310-165.86 240-235.71 240-336v-144h480v144q0 100.29-69.8 170.14Q580.4-96 480.2-96Z"/></svg>

After

Width:  |  Height:  |  Size: 607 B

+1
View File
@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M444-444H276q-15.3 0-25.65-10.29Q240-464.58 240-479.79t10.35-25.71Q260.7-516 276-516h168v-168q0-15.3 10.29-25.65Q464.58-720 479.79-720t25.71 10.35Q516-699.3 516-684v168h168q15.3 0 25.65 10.29Q720-495.42 720-480.21t-10.35 25.71Q699.3-444 684-444H516v168q0 15.3-10.29 25.65Q495.42-240 480.21-240t-25.71-10.35Q444-260.7 444-276v-168Z"/></svg>

After

Width:  |  Height:  |  Size: 433 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M480.21-144q-15.21 0-25.71-10.35T444-180v-264H180q-15.3 0-25.65-10.29Q144-464.58 144-479.79t10.35-25.71Q164.7-516 180-516h264v-264q0-15.3 10.29-25.65Q464.58-816 479.79-816t25.71 10.35Q516-795.3 516-780v264h264q15.3 0 25.65 10.29Q816-495.42 816-480.21t-10.35 25.71Q795.3-444 780-444H516v264q0 15.3-10.29 25.65Q495.42-144 480.21-144Z"/></svg>

After

Width:  |  Height:  |  Size: 434 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M780.21-672q-15.21 0-25.59-10.35-10.39-10.35-10.39-25.65v-36h-36.11q-15.35 0-25.74-10.35Q672-764.7 672-780q0-15.3 10.38-25.65Q692.77-816 708.12-816h36.11v-36q0-15.3 10.39-25.65Q765-888 780.21-888q15.21 0 25.5 10.35T816-852v36h35.79q15.21 0 25.71 10.29t10.5 25.5q0 15.21-10.35 25.56Q867.3-744.3 852-744.3h-36v36q0 15.3-10.29 25.8t-25.5 10.5ZM432-264q72 0 120-49t48-119q0-69-48-118.5T432-600q-72 0-120 49.5t-48 119q0 69.5 48 118.5t120 49Zm0-72q-42 0-69-27t-27-67.5q0-40.5 27-69t69-28.5q42 0 69 28.5t27 69q0 40.5-27 67.5t-69 27ZM120-144q-29 0-50.5-21.5T48-216v-432q0-29 21.5-50.5T120-720h120l50-67q11-14 26.18-21.5Q331.35-816 348-816h216q15.3 0 25.65 10.35Q600-795.3 600-780v54q0 22.5 15.75 38.25T654-672h18v18q0 22.5 15.75 38.25T726-600h54q15.3 0 25.65 10.35Q816-579.3 816-564v348q0 29-21.15 50.5T744-144H120Z"/></svg>

After

Width:  |  Height:  |  Size: 910 B

@@ -0,0 +1 @@
<svg fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960"><path d="M720-288h-60q-15.3 0-25.65-10.29Q624-308.58 624-323.79t10.35-25.71Q644.7-360 660-360h60v-60q0-15.3 10.29-25.65Q740.58-456 755.79-456t25.71 10.35Q792-435.3 792-420v60h60q15.3 0 25.65 10.29Q888-339.42 888-324.21t-10.35 25.71Q867.3-288 852-288h-60v60q0 15.3-10.29 25.65Q771.42-192 756.21-192t-25.71-10.35Q720-212.7 720-228v-60ZM168-144q-29 0-50.5-21.5T96-216v-528q0-29.7 21.5-50.85Q139-816 168-816h528q29.7 0 50.85 21.15Q768-773.7 768-744v180q0 15.3-10.29 25.65Q747.42-528 732.21-528t-25.71-10.35Q696-548.7 696-564v-60H168v408h450q15.3 0 25.65 10.29Q654-195.42 654-180.21t-10.35 25.71Q633.3-144 618-144H168Z"/></svg>

After

Width:  |  Height:  |  Size: 707 B

Some files were not shown because too many files have changed in this diff Show More