Compare commits
33 Commits
2021-11-08
...
2022-03-18
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0c0918659f | ||
|
|
081a4b7ffa | ||
|
|
0436df603d | ||
|
|
3125d12b41 | ||
|
|
eeb46bef33 | ||
|
|
368d991e6a | ||
|
|
ca9f420c8c | ||
|
|
bc20300c4b | ||
|
|
21383a2d9a | ||
|
|
ed1476872a | ||
|
|
29a5313677 | ||
|
|
11209a1a09 | ||
|
|
38436daabe | ||
|
|
aff25879da | ||
|
|
31210ca4f9 | ||
|
|
b9a544f57f | ||
|
|
6bdb06b3fa | ||
|
|
c77e5b5021 | ||
|
|
fde4a4d3c7 | ||
|
|
61f1d212ae | ||
|
|
52c0b8e272 | ||
|
|
77a00e1875 | ||
|
|
e99fedc45b | ||
|
|
a17ae67bff | ||
|
|
9ec56aa3b0 | ||
|
|
214992b385 | ||
|
|
f12725cda3 | ||
|
|
76159093b7 | ||
|
|
f14faba2ad | ||
|
|
393902efef | ||
|
|
4ef199e6af | ||
|
|
1518e3c338 | ||
|
|
ae1f2dd8a4 |
42
install.sh
@@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
ROOT_UID=0
|
||||
DEST_DIR=
|
||||
@@ -43,9 +43,9 @@ install() {
|
||||
|
||||
echo "Installing '${THEME_DIR}'..."
|
||||
|
||||
mkdir -p ${THEME_DIR}
|
||||
cp -r ${SRC_DIR}/{COPYING,AUTHORS} ${THEME_DIR}
|
||||
cp -r ${SRC_DIR}/src/index.theme ${THEME_DIR}
|
||||
mkdir -p ${THEME_DIR}
|
||||
cp -r ${SRC_DIR}/{COPYING,AUTHORS} ${THEME_DIR}
|
||||
cp -r ${SRC_DIR}/src/index.theme ${THEME_DIR}
|
||||
|
||||
cd ${THEME_DIR}
|
||||
sed -i "s/${name}/${name}${theme}${color}/g" index.theme
|
||||
@@ -79,19 +79,19 @@ install() {
|
||||
fi
|
||||
|
||||
if [[ ${color} == '-dark' ]]; then
|
||||
mkdir -p ${THEME_DIR}/{apps,categories,emblems,devices,mimes,places,status}
|
||||
mkdir -p ${THEME_DIR}/{apps,categories,emblems,devices,mimes,places,status}
|
||||
|
||||
cp -r ${SRC_DIR}/src/actions ${THEME_DIR}
|
||||
cp -r ${SRC_DIR}/src/apps/symbolic ${THEME_DIR}/apps
|
||||
cp -r ${SRC_DIR}/src/categories/symbolic ${THEME_DIR}/categories
|
||||
cp -r ${SRC_DIR}/src/emblems/symbolic ${THEME_DIR}/emblems
|
||||
cp -r ${SRC_DIR}/src/mimes/symbolic ${THEME_DIR}/mimes
|
||||
cp -r ${SRC_DIR}/src/devices/{16,22,24,symbolic} ${THEME_DIR}/devices
|
||||
cp -r ${SRC_DIR}/src/places/{16,22,24,symbolic} ${THEME_DIR}/places
|
||||
cp -r ${SRC_DIR}/src/status/{16,22,24,symbolic} ${THEME_DIR}/status
|
||||
cp -r ${SRC_DIR}/src/actions ${THEME_DIR}
|
||||
cp -r ${SRC_DIR}/src/apps/symbolic ${THEME_DIR}/apps
|
||||
cp -r ${SRC_DIR}/src/categories/symbolic ${THEME_DIR}/categories
|
||||
cp -r ${SRC_DIR}/src/emblems/symbolic ${THEME_DIR}/emblems
|
||||
cp -r ${SRC_DIR}/src/mimes/symbolic ${THEME_DIR}/mimes
|
||||
cp -r ${SRC_DIR}/src/devices/{16,22,24,symbolic} ${THEME_DIR}/devices
|
||||
cp -r ${SRC_DIR}/src/places/{16,22,24,symbolic} ${THEME_DIR}/places
|
||||
cp -r ${SRC_DIR}/src/status/{16,22,24,symbolic} ${THEME_DIR}/status
|
||||
|
||||
if [[ ${bold:-} == 'true' ]]; then
|
||||
cp -r ${SRC_DIR}/bold/* ${THEME_DIR}
|
||||
cp -r ${SRC_DIR}/bold/* ${THEME_DIR}
|
||||
fi
|
||||
|
||||
if [[ $DESKTOP_SESSION == '/usr/share/xsessions/budgie-desktop' ]]; then
|
||||
@@ -103,13 +103,13 @@ install() {
|
||||
sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/actions/32/*
|
||||
sed -i "s/#363636/#dedede/g" "${THEME_DIR}"/{actions,apps,categories,emblems,devices,mimes,places,status}/symbolic/*
|
||||
|
||||
cp -r ${SRC_DIR}/links/actions/{16,22,24,32,symbolic} ${THEME_DIR}/actions
|
||||
cp -r ${SRC_DIR}/links/devices/{16,22,24,symbolic} ${THEME_DIR}/devices
|
||||
cp -r ${SRC_DIR}/links/places/{16,22,24,symbolic} ${THEME_DIR}/places
|
||||
cp -r ${SRC_DIR}/links/status/{16,22,24,symbolic} ${THEME_DIR}/status
|
||||
cp -r ${SRC_DIR}/links/apps/symbolic ${THEME_DIR}/apps
|
||||
cp -r ${SRC_DIR}/links/categories/symbolic ${THEME_DIR}/categories
|
||||
cp -r ${SRC_DIR}/links/mimes/symbolic ${THEME_DIR}/mimes
|
||||
cp -r ${SRC_DIR}/links/actions/{16,22,24,32,symbolic} ${THEME_DIR}/actions
|
||||
cp -r ${SRC_DIR}/links/devices/{16,22,24,symbolic} ${THEME_DIR}/devices
|
||||
cp -r ${SRC_DIR}/links/places/{16,22,24,symbolic} ${THEME_DIR}/places
|
||||
cp -r ${SRC_DIR}/links/status/{16,22,24,symbolic} ${THEME_DIR}/status
|
||||
cp -r ${SRC_DIR}/links/apps/symbolic ${THEME_DIR}/apps
|
||||
cp -r ${SRC_DIR}/links/categories/symbolic ${THEME_DIR}/categories
|
||||
cp -r ${SRC_DIR}/links/mimes/symbolic ${THEME_DIR}/mimes
|
||||
|
||||
cd ${dest}
|
||||
ln -s ../${name}${theme}/animations ${name}${theme}-dark/animations
|
||||
|
||||
1
links/actions/16/preferences-composer.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
document-edit-sign.svg
|
||||
1
links/actions/22/preferences-composer.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
document-edit-sign.svg
|
||||
1
links/actions/24/preferences-composer.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
document-edit-sign.svg
|
||||
1
links/actions/32/align-vertical-bottom-to-anchor.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
align-horizontal-bottom-out.svg
|
||||
1
links/actions/32/align-vertical-top-out.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
align-horizontal-left-out.svg
|
||||
1
links/actions/symbolic/builder-view-left-pane-symbolic.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
view-left-pane-symbolic.svg
|
||||
1
links/actions/symbolic/carousel-arrow-previous-symbolic.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
go-previous-symbolic.svg
|
||||
1
links/actions/symbolic/edit-tag-symbolic.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
tag-symbolic.svg
|
||||
@@ -1 +0,0 @@
|
||||
edit-tag-symbolic.svg
|
||||
1
links/actions/symbolic/view-sidebar-end-symbolic.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
view-right-pane-symbolic.svg
|
||||
1
links/actions/symbolic/view-sidebar-start-symbolic.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
view-left-pane-symbolic.svg
|
||||
1
links/apps/scalable/Nextcloud.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
nextcloud.svg
|
||||
@@ -1 +0,0 @@
|
||||
applications-system.svg
|
||||
1
links/apps/scalable/com.discordapp.DiscordCanary.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
discord-canary.svg
|
||||
1
links/apps/scalable/com.google.Earth.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
google-earth.svg
|
||||
1
links/apps/scalable/com.nextcloud.desktopclient.nextcloud.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
nextcloud.svg
|
||||
1
links/apps/scalable/com.rstudio.RStudio.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
rstudio.svg
|
||||
1
links/apps/scalable/de.j0chn.nextcloud_password_client.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
nextcloud-password-client.svg
|
||||
1
links/apps/scalable/discord-bin.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
discord.svg
|
||||
1
links/apps/scalable/earth.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
google-earth.svg
|
||||
1
links/apps/scalable/gnome-console.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
terminal.svg
|
||||
1
links/apps/scalable/google-earth-pro.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
google-earth.svg
|
||||
1
links/apps/scalable/googleearth-icon.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
google-earth.svg
|
||||
1
links/apps/scalable/googleearth.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
google-earth.svg
|
||||
1
links/apps/scalable/org.gnome.Console.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
gnome-console.svg
|
||||
1
links/apps/scalable/org.nextcloud.Nextcloud.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
nextcloud.svg
|
||||
@@ -1 +0,0 @@
|
||||
accessories-text-editor.svg
|
||||
1
links/apps/scalable/statalogo_14.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
stata.svg
|
||||
1
links/apps/scalable/statalogo_16.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
stata.svg
|
||||
@@ -1 +0,0 @@
|
||||
preferences-desktop-screensaver.svg
|
||||
@@ -1 +0,0 @@
|
||||
application-illustrator.svg
|
||||
@@ -1 +0,0 @@
|
||||
../apps/wine.svg
|
||||
1
links/status/22/caffeine-plus-off.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
caffeine-cup-empty.svg
|
||||
1
links/status/22/caffeine-plus-on.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
caffeine-cup-full.svg
|
||||
1
links/status/22/user-caffeine-plus-off.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
caffeine-cup-empty.svg
|
||||
1
links/status/22/user-caffeine-plus-on.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
caffeine-cup-full.svg
|
||||
1
links/status/32/weather-overcast.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
weather-many-clouds.svg
|
||||
1
links/status/32/weather-storm-night.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
weather-storm.svg
|
||||
1
links/status/symbolic/ephy-audio-muted-symbolic.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
audio-volume-muted-blocking-symbolic.svg
|
||||
1
links/status/symbolic/ephy-audio-playing-symbolic.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
audio-volume-high-symbolic.svg
|
||||
14
src/actions/16/accessories-text-editor.svg
Normal file
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<metadata>
|
||||
<rdf:RDF>
|
||||
<cc:Work rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
|
||||
<dc:title/>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<path d="m4 1c-1.108 0-2 0.892-2 2v10c0 1.108 0.892 2 2 2h8c1.108 0 2-0.892 2-2v-5.0488l-1 1v4.0488c0 0.554-0.446 1-1 1h-8c-0.554 0-1-0.446-1-1v-10c0-0.554 0.446-1 1-1h6.0488l1-1z" fill="#363636"/>
|
||||
<path class="ColorScheme-Text" d="m14.607 1.6863c-0.78347-0.78347-2.045-0.78347-2.8284 0l3.5355 3.5355c0.78347-0.78347 0.78348-2.045 0-2.8284zm-3.5355 0.70711-7.0711 7.0711-6e-7 3.5355h3.5355l7.0711-7.0711zm0 1.4142 2.1213 2.1213-5.6569 5.6569-2.1213-2.1213z" fill="#363636"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 959 B |
@@ -1,11 +1,8 @@
|
||||
<!DOCTYPE svg>
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">
|
||||
.ColorScheme-Text {
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" style="fill:currentColor; fill-opacity:1; stroke:none" d="M 11 4 L 11 12.9922 L 13.9941 10 L 14 10.0078 L 14.0078 10 L 17 12.9922 L 16.293 13.6992 L 14 11.4063 L 11.3555 14.0508 L 11 14.4063 L 11 18 L 18 18 L 18 4 L 11 4 Z M 9.29297 12 L 5 16.293 L 5.70703 17 L 9.29883 13.4082 L 9.94141 14.0508 L 10.6484 14.7578 L 11 14.4063 L 11 12.9922 L 10.6484 13.3438 L 9.30664 12 L 9.30064 12.0078 L 9.29297 12 Z M 7.5 6 C 8.331 6 9 6.669 9 7.5 C 9 8.331 8.331 9 7.5 9 C 6.669 9 6 8.331 6 7.5 C 6 6.669 6.669 6 7.5 6 Z M 7.5 5 C 6.115 5 5 6.115 5 7.5 C 5 8.885 6.115 10 7.5 10 C 8.885 10 10 8.885 10 7.5 C 10 6.115 8.885 5 7.5 5 Z M 4 4 L 18 4 L 18 18 L 4 18 L 4 4 Z M 3 3 L 3 19 L 19 19 L 19 3 L 3 3 Z"/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m5 5c-1.108 0-2 0.892-2 2v9c0 1.108 0.892 2 2 2h6 6c0.35858 0 0.69396-0.093881 0.98438-0.25781 0.010768-0.006079 0.020608-0.013261 0.03125-0.019532 0.026918-0.015857 0.053992-0.031766 0.080078-0.048828 0.023166-0.015169 0.04588-0.030781 0.068359-0.046875 0.023131-0.016532 0.045982-0.033301 0.06836-0.050781 0.024005-0.01878 0.047211-0.038756 0.070312-0.058594 0.032826-0.028164 0.064787-0.055727 0.095704-0.085937 0.021061-0.020574 0.040411-0.042969 0.060546-0.064453 0.009409-0.01004 0.020096-0.019064 0.029297-0.029297 0.00799-0.008888 0.015607-0.018313 0.023438-0.027344 0.017224-0.019862 0.034341-0.040006 0.050781-0.060547 0.003163-0.003951 0.006633-0.007743 0.009766-0.011719 0.030248-0.038386 0.060476-0.078542 0.08789-0.11914 0.005884-0.008724 0.009876-0.018523 0.015625-0.027344 0.022514-0.034504 0.04406-0.06952 0.064453-0.10547 0.011783-0.020807 0.024107-0.041232 0.035157-0.0625 0.002668-0.005135 0.005187-0.010463 0.007812-0.015625 0.021788-0.042756 0.041813-0.084422 0.060547-0.12891 0.004788-0.011359 0.007135-0.023691 0.011719-0.035156 0.016683-0.041767 0.032978-0.083834 0.046875-0.12695 0.002337-0.007254 0.005555-0.014195 0.007812-0.021485 0.002375-0.007668 0.003574-0.015729 0.00586-0.023437 0.01628-0.054944 0.031377-0.11113 0.042968-0.16797 0.010544-0.051701 0.018901-0.1051 0.025391-0.1582 0.002688-0.022064 0.005843-0.044123 0.007813-0.066406 0.005277-0.05944 0.007812-0.11883 0.007812-0.17969v-9c0-1.108-0.892-2-2-2h-6-6zm0 1h6v7.2969l2-2.2969 5 5c0 0.554-0.446 1-1 1h-6v-3.6992l-1.4785 1.6992-2.5215-2-3 3v-9c0-0.034625 0.0024575-0.067864 0.0058594-0.10156 0.0034018-0.033699 0.0070332-0.067002 0.013672-0.099609 0.013277-0.065215 0.033359-0.12959 0.058594-0.18945s0.055926-0.11674 0.091797-0.16992 0.077859-0.1013 0.12305-0.14648c0.045187-0.045188 0.093301-0.087176 0.14648-0.12305s0.11006-0.066562 0.16992-0.091797 0.12424-0.045316 0.18945-0.058594c0.065215-0.013277 0.13192-0.019531 0.20117-0.019531zm2.5 2c-0.82843 0-1.5 0.67157-1.5 1.5s0.67157 1.5 1.5 1.5 1.5-0.67157 1.5-1.5-0.67157-1.5-1.5-1.5z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1004 B After Width: | Height: | Size: 2.3 KiB |
@@ -1,14 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 2 2.9980469 L 2 3 L 2 4 L 2 19 L 3 19 L 12 19 L 12 18 L 6 18 L 6 12 L 15 12 L 15 11 L 6 11 L 5 11 L 5 18 L 3 18 L 3 4 L 6 4 L 6 8 L 6 9 L 14 9 L 14 8 L 14 4 L 14.292969 4 L 17 6.7070312 L 17 7 L 17 12 L 18 12 L 18 7 L 18 6.3007812 L 17.992188 6.3007812 L 18 6.2910156 L 14.707031 2.9980469 L 14.699219 3.0078125 L 14.699219 2.9980469 L 14 2.9980469 L 2 2.9980469 z M 7 4 L 10.900391 4 L 10.900391 8 L 7 8 L 7 4 z M 16 13 L 15.425781 14.613281 L 13.878906 13.878906 L 14.613281 15.425781 L 13 16 L 14.613281 16.574219 L 13.878906 18.121094 L 15.425781 17.386719 L 16 19 L 16.574219 17.386719 L 18.121094 18.121094 L 17.386719 16.574219 L 19 16 L 17.386719 15.425781 L 18.121094 13.878906 L 16.574219 14.613281 L 16 13 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m16 13-0.57422 1.6133-1.5469-0.73438 0.73438 1.5469-1.6133 0.57422 1.6133 0.57422-0.73438 1.5469 1.5469-0.73438 0.57422 1.6133 0.57422-1.6133 1.5469 0.73438-0.73438-1.5469 1.6133-0.57422-1.6133-0.57422 0.73438-1.5469-1.5469 0.73438z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m5 3c-1.108 0-2 0.892-2 2v12c0 1.108 0.892 2 2 2h8v-1h-7v-2c0-0.554 0.446-1 1-1h6v-1h-6c-1.108 0-2 0.892-2 2v2c-0.554 0-1-0.446-1-1v-12c0-0.554 0.446-1 1-1h2v3c0 1.108 0.892 2 2 2h4c1.108 0 2-0.892 2-2v-2.5859l3 3v5.5859h1v-6l-4-4h-10zm3 1h3v4h-2c-0.554 0-1-0.446-1-1v-3z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 830 B |
@@ -1,8 +1,9 @@
|
||||
<svg id="svg6" version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs id="defs3051">
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}</style>
|
||||
</defs>
|
||||
<path id="path4" class="ColorScheme-Text" d="m11 3c-2.216 0-4 1.784-4 4v1h1v-0.5c0-1.939 1.338-3.5 3-3.5s3 1.561 3 3.5v3.5h-9v8h12v-8h-2v-4c0-2.216-1.784-4-4-4zm-5 9h10v6h-10z" fill="currentColor"/>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m11 3c-2.216 0-4 1.784-4 4v1h1v-0.5c0-1.939 1.338-3.5 3-3.5s3 1.561 3 3.5v3.5h1v-4c0-2.216-1.784-4-4-4z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m7 11c-1.108 0-2 0.892-2 2v4c0 1.108 0.892 2 2 2h8c1.108 0 2-0.892 2-2v-4c0-1.108-0.892-2-2-2zm0 1h8c0.554 0 1 0.446 1 1v4c0 0.554-0.446 1-1 1h-8c-0.554 0-1-0.446-1-1v-4c0-0.554 0.446-1 1-1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 448 B After Width: | Height: | Size: 620 B |
@@ -1,8 +1,9 @@
|
||||
<svg id="svg6" version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs id="defs3051">
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}</style>
|
||||
</defs>
|
||||
<path id="path4" class="ColorScheme-Text" d="m11 3c-2.216 0-4 1.784-4 4v4h-2v8h12v-8h-2v-4c0-2.216-1.784-4-4-4zm0 1c1.662 0 3 1.561 3 3.5v3.5h-6v-3.5c0-1.939 1.338-3.5 3-3.5zm-5 8h10v6h-10z" fill="currentColor"/>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m11 3c-2.216 0-4 1.784-4 4v4h1v-3.5c0-1.939 1.338-3.5 3-3.5s3 1.561 3 3.5v3.5h1v-4c0-2.216-1.784-4-4-4z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m7 11c-1.108 0-2 0.892-2 2v4c0 1.108 0.892 2 2 2h8c1.108 0 2-0.892 2-2v-4c0-1.108-0.892-2-2-2zm0 1h8c0.554 0 1 0.446 1 1v4c0 0.554-0.446 1-1 1h-8c-0.554 0-1-0.446-1-1v-4c0-0.554 0.446-1 1-1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 462 B After Width: | Height: | Size: 620 B |
@@ -1,14 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 3 3 L 3 4 L 3 19 L 4 19 L 15 19 L 12 16 L 15 13 L 17 13 L 16 12 L 14 10 L 10 14 L 9 13 L 4.1484375 17.851562 L 4 18 L 4 4 L 18 4 L 18 12 L 19 12 L 19 4 L 19 3 L 4 3 L 3 3 z M 7 5 C 5.892 5 5 5.892 5 7 C 5 8.108 5.892 9 7 9 C 8.108 9 9 8.108 9 7 C 9 5.892 8.108 5 7 5 z M 16 14 L 16 16 L 14 16 L 14 17 L 16 17 L 16 19 L 17 19 L 17 17 L 19 17 L 19 16 L 17 16 L 17 14 L 16 14 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m5 4c-1.108 0-2 0.892-2 2v9c0 1.108 0.892 2 2 2h7.6855a4.5 4.5 0 0 1-1.6855-3.5 4.5 4.5 0 0 1 0.27344-1.5156l-1.752 2.0156-2.5215-2-3 3v-9c0-0.554 0.446-1 1-1h12c0.554 0 1 0.446 1 1v3.7578a4.5 4.5 0 0 1 1 0.91406v-4.6719c0-1.108-0.892-2-2-2h-12zm2.5 3c-0.82843 0-1.5 0.67157-1.5 1.5s0.67157 1.5 1.5 1.5 1.5-0.67157 1.5-1.5-0.67157-1.5-1.5-1.5z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m15.5 10a3.5 3.5 0 0 0-3.5 3.5 3.5 3.5 0 0 0 3.5 3.5 3.5 3.5 0 0 0 3.5-3.5 3.5 3.5 0 0 0-3.5-3.5zm0 1c0.277 0 0.5 0.223 0.5 0.5v1.5h1.5c0.277 0 0.5 0.223 0.5 0.5s-0.223 0.5-0.5 0.5h-1.5v1.5c0 0.277-0.223 0.5-0.5 0.5s-0.5-0.223-0.5-0.5v-1.5h-1.5c-0.277 0-0.5-0.223-0.5-0.5s0.223-0.5 0.5-0.5h1.5v-1.5c0-0.277 0.223-0.5 0.5-0.5z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 719 B After Width: | Height: | Size: 995 B |
@@ -1,14 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 3 3 L 3 4 L 3 19 L 4 19 L 10 19 L 10 18 L 10 17 L 15 12 L 15.5 11.5 L 14 10 L 10 14 L 9 13 L 4.15625 17.84375 L 4 18 L 4 4 L 18 4 L 18 11 L 19 11 L 19 4 L 19 3 L 4 3 L 3 3 z M 7 5 C 5.892 5 5 5.892 5 7 C 5 8.108 5.892 9 7 9 C 8.108 9 9 8.108 9 7 C 9 5.892 8.108 5 7 5 z M 17 11 L 16 12 L 11 17 L 11 18 L 11 19 L 13 19 L 13 18.96875 L 14 18 L 18 14 L 19 13 L 17 11 z M 16.71875 12.6875 L 17.28125 13.28125 L 12.3125 18.28125 L 11.71875 17.6875 L 16.71875 12.6875 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m17 10-6 6v2h2v-0.03125l1-0.96875 5-5zm-0.28125 1.6875 0.5625 0.59375-4.9688 5-0.59375-0.59375z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m5 5c-1.108 0-2 0.892-2 2v9c0 1.108 0.892 2 2 2h5v-1-1a1.0001 1.0001 0 0 1 0.29297-0.70703l3.5-3.5-0.79297-0.79297-3.4785 4-2.5215-2-3 3v-9c0-0.554 0.446-1 1-1h12c0.554 0 1 0.446 1 1v2.5859l1 1v-3.5859c0-1.108-0.892-2-2-2h-12zm2.5 3c-0.82843 0-1.5 0.67157-1.5 1.5s0.67157 1.5 1.5 1.5 1.5-0.67157 1.5-1.5-0.67157-1.5-1.5-1.5zm11.5 5.4141-1 1v1.5859l-0.79297-0.79297-2.5 2.5a1.0001 1.0001 0 0 1-0.011719 0.011719l-0.29102 0.28125h2.5957c1.108 0 2-0.892 2-2v-2.5859z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 808 B After Width: | Height: | Size: 885 B |
@@ -1,14 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 1 3 L 1 4 L 1 12 L 1 18 L 1 18.414062 L 1 19 L 2 19 L 8 19 L 14 19 L 14 18 L 8 18 L 2 18 L 2 17.414062 L 2.4628906 16.951172 L 8.7304688 10.683594 L 10.183594 12.134766 L 10.998047 12.949219 L 11 12.949219 L 11.816406 12.134766 L 13.269531 10.683594 L 14.585938 12 L 16 12 L 13.976562 9.9765625 L 19.728516 4.2226562 L 19.951172 4 L 20 4 L 20 4.2226562 L 20 12 L 21 12 L 21 3 L 20.951172 3 L 20 3 L 19.537109 3 L 2.4628906 3 L 2 3 L 1 3 z M 2 4 L 2.0488281 4 L 2.2714844 4.2226562 L 8.0234375 9.9765625 L 2 16 L 2 12 L 2 4.2226562 L 2 4 z M 3.4628906 4 L 18.537109 4 L 11 11.537109 L 3.4628906 4 z M 18.5 13 C 17.669 13 17 13.669 17 14.5 L 17 16 L 16 16 L 16 19 L 21 19 L 21 16 L 20 16 L 20 14.5 C 20 13.669 19.331 13 18.5 13 z M 18.5 14 C 18.777 14 19 14.223 19 14.5 L 19 16 L 18 16 L 18 14.5 C 18 14.223 18.223 14 18.5 14 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m17.5 12c-0.82843 0-1.5 0.67157-1.5 1.5v1.5h-1v3h5v-3h-1v-1.5c0-0.82843-0.67157-1.5-1.5-1.5zm0 1c0.27614 0 0.5 0.22386 0.5 0.5v1.5h-1v-1.5c0-0.27614 0.22386-0.5 0.5-0.5zm-1.5 3h3v1h-3z" color="#363636" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m5 4c-1.662 0-3 1.338-3 3v8c0 1.662 1.338 3 3 3h9v-1h-9c-1.0692 0-1.9288-0.83294-1.9883-1.8867l4.5977-3.498 0.7207 0.54883c1.4653 1.1144 3.8764 1.1144 5.3418 0l5.3281-4.0527v2.8887h1v-4c0-1.662-1.338-3-3-3zm0 1h12c1.0692 0 1.9288 0.83294 1.9883 1.8867l-6.1289 4.6602c-1.0302 0.78348-2.6886 0.78347-3.7188 0l-6.1289-4.6602c0.059506-1.0538 0.9191-1.8867 1.9883-1.8867zm-2 3.1094 3.8008 2.8906-3.8008 2.8887z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m17.5 12c-0.82843 0-1.5 0.67157-1.5 1.5v1.5h-1v3h5v-3h-1v-1.5c0-0.82843-0.67157-1.5-1.5-1.5zm0 1c0.27614 0 0.5 0.22386 0.5 0.5v1.5h-1v-1.5c0-0.27614 0.22386-0.5 0.5-0.5z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
@@ -1,14 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 1 3 L 1 4 L 1 12 L 1 18 L 1 18.414062 L 1 19 L 2 19 L 8 19 L 14 19 L 14 18 L 8 18 L 2 18 L 2 17.414062 L 2.4628906 16.951172 L 8.7304688 10.683594 L 10.183594 12.134766 L 10.998047 12.949219 L 11 12.949219 L 11.816406 12.134766 L 13.269531 10.683594 L 14.585938 12 L 16 12 L 13.976562 9.9765625 L 19.728516 4.2226562 L 19.951172 4 L 20 4 L 20 4.2226562 L 20 12 L 21 12 L 21 3 L 20.951172 3 L 20 3 L 19.537109 3 L 2.4628906 3 L 2 3 L 1 3 z M 2 4 L 2.0488281 4 L 2.2714844 4.2226562 L 8.0234375 9.9765625 L 2 16 L 2 12 L 2 4.2226562 L 2 4 z M 3.4628906 4 L 18.537109 4 L 11 11.537109 L 3.4628906 4 z M 15 13 L 15 19 L 16 19 L 16 17 L 18 16 L 18 18 L 22 16 L 18 15 L 18 14 L 16 13 L 15 13 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m15 12v6h1v-2l2-1v2l4-2-4-1v-1l-2-1z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m5 4c-1.662 0-3 1.338-3 3v8c0 1.662 1.338 3 3 3h9v-1h-9c-1.0692 0-1.9288-0.83296-1.9883-1.8867l4.5977-3.498 0.7207 0.54883c1.4653 1.1144 3.8764 1.1144 5.3418 0l0.71875-0.54687 0.8125-0.61719 3.7969-2.8887v3.8886h1v-4.9999c0-1.662-1.338-3-3-3zm0 1h12c1.0692 0 1.9288 0.83296 1.9883 1.8867l-6.1289 4.6602c-1.0302 0.78348-2.6886 0.78347-3.7188 0l-6.1289-4.6602c0.059506-1.0538 0.91908-1.8867 1.9883-1.8867zm-2 3.1094 3.8008 2.8906-3.8008 2.8887z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 805 B |
@@ -1,14 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 1 3 L 1 4 L 1 12 L 1 18 L 1 18.414062 L 1 19 L 2 19 L 8 19 L 14 19 L 14 18 L 8 18 L 2 18 L 2 17.414062 L 2.4628906 16.951172 L 8.7304688 10.683594 L 10.183594 12.134766 L 10.998047 12.949219 L 11 12.949219 L 11.816406 12.134766 L 13.269531 10.683594 L 14.585938 12 L 16 12 L 13.976562 9.9765625 L 19.728516 4.2226562 L 19.951172 4 L 20 4 L 20 4.2226562 L 20 12 L 21 12 L 21 3 L 20.951172 3 L 20 3 L 19.537109 3 L 2.4628906 3 L 2 3 L 1 3 z M 2 4 L 2.0488281 4 L 2.2714844 4.2226562 L 8.0234375 9.9765625 L 2 16 L 2 12 L 2 4.2226562 L 2 4 z M 3.4628906 4 L 18.537109 4 L 11 11.537109 L 3.4628906 4 z M 17.707031 12 L 17 12.707031 L 19.292969 15 L 15 15 L 15 16 L 19.292969 16 L 17 18.292969 L 17.707031 19 L 21 15.707031 L 21.207031 15.5 L 21 15.292969 L 17.707031 12 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m17.707 11-0.70703 0.70703 2.293 2.293h-4.293v1h4.293l-2.293 2.293 0.70703 0.70703 3.5-3.5-0.20703-0.20703z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m5 4c-1.662 0-3 1.338-3 3v8c0 1.662 1.338 3 3 3h10v-1h-10c-1.0692 0-1.9288-0.83296-1.9883-1.8867l4.5977-3.498 0.7207 0.54883c1.4653 1.1144 3.8764 1.1144 5.3418 0l0.71875-0.54687 0.8125-0.61719 3.7969-2.8887v2.8887h1v-4c0-1.662-1.338-3-3-3zm0 1h12c1.0692 0 1.9288 0.83296 1.9883 1.8867l-6.1289 4.6602c-1.0302 0.78348-2.6886 0.78347-3.7188 0l-6.1289-4.6602c0.059506-1.0538 0.91908-1.8867 1.9883-1.8867zm-2 3.1094 3.8008 2.8906-3.8008 2.8887z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 873 B |
@@ -1,14 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 3 3 L 3 4 L 3 5 L 3 6 L 1 9 L 1 10 L 1 11.400391 L 1 12 L 1 13 L 2 13 L 2 12 L 2 11 L 2 10.400391 L 2 10 L 2.4003906 10 L 3 10 L 4.078125 10 L 11 13.996094 L 17.921875 10 L 18 10 L 19 10 L 20 10 L 20 10.400391 L 20 11 L 20 12 L 21 12 L 21 11.400391 L 21 9.9863281 L 21 9 L 19 6 L 19 3 L 4 3 L 3 3 z M 4 4 L 18 4 L 18 5 L 18 8.7988281 L 11 12.839844 L 4 8.7988281 L 4 5 L 4 4 z M 5 5 L 5 5.9863281 L 4.9863281 6 L 5 6 L 17 6 L 17.013672 6 L 17 5.9863281 L 17 5 L 5 5 z M 5 7 L 5 8 L 12 8 L 12 7 L 5 7 z M 17.707031 12 L 17 12.707031 L 19.292969 15 L 15 15 L 15 16 L 19.292969 16 L 17 18.292969 L 17.707031 19 L 21 15.707031 L 21.207031 15.5 L 21 15.292969 L 17.707031 12 z M 4 13 L 1 16 L 4 19 L 4 17 L 5 17 L 6 17 L 6 15 L 5 15 L 4 15 L 4 13 z M 7 18 L 7 19 L 8 19 L 14 19 L 14 18 L 7 18 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m17.707 11-0.70703 0.70703 2.293 2.293h-4.293v1h4.293l-2.293 2.293 0.70703 0.70703 3.5-3.5-0.20703-0.20703zm-13.707 1-3 3 3 3v-2h2v-2h-2z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m5 4c-1.662 0-3 1.338-3 3v5h1v-3.8906l3.8008 2.8906 0.80859 0.61523 0.7207 0.54883c1.4653 1.1144 3.8764 1.1144 5.3418 0l0.71875-0.54687 0.8125-0.61719 3.7969-2.8887v2.8887h1v-4c0-1.662-1.338-3-3-3zm0 1h12c1.0692 0 1.9288 0.83298 1.9883 1.8867l-6.1289 4.6602c-1.0302 0.78348-2.6886 0.78347-3.7188 0l-6.1289-4.6602c0.059506-1.0538 0.91906-1.8867 1.9883-1.8867zm1 12v1h10v-1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 836 B |
@@ -1,14 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 3 3 L 3 4 L 3 5 L 3 6 L 1 9 L 1 10 L 1 11.400391 L 1 12 L 1 18 L 1 18.414062 L 1 19 L 2 19 L 8 19 L 14 19 L 14 18 L 2 18 L 2 17.414062 L 2 16 L 2 12 L 2 11 L 2 10.400391 L 2 10 L 2.4003906 10 L 3 10 L 4.078125 10 L 11 13.996094 L 17.921875 10 L 18 10 L 19 10 L 20 10 L 20 10.400391 L 20 11 L 20 12 L 21 12 L 21 11.400391 L 21 9.9863281 L 21 9 L 19 6 L 19 3 L 4 3 L 3 3 z M 4 4 L 18 4 L 18 5 L 18 8.7988281 L 11 12.839844 L 4 8.7988281 L 4 5 L 4 4 z M 5 5 L 5 5.9863281 L 4.9863281 6 L 5 6 L 17 6 L 17.013672 6 L 17 5.9863281 L 17 5 L 5 5 z M 5 7 L 5 8 L 12 8 L 12 7 L 5 7 z M 17.707031 12 L 17 12.707031 L 19.292969 15 L 15 15 L 15 16 L 19.292969 16 L 17 18.292969 L 17.707031 19 L 21 15.707031 L 21.207031 15.5 L 21 15.292969 L 17.707031 12 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m17.707 11-0.70703 0.70703 2.293 2.293h-4.293v1h4.293l-2.293 2.293 0.70703 0.70703 3.5-3.5-0.20703-0.20703z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m7 1c-1.108 0-2 0.892-2 2v1c-1.662 0-3 1.338-3 3v8c0 1.662 1.338 3 3 3h10v-1h-10c-1.0692 0-1.9288-0.83296-1.9883-1.8867l4.5977-3.498 0.7207 0.54883c1.4653 1.1144 3.8764 1.1144 5.3418 0l0.71875-0.54687 0.8125-0.61719 3.7969-2.8887v2.8887h1v-4c0-1.662-1.338-3-3-3v-1c0-1.108-0.892-2-2-2zm0 1h8c0.554 0 1 0.446 1 1v6.1582l-3.1406 2.3887c-1.0302 0.78348-2.6886 0.78347-3.7188 0l-3.1406-2.3887v-6.1582c0-0.554 0.446-1 1-1zm0.5 2c-0.277 0-0.5 0.223-0.5 0.5s0.223 0.5 0.5 0.5h7c0.277 0 0.5-0.223 0.5-0.5s-0.223-0.5-0.5-0.5zm-2.5 1v3.3984l-1.9883-1.5117c0.059506-1.0538 0.91908-1.8867 1.9883-1.8867zm12 0c1.0692 0 1.9288 0.83296 1.9883 1.8867l-1.9883 1.5117zm-9.5 2c-0.277 0-0.5 0.223-0.5 0.5s0.223 0.5 0.5 0.5h7c0.277 0 0.5-0.223 0.5-0.5s-0.223-0.5-0.5-0.5zm-4.5 1.1094 3.8008 2.8906-3.8008 2.8887z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.2 KiB |
@@ -1,14 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 3 3 L 3 7 L 7 7 L 7 3 L 3 3 z M 8 3 L 8 4 L 20 4 L 20 3 L 8 3 z M 8 6 L 8 7 L 15 7 L 15 6 L 8 6 z M 3 9 L 3 13 L 7 13 L 7 9 L 3 9 z M 8 9 L 8 10 L 20 10 L 20 9 L 8 9 z M 8 12 L 8 13 L 12 13 L 12 12 L 8 12 z M 19.292969 12.613281 L 14.701172 17.205078 L 13.554688 16.058594 L 12.847656 16.765625 L 14.693359 18.613281 L 14.699219 18.605469 L 14.707031 18.613281 L 20 13.320312 L 19.292969 12.613281 z M 3 15 L 3 19 L 7 19 L 7 15 L 3 15 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m5 3a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2zm3.5 0c-0.277 0-0.5 0.223-0.5 0.5s0.223 0.5 0.5 0.5h11c0.277 0 0.5-0.223 0.5-0.5s-0.223-0.5-0.5-0.5h-11zm-3.5 1a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1zm3.5 2c-0.277 0-0.5 0.223-0.5 0.5s0.223 0.5 0.5 0.5h6c0.277 0 0.5-0.223 0.5-0.5s-0.223-0.5-0.5-0.5h-6zm-3.5 3a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2zm3.5 0c-0.277 0-0.5 0.223-0.5 0.5s0.223 0.5 0.5 0.5h11c0.277 0 0.5-0.223 0.5-0.5s-0.223-0.5-0.5-0.5h-11zm-3.5 1a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1zm3.5 2c-0.277 0-0.5 0.223-0.5 0.5s0.223 0.5 0.5 0.5h3c0.277 0 0.5-0.223 0.5-0.5s-0.223-0.5-0.5-0.5h-3zm10.793 0.61328-4.5918 4.5918-1.1465-1.1465-0.70703 0.70703 1.8457 1.8477 0.00586-0.007812 0.007812 0.007812 5.293-5.293-0.70703-0.70703zm-14.293 2.3867a2 2 0 0 0-2 2 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-2-2zm0 1a1 1 0 0 1 1 1 1 1 0 0 1-1 1 1 1 0 0 1-1-1 1 1 0 0 1 1-1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 779 B After Width: | Height: | Size: 1.2 KiB |
@@ -1,18 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 1 3 L 1 4 L 1 12 L 1 18 L 1 18.414062 L 1 19 L 2 19 L 8 19 L 14 19 L 14 18 L 8 18 L 2 18 L 2 17.414062 L 2.4628906 16.951172 L 8.7304688 10.683594 L 10.183594 12.134766 L 10.998047 12.949219 L 11 12.949219 L 11.816406 12.134766 L 13.269531 10.683594 L 14.585938 12 L 16 12 L 13.976562 9.9765625 L 19.728516 4.2226562 L 19.951172 4 L 20 4 L 20 4.2226562 L 20 12 L 21 12 L 21 3 L 20.951172 3 L 20 3 L 19.537109 3 L 2.4628906 3 L 2 3 L 1 3 z M 2 4 L 2.0488281 4 L 2.2714844 4.2226562 L 8.0234375 9.9765625 L 2 16 L 2 12 L 2 4.2226562 L 2 4 z M 3.4628906 4 L 18.537109 4 L 11 11.537109 L 3.4628906 4 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
<path
|
||||
style="fill:#fdbc4b;fill-opacity:1;stroke:none"
|
||||
d="M 18 13 L 18 17 L 19 17 L 19 13 L 18 13 z M 18 18 L 18 19 L 19 19 L 19 18 L 18 18 z "
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-NegativeText" d="m16.5 11.018a3.5 3.5 0 0 0-3.5 3.5 3.5 3.5 0 0 0 3.5 3.5 3.5 3.5 0 0 0 3.5-3.5 3.5 3.5 0 0 0-3.5-3.5zm-0.5 0.98242h1v3.0176h-1zm0 4.0176h1v1h-1z" fill="#fdbc4b"/>
|
||||
<path class="ColorScheme-Text" d="m5 4c-1.662 0-3 1.338-3 3v8c0 1.662 1.338 3 3 3h7v-1h-7c-1.0692 0-1.9288-0.83294-1.9883-1.8867l4.5977-3.498 0.7207 0.54883c0.98774 0.7512 2.4021 0.98417 3.6699 0.72266v-0.90234c-0.95179 0.29872-2.0835 0.15256-2.8594-0.4375l-6.1289-4.6602c0.059506-1.0538 0.9191-1.8867 1.9883-1.8867h12c1.0692 0 1.9288 0.83294 1.9883 1.8867l-4.0938 3.1133h1.623l2.4824-1.8887v1.8887h1v-3c0-1.662-1.338-3-3-3h-12zm-2 4.1094 3.8008 2.8906-3.8008 2.8887z" color="#363636" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 923 B |
@@ -1,14 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 1 3 L 1 4 L 1 12 L 1 18 L 1 18.414062 L 1 19 L 2 19 L 8 19 L 14 19 L 14 18 L 8 18 L 2 18 L 2 17.414062 L 2.4628906 16.951172 L 8.7304688 10.683594 L 10.183594 12.134766 L 10.998047 12.949219 L 11 12.949219 L 11.816406 12.134766 L 13.269531 10.683594 L 14.585938 12 L 16 12 L 13.976562 9.9765625 L 19.728516 4.2226562 L 19.951172 4 L 20 4 L 20 4.2226562 L 20 12 L 21 12 L 21 3 L 20.951172 3 L 20 3 L 19.537109 3 L 2.4628906 3 L 2 3 L 1 3 z M 2 4 L 2.0488281 4 L 2.2714844 4.2226562 L 8.0234375 9.9765625 L 2 16 L 2 12 L 2 4.2226562 L 2 4 z M 3.4628906 4 L 18.537109 4 L 11 11.537109 L 3.4628906 4 z M 15 14 L 15 15 L 21 15 L 21 14 L 15 14 z M 15 16 L 15 17 L 21 17 L 21 16 L 15 16 z M 15 18 L 15 19 L 21 19 L 21 18 L 15 18 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m15 13v1h5v-1zm0 2v1h5v-1zm0 2v1h5v-1z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m5 4c-1.662 0-3 1.338-3 3v8c0 1.662 1.338 3 3 3h9v-1h-9c-1.0692 0-1.9288-0.83296-1.9883-1.8867l4.5977-3.498 0.7207 0.54883c1.4653 1.1144 3.8764 1.1144 5.3418 0l0.71875-0.54687 0.8125-0.61719 3.7969-2.8887v3.8886h1v-4.9999c0-1.662-1.338-3-3-3zm0 1h12c1.0692 0 1.9288 0.83296 1.9883 1.8867l-6.1289 4.6602c-1.0302 0.78348-2.6886 0.78347-3.7188 0l-6.1289-4.6602c0.059506-1.0538 0.91908-1.8867 1.9883-1.8867zm-2 3.1094 3.8008 2.8906-3.8008 2.8887z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 807 B |
@@ -1,14 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 3 3 L 3 4 L 3 5 L 3 6 L 1 9 L 1 10 L 1 11.400391 L 1 12 L 2 12 L 2 11 L 2 10.400391 L 2 10 L 2.4003906 10 L 3 10 L 4.078125 10 L 11 13.996094 L 17.921875 10 L 18 10 L 19 10 L 20 10 L 20 10.400391 L 20 11 L 20 12 L 20 18 L 14 18 L 7 18 L 7 19 L 8 19 L 14 19 L 20 19 L 21 19 L 21 18 L 21 12 L 21 11.400391 L 21 9.9863281 L 21 9 L 19 6 L 19 3 L 4 3 L 3 3 z M 4 4 L 18 4 L 18 5 L 18 8.7988281 L 11 12.839844 L 4 8.7988281 L 4 5 L 4 4 z M 5 5 L 5 5.9863281 L 4.9863281 6 L 5 6 L 17 6 L 17.013672 6 L 17 5.9863281 L 17 5 L 5 5 z M 5 7 L 5 8 L 12 8 L 12 7 L 5 7 z M 4 13 L 1 16 L 4 19 L 4 17 L 6 17 L 6 15 L 4 15 L 4 13 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m4 12-3 3 3 3v-2h2v-2h-2z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m15 1c1.108 0 2 0.892 2 2v1c1.662 0 3 1.338 3 3v8c0 1.662-1.338 3-3 3h-11v-1h11c1.0692 0 1.9288-0.83296 1.9883-1.8867l-4.5977-3.498-0.7207 0.54883c-1.4653 1.1144-3.8764 1.1144-5.3418 0l-0.71875-0.54687-0.8125-0.61719-3.7969-2.8887v3.8886h-1v-4.9999c0-1.662 1.338-3 3-3v-1c0-1.108 0.892-2 2-2zm0 1h-8c-0.554 0-1 0.446-1 1v6.1582l3.1406 2.3887c1.0302 0.78348 2.6886 0.78347 3.7188 0l3.1406-2.3887v-6.1582c0-0.554-0.446-1-1-1zm-0.5 2c0.277 0 0.5 0.223 0.5 0.5s-0.223 0.5-0.5 0.5h-7c-0.277 0-0.5-0.223-0.5-0.5s0.223-0.5 0.5-0.5zm2.5 1v3.3984l1.9883-1.5117c-0.059506-1.0538-0.91908-1.8867-1.9883-1.8867zm-12 0c-1.0692 0-1.9288 0.83296-1.9883 1.8867l1.9883 1.5117zm9.5 2c0.277 0 0.5 0.223 0.5 0.5s-0.223 0.5-0.5 0.5h-7c-0.277 0-0.5-0.223-0.5-0.5s0.223-0.5 0.5-0.5zm4.5 1.1094-3.8008 2.8906 3.8008 2.8887z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 957 B After Width: | Height: | Size: 1.1 KiB |
@@ -1,14 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 1 3 L 1 12 L 2 12 L 2 4.2226562 L 2 4 L 2.0488281 4 L 2.2714844 4.2226562 L 8.0234375 9.9765625 L 6 12 L 7.4140625 12 L 8.7304688 10.683594 L 10.183594 12.134766 L 11 12.949219 L 11.001953 12.949219 L 11.816406 12.134766 L 13.269531 10.683594 L 19.537109 16.951172 L 20 17.414062 L 20 18 L 14 18 L 8 18 L 8 19 L 14 19 L 20 19 L 21 19 L 21 18.414062 L 21 18 L 21 12 L 21 4 L 21 3 L 20 3 L 19.537109 3 L 2.4628906 3 L 2 3 L 1.0488281 3 L 1 3 z M 3.4628906 4 L 18.537109 4 L 11 11.537109 L 3.4628906 4 z M 19.951172 4 L 20 4 L 20 4.2226562 L 20 12 L 20 16 L 13.976562 9.9765625 L 19.728516 4.2226562 L 19.951172 4 z M 4 13 L 1 16 L 4 19 L 4 17 L 4 15 L 4 13 z M 5 15 L 5 17 L 6 17 L 6 15 L 5 15 z M 7 15 L 7 17 L 8 17 L 8 15 L 7 15 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m4 12-3 3 3 3v-4zm1 2v2h1v-2zm2 0v2h1v-2z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m15 1c1.108 0 2 0.892 2 2v1c1.662 0 3 1.338 3 3v8c0 1.662-1.338 3-3 3h-10v-1h10c1.0692 0 1.9288-0.83296 1.9883-1.8867l-4.5977-3.498-0.7207 0.54883c-1.4653 1.1144-3.8764 1.1144-5.3418 0l-0.71875-0.54687-0.8125-0.61719-3.7969-2.8887v2.8887h-1v-4c0-1.662 1.338-3 3-3v-1c0-1.108 0.892-2 2-2zm0 1h-8c-0.554 0-1 0.446-1 1v6.1582l3.1406 2.3887c1.0302 0.78348 2.6886 0.78347 3.7188 0l3.1406-2.3887v-6.1582c0-0.554-0.446-1-1-1zm-0.5 2c0.277 0 0.5 0.223 0.5 0.5s-0.223 0.5-0.5 0.5h-7c-0.277 0-0.5-0.223-0.5-0.5s0.223-0.5 0.5-0.5zm2.5 1v3.3984l1.9883-1.5117c-0.059506-1.0538-0.91908-1.8867-1.9883-1.8867zm-12 0c-1.0692 0-1.9288 0.83296-1.9883 1.8867l1.9883 1.5117zm9.5 2c0.277 0 0.5 0.223 0.5 0.5s-0.223 0.5-0.5 0.5h-7c-0.277 0-0.5-0.223-0.5-0.5s0.223-0.5 0.5-0.5zm4.5 1.1094-3.8008 2.8906 3.8008 2.8887z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.1 KiB |
@@ -1,14 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 1 3 L 1 12 L 2 12 L 2 8 L 20 8 L 20 12 L 20 16 L 20 17.414062 L 20 18 L 8 18 L 8 19 L 14 19 L 20 19 L 21 19 L 21 18.414062 L 21 18 L 21 12 L 21 4 L 21 3 L 20 3 L 19.537109 3 L 2.4628906 3 L 2 3 L 1.0488281 3 L 1 3 z M 2 4 L 2.0488281 4 L 3.4628906 4 L 18.537109 4 L 19.951172 4 L 20 4 L 20 4.2226562 L 20 7 L 2 7 L 2 4.2226562 L 2 4 z M 4 13 L 1 16 L 4 19 L 4 17 L 4 15 L 4 13 z M 5 15 L 5 17 L 6 17 L 6 15 L 5 15 z M 7 15 L 7 17 L 8 17 L 8 15 L 7 15 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m4 13-3 3 3 3v-4zm1 2v2h1v-2zm2 0v2h1v-2z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m5 2c-1.108 0-2 0.892-2 2v2c-1.108 0-2 0.892-2 2v5h1v-3h18v7c0 0.554-0.446 1-1 1h-11v1h11c1.108 0 2-0.892 2-2v-9c0-1.108-0.892-2-2-2v-2c0-1.108-0.892-2-2-2zm0 1h12c0.554 0 1 0.446 1 1v5h-14v-5c0-0.554 0.446-1 1-1zm-2 4v2h-1v-1c0-0.554 0.446-1 1-1zm16 0c0.554 0 1 0.446 1 1v1h-1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 795 B After Width: | Height: | Size: 646 B |
@@ -1,14 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 1 3 L 1 12 L 2 12 L 2 8 L 20 8 L 20 12 L 20 16 L 20 17.414062 L 20 18 L 8 18 L 8 19 L 14 19 L 20 19 L 21 19 L 21 18.414062 L 21 18 L 21 12 L 21 4 L 21 3 L 20 3 L 19.537109 3 L 2.4628906 3 L 2 3 L 1.0488281 3 L 1 3 z M 2 4 L 2.0488281 4 L 3.4628906 4 L 18.537109 4 L 19.951172 4 L 20 4 L 20 4.2226562 L 20 7 L 2 7 L 2 4.2226562 L 2 4 z M 4 13 L 1 16 L 4 19 L 4 17 L 5 17 L 6 17 L 6 15 L 5 15 L 4 15 L 4 13 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m4 13-3 3 3 3v-2h2v-2h-2z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m5 2c-1.108 0-2 0.892-2 2v2c-1.108 0-2 0.892-2 2v5h1v-3h18v7c0 0.554-0.446 1-1 1h-12v1h12c1.108 0 2-0.892 2-2v-9c0-1.108-0.892-2-2-2v-2c0-1.108-0.892-2-2-2h-12zm0 1h12c0.554 0 1 0.446 1 1v2 1 2h-14v-2-1-2c0-0.554 0.446-1 1-1zm-2 4v2h-1v-1c0-0.554 0.446-1 1-1zm16 0c0.554 0 1 0.446 1 1v1h-1v-2z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 749 B After Width: | Height: | Size: 645 B |
@@ -1,14 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 1 3 L 1 12 L 2 12 L 2 4.2226562 L 2 4 L 2.0488281 4 L 2.2714844 4.2226562 L 8.0234375 9.9765625 L 6 12 L 7.4140625 12 L 8.7304688 10.683594 L 10.183594 12.134766 L 11 12.949219 L 11.001953 12.949219 L 11.816406 12.134766 L 13.269531 10.683594 L 14.585938 12 L 16 12 L 13.976562 9.9765625 L 19.728516 4.2226562 L 19.951172 4 L 20 4 L 20 4.2226562 L 20 12 L 21 12 L 21 4 L 21 3 L 20 3 L 19.537109 3 L 2.4628906 3 L 2 3 L 1.0488281 3 L 1 3 z M 3.4628906 4 L 18.537109 4 L 11 11.537109 L 3.4628906 4 z M 4 13 L 1 16 L 4 19 L 4 17 L 5 17 L 6 17 L 6 15 L 5 15 L 4 15 L 4 13 z M 15 14 L 15 15 L 21 15 L 21 14 L 15 14 z M 15 16 L 15 17 L 21 17 L 21 16 L 15 16 z M 8 18 L 8 19 L 14 19 L 14 18 L 8 18 z M 15 18 L 15 19 L 21 19 L 21 18 L 15 18 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m5 12-3 3 3 3v-2h2v-2h-2zm10 1v1h5v-1zm0 2v1h5v-1zm0 2v1h5v-1z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m5 4c-1.662 0-3 1.338-3 3v5h1v-3.8906l3.8008 2.8906 1.5293 1.1641c1.4653 1.1144 3.8764 1.1144 5.3418 0l0.71875-0.54687 0.8125-0.61719 3.7969-2.8887v3.8887h1v-5c0-1.662-1.338-3-3-3zm0 1h12c1.0692 0 1.9288 0.83296 1.9883 1.8867l-6.1289 4.6602c-1.0302 0.78348-2.6886 0.78347-3.7188 0l-6.1289-4.6602c0.059506-1.0538 0.91908-1.8867 1.9883-1.8867zm2 12v1h7v-1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 743 B |
@@ -1,14 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 1 3 L 1 12 L 2 12 L 2 4.2226562 L 2 4 L 2.0488281 4 L 2.2714844 4.2226562 L 8.0234375 9.9765625 L 6 12 L 7.4140625 12 L 8.7304688 10.683594 L 10.183594 12.134766 L 11 12.949219 L 11.001953 12.949219 L 11.816406 12.134766 L 13.269531 10.683594 L 19.537109 16.951172 L 20 17.414062 L 20 18 L 14 18 L 8 18 L 8 19 L 14 19 L 20 19 L 21 19 L 21 18.414062 L 21 18 L 21 12 L 21 4 L 21 3 L 20 3 L 19.537109 3 L 2.4628906 3 L 2 3 L 1.0488281 3 L 1 3 z M 3.4628906 4 L 18.537109 4 L 11 11.537109 L 3.4628906 4 z M 19.951172 4 L 20 4 L 20 4.2226562 L 20 12 L 20 16 L 13.976562 9.9765625 L 19.728516 4.2226562 L 19.951172 4 z M 4 13 L 1 16 L 4 19 L 4 17 L 5 17 L 6 17 L 6 15 L 5 15 L 4 15 L 4 13 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m5 12-3 3 3 3v-2h2v-2h-2z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m5 4c-1.662 0-3 1.338-3 3v5h1v-3.8906l3.8008 2.8906 0.80859 0.61523 0.7207 0.54883c1.4653 1.1144 3.8764 1.1144 5.3418 0l0.71875-0.54687 4.5977 3.4961c-0.05951 1.0538-0.91908 1.8867-1.9883 1.8867h-10v1h10c1.662 0 3-1.338 3-3v-8c0-1.662-1.338-3-3-3zm0 1h12c1.0692 0 1.9288 0.83296 1.9883 1.8867l-6.1289 4.6602c-1.0302 0.78348-2.6886 0.78347-3.7188 0l-6.1289-4.6602c0.059506-1.0538 0.91908-1.8867 1.9883-1.8867zm14 3.1113v5.7773l-3.7969-2.8887z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 793 B |
@@ -1,19 +1,14 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 10.988281 3 L 6 7.9902344 L 6 8 L 6 9 L 6 13 L 6 14 L 6 14.009766 L 10.988281 19 L 12 19 L 12 18.597656 L 12 3.4023438 L 12 3 L 10.988281 3 z M 14.324219 7.28125 L 13.785156 8.1425781 A 4 4 0 0 1 15 11 A 4 4 0 0 1 13.789062 13.861328 L 14.328125 14.724609 A 5 5 0 0 0 16 11 A 5 5 0 0 0 14.324219 7.28125 z M 3 8 L 3 9 L 3 13 L 3 14 L 5 14 L 5 13 L 5 9 L 5 8 L 3 8 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:0.5;stroke:none"
|
||||
d="M 13.865234 3.5371094 L 13.621094 4.5136719 A 7 7 0 0 1 18 11 A 7 7 0 0 1 13.619141 17.478516 L 13.863281 18.453125 A 8 8 0 0 0 19 11 A 8 8 0 0 0 13.865234 3.5371094 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<g class="ColorScheme-Text" transform="translate(3,2.9995)" fill="currentColor">
|
||||
<rect y="6" width="5" height="4" ry="1"/>
|
||||
<path d="m6 3-3 3v4l3 3z"/>
|
||||
<path d="M 13.139,1.428 C 12.594,1 12,1.652 12.455,2.16 A 8,8 0 0 1 15,8 8,8 0 0 1 12.446,13.852 C 12,14.323 12.626,15 13.123,14.58 A 9,9 0 0 0 16,8 9,9 0 0 0 13.139,1.428 Z"/>
|
||||
<path d="m10.775 2.889c-0.587-0.535-1.199 0.225-0.684 0.732a6 6 0 0 1 1.909 4.379 6 6 0 0 1-1.916 4.389c-0.469 0.446 0.173 1.146 0.68 0.728a7 7 0 0 0 2.236-5.117 7 7 0 0 0-2.225-5.111z"/>
|
||||
<path d="M 8.41,4.35 C 7.89,3.856 7.255,4.57 7.727,5.08 A 4,4 0 0 1 9,8 4,4 0 0 1 7.723,10.926 c -0.473,0.43 0.14,1.152 0.68,0.73 A 5,5 0 0 0 10,8 5,5 0 0 0 8.41,4.35 Z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 995 B After Width: | Height: | Size: 914 B |
@@ -1,12 +1,10 @@
|
||||
<svg width="22" height="22" xmlns="http://www.w3.org/2000/svg">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
.ColorScheme-NegativeText {
|
||||
color:#da4453;
|
||||
}
|
||||
</style>
|
||||
<path id="strikethrough" d="m4 4.707031 15.292969 15.292969.707031-.707031-15.2929688-15.292969z" fill="#da4453"/>
|
||||
<path d="m12 4a1 1 0 0 0-1 1 1 1 0 0 0 0.009766 0.128906 3.9999999 3.9999999 0 0 0-2.2402348 1.519532l0.7167969 0.716796a3 3 0 0 1 2.5136719-1.365234 3 3 0 0 1 3 3c0 3 0.585938 4 2.585938 6h-0.464844l1 1h0.878906v-1c-2-2-3-3-3-6a3.9999999 3.9999999 0 0 0-3.009766-3.871094 1 1 0 0 0 0.009766-0.128906 1 1 0 0 0-1-1zm-4.0527344 6.068359c-0.2253625 2.204726-1.2061347 3.19051-2.9472656 4.931641v1h8.878906l-1-1h-6.4648435c1.4796441-1.479644 2.1821771-2.415859 2.4492187-4.015625zm2.3222656 6.931641a2 2 0 0 0-0.2695312 1 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-0.271484-1z" class="ColorScheme-Text" fill="currentColor" fill-rule="evenodd"/>
|
||||
}</style>
|
||||
<path class="ColorScheme-Text" d="m11 3a1 1 0 0 0-0.994 1.1 4.988 4.988 0 0 0-4.006 4.9v4.5l-2 2v0.5h14v-0.5l-2-2v-4.5a4.987 4.987 0 0 0-4.006-4.9 1 1 0 0 0-0.994-1.1zm0 2a4 4 0 0 1 4 4v4.922l1 1.078h-10l1-1.078v-4.922a4 4 0 0 1 4-4zm-1.73 12a2 2 0 0 0 1.73 1 2 2 0 0 0 1.729-1z" fill="currentColor" opacity=".35"/>
|
||||
<rect class="ColorScheme-Text" transform="rotate(45)" x="4.5563" y="-.5" width="22" height="1" rx=".5" ry=".5" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 724 B |
@@ -1,8 +1,6 @@
|
||||
<svg width="22" height="22" xmlns="http://www.w3.org/2000/svg">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg width="22" height="22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
<path d="m10.269531 17a2 2 0 0 0-0.2695312 1 2 2 0 0 0 2 2 2 2 0 0 0 2-2 2 2 0 0 0-0.271484-1zm1.7304688-13a1 1 0 0 0-1 1 1 1 0 0 0 0.0098 0.1289062 3.9999999 3.9999999 0 0 0-3.0098 3.8710938c0 3-1 4-3 6v1h14v-1c-2-2-3-3-3-6a3.9999999 3.9999999 0 0 0-3.009766-3.8710938 1 1 0 0 0 0.009766-0.1289062 1 1 0 0 0-1-1zm0 2a3 3 0 0 1 3 3c0 3 0.585938 4 2.585938 6h-11.171876c2-2 2.5859375-3 2.5859375-6a3 3 0 0 1 3-3z" class="ColorScheme-Text" fill="currentColor" fill-rule="evenodd"/>
|
||||
}</style>
|
||||
<path class="ColorScheme-Text" d="m11 3a1 1 0 0 0-0.994 1.1 4.988 4.988 0 0 0-4.006 4.9v4.5l-2 2v0.5h14v-0.5l-2-2v-4.5a4.987 4.987 0 0 0-4.006-4.9 1 1 0 0 0-0.994-1.1zm0 2a4 4 0 0 1 4 4v4.922l1 1.078h-10l1-1.078v-4.922a4 4 0 0 1 4-4zm-1.73 12a2 2 0 0 0 1.73 1 2 2 0 0 0 1.729-1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 687 B After Width: | Height: | Size: 503 B |
@@ -1,18 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 3 3 L 3 7 L 3 18 L 3 19 L 4 19 L 13 19 L 13 18 L 4 18 L 4 7 L 18 7 L 18 13 L 19 13 L 19 7 L 19 3 L 3 3 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
<path
|
||||
style="fill:#da4453;fill-opacity:1;stroke:none"
|
||||
d="M 14.707031 14 L 14 14.707031 L 15.792969 16.5 L 14 18.292969 L 14.707031 19 L 16.5 17.207031 L 18.292969 19 L 19 18.292969 L 17.207031 16.5 L 19 14.707031 L 18.292969 14 L 16.5 15.792969 L 14.707031 14 z "
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path d="m14.707 14-0.70703 0.70703 1.793 1.793-1.793 1.793 0.70703 0.70703 1.793-1.793 1.793 1.793 0.70703-0.70703-1.793-1.793 1.793-1.793-0.70703-0.70703-1.793 1.793-1.793-1.793z" fill="#da4453"/>
|
||||
<path class="ColorScheme-Text" d="m6 3c-1.662 0-3 1.338-3 3v10c0 1.662 1.338 3 3 3h7v-1h-7c-1.108 0-2-0.892-2-2v-7c0-1.108 0.892-2 2-2h10c1.108 0 2 0.892 2 2v4h1v-7c0-1.662-1.338-3-3-3h-10z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 734 B After Width: | Height: | Size: 623 B |
@@ -1,14 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 3 3 L 3 7 L 3 18 L 3 19 L 4 19 L 13 19 L 13 18 L 4 18 L 4 7 L 18 7 L 18 13 L 19 13 L 19 7 L 19 3 L 3 3 z M 16 13 L 15.425781 14.613281 L 13.878906 13.878906 L 14.613281 15.425781 L 13 16 L 14.613281 16.574219 L 13.878906 18.121094 L 15.425781 17.386719 L 16 19 L 16.574219 17.386719 L 18.121094 18.121094 L 17.386719 16.574219 L 19 16 L 17.386719 15.425781 L 18.121094 13.878906 L 16.574219 14.613281 L 16 13 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m16 13-0.57422 1.6133-1.5469-0.73438 0.73438 1.5469-1.6133 0.57422 1.6133 0.57422-0.73438 1.5469 1.5469-0.73438 0.57422 1.6133 0.57422-1.6133 1.5469 0.73438-0.73438-1.5469 1.6133-0.57422-1.6133-0.57422 0.73438-1.5469-1.5469 0.73438z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m6 3c-1.662 0-3 1.338-3 3v10c0 1.662 1.338 3 3 3h7v-1h-7c-1.108 0-2-0.892-2-2v-7c0-1.108 0.892-2 2-2h10c1.108 0 2 0.892 2 2v4h1v-7c0-1.662-1.338-3-3-3h-10z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 753 B After Width: | Height: | Size: 714 B |
@@ -1,14 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 3 3 L 3 7 L 3 18 L 3 19 L 4 19 L 13 19 L 18 19 L 19 19 L 19 18 L 19 13 L 19 7 L 19 3 L 3 3 z M 4 7 L 18 7 L 18 13 L 18 18 L 13 18 L 4 18 L 4 7 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m6 3c-1.662 0-3 1.338-3 3v10c0 1.662 1.338 3 3 3h10c1.662 0 3-1.338 3-3v-10c0-1.662-1.338-3-3-3zm0 4h10c1.108 0 2 0.892 2 2v7c0 1.108-0.892 2-2 2h-10c-1.108 0-2-0.892-2-2v-7c0-1.108 0.892-2 2-2z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 487 B After Width: | Height: | Size: 462 B |
@@ -1,14 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="m3 3v1 14 1h16v-1-12h-1-2-7v-1-2h-1-4m6 0v2h8v-2zm-6 1h4v3h8 2v11h-14z"
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
</svg>
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m4 3c-1.108 0-2 0.892-2 2v12c0 1.108 0.892 2 2 2h14c1.108 0 2-0.892 2-2v-11h-10c-0.554 0-1-0.446-1-1v-2h-5zm6 0v2h8c0-1.108-0.892-2-2-2h-6zm-6 1h4v1c0 1.108 0.892 2 2 2h9v10c0 0.554-0.446 1-1 1h-14c-0.554 0-1-0.446-1-1v-12c0-0.554 0.446-1 1-1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 423 B After Width: | Height: | Size: 511 B |
@@ -1,14 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="m3 3v1 14 1h16v-1-12h-1v-2h-2-5-1v1 1h-1v-1-2h-1-4-1m1 1h4v3h3 4 1 2v11h-14v-14"
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
</svg>
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m4 3c-1.108 0-2 0.892-2 2v12c0 1.108 0.892 2 2 2h14c1.108 0 2-0.892 2-2v-11h-10c-0.554 0-1-0.446-1-1v-2zm6 1v2h8c0-1.108-0.89319-1.9487-2-2zm-6 0h4v1c0 1.108 0.892 2 2 2h9v10c0 0.554-0.446 1-1 1h-14c-0.554 0-1-0.446-1-1v-12c0-0.554 0.446-1 1-1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 432 B After Width: | Height: | Size: 512 B |
@@ -1,14 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 3 3 L 3 4 L 3 18 L 3 19 L 13 19 L 13 18 L 4 18 L 4 4 L 8 4 L 8 7 L 16 7 L 18 7 L 18 13 L 19 13 L 19 6 L 18 6 L 16 6 L 16 3 L 8 3 L 4 3 L 3 3 z M 16 14 L 16 16 L 14 16 L 14 17 L 16 17 L 16 19 L 17 19 L 17 17 L 19 17 L 19 16 L 17 16 L 17 14 L 16 14 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m17.5 12c-1.933 0-3.5 1.567-3.5 3.5s1.567 3.5 3.5 3.5 3.5-1.567 3.5-3.5-1.567-3.5-3.5-3.5zm-0.5 1h1v2h2v1h-2v2h-1v-2h-2v-1h2v-2z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m5 4c-1.662 0-3 1.338-3 3v8c0 1.662 1.338 3 3 3h8v-1h-8c-1.108 0-2-0.892-2-2v-7h8v1h8v2h1v-4c0-1.662-1.338-3-3-3zm0 1h12c1.108 0 2 0.892 2 2h-16c0-1.108 0.892-2 2-2z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 590 B After Width: | Height: | Size: 620 B |
@@ -1,14 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 22 22" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 4 3 L 4 4 L 4 17 L 5 17 L 7 17 L 8 17 L 8 18 L 8 19 L 14 19 L 18 15 L 18 14 L 18 7 L 18 6 L 16 6 L 16 3 L 15 3 L 5 3 L 4 3 z M 5 4 L 15 4 L 15 6 L 8 6 L 8 7 L 8 16 L 7 16 L 5 16 L 5 4 z M 9 7 L 17 7 L 17 14 L 14 14 L 13 14 L 13 15 L 13 18 L 9 18 L 9 7 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m8 20c-1.662 0-3-1.338-3-3v-10c0-1.662 1.338-3 3-3h8c1.662 0 3 1.338 3 3v9l-4 4zm0-1h6v-2c0-1.108 0.892-2 2-2h2v-8c0-1.108-0.892-2-2-2h-8c-1.108 0-2 0.892-2 2v10c0 1.108 0.892 2 2 2z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m6 2c-1.662 0-3 1.338-3 3v10c0 1.3551 0.89551 2.4829 2.125 2.8574-0.080326-0.27154-0.125-0.55915-0.125-0.85742v-0.27539c-0.5958-0.34556-1-0.98355-1-1.7246v-10c0-1.108 0.892-2 2-2h8c0.74107 0 1.379 0.4042 1.7246 1h0.27539c0.29827 0 0.58588 0.044674 0.85742 0.125-0.37457-1.2295-1.5023-2.125-2.8574-2.125h-8zm12.816 3.9707c0.01 0.027373 0.02012 0.054288 0.0293 0.082031-0.0093-0.027724-0.01924-0.054687-0.0293-0.082031zm0.07031 0.21875c0.01237 0.044427 0.0248 0.08952 0.03516 0.13477-0.01049-0.045432-0.02262-0.090182-0.03516-0.13477zm0.06055 0.25781c0.01215 0.065592 0.02146 0.13217 0.0293 0.19922-0.0079-0.066981-0.01706-0.13374-0.0293-0.19922zm0.03711 0.25977c0.0093 0.096729 0.01563 0.19371 0.01563 0.29297 0-0.099202-0.0062-0.19641-0.01563-0.29297zm-12.014 13.109c0.027344 0.01006 0.054308 0.02003 0.082031 0.0293-0.027743-0.0092-0.054659-0.01934-0.082031-0.0293zm0.21875 0.07031c0.044582 0.01254 0.089334 0.02467 0.13477 0.03516-0.045246-0.01036-0.090338-0.02279-0.13477-0.03516zm0.25781 0.06055c0.065478 0.01223 0.13224 0.02141 0.19922 0.0293-0.067044-0.0078-0.13363-0.01714-0.19922-0.0293zm0.25977 0.03711c0.096557 0.0094 0.19377 0.01563 0.29297 0.01563-0.099256 0-0.19624-0.0063-0.29297-0.01563z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 593 B After Width: | Height: | Size: 1.7 KiB |
@@ -1,14 +1,11 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs><g transform="translate(1,1)">
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 3 3 L 3 4 L 3 15 L 3 16 L 3 19 L 4 19 L 6 19 L 14 19 L 18 19 L 19 19 L 19 4 L 19 3 L 3 3 z M 4 4 L 18 4 L 18 18 L 14 18 L 6 18 L 4 18 L 4 16 L 4 15 L 4 4 z M 6.7070312 7 L 6 7.7070312 L 7.7929688 9.5 L 6 11.292969 L 6.7070312 12 L 9 9.7070312 L 9.2070312 9.5 L 9 9.2929688 L 6.7070312 7 z M 10 10.998047 L 10 11.998047 L 14 11.998047 L 14 10.998047 L 10 10.998047 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
</g></svg>
|
||||
}</style>
|
||||
</defs>
|
||||
<g transform="translate(1,1)">
|
||||
<path class="ColorScheme-Text" d="m6.707 7-0.70703 0.70703 1.793 1.793-1.793 1.793 0.70703 0.70703 2.5-2.5-0.20703-0.20703zm3.293 3.998v1h4v-1z" fill="currentColor"/>
|
||||
</g>
|
||||
<path class="ColorScheme-Text" d="m7 4c-1.662 0-3 1.338-3 3v10c0 1.662 1.338 3 3 3h10c1.662 0 3-1.338 3-3v-10c0-1.662-1.338-3-3-3h-10zm0 1h10c1.108 0 2 0.892 2 2v10c0 1.108-0.892 2-2 2h-10c-1.108 0-2-0.892-2-2v-10c0-1.108 0.892-2 2-2z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 742 B After Width: | Height: | Size: 675 B |
@@ -1,13 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 4 4 L 4 5 L 4 11 L 10 11 L 10 10 L 10 4 L 9 4 L 4 4 z M 5 5 L 9 5 L 9 10 L 5 10 L 5 5 z M 14 5 L 14 11 L 19 11 L 20 11 L 20 10 L 20 6 L 20 5 L 19 5 L 15 5 L 14 5 z M 15 6 L 19 6 L 19 10 L 15 10 L 15 6 z M 4 13 L 4 14 L 20 14 L 20 13 L 4 13 z M 14 16 L 14 17 L 14 20 L 20 20 L 20 19 L 20 16 L 19 16 L 14 16 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m6 4c-1.108 0-2 0.892-2 2v3c0 1.108 0.892 2 2 2h2c1.108 0 2-0.892 2-2v-3c0-1.108-0.892-2-2-2h-2zm0 1h2c0.554 0 1 0.446 1 1v3c0 0.554-0.446 1-1 1h-2c-0.554 0-1-0.446-1-1v-3c0-0.554 0.446-1 1-1zm10 0c-1.108 0-2 0.892-2 2v2c0 1.108 0.892 2 2 2h2c1.108 0 2-0.892 2-2v-2c0-1.108-0.892-2-2-2h-2zm0 1h2c0.554 0 1 0.446 1 1v2c0 0.554-0.446 1-1 1h-2c-0.554 0-1-0.446-1-1v-2c0-0.554 0.446-1 1-1zm-11.5 7c-0.277 0-0.5 0.223-0.5 0.5s0.223 0.5 0.5 0.5h15c0.277 0 0.5-0.223 0.5-0.5s-0.223-0.5-0.5-0.5h-15zm10.5 3c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h4c0.554 0 1-0.446 1-1v-2c0-0.554-0.446-1-1-1h-4z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 646 B After Width: | Height: | Size: 858 B |
@@ -1,13 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 11.5 4 L 11.5 5 L 9 5 L 9 6 L 9 9 L 9 10 L 11.5 10 L 11.5 14 L 6 14 L 6 15 L 6 19 L 7 19 L 11.5 19 L 11.5 20 L 12.5 20 L 12.5 19 L 18 19 L 18 18 L 18 15 L 18 14 L 12.5 14 L 12.5 10 L 14 10 L 15 10 L 15 9 L 15 6 L 15 5 L 14 5 L 12.5 5 L 12.5 4 L 11.5 4 z M 10 6 L 14 6 L 14 9 L 10 9 L 10 6 z M 7 15 L 17 15 L 17 18 L 7 18 L 7 15 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m8 14c-1.108 0-2 0.892-2 2v1c0 1.108 0.892 2 2 2h8c1.108 0 2-0.892 2-2v-1c0-1.108-0.892-2-2-2h-8zm0 1h8c0.554 0 1 0.446 1 1v1c0 0.554-0.446 1-1 1h-8c-0.554 0-1-0.446-1-1v-1c0-0.554 0.446-1 1-1z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m11 5c-1.108 0-2 0.892-2 2v1c0 1.108 0.892 2 2 2h2c1.108 0 2-0.892 2-2v-1c0-1.108-0.892-2-2-2zm0 1h2c0.554 0 1 0.446 1 1v1c0 0.554-0.446 1-1 1h-2c-0.554 0-1-0.446-1-1v-1c0-0.554 0.446-1 1-1z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m12 4c-0.277 0-0.5 0.223-0.5 0.5v1.5h1v-1.5c0-0.277-0.223-0.5-0.5-0.5zm-0.5 5v6h1v-6zm0 9v1.5c0 0.277 0.223 0.5 0.5 0.5s0.5-0.223 0.5-0.5v-1.5z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 668 B After Width: | Height: | Size: 912 B |
@@ -1,13 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 10 4 L 10 20 L 11 20 L 11 4 L 10 4 z M 13 4 L 13 10 L 14 10 L 20 10 L 20 9 L 20 4 L 19 4 L 13 4 z M 14 5 L 19 5 L 19 9 L 14 9 L 14 5 z M 4 14 L 4 20 L 5 20 L 8 20 L 8 19 L 8 14 L 7 14 L 4 14 z M 14 14 L 14 19 L 14 20 L 15 20 L 19 20 L 20 20 L 20 19 L 20 15 L 20 14 L 14 14 z M 15 15 L 19 15 L 19 19 L 15 19 L 15 15 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m20 6c0-1.108-0.892-2-2-2h-3c-1.108 0-2 0.892-2 2v2c0 1.108 0.892 2 2 2h3c1.108 0 2-0.892 2-2zm-1 0v2c0 0.554-0.446 1-1 1h-3c-0.554 0-1-0.446-1-1v-2c0-0.554 0.446-1 1-1h3c0.554 0 1 0.446 1 1zm0 10c0-1.108-0.892-2-2-2h-2c-1.108 0-2 0.892-2 2v2c0 1.108 0.892 2 2 2h2c1.108 0 2-0.892 2-2zm-1 0v2c0 0.554-0.446 1-1 1h-2c-0.554 0-1-0.446-1-1v-2c0-0.554 0.446-1 1-1h2c0.554 0 1 0.446 1 1zm-7-11.5c0-0.277-0.223-0.5-0.5-0.5s-0.5 0.223-0.5 0.5v15c0 0.277 0.223 0.5 0.5 0.5s0.5-0.223 0.5-0.5zm-3 10.5c0-0.554-0.446-1-1-1h-2c-0.554 0-1 0.446-1 1v4c0 0.554 0.446 1 1 1h2c0.554 0 1-0.446 1-1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 655 B After Width: | Height: | Size: 848 B |
@@ -1,13 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 4 4 L 4 10 L 7 10 L 8 10 L 8 5 L 8 4 L 5 4 L 4 4 z M 10 4 L 10 20 L 11 20 L 11 4 L 10 4 z M 14 4 L 14 5 L 14 10 L 20 10 L 20 9 L 20 5 L 20 4 L 19 4 L 15 4 L 14 4 z M 15 5 L 19 5 L 19 9 L 15 9 L 15 5 z M 13 14 L 13 20 L 19 20 L 20 20 L 20 15 L 20 14 L 14 14 L 13 14 z M 14 15 L 19 15 L 19 19 L 14 19 L 14 15 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m20 18c0 1.108-0.892 2-2 2h-3c-1.108 0-2-0.892-2-2v-2c0-1.108 0.892-2 2-2h3c1.108 0 2 0.892 2 2zm-1 0v-2c0-0.554-0.446-1-1-1h-3c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h3c0.554 0 1-0.446 1-1zm0-10c0 1.108-0.892 2-2 2h-2c-1.108 0-2-0.892-2-2v-2c0-1.108 0.892-2 2-2h2c1.108 0 2 0.892 2 2zm-1 0v-2c0-0.554-0.446-1-1-1h-2c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h2c0.554 0 1-0.446 1-1zm-7 11.5c0 0.277-0.223 0.5-0.5 0.5s-0.5-0.223-0.5-0.5v-15c0-0.277 0.223-0.5 0.5-0.5s0.5 0.223 0.5 0.5zm-3-10.5c0 0.554-0.446 1-1 1h-2c-0.554 0-1-0.446-1-1v-4c0-0.554 0.446-1 1-1h2c0.554 0 1 0.446 1 1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 647 B After Width: | Height: | Size: 853 B |
@@ -1,13 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 4 4 L 4 20 L 5 20 L 5 4 L 4 4 z M 7 4 L 7 10 L 20 10 L 20 4 L 7 4 z M 8 5 L 19 5 L 19 9 L 8 9 L 8 5 z M 7 14 L 7 20 L 13 20 L 13 14 L 7 14 z M 8 15 L 12 15 L 12 19 L 8 19 L 8 15 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m9 4c-1.108 0-2 0.892-2 2v2c0 1.108 0.892 2 2 2h9c1.108 0 2-0.892 2-2v-2c0-1.108-0.892-2-2-2zm0 1h9c0.554 0 1 0.446 1 1v2c0 0.554-0.446 1-1 1h-9c-0.554 0-1-0.446-1-1v-2c0-0.554 0.446-1 1-1z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m9 14c-1.108 0-2 0.892-2 2v2c0 1.108 0.892 2 2 2h2c1.108 0 2-0.892 2-2v-2c0-1.108-0.892-2-2-2zm0 1h2c0.554 0 1 0.446 1 1v2c0 0.554-0.446 1-1 1h-2c-0.554 0-1-0.446-1-1v-2c0-0.554 0.446-1 1-1z" fill="currentColor"/>
|
||||
<rect class="ColorScheme-Text" x="4" y="4" width="1" height="16" rx=".5" ry=".5" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 518 B After Width: | Height: | Size: 810 B |
@@ -1,13 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 4 4 L 4 9 L 4 10 L 10 10 L 11 10 L 11 4 L 5 4 L 4 4 z M 13 4 L 13 20 L 14 20 L 14 4 L 13 4 z M 5 5 L 10 5 L 10 9 L 5 9 L 5 5 z M 4 14 L 4 15 L 4 19 L 4 20 L 5 20 L 9 20 L 10 20 L 10 19 L 10 14 L 4 14 z M 16 14 L 16 19 L 16 20 L 19 20 L 20 20 L 20 14 L 17 14 L 16 14 z M 5 15 L 9 15 L 9 19 L 5 19 L 5 15 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m4 6c0-1.108 0.892-2 2-2h3c1.108 0 2 0.892 2 2v2c0 1.108-0.892 2-2 2h-3c-1.108 0-2-0.892-2-2zm1 0v2c0 0.554 0.446 1 1 1h3c0.554 0 1-0.446 1-1v-2c0-0.554-0.446-1-1-1h-3c-0.554 0-1 0.446-1 1zm0 10c0-1.108 0.892-2 2-2h2c1.108 0 2 0.892 2 2v2c0 1.108-0.892 2-2 2h-2c-1.108 0-2-0.892-2-2zm1 0v2c0 0.554 0.446 1 1 1h2c0.554 0 1-0.446 1-1v-2c0-0.554-0.446-1-1-1h-2c-0.554 0-1 0.446-1 1zm7-11.5c0-0.277 0.223-0.5 0.5-0.5s0.5 0.223 0.5 0.5v15c0 0.277-0.223 0.5-0.5 0.5s-0.5-0.223-0.5-0.5zm3 10.5c0-0.554 0.446-1 1-1h2c0.554 0 1 0.446 1 1v4c0 0.554-0.446 1-1 1h-2c-0.554 0-1-0.446-1-1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 643 B After Width: | Height: | Size: 843 B |
@@ -1,13 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 4 4 L 4 5 L 4 9 L 4 10 L 10 10 L 10 5 L 10 4 L 9 4 L 5 4 L 4 4 z M 13 4 L 13 20 L 14 20 L 14 4 L 13 4 z M 16 4 L 16 5 L 16 10 L 17 10 L 20 10 L 20 4 L 19 4 L 16 4 z M 5 5 L 9 5 L 9 9 L 5 9 L 5 5 z M 4 14 L 4 15 L 4 20 L 5 20 L 11 20 L 11 14 L 10 14 L 4 14 z M 5 15 L 10 15 L 10 19 L 5 19 L 5 15 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m4 18c0 1.108 0.892 2 2 2h3c1.108 0 2-0.892 2-2v-2c0-1.108-0.892-2-2-2h-3c-1.108 0-2 0.892-2 2zm1 0v-2c0-0.554 0.446-1 1-1h3c0.554 0 1 0.446 1 1v2c0 0.554-0.446 1-1 1h-3c-0.554 0-1-0.446-1-1zm0-10c0 1.108 0.892 2 2 2h2c1.108 0 2-0.892 2-2v-2c0-1.108-0.892-2-2-2h-2c-1.108 0-2 0.892-2 2zm1 0v-2c0-0.554 0.446-1 1-1h2c0.554 0 1 0.446 1 1v2c0 0.554-0.446 1-1 1h-2c-0.554 0-1-0.446-1-1zm7 11.5c0 0.277 0.223 0.5 0.5 0.5s0.5-0.223 0.5-0.5v-15c0-0.277-0.223-0.5-0.5-0.5s-0.5 0.223-0.5 0.5zm3-10.5c0 0.554 0.446 1 1 1h2c0.554 0 1-0.446 1-1v-4c0-0.554-0.446-1-1-1h-2c-0.554 0-1 0.446-1 1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 635 B After Width: | Height: | Size: 848 B |
@@ -1,13 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 4 4 L 4 10 L 17 10 L 17 4 L 4 4 z M 19 4 L 19 20 L 20 20 L 20 4 L 19 4 z M 5 5 L 16 5 L 16 9 L 5 9 L 5 5 z M 11 14 L 11 20 L 17 20 L 17 14 L 11 14 z M 12 15 L 16 15 L 16 19 L 12 19 L 12 15 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m15 4c1.108 0 2 0.892 2 2v2c0 1.108-0.892 2-2 2h-9c-1.108 0-2-0.892-2-2v-2c0-1.108 0.892-2 2-2zm0 1h-9c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h9c0.554 0 1-0.446 1-1v-2c0-0.554-0.446-1-1-1z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m15 14c1.108 0 2 0.892 2 2v2c0 1.108-0.892 2-2 2h-2c-1.108 0-2-0.892-2-2v-2c0-1.108 0.892-2 2-2zm0 1h-2c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h2c0.554 0 1-0.446 1-1v-2c0-0.554-0.446-1-1-1z" fill="currentColor"/>
|
||||
<rect class="ColorScheme-Text" transform="scale(-1,1)" x="-20" y="4" width="1" height="16" rx=".5" ry=".5" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 529 B After Width: | Height: | Size: 840 B |
@@ -1,13 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 14 4 L 14 7 L 14 8 L 19 8 L 20 8 L 20 5 L 20 4 L 14 4 z M 4 10 L 4 11 L 20 11 L 20 10 L 4 10 z M 4 13 L 4 19 L 4 20 L 9 20 L 10 20 L 10 14 L 10 13 L 4 13 z M 14 13 L 14 19 L 15 19 L 19 19 L 20 19 L 20 18 L 20 14 L 20 13 L 19 13 L 14 13 z M 5 14 L 9 14 L 9 19 L 5 19 L 5 14 z M 15 14 L 19 14 L 19 18 L 15 18 L 15 14 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m6 20c-1.108 0-2-0.892-2-2v-3c0-1.108 0.892-2 2-2h2c1.108 0 2 0.892 2 2v3c0 1.108-0.892 2-2 2zm0-1h2c0.554 0 1-0.446 1-1v-3c0-0.554-0.446-1-1-1h-2c-0.554 0-1 0.446-1 1v3c0 0.554 0.446 1 1 1zm10 0c-1.108 0-2-0.892-2-2v-2c0-1.108 0.892-2 2-2h2c1.108 0 2 0.892 2 2v2c0 1.108-0.892 2-2 2zm0-1h2c0.554 0 1-0.446 1-1v-2c0-0.554-0.446-1-1-1h-2c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1zm-11.5-7c-0.277 0-0.5-0.223-0.5-0.5s0.223-0.5 0.5-0.5h15c0.277 0 0.5 0.223 0.5 0.5s-0.223 0.5-0.5 0.5zm10.5-3c-0.554 0-1-0.446-1-1v-2c0-0.554 0.446-1 1-1h4c0.554 0 1 0.446 1 1v2c0 0.554-0.446 1-1 1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 655 B After Width: | Height: | Size: 846 B |
@@ -1,13 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 4 4 L 4 5 L 4 11 L 10 11 L 10 10 L 10 4 L 9 4 L 4 4 z M 14 4 L 14 10 L 19 10 L 20 10 L 20 9 L 20 5 L 20 4 L 19 4 L 15 4 L 14 4 z M 5 5 L 9 5 L 9 10 L 5 10 L 5 5 z M 15 5 L 19 5 L 19 9 L 15 9 L 15 5 z M 4 13 L 4 14 L 20 14 L 20 13 L 4 13 z M 14 16 L 14 17 L 14 20 L 20 20 L 20 19 L 20 16 L 19 16 L 14 16 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m6 4c-1.108 0-2 0.892-2 2v3c0 1.108 0.892 2 2 2h2c1.108 0 2-0.892 2-2v-3c0-1.108-0.892-2-2-2zm0 1h2c0.554 0 1 0.446 1 1v3c0 0.554-0.446 1-1 1h-2c-0.554 0-1-0.446-1-1v-3c0-0.554 0.446-1 1-1zm10-1c-1.108 0-2 0.892-2 2v2c0 1.108 0.892 2 2 2h2c1.108 0 2-0.892 2-2v-2c0-1.108-0.892-2-2-2zm0 1h2c0.554 0 1 0.446 1 1v2c0 0.554-0.446 1-1 1h-2c-0.554 0-1-0.446-1-1v-2c0-0.554 0.446-1 1-1zm-11.5 8c-0.277 0-0.5 0.223-0.5 0.5s0.223 0.5 0.5 0.5h15c0.277 0 0.5-0.223 0.5-0.5s-0.223-0.5-0.5-0.5zm10.5 3c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h4c0.554 0 1-0.446 1-1v-2c0-0.554-0.446-1-1-1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 643 B After Width: | Height: | Size: 845 B |
@@ -1,13 +1,12 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 14 4 L 14 17 L 20 17 L 20 4 L 14 4 z M 15 5 L 19 5 L 19 16 L 15 16 L 15 5 z M 4 11 L 4 17 L 10 17 L 10 11 L 4 11 z M 5 12 L 9 12 L 9 16 L 5 16 L 5 12 z M 4 19 L 4 20 L 20 20 L 20 19 L 4 19 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<g transform="rotate(-90,12,12)" fill="currentColor">
|
||||
<path class="ColorScheme-Text" d="m9 4c-1.108 0-2 0.892-2 2v2c0 1.108 0.892 2 2 2h9c1.108 0 2-0.892 2-2v-2c0-1.108-0.892-2-2-2zm0 1h9c0.554 0 1 0.446 1 1v2c0 0.554-0.446 1-1 1h-9c-0.554 0-1-0.446-1-1v-2c0-0.554 0.446-1 1-1z"/>
|
||||
<path class="ColorScheme-Text" d="m9 14c-1.108 0-2 0.892-2 2v2c0 1.108 0.892 2 2 2h2c1.108 0 2-0.892 2-2v-2c0-1.108-0.892-2-2-2zm0 1h2c0.554 0 1 0.446 1 1v2c0 0.554-0.446 1-1 1h-2c-0.554 0-1-0.446-1-1v-2c0-0.554 0.446-1 1-1z"/>
|
||||
<rect class="ColorScheme-Text" x="4" y="4" width="1" height="16" rx=".5" ry=".5"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 529 B After Width: | Height: | Size: 814 B |
@@ -1,13 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 5 6 L 5 7 L 5 11.5 L 4 11.5 L 4 12.5 L 5 12.5 L 5 18 L 6 18 L 9 18 L 10 18 L 10 12.5 L 14 12.5 L 14 14 L 14 15 L 15 15 L 18 15 L 19 15 L 19 14 L 19 12.5 L 20 12.5 L 20 11.5 L 19 11.5 L 19 9 L 18 9 L 15 9 L 14 9 L 14 11.5 L 10 11.5 L 10 6 L 9 6 L 5 6 z M 6 7 L 9 7 L 9 17 L 6 17 L 6 7 z M 15 10 L 18 10 L 18 14 L 15 14 L 15 10 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m10 8c0-1.108-0.892-2-2-2h-1c-1.108 0-2 0.892-2 2v8c0 1.108 0.892 2 2 2h1c1.108 0 2-0.892 2-2zm-1 0v8c0 0.554-0.446 1-1 1h-1c-0.554 0-1-0.446-1-1v-8c0-0.554 0.446-1 1-1h1c0.554 0 1 0.446 1 1z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m19 11c0-1.108-0.892-2-2-2h-1c-1.108 0-2 0.892-2 2v2c0 1.108 0.892 2 2 2h1c1.108 0 2-0.892 2-2zm-1 0v2c0 0.554-0.446 1-1 1h-1c-0.554 0-1-0.446-1-1v-2c0-0.554 0.446-1 1-1h1c0.554 0 1 0.446 1 1z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m20 12c0-0.277-0.223-0.5-0.5-0.5h-1.5v1h1.5c0.277 0 0.5-0.223 0.5-0.5zm-5-0.5h-6v1h6zm-9 0h-1.5c-0.277 0-0.5 0.223-0.5 0.5s0.223 0.5 0.5 0.5h1.5z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 666 B After Width: | Height: | Size: 914 B |
@@ -1,13 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 14 4 L 14 7 L 14 8 L 19 8 L 20 8 L 20 5 L 20 4 L 14 4 z M 4 10 L 4 11 L 20 11 L 20 10 L 4 10 z M 4 13 L 4 19 L 4 20 L 9 20 L 10 20 L 10 14 L 10 13 L 4 13 z M 5 14 L 9 14 L 9 19 L 5 19 L 5 14 z M 14 14 L 14 20 L 15 20 L 19 20 L 20 20 L 20 19 L 20 15 L 20 14 L 19 14 L 14 14 z M 15 15 L 19 15 L 19 19 L 15 19 L 15 15 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m6 20c-1.108 0-2-0.892-2-2v-3c0-1.108 0.892-2 2-2h2c1.108 0 2 0.892 2 2v3c0 1.108-0.892 2-2 2zm0-1h2c0.554 0 1-0.446 1-1v-3c0-0.554-0.446-1-1-1h-2c-0.554 0-1 0.446-1 1v3c0 0.554 0.446 1 1 1zm10 1c-1.108 0-2-0.892-2-2v-2c0-1.108 0.892-2 2-2h2c1.108 0 2 0.892 2 2v2c0 1.108-0.892 2-2 2zm0-1h2c0.554 0 1-0.446 1-1v-2c0-0.554-0.446-1-1-1h-2c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1zm-11.5-8c-0.277 0-0.5-0.223-0.5-0.5s0.223-0.5 0.5-0.5h15c0.277 0 0.5 0.223 0.5 0.5s-0.223 0.5-0.5 0.5zm10.5-3c-0.554 0-1-0.446-1-1v-2c0-0.554 0.446-1 1-1h4c0.554 0 1 0.446 1 1v2c0 0.554-0.446 1-1 1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 655 B After Width: | Height: | Size: 846 B |
@@ -1,13 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 14 4 L 14 7 L 14 8 L 19 8 L 20 8 L 20 5 L 20 4 L 14 4 z M 4 10 L 4 11 L 20 11 L 20 10 L 4 10 z M 4 13 L 4 19 L 4 20 L 9 20 L 10 20 L 10 14 L 10 13 L 4 13 z M 14 13 L 14 19 L 20 19 L 20 13 L 14 13 z M 5 14 L 9 14 L 9 19 L 5 19 L 5 14 z M 15 14 L 19 14 L 19 18 L 15 18 L 15 14 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m6 20c-1.108 0-2-0.892-2-2v-3c0-1.108 0.892-2 2-2h2c1.108 0 2 0.892 2 2v3c0 1.108-0.892 2-2 2zm0-1h2c0.554 0 1-0.446 1-1v-3c0-0.554-0.446-1-1-1h-2c-0.554 0-1 0.446-1 1v3c0 0.554 0.446 1 1 1zm10 0c-1.108 0-2-0.892-2-2v-2c0-1.108 0.892-2 2-2h2c1.108 0 2 0.892 2 2v2c0 1.108-0.892 2-2 2zm0-1h2c0.554 0 1-0.446 1-1v-2c0-0.554-0.446-1-1-1h-2c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1zm-11.5-7c-0.277 0-0.5-0.223-0.5-0.5s0.223-0.5 0.5-0.5h15c0.277 0 0.5 0.223 0.5 0.5s-0.223 0.5-0.5 0.5zm10.5-3c-0.554 0-1-0.446-1-1v-2c0-0.554 0.446-1 1-1h4c0.554 0 1 0.446 1 1v2c0 0.554-0.446 1-1 1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 615 B After Width: | Height: | Size: 846 B |
@@ -1,13 +1,12 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 4 4 L 4 5 L 20 5 L 20 4 L 4 4 z M 4 7 L 4 13 L 10 13 L 10 7 L 4 7 z M 14 7 L 14 20 L 20 20 L 20 7 L 14 7 z M 5 8 L 9 8 L 9 12 L 5 12 L 5 8 z M 15 8 L 19 8 L 19 19 L 15 19 L 15 8 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<g transform="rotate(90,12,12)" fill="currentColor">
|
||||
<path class="ColorScheme-Text" d="m9 4c-1.108 0-2 0.892-2 2v2c0 1.108 0.892 2 2 2h9c1.108 0 2-0.892 2-2v-2c0-1.108-0.892-2-2-2zm0 1h9c0.554 0 1 0.446 1 1v2c0 0.554-0.446 1-1 1h-9c-0.554 0-1-0.446-1-1v-2c0-0.554 0.446-1 1-1z"/>
|
||||
<path class="ColorScheme-Text" d="m9 14c-1.108 0-2 0.892-2 2v2c0 1.108 0.892 2 2 2h2c1.108 0 2-0.892 2-2v-2c0-1.108-0.892-2-2-2zm0 1h2c0.554 0 1 0.446 1 1v2c0 0.554-0.446 1-1 1h-2c-0.554 0-1-0.446-1-1v-2c0-0.554 0.446-1 1-1z"/>
|
||||
<rect class="ColorScheme-Text" x="4" y="4" width="1" height="16" rx=".5" ry=".5"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 518 B After Width: | Height: | Size: 813 B |
@@ -1,13 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-NegativeText {
|
||||
<svg width="24" height="24" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-NegativeText {
|
||||
color:#da4453;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
class="ColorScheme-NegativeText"
|
||||
d="M4 4v16h16V4H4m1 4h14v11H5V8m4 4v2h6v-2H9" fill="#da4453"/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-NegativeText" d="m6 4c-1.108 0-2 0.892-2 2v12c0 1.108 0.892 2 2 2h12c1.108 0 2-0.892 2-2v-12c0-1.108-0.892-2-2-2h-12zm0 4h12c0.554 0 1 0.446 1 1v9c0 0.554-0.446 1-1 1h-12c-0.554 0-1-0.446-1-1v-9c0-0.554 0.446-1 1-1zm4 4c-0.554 0-1 0.446-1 1s0.446 1 1 1h4c0.554 0 1-0.446 1-1s-0.446-1-1-1h-4z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 452 B After Width: | Height: | Size: 575 B |
@@ -1,13 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 4 6 L 4 8 L 20 8 L 20 6 L 4 6 z M 4 11 L 4 13 L 20 13 L 20 11 L 4 11 z M 4 16 L 4 18 L 20 18 L 20 16 L 4 16 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" d="m5 6c-0.554 0-1 0.446-1 1s0.446 1 1 1h14c0.554 0 1-0.446 1-1s-0.446-1-1-1h-14zm0 5c-0.554 0-1 0.446-1 1s0.446 1 1 1h14c0.554 0 1-0.446 1-1s-0.446-1-1-1h-14zm0 5c-0.554 0-1 0.446-1 1s0.446 1 1 1h14c0.554 0 1-0.446 1-1s-0.446-1-1-1h-14z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 448 B After Width: | Height: | Size: 502 B |
@@ -1 +1,7 @@
|
||||
<svg height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><style type="text/css" id="current-color-scheme">.ColorScheme-Text{color:#363636;}</style><g style="fill:currentColor;fill-opacity:1;stroke:none" class="ColorScheme-Text"><path d="m4 4v16h9v-1h-8v-14h7v1h1v-1h6v8h1v-9zm8 2h-1v1h1zm0 1v1h1v-1zm0 1h-1v1h1zm0 1v1h1v-1zm0 1h-1v1 1h2v-1h-1z"/><path d="m16.5 13-.207031.207031-3.292969 3.292969.707031.707031 2.292969-2.292969v5.085938h1v-5.085938l2.292969 2.292969.707031-.707031-3.292969-3.292969z"/></g></svg>
|
||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text{color:#363636;}</style>
|
||||
<g class="ColorScheme-Text" fill="currentColor">
|
||||
<path d="m16.5 13-3.5 3.5 0.70703 0.70703 2.293-2.293v5.0859h1v-5.0859l2.293 2.293 0.70703-0.70703-3.293-3.293z"/>
|
||||
</g>
|
||||
<path class="ColorScheme-Text" d="m7 4c-1.662 0-3 1.338-3 3v10c0 1.662 1.338 3 3 3h6v-1h-6c-1.108 0-2-0.892-2-2v-10c0-1.108 0.892-2 2-2h5v1h1v-1h4c1.108 0 2 0.892 2 2v6h1v-6c0-1.662-1.338-3-3-3h-4-1-5zm5 2h-1v1h1v-1zm0 1v1h1v-1h-1zm0 1h-1v1h1v-1zm0 1v1h1v-1h-1zm0 1h-1v1 1a1 1 0 0 0 1 1 1 1 0 0 0 1-1v-1h-1v-1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 540 B After Width: | Height: | Size: 705 B |
@@ -1 +1,5 @@
|
||||
<svg height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><style type="text/css" id="current-color-scheme">.ColorScheme-Text{color:#363636;}</style><g style="fill:currentColor;fill-opacity:1;stroke:none" class="ColorScheme-Text" transform="translate(1 1)"><path d="m4 4v16h11v-1h-10v-14h7v1h1v-1h6v10h1v-11zm8 2h-1v1h1zm0 1v1h1v-1zm0 1h-1v1h1zm0 1v1h1v-1zm0 1h-1v1 1h2v-1h-1z" transform="translate(-1 -1)"/><path d="m16 14v2h-2v1h2v2h1v-2h2v-1h-2v-2z"/></g></svg>
|
||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text{color:#363636;}</style>
|
||||
<path class="ColorScheme-Text" d="m17 15v2h-2v1h2v2h1v-2h2v-1h-2v-2z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m7 4c-1.662 0-3 1.338-3 3v10c0 1.662 1.338 3 3 3h8v-1h-8c-1.108 0-2-0.892-2-2v-10c0-1.108 0.892-2 2-2h5v1h1v-1h4c1.108 0 2 0.892 2 2v8h1v-8c0-1.662-1.338-3-3-3h-5zm5 2h-1v1h1zm0 1v1h1v-1zm0 1h-1v1h1zm0 1v1h1v-1zm0 1h-1v2c0 0.55228 0.44772 1 1 1s1-0.44772 1-1v-1h-1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 488 B After Width: | Height: | Size: 614 B |
@@ -1 +1,5 @@
|
||||
<svg height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><style type="text/css" id="current-color-scheme">.ColorScheme-Text{color:#363636;}.ColorScheme-NegativeText{color:#da4453;}</style><g transform="translate(1 -1)"><path d="m4 4v16h11v-1h-10v-14h7v1h1v-1h6v10h1v-11zm8 2h-1v1h1zm0 1v1h1v-1zm0 1h-1v1h1zm0 1v1h1v-1zm0 1h-1v1 1h2v-1h-1z" style="fill:currentColor;fill-opacity:1;stroke:none" class="ColorScheme-Text" transform="translate(-1 1)"/><path d="m14 18h5v1h-5z" style="fill:currentColor;fill-opacity:1;stroke:none" class="ColorScheme-NegativeText"/></g></svg>
|
||||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text{color:#363636;}.ColorScheme-NegativeText{color:#da4453;}</style>
|
||||
<path class="ColorScheme-NegativeText" d="m15 17h5v1h-5z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m7 4c-1.662 0-3 1.338-3 3v10c0 1.662 1.338 3 3 3h8v-1h-8c-1.108 0-2-0.892-2-2v-10c0-1.108 0.892-2 2-2h5v1h1v-1h4c1.108 0 2 0.892 2 2v8h1v-8c0-1.662-1.338-3-3-3h-5zm5 2h-1v1h1zm0 1v1h1v-1zm0 1h-1v1h1zm0 1v1h1v-1zm0 1h-1v2c0 0.55228 0.44772 1 1 1s1-0.44772 1-1v-1h-1z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 595 B After Width: | Height: | Size: 643 B |
@@ -1,13 +1,16 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 11.988281 4 L 7 8.9902344 L 7 9 L 7 10 L 7 14 L 7 15 L 7 15.009766 L 11.988281 20 L 13 20 L 13 19.597656 L 13 4.4023438 L 13 4 L 11.988281 4 z M 14.865234 4.5371094 L 14.621094 5.5136719 A 7 7 0 0 1 19 12 A 7 7 0 0 1 14.619141 18.478516 L 14.863281 19.453125 A 8 8 0 0 0 20 12 A 8 8 0 0 0 14.865234 4.5371094 z M 15.324219 8.28125 L 14.785156 9.1425781 A 4 4 0 0 1 16 12 A 4 4 0 0 1 14.789062 14.861328 L 15.328125 15.724609 A 5 5 0 0 0 17 12 A 5 5 0 0 0 15.324219 8.28125 z M 4 9 L 4 10 L 4 14 L 4 15 L 6 15 L 6 14 L 6 10 L 6 9 L 4 9 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<g class="ColorScheme-Text" transform="translate(3.9998,3.9996)" fill="currentColor">
|
||||
<rect y="6" width="5" height="4" ry="1" fill-rule="evenodd" style="paint-order:normal"/>
|
||||
<path d="m6 3-3 3v4l3 3z"/>
|
||||
<g fill-rule="evenodd">
|
||||
<path d="m13.139 1.4277c-0.54546-0.42773-1.1387 0.22461-0.68359 0.73242 1.6202 1.5104 2.5416 3.6249 2.5449 5.8398-0.0026 2.2205-0.92793 4.3401-2.5547 5.8516-0.44531 0.47165 0.18064 1.1484 0.67774 0.72852 1.8304-1.6992 2.8725-4.0825 2.877-6.5801-0.0026-2.4925-1.0386-4.8722-2.8613-6.5723z" style="paint-order:normal"/>
|
||||
<path d="m10.775 2.8887c-0.58741-0.53488-1.1988 0.22518-0.68359 0.73242 1.2147 1.1326 1.9056 2.7181 1.9082 4.3789-0.0019 1.6654-0.69594 3.2551-1.916 4.3887-0.46835 0.44623 0.17346 1.1467 0.67969 0.72852 1.423-1.3216 2.233-3.1751 2.2363-5.1172-0.0019-1.9383-0.80739-3.789-2.2246-5.1113z" style="paint-order:normal"/>
|
||||
<path d="m8.4102 4.3496c-0.52095-0.49369-1.1551 0.22003-0.68359 0.73047 0.81045 0.75501 1.2715 1.8123 1.2734 2.9199-0.00128 1.1103-0.46396 2.1701-1.2773 2.9258-0.47259 0.42993 0.13957 1.1522 0.67969 0.73047 1.0168-0.94425 1.5955-2.2686 1.5977-3.6562-0.00172-1.3844-0.57738-2.7062-1.5898-3.6504z" style="paint-order:normal"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 875 B After Width: | Height: | Size: 1.4 KiB |
@@ -1,19 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 11.988281 4 L 7 8.9902344 L 7 9 L 7 10 L 7 14 L 7 15 L 7 15.009766 L 11.988281 20 L 13 20 L 13 19.597656 L 13 4.4023438 L 13 4 L 11.988281 4 z M 4 9 L 4 10 L 4 14 L 4 15 L 6 15 L 6 14 L 6 10 L 6 9 L 4 9 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:0.5;stroke:none"
|
||||
d="M 14.865234 4.5371094 L 14.621094 5.5136719 A 7 7 0 0 1 19 12 A 7 7 0 0 1 14.619141 18.478516 L 14.863281 19.453125 A 8 8 0 0 0 20 12 A 8 8 0 0 0 14.865234 4.5371094 z M 15.324219 8.28125 L 14.785156 9.1425781 A 4 4 0 0 1 16 12 A 4 4 0 0 1 14.789062 14.861328 L 15.328125 15.724609 A 5 5 0 0 0 17 12 A 5 5 0 0 0 15.324219 8.28125 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<g class="ColorScheme-Text" fill="currentColor">
|
||||
<path d="m10 7-3 3h-2c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h2l3 3v-10z"/>
|
||||
<path d="m17.139 5.4273c-0.54546-0.42773-1.1387 0.22461-0.68359 0.73242 1.6202 1.5104 2.5416 3.6249 2.5449 5.8398-0.0026 2.2205-0.92793 4.3401-2.5547 5.8516-0.44531 0.47165 0.18064 1.1484 0.67774 0.72852 1.8304-1.6992 2.8725-4.0825 2.877-6.5801-0.0026-2.4925-1.0386-4.8722-2.8613-6.5723z" opacity=".35"/>
|
||||
<path d="m14.775 6.8883c-0.58741-0.53488-1.1988 0.22518-0.68359 0.73242 1.2147 1.1326 1.9056 2.7181 1.9082 4.3789-0.0019 1.6654-0.69594 3.2551-1.916 4.3887-0.46835 0.44623 0.17346 1.1467 0.67969 0.72852 1.423-1.3216 2.233-3.1751 2.2363-5.1172-0.0019-1.9383-0.80739-3.789-2.2246-5.1113z" opacity=".35"/>
|
||||
<path d="m12.41 8.3492c-0.52095-0.49369-1.1551 0.22003-0.68359 0.73047 0.81045 0.75501 1.2715 1.8123 1.2734 2.9199-0.0013 1.1103-0.46396 2.1701-1.2773 2.9258-0.47259 0.42993 0.13957 1.1522 0.67969 0.73047 1.0168-0.94425 1.5955-2.2686 1.5977-3.6562-0.0017-1.3844-0.57738-2.7062-1.5898-3.6504z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 998 B After Width: | Height: | Size: 1.2 KiB |
@@ -1,19 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 11.988281 4 L 7 8.9902344 L 7 9 L 7 10 L 7 14 L 7 15 L 7 15.009766 L 11.988281 20 L 13 20 L 13 19.597656 L 13 4.4023438 L 13 4 L 11.988281 4 z M 15.324219 8.28125 L 14.785156 9.1425781 A 4 4 0 0 1 16 12 A 4 4 0 0 1 14.789062 14.861328 L 15.328125 15.724609 A 5 5 0 0 0 17 12 A 5 5 0 0 0 15.324219 8.28125 z M 4 9 L 4 10 L 4 14 L 4 15 L 6 15 L 6 14 L 6 10 L 6 9 L 4 9 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:0.5;stroke:none"
|
||||
d="M 14.865234 4.5371094 L 14.621094 5.5136719 A 7 7 0 0 1 19 12 A 7 7 0 0 1 14.619141 18.478516 L 14.863281 19.453125 A 8 8 0 0 0 20 12 A 8 8 0 0 0 14.865234 4.5371094 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<g class="ColorScheme-Text" fill="currentColor">
|
||||
<path d="m10 7-3 3h-2c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h2l3 3z"/>
|
||||
<path d="m17.139 5.4273c-0.54546-0.42773-1.1387 0.22461-0.68359 0.73242 1.6202 1.5104 2.5416 3.6249 2.5449 5.8398-0.0026 2.2205-0.92793 4.3401-2.5547 5.8516-0.44531 0.47165 0.18064 1.1484 0.67774 0.72852 1.8304-1.6992 2.8725-4.0825 2.877-6.5801-0.0026-2.4925-1.0386-4.8722-2.8613-6.5723z" opacity=".35"/>
|
||||
<path d="m14.775 6.8883c-0.58741-0.53488-1.1988 0.22518-0.68359 0.73242 1.2147 1.1326 1.9056 2.7181 1.9082 4.3789-0.0019 1.6654-0.69594 3.2551-1.916 4.3887-0.46835 0.44623 0.17346 1.1467 0.67969 0.72852 1.423-1.3216 2.233-3.1751 2.2363-5.1172-0.0019-1.9383-0.80739-3.789-2.2246-5.1113z"/>
|
||||
<path d="m12.41 8.3492c-0.52095-0.49369-1.1551 0.22003-0.68359 0.73047 0.81045 0.75501 1.2715 1.8123 1.2734 2.9199-0.0013 1.1103-0.46396 2.1701-1.2773 2.9258-0.47259 0.42993 0.13957 1.1522 0.67969 0.73047 1.0168-0.94425 1.5955-2.2686 1.5977-3.6562-0.0017-1.3844-0.57738-2.7062-1.5898-3.6504z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 998 B After Width: | Height: | Size: 1.2 KiB |
@@ -1,21 +1,16 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style id="current-color-scheme" type="text/css">.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
.ColorScheme-NegativeText {
|
||||
color:#da4453;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 11.988281 4 L 7 8.9902344 L 7 9 L 7 10 L 7 14 L 7 15 L 7 15.009766 L 11.988281 20 L 13 20 L 13 19.597656 L 13 4.4023438 L 13 4 L 11.988281 4 z M 4 9 L 4 10 L 4 14 L 4 15 L 6 15 L 6 14 L 6 10 L 6 9 L 4 9 z "
|
||||
class="ColorScheme-Text"/>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 14 11 L 14 13 L 20 13 L 20 11 L 14 11 z "
|
||||
class="ColorScheme-NegativeText"
|
||||
/>
|
||||
}</style>
|
||||
</defs>
|
||||
<g class="ColorScheme-Text" fill="currentColor">
|
||||
<path d="m10 7-3 3h-2c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1h2l3 3z" opacity=".35"/>
|
||||
<path d="m17.139 5.4273c-0.54546-0.42773-1.1387 0.22461-0.68359 0.73242 1.6202 1.5104 2.5416 3.6249 2.5449 5.8398-0.0026 2.2205-0.92793 4.3401-2.5547 5.8516-0.44531 0.47165 0.18064 1.1484 0.67774 0.72852 1.8304-1.6992 2.8725-4.0825 2.877-6.5801-0.0026-2.4925-1.0386-4.8722-2.8613-6.5723z" opacity=".35"/>
|
||||
<path d="m14.775 6.8883c-0.58741-0.53488-1.1988 0.22518-0.68359 0.73242 1.2147 1.1326 1.9056 2.7181 1.9082 4.3789-0.0019 1.6654-0.69594 3.2551-1.916 4.3887-0.46835 0.44623 0.17346 1.1467 0.67969 0.72852 1.423-1.3216 2.233-3.1751 2.2363-5.1172-0.0019-1.9383-0.80739-3.789-2.2246-5.1113z" opacity=".35"/>
|
||||
<path d="m12.41 8.3492c-0.52095-0.49369-1.1551 0.22003-0.68359 0.73047 0.81045 0.75501 1.2715 1.8123 1.2734 2.9199-0.0013 1.1103-0.46396 2.1701-1.2773 2.9258-0.47259 0.42993 0.13957 1.1522 0.67969 0.73047 1.0168-0.94425 1.5955-2.2686 1.5977-3.6562-0.0017-1.3844-0.57738-2.7062-1.5898-3.6504z" opacity=".35"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 774 B After Width: | Height: | Size: 1.3 KiB |
@@ -1,12 +0,0 @@
|
||||
<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
</style><g transform="translate(1,1)">
|
||||
<g class="ColorScheme-Text" fill="currentColor" fill-rule="evenodd">
|
||||
<path d="m3 3v16h16v-16zm1 1h14v14h-14z"/>
|
||||
<path d="m6.5 5.7929688-.7070312.7070312 3.5 3.5c-1.1666667 1.166667-2.3333336 2.333333-3.5 3.5l.7070312.707031c1.4023444-1.402343 2.8046874-2.804687 4.207031-4.207031-1.4023437-1.4023437-2.8046873-2.8046875-4.207031-4.2070312z"/>
|
||||
<path d="m10 15h6v1h-6z"/>
|
||||
</g>
|
||||
</g></svg>
|
||||
|
Before Width: | Height: | Size: 641 B After Width: | Height: | Size: 18 B |
1
src/actions/24/dialog-scripts.svg
Symbolic link
@@ -0,0 +1 @@
|
||||
akonadiconsole.svg
|
||||
|
Before Width: | Height: | Size: 641 B After Width: | Height: | Size: 18 B |
@@ -1,13 +1,14 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
||||
<defs id="defs3051">
|
||||
<svg version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#363636;
|
||||
}
|
||||
.ColorScheme-NegativeText {
|
||||
color:#da4453;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<g style="fill:currentColor;fill-opacity:1;stroke:none" class="ColorScheme-NegativeText">
|
||||
<path d="M5 4v16h7v-1H6V5h12v9h1V4H5"/>
|
||||
<path d="M14.707 15l-.707.707 1.793 1.793L14 19.293l.707.707 1.793-1.793L18.293 20l.707-.707-1.793-1.793L19 15.707 18.293 15 16.5 16.793 14.707 15z"/>
|
||||
</g>
|
||||
</defs>
|
||||
<path class="ColorScheme-NegativeText" d="M 14.707,15 14,15.707 15.793,17.5 14,19.293 14.707,20 16.5,18.207 18.293,20 19,19.293 17.207,17.5 19,15.707 18.293,15 16.5,16.793 Z" fill="currentColor"/>
|
||||
<path class="ColorScheme-Text" d="m8 4c-1.662 0-3 1.338-3 3v10c0 1.662 1.338 3 3 3h5v-1h-5c-1.108 0-2-0.892-2-2v-10c0-1.108 0.892-2 2-2h6v2c0 1.108 0.892 2 2 2h2v5h1v-6l-4-4z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 575 B After Width: | Height: | Size: 733 B |