build: Update SVGO to latest v2.3.0 and re-crush SVGs
SVGO v2.x changed configuration to JS, amending configuration. Adding new 'minify-svg' npm script. Also re-crushing SVGs. Bug: T278656 Change-Id: I63ed0974eab40c4d6cd5198f780bfd3466357a0disekai
@ -0,0 +1,55 @@
|
||||
/**
|
||||
* SVGO Configuration
|
||||
* Recommended options from:
|
||||
* https://www.mediawiki.org/wiki/Manual:Coding_conventions/SVG#Exemplified_safe_configuration
|
||||
*/
|
||||
const { extendDefaultPlugins } = require( 'svgo' );
|
||||
module.exports = {
|
||||
multipass: true,
|
||||
plugins: extendDefaultPlugins( [
|
||||
{
|
||||
name: 'cleanupIDs',
|
||||
active: false
|
||||
},
|
||||
{
|
||||
name: 'removeDesc',
|
||||
active: false
|
||||
},
|
||||
{
|
||||
name: 'removeRasterImages',
|
||||
active: true
|
||||
},
|
||||
{
|
||||
name: 'removeTitle',
|
||||
active: false
|
||||
},
|
||||
{
|
||||
name: 'removeViewBox',
|
||||
active: false
|
||||
},
|
||||
{
|
||||
// If the SVG doesn't start with an XML declaration, then its MIME type will
|
||||
// be detected as "text/plain" rather than "image/svg+xml" by libmagic and,
|
||||
// consequently, MediaWiki's CSSMin CSS minifier. libmagic's default database
|
||||
// currently requires that SVGs contain an XML declaration:
|
||||
// https://github.com/threatstack/libmagic/blob/master/magic/Magdir/sgml#L5
|
||||
name: 'removeXMLProcInst',
|
||||
active: false
|
||||
},
|
||||
{
|
||||
name: 'sortAttrs',
|
||||
active: true
|
||||
}
|
||||
] ),
|
||||
|
||||
// Configure the indent (default 4 spaces) used by `--pretty` here:
|
||||
// @see https://github.com/svg/svgo/blob/master/lib/svgo/js2svg.js#L6 for more config options
|
||||
//
|
||||
// Unfortunately EOL cannot be configured, SVGO uses the platform's EOL marker.
|
||||
// On non-unix systems the linebreaks will be normalized to LF (unix) only at git commit,
|
||||
// assuming `core.autocrlf` is 'true' (default) or 'input'.
|
||||
js2svg: {
|
||||
indent: "\t",
|
||||
pretty: true,
|
||||
}
|
||||
}
|
@ -1 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="16"><path opacity=".33" d="M15.5 6l-5 5-5-5z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="16">
|
||||
<path d="m15.5 6-5 5-5-5z" opacity=".33"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 113 B After Width: | Height: | Size: 115 B |
@ -1 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20"><path d="M10.5 16L3 8h6V4h3v4h6zm0-3.5L13 10H8z" opacity=".33"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20">
|
||||
<path d="M10.5 16 3 8h6V4h3v4h6zm0-3.5L13 10H8z" opacity=".33"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 133 B After Width: | Height: | Size: 137 B |
@ -1 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20"><path d="M16 9.5L8 17v-6H4V8h4V2zm-3.5 0L10 7v5z" opacity=".33"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20">
|
||||
<path d="M16 9.5 8 17v-6H4V8h4V2zm-3.5 0L10 7v5z" opacity=".33"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 134 B After Width: | Height: | Size: 138 B |
@ -1 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><path d="M4 9.5l8 7.5v-6h4V8h-4V2zm3.5 0L10 7v5z" opacity=".33"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20">
|
||||
<path d="m4 9.5 8 7.5v-6h4V8h-4V2zm3.5 0L10 7v5z" opacity=".33"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 134 B After Width: | Height: | Size: 138 B |
@ -1 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20"><path d="M10.5 4L3 12h6v4h3v-4h6zm0 3.5L13 10H8z" opacity=".33"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20">
|
||||
<path d="M10.5 4 3 12h6v4h3v-4h6zm0 3.5L13 10H8z" opacity=".33"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 134 B After Width: | Height: | Size: 138 B |
@ -1,3 +1,3 @@
|
||||
<svg width="22" height="16" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m8 3.5 5 5-5 5z" opacity=".33"/>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="16">
|
||||
<path d="m8 3.5 5 5-5 5z" opacity=".33"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 114 B After Width: | Height: | Size: 114 B |
@ -1,3 +1,3 @@
|
||||
<svg width="22" height="16" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m13 3.5-5 5 5 5z" opacity=".33"/>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="16">
|
||||
<path d="m13 3.5-5 5 5 5z" opacity=".33"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 115 B After Width: | Height: | Size: 115 B |
@ -1 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20"><path d="M3 4h3v1H5v11h1v1H3zM17 4v13h-3v-1h1V5h-1V4zM6.5 4H9v1H8v11h1v1H6.5zM13.5 4v13H11v-1h1V5h-1V4z" opacity=".33"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20">
|
||||
<path d="M3 4h3v1H5v11h1v1H3zm14 0v13h-3v-1h1V5h-1V4zM6.5 4H9v1H8v11h1v1H6.5zm7 0v13H11v-1h1V5h-1V4z" opacity=".33"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 190 B After Width: | Height: | Size: 190 B |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 20 KiB |
@ -1 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><path opacity=".33" d="M10 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8zm0 2a6 6 0 0 1 6 6 6 6 0 0 1-6 6 6 6 0 0 1-6-6 6 6 0 0 1 6-6z"/><path d="M9.984 4.986A1 1 0 0 0 9 6v5h3a1 1 0 1 0 0-2h-1V6a1 1 0 0 0-1.016-1.014z" opacity=".33"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20">
|
||||
<path d="M10 2a8 8 0 0 0-8 8 8 8 0 0 0 8 8 8 8 0 0 0 8-8 8 8 0 0 0-8-8zm0 2a6 6 0 0 1 6 6 6 6 0 0 1-6 6 6 6 0 0 1-6-6 6 6 0 0 1 6-6z" opacity=".33"/>
|
||||
<path d="M9.984 4.986A1 1 0 0 0 9 6v5h3a1 1 0 1 0 0-2h-1V6a1 1 0 0 0-1.016-1.014z" opacity=".33"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 317 B After Width: | Height: | Size: 322 B |
@ -1 +1,6 @@
|
||||
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><g opacity=".33"><path d="M9.92 4.91c-2.78 0-5.42 1.77-7.53 4.95l-.371.555.371.555c2.12 3.17 4.76 4.95 7.53 4.95 2.78 0 5.42-1.77 7.53-4.95l.371-.555-.371-.555c-2.12-3.17-4.76-4.95-7.53-4.95zm0 2c1.75 0 3.6 1.19 5.34 3.5-1.74 2.31-3.59 3.5-5.34 3.5s-3.6-1.19-5.34-3.5c1.74-2.31 3.59-3.5 5.34-3.5z"/><path d="M9.84 5.31C7.72 5.31 6 7.04 6 9.15c0 2.12 1.73 3.84 3.84 3.84 2.12 0 3.84-1.73 3.84-3.84 0-2.12-1.73-3.84-3.84-3.84zm0 1c1.58 0 2.84 1.27 2.84 2.84 0 1.58-1.27 2.84-2.84 2.84C8.26 11.99 7 10.72 7 9.15c0-1.58 1.27-2.84 2.84-2.84z"/></g></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20">
|
||||
<g opacity=".33">
|
||||
<path d="M9.92 4.91c-2.78 0-5.42 1.77-7.53 4.95l-.371.555.371.555c2.12 3.17 4.76 4.95 7.53 4.95 2.78 0 5.42-1.77 7.53-4.95l.371-.555-.371-.555c-2.12-3.17-4.76-4.95-7.53-4.95zm0 2c1.75 0 3.6 1.19 5.34 3.5-1.74 2.31-3.59 3.5-5.34 3.5s-3.6-1.19-5.34-3.5c1.74-2.31 3.59-3.5 5.34-3.5z"/>
|
||||
<path d="M9.84 5.31C7.72 5.31 6 7.04 6 9.15c0 2.12 1.73 3.84 3.84 3.84 2.12 0 3.84-1.73 3.84-3.84 0-2.12-1.73-3.84-3.84-3.84zm0 1c1.58 0 2.84 1.27 2.84 2.84 0 1.58-1.27 2.84-2.84 2.84C8.26 11.99 7 10.72 7 9.15c0-1.58 1.27-2.84 2.84-2.84z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 613 B After Width: | Height: | Size: 624 B |
@ -1 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><path opacity=".33" d="M9.714 2a1.14 1.14 0 0 0-1.143 1.143v.743a6.286 6.286 0 0 0-1.892.783l-.518-.518a1.14 1.14 0 0 0-1.616 0l-.403.405a1.14 1.14 0 0 0 0 1.616l.521.52a6.286 6.286 0 0 0-.778 1.88h-.743A1.14 1.14 0 0 0 2 9.713v.573c0 .633.51 1.142 1.142 1.142h.743a6.286 6.286 0 0 0 .783 1.892l-.526.528a1.14 1.14 0 0 0 0 1.617l.403.404a1.14 1.14 0 0 0 1.616 0l.533-.533a6.286 6.286 0 0 0 1.877.778v.743c0 .633.51 1.142 1.143 1.142h.572a1.14 1.14 0 0 0 1.143-1.142v-.743a6.286 6.286 0 0 0 1.878-.776l.532.531a1.14 1.14 0 0 0 1.616 0l.404-.404a1.14 1.14 0 0 0 0-1.617l-.53-.531a6.286 6.286 0 0 0 .786-1.889h.743A1.14 1.14 0 0 0 18 10.286v-.573a1.14 1.14 0 0 0-1.142-1.143h-.743a6.286 6.286 0 0 0-.776-1.878l.52-.52a1.14 1.14 0 0 0 0-1.617l-.404-.405a1.14 1.14 0 0 0-1.616 0l-.52.52a6.286 6.286 0 0 0-1.89-.785v-.743a1.14 1.14 0 0 0-1.143-1.143h-.572zM10 6.445A3.556 3.556 0 0 1 13.556 10 3.556 3.556 0 0 1 10 13.556 3.556 3.556 0 0 1 6.444 10 3.556 3.556 0 0 1 10 6.445z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20">
|
||||
<path d="M9.714 2a1.14 1.14 0 0 0-1.143 1.143v.743a6.286 6.286 0 0 0-1.892.783l-.518-.518a1.14 1.14 0 0 0-1.616 0l-.403.405a1.14 1.14 0 0 0 0 1.616l.521.52a6.286 6.286 0 0 0-.778 1.88h-.743A1.14 1.14 0 0 0 2 9.713v.573c0 .633.51 1.142 1.142 1.142h.743a6.286 6.286 0 0 0 .783 1.892l-.526.528a1.14 1.14 0 0 0 0 1.617l.403.404a1.14 1.14 0 0 0 1.616 0l.533-.533a6.286 6.286 0 0 0 1.877.778v.743c0 .633.51 1.142 1.143 1.142h.572a1.14 1.14 0 0 0 1.143-1.142v-.743a6.286 6.286 0 0 0 1.878-.776l.532.531a1.14 1.14 0 0 0 1.616 0l.404-.404a1.14 1.14 0 0 0 0-1.617l-.53-.531a6.286 6.286 0 0 0 .786-1.889h.743A1.14 1.14 0 0 0 18 10.286v-.573a1.14 1.14 0 0 0-1.142-1.143h-.743a6.286 6.286 0 0 0-.776-1.878l.52-.52a1.14 1.14 0 0 0 0-1.617l-.404-.405a1.14 1.14 0 0 0-1.616 0l-.52.52a6.286 6.286 0 0 0-1.89-.785v-.743a1.14 1.14 0 0 0-1.143-1.143h-.572zM10 6.445A3.556 3.556 0 0 1 13.556 10 3.556 3.556 0 0 1 10 13.556 3.556 3.556 0 0 1 6.444 10 3.556 3.556 0 0 1 10 6.445z" opacity=".33"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
@ -1 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 28.147 28.147"><path d="M13.64 2.814a1.738 1.738 0 0 0-1.743 1.743v1.134A9.584 9.584 0 0 0 9.01 6.883l-.789-.788a1.737 1.737 0 0 0-2.464 0l-.615.617a1.738 1.738 0 0 0 0 2.464l.795.794a9.584 9.584 0 0 0-1.187 2.864H3.62a1.738 1.738 0 0 0-1.745 1.742v.871c0 .965.777 1.743 1.743 1.743h1.134a9.584 9.584 0 0 0 1.192 2.885l-.803.804a1.74 1.74 0 0 0 0 2.466l.615.615a1.738 1.738 0 0 0 2.464 0l.812-.811a9.584 9.584 0 0 0 2.862 1.186v1.132a1.74 1.74 0 0 0 1.743 1.742h.871a1.738 1.738 0 0 0 1.742-1.742v-1.134a9.584 9.584 0 0 0 2.866-1.181l.809.809a1.74 1.74 0 0 0 2.465 0l.616-.616a1.74 1.74 0 0 0 0-2.466l-.808-.809a9.584 9.584 0 0 0 1.198-2.88h1.131a1.738 1.738 0 0 0 1.743-1.743v-.87a1.738 1.738 0 0 0-1.743-1.743h-1.134a9.584 9.584 0 0 0-1.18-2.866l.793-.792a1.738 1.738 0 0 0 0-2.464l-.615-.617a1.74 1.74 0 0 0-2.466 0l-.792.791a9.584 9.584 0 0 0-2.883-1.197V4.557a1.738 1.738 0 0 0-1.74-1.743zm.56 6.97a5.102 5.227 0 0 1 5.102 5.228 5.102 5.227 0 0 1-5.101 5.227 5.102 5.227 0 0 1-5.102-5.227A5.102 5.227 0 0 1 14.2 9.784z" opacity=".33"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 28.147 28.147">
|
||||
<path d="M13.64 2.814a1.738 1.738 0 0 0-1.743 1.743v1.134A9.584 9.584 0 0 0 9.01 6.883l-.789-.788a1.737 1.737 0 0 0-2.464 0l-.615.617a1.738 1.738 0 0 0 0 2.464l.795.794a9.584 9.584 0 0 0-1.187 2.864H3.62a1.738 1.738 0 0 0-1.745 1.742v.871a1.74 1.74 0 0 0 1.743 1.743h1.134a9.584 9.584 0 0 0 1.192 2.885l-.803.804a1.74 1.74 0 0 0 0 2.466l.615.615a1.738 1.738 0 0 0 2.464 0l.812-.811a9.584 9.584 0 0 0 2.862 1.186v1.132a1.74 1.74 0 0 0 1.743 1.742h.871a1.738 1.738 0 0 0 1.742-1.742v-1.134a9.584 9.584 0 0 0 2.866-1.181l.809.809a1.74 1.74 0 0 0 2.465 0l.616-.616a1.74 1.74 0 0 0 0-2.466l-.808-.809a9.584 9.584 0 0 0 1.198-2.88h1.131a1.738 1.738 0 0 0 1.743-1.743v-.87a1.738 1.738 0 0 0-1.743-1.743h-1.134a9.584 9.584 0 0 0-1.18-2.866l.793-.792a1.738 1.738 0 0 0 0-2.464l-.615-.617a1.74 1.74 0 0 0-2.466 0l-.792.791a9.584 9.584 0 0 0-2.883-1.197V4.557a1.738 1.738 0 0 0-1.74-1.743zm.56 6.97a5.102 5.227 0 0 1 5.102 5.228 5.102 5.227 0 0 1-5.101 5.227 5.102 5.227 0 0 1-5.102-5.227A5.102 5.227 0 0 1 14.2 9.784z" opacity=".33"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
@ -1 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20"><path d="M10 5c-3-2.506-7-.763-7.567 2.099C1.858 10.003 2.331 12 10 17c7.635-4.89 8.23-7 7.59-9.901C16.96 4.239 13 2.536 10 5zm5.561 3.066C15.851 10.523 13 12.259 10 14c-3-1.8-5.7-3.427-5.451-5.934C4.808 5.464 8 5.244 10 8c2-2.65 5.25-2.561 5.561.066z" opacity=".33"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20">
|
||||
<path d="M10 5c-3-2.506-7-.763-7.567 2.099C1.858 10.003 2.331 12 10 17c7.635-4.89 8.23-7 7.59-9.901C16.96 4.239 13 2.536 10 5zm5.561 3.066C15.851 10.523 13 12.259 10 14c-3-1.8-5.7-3.427-5.451-5.934C4.808 5.464 8 5.244 10 8c2-2.65 5.25-2.561 5.561.066z" opacity=".33"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 337 B After Width: | Height: | Size: 341 B |
@ -1 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20"><g opacity=".33"><path d="M5.285 1.86C3.821 5.242 2.282 8.593.75 11.946c.617-.138 1.251-.072 1.781-.05.287-1.126.767-2.32 1.166-3.329a52.504 52.504 0 0 1 3.338-.002c.407 1.105.8 2.215 1.125 3.346a14.378 14.378 0 0 1 2.137-.04l.488-.339C9.317 8.215 7.92 4.755 6.768 1.86zm.14 2.636c.425 1.004.83 2.016 1.218 3.035-.84.021-1.679.016-2.518 0z"/><path d="M11.693 7.678c-1.019.195-1.764.236-2.674.16l.41.656c.571.126 1.533.112 2.204.074-.04.828-.081 1.605-.121 2.32-6.39 4.054-2.326 8.566.576 4.715.136.606.6 1.208.928 1.147.606-.16.633-.354.61-.654-.085-.431-.52-.55-.759-1.284 1.072-1.305 1.732-2.807 2.108-4.205 5.68.198 2.774 6.075-.854 6.836h-.004l-.002.002c-.38.346-.808.674-.843.713 6.174-.655 8.452-8.503 1.794-8.326-.008-.826-.594-.99-.966-.76-.404.282-.031.433-.055.846-.559.13-1.1.323-1.623.56.04-.655.096-1.341.172-2.066 1.348-.36 2.755-.769 3.97-1.246.002-.302-.292-.502-.47-.572-.662-.275-1.674.345-3.39.834.022-.636.285-1.205.5-1.727-.218-.656-.89-.665-1.41-.75-.077.951-.086 1.887-.1 2.727zm2.188 3.138a10.673 10.673 0 0 1-1.361 2.78 22.604 22.604 0 0 1-.106-2.15c.49-.31.98-.498 1.467-.63zm-2.293 1.157c.008 1.215.058 2.138.176 2.67-2.67 3.54-3.99.046-.176-2.67z"/></g></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20">
|
||||
<g opacity=".33">
|
||||
<path d="M5.285 1.86C3.821 5.242 2.282 8.593.75 11.946c.617-.138 1.251-.072 1.781-.05.287-1.126.767-2.32 1.166-3.329a52.504 52.504 0 0 1 3.338-.002c.407 1.105.8 2.215 1.125 3.346a14.378 14.378 0 0 1 2.137-.04l.488-.339C9.317 8.215 7.92 4.755 6.768 1.86zm.14 2.636c.425 1.004.83 2.016 1.218 3.035-.84.021-1.679.016-2.518 0z"/>
|
||||
<path d="M11.693 7.678c-1.019.195-1.764.236-2.674.16l.41.656c.571.126 1.533.112 2.204.074-.04.828-.081 1.605-.121 2.32-6.39 4.054-2.326 8.566.576 4.715.136.606.6 1.208.928 1.147.606-.16.633-.354.61-.654-.085-.431-.52-.55-.759-1.284 1.072-1.305 1.732-2.807 2.108-4.205 5.68.198 2.774 6.075-.854 6.836h-.004l-.002.002c-.38.346-.808.674-.843.713 6.174-.655 8.452-8.503 1.794-8.326-.008-.826-.594-.99-.966-.76-.404.282-.031.433-.055.846-.559.13-1.1.323-1.623.56.04-.655.096-1.341.172-2.066 1.348-.36 2.755-.769 3.97-1.246.002-.302-.292-.502-.47-.572-.662-.275-1.674.345-3.39.834.022-.636.285-1.205.5-1.727-.218-.656-.89-.665-1.41-.75-.077.951-.086 1.887-.1 2.727zm2.188 3.138a10.673 10.673 0 0 1-1.361 2.78 22.604 22.604 0 0 1-.106-2.15c.49-.31.98-.498 1.467-.63zm-2.293 1.157c.008 1.215.058 2.138.176 2.67-2.67 3.54-3.99.046-.176-2.67z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
@ -1 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><g opacity=".33"><path d="M18 4v11h-8v-2h6V6H7v6H5V4z"/><path d="M11 11v7H2v-7zm-2 2H4v3h5z"/></g></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20">
|
||||
<g opacity=".33">
|
||||
<path d="M18 4v11h-8v-2h6V6H7v6H5V4z"/>
|
||||
<path d="M11 11v7H2v-7zm-2 2H4v3h5z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 168 B After Width: | Height: | Size: 179 B |
@ -1 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><g opacity=".33"><path d="M2 4v11h8v-2H4V6h9v6h2V4z"/><path d="M9 11v7h9v-7zm2 2h5v3h-5z"/></g></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20">
|
||||
<g opacity=".33">
|
||||
<path d="M2 4v11h8v-2H4V6h9v6h2V4z"/>
|
||||
<path d="M9 11v7h9v-7zm2 2h5v3h-5z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 165 B After Width: | Height: | Size: 176 B |
@ -1 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 28.147 28.147"><g opacity=".33"><rect rx="1.465" ry="1.465" y="2.815" x="2.815" height="4.691" width="22.518"/><rect rx="1.465" ry="1.465" y="12.197" x="2.815" height="4.691" width="22.518"/><rect rx="1.465" ry="1.465" y="21.58" x="2.815" height="4.691" width="22.518"/></g></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 28.147 28.147">
|
||||
<g opacity=".33">
|
||||
<rect width="22.518" height="4.691" x="2.815" y="2.815" rx="1.465" ry="1.465"/>
|
||||
<rect width="22.518" height="4.691" x="2.815" y="12.197" rx="1.465" ry="1.465"/>
|
||||
<rect width="22.518" height="4.691" x="2.815" y="21.58" rx="1.465" ry="1.465"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 357 B After Width: | Height: | Size: 371 B |
@ -1 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><path d="M4 2v16h12V7.01L11 2zm2 2h3.994v4H14v8H6z" opacity=".33"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20">
|
||||
<path d="M4 2v16h12V7.01L11 2zm2 2h3.994v4H14v8H6z" opacity=".33"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 136 B After Width: | Height: | Size: 140 B |
@ -1 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><path d="M4 2v16h4v-2H6V4h3.994v4H14v1h2V7.01L11 2z" opacity=".33"/><path d="M13.339 10a.641.641 0 0 0-.643.643v.418a3.536 3.536 0 0 0-1.064.44l-.291-.291a.64.64 0 0 0-.91 0l-.226.228a.641.641 0 0 0 0 .909l.293.293a3.536 3.536 0 0 0-.437 1.056h-.418A.641.641 0 0 0 9 14.34v.322c0 .356.286.643.643.643h.418a3.536 3.536 0 0 0 .44 1.064l-.296.297a.641.641 0 0 0 0 .91l.227.227a.642.642 0 0 0 .909 0l.3-.3a3.536 3.536 0 0 0 1.055.437v.418c0 .357.287.643.643.643h.322a.641.641 0 0 0 .643-.643v-.418a3.536 3.536 0 0 0 1.056-.436l.3.299a.642.642 0 0 0 .908 0l.228-.228a.641.641 0 0 0 0-.909l-.298-.299a3.536 3.536 0 0 0 .441-1.062h.418A.641.641 0 0 0 18 14.66v-.322a.641.641 0 0 0-.643-.643h-.418a3.536 3.536 0 0 0-.436-1.056l.293-.293a.641.641 0 0 0 0-.91l-.228-.227a.642.642 0 0 0-.909 0l-.292.292a3.536 3.536 0 0 0-1.063-.441v-.418A.641.641 0 0 0 13.66 10zm.161 2.5a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2z" opacity=".33"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20">
|
||||
<path d="M4 2v16h4v-2H6V4h3.994v4H14v1h2V7.01L11 2z" opacity=".33"/>
|
||||
<path d="M13.339 10a.641.641 0 0 0-.643.643v.418a3.536 3.536 0 0 0-1.064.44l-.291-.291a.64.64 0 0 0-.91 0l-.226.228a.641.641 0 0 0 0 .909l.293.293a3.536 3.536 0 0 0-.437 1.056h-.418A.641.641 0 0 0 9 14.34v.322c0 .356.286.643.643.643h.418a3.536 3.536 0 0 0 .44 1.064l-.296.297a.641.641 0 0 0 0 .91l.227.227a.642.642 0 0 0 .909 0l.3-.3a3.536 3.536 0 0 0 1.055.437v.418c0 .357.287.643.643.643h.322a.641.641 0 0 0 .643-.643v-.418a3.536 3.536 0 0 0 1.056-.436l.3.299a.642.642 0 0 0 .908 0l.228-.228a.641.641 0 0 0 0-.909l-.298-.299a3.536 3.536 0 0 0 .441-1.062h.418A.641.641 0 0 0 18 14.66v-.322a.641.641 0 0 0-.643-.643h-.418a3.536 3.536 0 0 0-.436-1.056l.293-.293a.641.641 0 0 0 0-.91l-.228-.227a.642.642 0 0 0-.909 0l-.292.292a3.536 3.536 0 0 0-1.063-.441v-.418A.641.641 0 0 0 13.66 10zm.161 2.5a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-2-2 2 2 0 0 1 2-2z" opacity=".33"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1005 B After Width: | Height: | Size: 1010 B |
@ -1 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20"><path d="M12.879 2.165l-9.465 9.471 4.95 4.95 9.465-9.471zm0 2.829L15 7.115l-6.636 6.643-2.121-2.122zM6.95 18H2v-4.95z" opacity=".33"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20">
|
||||
<path d="m12.879 2.165-9.465 9.471 4.95 4.95 9.465-9.471zm0 2.829L15 7.115l-6.636 6.643-2.121-2.122zM6.95 18H2v-4.95z" opacity=".33"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 205 B After Width: | Height: | Size: 207 B |
@ -1 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20"><g opacity=".33"><path d="M15.656 10l-1 1H15v5h-.5v1H17v-7zM13 12.656l-2 2V17h2.5v-1H13z"/><path d="M12.879 2.165l-9.465 9.471 4.95 4.95 9.465-9.471zm0 2.829L15 7.115l-6.636 6.643-2.121-2.122zM6.95 18H2v-4.95z"/></g></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20">
|
||||
<path d="m15.656 10-1 1H15v5h-.5v1H17v-7zM13 12.656l-2 2V17h2.5v-1H13zm-.121-10.491-9.465 9.471 4.95 4.95 9.465-9.471zm0 2.829L15 7.115l-6.636 6.643-2.121-2.122zM6.95 18H2v-4.95z" opacity=".33"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 286 B After Width: | Height: | Size: 268 B |
@ -1 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><g opacity=".33"><rect width="2" height="12" x="9" y="4" ry="0"/><rect height="2" width="12" y="9" x="4" ry="0"/></g></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20">
|
||||
<g opacity=".33">
|
||||
<rect width="2" height="12" x="9" y="4" ry="0"/>
|
||||
<rect width="12" height="2" x="4" y="9" ry="0"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 187 B After Width: | Height: | Size: 198 B |
@ -1 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><g opacity=".33"><path d="M4 5v3.272A2 2 0 0 1 5 8a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-1-.27V15h10V5H4z"/><circle cx="15.001" cy="10" r="2"/><circle cx="9" cy="4" r="2"/><circle cx="9" cy="16" r="2"/></g></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20">
|
||||
<g opacity=".33">
|
||||
<path d="M4 5v3.272A2 2 0 0 1 5 8a2 2 0 0 1 2 2 2 2 0 0 1-2 2 2 2 0 0 1-1-.27V15h10V5H4z"/>
|
||||
<circle cx="15.001" cy="10" r="2"/>
|
||||
<circle cx="9" cy="4" r="2"/>
|
||||
<circle cx="9" cy="16" r="2"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 276 B After Width: | Height: | Size: 293 B |
@ -1 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="21" height="21"><g transform="rotate(-45 8.525 8.386)" opacity=".33"><path d="M8.438.938a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5 7.5 7.5 0 0 0 7.5-7.5 7.5 7.5 0 0 0-7.5-7.5zm0 2.812a4.688 4.688 0 0 1 4.687 4.688 4.688 4.688 0 0 1-4.687 4.687A4.688 4.688 0 0 1 3.75 8.438 4.688 4.688 0 0 1 8.438 3.75z"/><rect ry="1.318" y="13.125" x="7.031" height="9.265" width="2.813"/></g></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="21" height="21">
|
||||
<g opacity=".33" transform="rotate(-45 8.525 8.386)">
|
||||
<path d="M8.438.938a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5 7.5 7.5 0 0 0 7.5-7.5 7.5 7.5 0 0 0-7.5-7.5zm0 2.812a4.688 4.688 0 0 1 4.687 4.688 4.688 4.688 0 0 1-4.687 4.687A4.688 4.688 0 0 1 3.75 8.438 4.688 4.688 0 0 1 8.438 3.75z"/>
|
||||
<rect width="2.813" height="9.265" x="7.031" y="13.125" ry="1.318"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 432 B After Width: | Height: | Size: 444 B |
@ -1 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="21" height="21"><g transform="scale(-1 1) rotate(-45 -1.983 33.754)" opacity=".33"><path d="M8.438.938a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5 7.5 7.5 0 0 0 7.5-7.5 7.5 7.5 0 0 0-7.5-7.5zm0 2.812a4.688 4.688 0 0 1 4.687 4.688 4.688 4.688 0 0 1-4.687 4.687A4.688 4.688 0 0 1 3.75 8.438 4.688 4.688 0 0 1 8.438 3.75z"/><rect ry="1.318" y="13.125" x="7.031" height="9.265" width="2.813"/></g></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="21" height="21">
|
||||
<g opacity=".33" transform="scale(-1 1) rotate(-45 -1.983 33.754)">
|
||||
<path d="M8.438.938a7.5 7.5 0 0 0-7.5 7.5 7.5 7.5 0 0 0 7.5 7.5 7.5 7.5 0 0 0 7.5-7.5 7.5 7.5 0 0 0-7.5-7.5zm0 2.812a4.688 4.688 0 0 1 4.687 4.688 4.688 4.688 0 0 1-4.687 4.687A4.688 4.688 0 0 1 3.75 8.438 4.688 4.688 0 0 1 8.438 3.75z"/>
|
||||
<rect width="2.813" height="9.265" x="7.031" y="13.125" ry="1.318"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 446 B After Width: | Height: | Size: 458 B |
@ -1 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20"><path d="M10.041 1.125L7.407 6.243l-5.654.95 4.025 4.102-.846 5.703 5.123-2.587 5.13 2.567-.862-5.689 4.014-4.113-5.652-.936z" style="line-height:normal;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;shape-padding:0;isolation:auto;mix-blend-mode:normal" color="#000" font-weight="400" font-family="sans-serif" white-space="normal" overflow="visible" fill="#aaa"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20">
|
||||
<path fill="#aaa" d="M10.041 1.125 7.407 6.243l-5.654.95 4.025 4.102-.846 5.703 5.123-2.587 5.13 2.567-.862-5.689 4.014-4.113-5.652-.936z" color="#000" font-family="sans-serif" font-weight="400" overflow="visible" style="line-height:normal;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-feature-settings:normal;text-indent:0;text-align:start;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000;text-transform:none;text-orientation:mixed;shape-padding:0;isolation:auto;mix-blend-mode:normal"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 712 B After Width: | Height: | Size: 695 B |
@ -1,12 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<title>temporarily watched</title>
|
||||
<g stroke="none" stroke-width="1" fill="#AAA" fill-rule="evenodd">
|
||||
<g transform="translate(1, 1)">
|
||||
<path d="M9,0.205 L9,13.439 L3.932,15.998 L4.778,10.295 L0.753,6.193 L6.407,5.243 L9,0.205 Z" />
|
||||
</g>
|
||||
<g transform="translate(1, 1)">
|
||||
<path d="M9.041,0.125 L6.407,5.243 L0.753,6.193 L4.778,10.295 L3.932,15.998 L9.055,13.411 L14.185,15.978 L13.323,10.289 L17.337,6.176 L11.685,5.24 L9.041,0.125 Z M9.044,4.48 L10.376,7.058 L13.223,7.528 L11.201,9.599 L11.636,12.462 L9.049,11.168 L6.471,12.47 L6.897,9.599 L4.874,7.535 L7.718,7.058 L9.044,4.48 Z" />
|
||||
</g>
|
||||
</g>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
|
||||
<title>temporarily watched</title>
|
||||
<g fill="#AAA" fill-rule="evenodd">
|
||||
<path d="M10 1.205v13.234l-5.068 2.559.846-5.703-4.025-4.102 5.654-.95L10 1.205z"/>
|
||||
<path d="M10.041 1.125 7.407 6.243l-5.654.95 4.025 4.102-.846 5.703 5.123-2.587 5.13 2.567-.862-5.689 4.014-4.113-5.652-.936-2.644-5.115zm.003 4.355 1.332 2.578 2.847.47-2.022 2.071.435 2.863-2.587-1.294-2.578 1.302.426-2.871-2.023-2.064 2.844-.477 1.326-2.578z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 809 B After Width: | Height: | Size: 562 B |
@ -1 +1,3 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><path d="M10.041 1.125L7.407 6.243l-5.654.95 4.025 4.102-.846 5.703 5.123-2.587 5.13 2.567-.862-5.689 4.014-4.113-5.652-.936zm.003 4.355l1.332 2.578 2.847.47-2.022 2.071.435 2.863-2.587-1.294-2.578 1.302.426-2.871-2.023-2.064 2.844-.477z" opacity=".33"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20">
|
||||
<path d="M10.041 1.125 7.407 6.243l-5.654.95 4.025 4.102-.846 5.703 5.123-2.587 5.13 2.567-.862-5.689 4.014-4.113-5.652-.936zm.003 4.355 1.332 2.578 2.847.47-2.022 2.071.435 2.863-2.587-1.294-2.578 1.302.426-2.871-2.023-2.064 2.844-.477z" opacity=".33"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 324 B After Width: | Height: | Size: 327 B |
@ -1 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20"><g opacity=".33"><path d="M5.391 15.575c.553 1.556-.098 2.537-.942 3.425 3.262-.731 3.243-2.134 3.77-3.425zm10.366-3.933c-.553 1.557.098 2.538.942 3.426-3.262-.732-3.242-2.134-3.769-3.426z"/><path d="M7.768 7.146c-3.202 0-5.798 2.035-5.797 4.545 0 2.51 2.596 4.544 5.797 4.543 3.2 0 5.794-2.034 5.795-4.543 0-2.51-2.595-4.544-5.795-4.545zm-.022 2.247c2.01 0 3.64 1.034 3.639 2.308-.001 1.274-1.63 2.306-3.639 2.307-2.01 0-3.64-1.033-3.64-2.307-.001-1.275 1.629-2.309 3.64-2.308z"/><path d="M12.473 2.727c-3.604 0-6.525 2.149-6.526 4.8l2.104-.017c.001-1.392 1.974-2.52 4.406-2.52 2.433 0 4.407 1.128 4.408 2.52 0 1.393-1.973 2.522-4.408 2.521l.016 2.3c3.603-.001 6.524-2.152 6.523-4.804 0-2.65-2.92-4.8-6.523-4.8z"/></g></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20">
|
||||
<g opacity=".33">
|
||||
<path d="M5.391 15.575c.553 1.556-.098 2.537-.942 3.425 3.262-.731 3.243-2.134 3.77-3.425zm10.366-3.933c-.553 1.557.098 2.538.942 3.426-3.262-.732-3.242-2.134-3.769-3.426z"/>
|
||||
<path d="M7.768 7.146c-3.202 0-5.798 2.035-5.797 4.545 0 2.51 2.596 4.544 5.797 4.543 3.2 0 5.794-2.034 5.795-4.543 0-2.51-2.595-4.544-5.795-4.545zm-.022 2.247c2.01 0 3.64 1.034 3.639 2.308-.001 1.274-1.63 2.306-3.639 2.307-2.01 0-3.64-1.033-3.64-2.307-.001-1.275 1.629-2.309 3.64-2.308z"/>
|
||||
<path d="M12.473 2.727c-3.604 0-6.525 2.149-6.526 4.8l2.104-.017c.001-1.392 1.974-2.52 4.406-2.52 2.433 0 4.407 1.128 4.408 2.52 0 1.393-1.973 2.522-4.408 2.521l.016 2.3c3.603-.001 6.524-2.152 6.523-4.804 0-2.65-2.92-4.8-6.523-4.8z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 789 B After Width: | Height: | Size: 803 B |
@ -1 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><path opacity=".33" d="M3.643 9.46c-1.758 2.39-1.957 5-1.227 6.729.49 1.18 1.18 1.871 1.99 2.29.792.429 1.75.518 2.6.521h6.329c.92 0 1.851-.208 2.65-.675.8-.467 1.46-1.198 1.8-2.29.49-1.549.266-4.03-1.48-6.46-.007.013-.02.02-.03.03a7.506 7.506 0 0 1-6.267 3.39A7.506 7.506 0 0 1 3.643 9.46z"/><path opacity=".33" d="M10.008.992a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20">
|
||||
<path d="M3.643 9.46c-1.758 2.39-1.957 5-1.227 6.729.49 1.18 1.18 1.871 1.99 2.29.792.429 1.75.518 2.6.521h6.329c.92 0 1.851-.208 2.65-.675.8-.467 1.46-1.198 1.8-2.29.49-1.549.266-4.03-1.48-6.46-.007.013-.02.02-.03.03a7.506 7.506 0 0 1-6.267 3.39A7.506 7.506 0 0 1 3.643 9.46z" opacity=".33"/>
|
||||
<path d="M10.008.992a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9z" opacity=".33"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 437 B After Width: | Height: | Size: 442 B |
@ -1 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 28.147 28.147"><path d="M5.104 12.915c-2.477 3.345-2.756 6.998-1.729 9.42.689 1.652 1.661 2.62 2.802 3.207 1.114.6 2.462.727 3.659.729h8.911c1.297 0 2.606-.29 3.732-.944 1.126-.655 2.056-1.68 2.534-3.206.69-2.17.375-5.642-2.083-9.045-.01.017-.03.026-.04.041a10.568 10.51 0 0 1-8.827 4.746 10.568 10.51 0 0 1-8.96-4.948z" opacity=".33"/><path d="M14.073 2.728c-3.109 0-5.629 2.449-5.629 5.467s2.52 5.465 5.63 5.465c3.108 0 5.63-2.447 5.63-5.465 0-3.017-2.522-5.465-5.63-5.465z" opacity=".33"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 28.147 28.147">
|
||||
<path d="M5.104 12.915c-2.477 3.345-2.756 6.998-1.729 9.42.689 1.652 1.661 2.62 2.802 3.207 1.114.6 2.462.727 3.659.729h8.911c1.297 0 2.606-.29 3.732-.944 1.126-.655 2.056-1.68 2.534-3.206.69-2.17.375-5.642-2.083-9.045-.01.017-.03.026-.04.041a10.568 10.51 0 0 1-8.827 4.746 10.568 10.51 0 0 1-8.96-4.948z" opacity=".33"/>
|
||||
<path d="M14.073 2.728c-3.109 0-5.629 2.449-5.629 5.467s2.52 5.465 5.63 5.465c3.108 0 5.63-2.447 5.63-5.465 0-3.017-2.522-5.465-5.63-5.465z" opacity=".33"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 575 B After Width: | Height: | Size: 580 B |