Merge pull request #2 from atisawd/master

Merging back changes from master branch
This commit is contained in:
Nishad TR 2018-09-22 12:42:21 +09:00 committed by GitHub
commit 35e096f717
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
235 changed files with 2061 additions and 1625 deletions

View file

@ -3,14 +3,20 @@
[![Twitter](https://img.shields.io/twitter/url/https/github.com/atisawd/boxicons.svg?style=social)](https://twitter.com/intent/tweet?text=Wow:&url=https%3A%2F%2Fgithub.com%2Fatisawd%2Fboxicons) [![Twitter](https://img.shields.io/twitter/url/https/github.com/atisawd/boxicons.svg?style=social)](https://twitter.com/intent/tweet?text=Wow:&url=https%3A%2F%2Fgithub.com%2Fatisawd%2Fboxicons)
[![Donate](https://img.shields.io/badge/donate-paypal-blue.svg?style=flat-square)](https://paypal.me/atisawd) [![Donate](https://img.shields.io/badge/donate-paypal-blue.svg?style=flat-square)](https://paypal.me/atisawd)
_High Quality web friendly icons_ _High Quality web friendly icons_
'Boxicons' is a carefully designed open source iconset with 700+ icons. It's crafted to look enrich your website/app experience. 'Boxicons' is a carefully designed open source iconset with 700+ icons. It's crafted to look enrich your website/app experience.
_Announcing Boxicons v1.5.4!_ _Announcing Boxicons v1.7.1!_
Load the icons as web component , load only the icons you need . Total of 798 icons in regular, solid styles.
- Woff2 font added
- 48 new icons added
- Corrections to comply with the Material system icon rules
## Installation ## Installation
@ -23,7 +29,7 @@ $ npm install boxicons --save
import the module import the module
```javscript ```javscript
import 'boxicons/dist/boxicons.js'; import 'boxicons';
``` ```
## Usage ## Usage
@ -62,7 +68,7 @@ Instead of installing you may use the remote version
Boxicons includes a Custom Element that makes using icons easy and efficient. To use it, add the `box-icon-element.js` file to the page: Boxicons includes a Custom Element that makes using icons easy and efficient. To use it, add the `box-icon-element.js` file to the page:
```html ```html
<script src="https://unpkg.com/boxicons@latest/dist/box-icon-element.js"></script> <script src="https://unpkg.com/boxicons@latest/dist/boxicons.js"></script>
``` ```
To use an icon, add the `<box-icon>` element to the location where the icon should be displayed: To use an icon, add the `<box-icon>` element to the location where the icon should be displayed:
@ -70,15 +76,16 @@ To use an icon, add the `<box-icon>` element to the location where the icon shou
```html ```html
<box-icon name="hot"></box-icon> <box-icon name="hot"></box-icon>
``` ```
To use solid icons or logos add attribute `type` as solid or logo To use solid icons or logos add attribute `type` as solid or logo before the name
```html ```html
<box-icon name="hot" type="solid"></box-icon> <box-icon type="solid" name="hot"></box-icon>
<box-icon name="facebook-square" type="logo"></box-icon> <box-icon type="logo" name="facebook-square"></box-icon>
``` ```
The `<box-icon>` custom element supports the following attributes: The `<box-icon>` custom element supports the following attributes:
```html ```html
<box-icon <box-icon
type = "regular|solid|logo"
name="adjust|alarms|etc...." name="adjust|alarms|etc...."
color="blue|red|etc..." color="blue|red|etc..."
size="xs|sm|md|lg|cssSize" size="xs|sm|md|lg|cssSize"
@ -86,11 +93,10 @@ The `<box-icon>` custom element supports the following attributes:
flip="horizontal|vertical" flip="horizontal|vertical"
border="square|circle" border="square|circle"
animation="spin|tada|etc..." animation="spin|tada|etc..."
type = "regular|solid|logo"
pull = "left|right" pull = "left|right"
></box-icon> ></box-icon>
``` ```
- `type`: Should always be first and be one of the following values: `regular`,`solid`, `logo`
- `name` : (REQUIRED) the name of the icon to be displayed - `name` : (REQUIRED) the name of the icon to be displayed
- `color`: A color for the icon. - `color`: A color for the icon.
- `size`: The size for the icon. It supports one of two types of values: - `size`: The size for the icon. It supports one of two types of values:
@ -100,7 +106,6 @@ The `<box-icon>` custom element supports the following attributes:
- `flip`: one of the following values: `horizontal`, `vertical` - `flip`: one of the following values: `horizontal`, `vertical`
- `border`: one of the following values: `square`, `circle` - `border`: one of the following values: `square`, `circle`
- `animation`: One of the following values: `spin`, `tada`, `flashing`, `burst`, `fade-left`, `fade-right`, `spin-hover`, `tada-hover`, `flashing-hover`, `burst-hover`, `fade-left-hover`, `fade-right-hover` - `animation`: One of the following values: `spin`, `tada`, `flashing`, `burst`, `fade-left`, `fade-right`, `spin-hover`, `tada-hover`, `flashing-hover`, `burst-hover`, `fade-left-hover`, `fade-right-hover`
- `type`: one of the following values: `regular`,`solid`, `logo`
- `pull`: one of the following values: `left`,`right` - `pull`: one of the following values: `left`,`right`
The Custom Element class (`BoxIconElement`) exposes the following static members: The Custom Element class (`BoxIconElement`) exposes the following static members:

2
dist/boxicons.js vendored

File diff suppressed because one or more lines are too long

View file

@ -36,7 +36,7 @@
<link rel="stylesheet" <link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css"> href="https://cdn.jsdelivr.net/npm/boxicons@1.7.1/css/boxicons.min.css">
<link rel="shortcut icon" href="static/img/favicon.ico?v=3" > <link rel="shortcut icon" href="static/img/favicon.ico?v=3" >
@ -75,6 +75,6 @@
</head> </head>
<body> <body>
<div id="app"></div> <div id="app"></div>
<script src="static/dist/bundle.js?v=5" async></script> <script src="static/dist/bundle.js?v=18" async></script>
</body> </body>
</html> </html>

View file

@ -1,6 +1,6 @@
{ {
"name": "boxicons", "name": "boxicons",
"version": "1.5.4", "version": "1.7.1",
"private": true, "private": true,
"description": "High Quality web friendly icons", "description": "High Quality web friendly icons",
"scripts": { "scripts": {
@ -15,12 +15,16 @@
"author": "Atisa(Aniket Suvarna) <atisawd@gmail.com>", "author": "Atisa(Aniket Suvarna) <atisawd@gmail.com>",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@webcomponents/webcomponentsjs": "^2.0.2",
"prop-types": "^15.6.0", "prop-types": "^15.6.0",
"react": "^16.0.0", "react": "^16.0.0",
"react-dom": "^16.0.0", "react-dom": "^16.0.0",
"react-interactive": "^0.8.1", "react-interactive": "^0.8.1",
"react-router-dom": "^4.2.2" "react-router-dom": "^4.2.2"
}, },
"resolutions": {
"eslint-scope": "3.7.1"
},
"devDependencies": { "devDependencies": {
"babel-core": "^6.26.0", "babel-core": "^6.26.0",
"babel-eslint": "^7.2.3", "babel-eslint": "^7.2.3",
@ -41,4 +45,5 @@
"webpack-dev-server": "^2.8.2", "webpack-dev-server": "^2.8.2",
"wrapper-webpack-plugin": "^1.0.0" "wrapper-webpack-plugin": "^1.0.0"
} }
} }

View file

@ -81,7 +81,7 @@ export class BoxIconElement extends HTMLElement {
static get cdnUrl() { static get cdnUrl() {
// BUILD.DATA.VERSION is injected by webpack during a build. // BUILD.DATA.VERSION is injected by webpack during a build.
// Value is same as package.json#version property. // Value is same as package.json#version property.
return `//unpkg.com/boxicons@latest/svg`; return `//unpkg.com/boxicons@${BUILD.DATA.VERSION}/svg`;
} }
/** /**
* The html tag name to be use * The html tag name to be use

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

BIN
static/dist/2.bundle.js.gz vendored Normal file

Binary file not shown.

30
static/dist/bundle.js vendored

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load diff

Before

Width:  |  Height:  |  Size: 416 KiB

After

Width:  |  Height:  |  Size: 472 KiB

Binary file not shown.

Binary file not shown.

BIN
static/fonts/boxicons.woff2 Normal file

Binary file not shown.

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path transform="scale(-1) rotate(44.907 10.888 -47.17)" d="M17.37 3.5H21.62V5.5H17.37z"/><path d="M21 13c0-4.879-4.121-9-9-9-1.838 0-3.563.591-5.006 1.58L5.91 4.496l.788-.79L5.282 2.294 4.496 3.082 3.707 2.293 2.293 3.707l18 18 1.414-1.414-2.287-2.287C20.409 16.563 21 14.838 21 13zM12 6c3.794 0 7 3.206 7 7 0 1.292-.387 2.507-1.027 3.559L15.414 14H17v-2h-3.586L13 11.586V8h-2v1.586L8.441 7.027C9.493 6.387 10.708 6 12 6zM12 20c-3.794 0-7-3.206-7-7 0-1.111.281-2.169.766-3.113L4.305 8.426C3.484 9.776 3 11.342 3 13c0 4.879 4.121 9 9 9 1.658 0 3.224-.484 4.574-1.305l-1.461-1.461C14.169 19.719 13.111 20 12 20z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path transform="rotate(-135.093 19.494 4.5)" d="M17.37 3.5H21.62V5.5H17.37z"/><path d="M21 13c0-4.879-4.121-9-9-9-1.838 0-3.563.591-5.006 1.58L5.91 4.496l.788-.79L5.282 2.294 4.496 3.082 3.707 2.293 2.293 3.707l18 18 1.414-1.414-2.287-2.287C20.409 16.563 21 14.838 21 13zM12 6c3.794 0 7 3.206 7 7 0 1.292-.387 2.507-1.027 3.559L15.414 14H17v-2h-3.586L13 11.586V8h-2v1.586L8.441 7.027C9.493 6.387 10.708 6 12 6zM12 20c-3.794 0-7-3.206-7-7 0-1.111.281-2.169.766-3.113L4.305 8.426C3.484 9.776 3 11.342 3 13c0 4.879 4.121 9 9 9 1.658 0 3.224-.484 4.574-1.305l-1.461-1.461C14.169 19.719 13.111 20 12 20z"/></svg>

Before

Width:  |  Height:  |  Size: 702 B

After

Width:  |  Height:  |  Size: 691 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M3 3h18v2H3zM3 7h18v2H3zM3 11h18v2H3zM3 15h18v2H3zM3 19h18v2H3z"/></svg>

After

Width:  |  Height:  |  Size: 164 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M13 20v-4h3l-4-4-4 4h3v4z"/><path d="M21.948 8.683l-2-5.999A.997.997 0 0 0 19 2H5a.998.998 0 0 0-.948.684l-2 6 .012.004A.928.928 0 0 0 2 9v10a1 1 0 0 0 1 1h6v-2H4v-8h16v8h-5v2h6a1 1 0 0 0 1-1V9a.958.958 0 0 0-.063-.313l.011-.004zM4.387 8l1.334-4H18.28l1.334 4H4.387z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M16 16L12 12 8 16 11 16 11 20 13 20 13 16z"/><path d="M21.858,8.485l-2.991-4.999C18.687,3.185,18.36,3,18.009,3h-12C5.658,3,5.333,3.184,5.152,3.484l-3.009,5l0.015,0.009 C2.066,8.644,2,8.811,2,9v10c0,0.553,0.447,1,1,1h6v-2H4v-8h16v8h-5v2h6c0.553,0,1-0.447,1-1V9c0-0.188-0.066-0.355-0.156-0.506 L21.858,8.485z M6.574,5h10.867l1.795,3H4.769L6.574,5z"/></svg>

Before

Width:  |  Height:  |  Size: 367 B

After

Width:  |  Height:  |  Size: 446 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M11 12v4H8l4 4 4-4h-3v-4z"/><path d="M21.948 8.683l-2-5.999A.997.997 0 0 0 19 2H5a.998.998 0 0 0-.948.684l-2 6 .012.004A.928.928 0 0 0 2 9v10a1 1 0 0 0 1 1h5v-2H4v-8h16v8h-4v2h5a1 1 0 0 0 1-1V9a.958.958 0 0 0-.063-.313l.011-.004zM4.387 8l1.334-4H18.28l1.334 4H4.387z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M13 16L13 12 11 12 11 16 8 16 12 20 16 16z"/><path d="M21.853,8.509L21.867,8.5l-2.875-4.999C18.813,3.191,18.482,3,18.125,3h-12C5.78,3,5.46,3.178,5.277,3.47l-3.125,5 l0.015,0.009C2.07,8.633,2,8.805,2,9v10c0,0.553,0.447,1,1,1h5v-2H4v-8h16v8h-4v2h5c0.553,0,1-0.447,1-1V9 C22,8.817,21.938,8.655,21.853,8.509z M6.68,5h10.867l1.725,3H4.805L6.68,5z"/></svg>

Before

Width:  |  Height:  |  Size: 367 B

After

Width:  |  Height:  |  Size: 442 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M6 12h12v2H6z"/><path d="M21.948 8.685l-2-6.001A.997.997 0 0 0 19 2H5a.998.998 0 0 0-.948.684l-2 6 .012.004A.928.928 0 0 0 2 9v10a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V9a.963.963 0 0 0-.063-.312l.011-.003zM5.721 4H18.28l1.333 4H4.387l1.334-4zM20 18H4v-8h16v8z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M8,16h8c0.553,0,1-0.447,1-1v-3h-2v2H9v-2H7v3C7,15.553,7.447,16,8,16z"/><path d="M21.858,8.487l-2.991-5.001C18.687,3.185,18.36,3,18.009,3h-12C5.658,3,5.333,3.184,5.152,3.484l-3.009,5l0.015,0.009 C2.066,8.644,2,8.811,2,9v10c0,0.553,0.447,1,1,1h18c0.553,0,1-0.447,1-1V9c0-0.188-0.065-0.354-0.156-0.504L21.858,8.487z M6.574,5h10.867l1.794,3H4.769L6.574,5z M20,18H4v-8h16V18z"/></svg>

Before

Width:  |  Height:  |  Size: 353 B

After

Width:  |  Height:  |  Size: 471 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M20,3H4C3.447,3,3,3.447,3,4v16c0,0.553,0.447,1,1,1h16c0.553,0,1-0.447,1-1V4C21,3.447,20.553,3,20,3z M19,19H5V5h14V19z"/><path d="M15 12h2V8c0-.553-.447-1-1-1h-4v2h3V12zM8 17h4v-2H9v-3H7v4C7 16.553 7.447 17 8 17z"/></svg>

After

Width:  |  Height:  |  Size: 312 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M13.207 16.293L9.914 13H18v-2H9.914l3.293-3.293-1.414-1.414L6.086 12l5.707 5.707z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M18 11L8.414 11 12.707 6.707 11.293 5.293 4.586 12 11.293 18.707 12.707 17.293 8.414 13 18 13z"/></svg>

Before

Width:  |  Height:  |  Size: 182 B

After

Width:  |  Height:  |  Size: 195 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M20.245,3.03c-0.069-0.018-1.742-0.433-4.052-0.433c-2.842,0-6.869,0.64-9.91,3.687c-5.339,5.349-3.34,13.61-3.252,13.96 c0.09,0.357,0.369,0.637,0.727,0.726c0.069,0.018,1.726,0.426,4.018,0.426c2.849,0,6.884-0.641,9.932-3.688 c5.335-5.335,3.351-13.6,3.264-13.949C20.881,3.4,20.603,3.12,20.245,3.03z M16.293,16.293c-2.564,2.563-6.047,3.103-8.518,3.103 c-1.255,0-2.303-0.139-2.924-0.245c-0.319-1.876-0.926-7.674,2.847-11.454c2.557-2.561,6.031-3.099,8.495-3.099 c1.27,0,2.33,0.142,2.955,0.25C19.464,6.725,20.063,12.523,16.293,16.293z"/><path d="M16.293 6.293L14.5 8.086 13.208 6.793 11.793 8.207 13.086 9.5 12 10.586 10.708 9.293 9.293 10.707 10.586 12 9.5 13.086 8.208 11.793 6.793 13.207 8.086 14.5 6.293 16.293 7.708 17.707 9.5 15.914 10.793 17.207 12.208 15.793 10.915 14.5 12 13.414 13.293 14.707 14.708 13.293 13.415 12 14.5 10.914 15.793 12.207 17.208 10.793 15.915 9.5 17.708 7.707z"/></svg>

After

Width:  |  Height:  |  Size: 983 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M8 5h2v16H8zM12 7h2v14h-2zM16 3h2v18h-2zM4 12h2v9H4z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M9 5H11V21H9zM13 7H15V21H13zM17 3H19V21H17zM5 12H7V21H5z"/></svg>

Before

Width:  |  Height:  |  Size: 153 B

After

Width:  |  Height:  |  Size: 157 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M21,10H8V6c0-1.103,0.897-2,2-2s2,0.897,2,2h2c0-2.206-1.794-4-4-4S6,3.794,6,6v4H3c-0.553,0-1,0.447-1,1v1 c0,0.14,0.026,3.44,2.293,5.707C4.848,18.262,5.465,18.682,6.082,19H6v3h2v-2.283C9.098,19.992,9.932,20,10,20h4 c0.068,0,0.902-0.008,2-0.283V22h2v-3h-0.082c0.617-0.318,1.234-0.738,1.789-1.293C21.974,15.44,22,13.099,22,13v-2 C22,10.447,21.553,10,21,10z M20,12.989c-0.001,0.066-0.056,1.652-1.707,3.304c-1.659,1.659-4.232,1.706-4.295,1.707H10 c-0.025,0-2.605-0.02-4.293-1.707C4.036,14.622,4,12.022,4,12h16V12.989z"/></svg>

After

Width:  |  Height:  |  Size: 612 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M20 7a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v10a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-3h2v-4h-2V7zm-2 9H4V8h14v8z"/><path d="M8 10H6v4h4z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M20,10V7c0-0.553-0.447-1-1-1H3C2.447,6,2,6.447,2,7v10c0,0.553,0.447,1,1,1h16c0.553,0,1-0.447,1-1v-3h2v-4H20z M18,16H4 V8h14V16z"/><path d="M8 10L6 10 6 14 12 14z"/></svg>

Before

Width:  |  Height:  |  Size: 223 B

After

Width:  |  Height:  |  Size: 262 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M21,9h-1V7V6V2h-2v3h-5h-2H6V2H4v4v1v2H3c-0.552,0-1,0.447-1,1v7c0,0.553,0.448,1,1,1h1v4h2v-4h12v4h2v-4h1 c0.553,0,1-0.447,1-1v-7C22,9.447,21.553,9,21,9z M18,7v2h-5V7H18z M6,7h5v2H6V7z M20,16h-2H4v-5h1h14h1V16z"/></svg>

After

Width:  |  Height:  |  Size: 309 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M18 13.764V11c0-2.956-2.206-5.506-5.194-5.938l-.725-.059c-.054-.004-.106-.004-.16 0l-.778.063C8.211 5.489 6 8.04 6 11v2.764l-.895 1.789c-.155.31-.139.678.044.973S5.653 17 6 17h3c0 1.654 1.346 3 3 3s3-1.346 3-3h3c.007.001.015.001.02 0 .553 0 1-.447 1-1 0-.229-.076-.439-.205-.607L18 13.764zM12 18c-.552 0-1-.448-1-1h2C13 17.552 12.552 18 12 18zM7.618 15l.276-.553C7.964 14.309 8 14.155 8 14v-3c0-1.973 1.474-3.672 3.364-3.946l.637-.051.58.045C14.53 7.331 16 9.03 16 11v3c0 .155.036.309.105.447L16.382 15H7.618zM5.296 3.29C2 6.563 2 8.935 2 12h1l1-.063C4 9.009 4 7.396 6.704 4.71L5.296 3.29zM18.704 3.29l-1.408 1.42C20 7.396 20 9.009 20 12l2-.063C22 8.935 22 6.563 18.704 3.29z"/></svg>

After

Width:  |  Height:  |  Size: 776 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M17.5,11c-0.124,0-0.241,0.026-0.363,0.037L13.618,4H16V2h-4c-0.347,0-0.668,0.18-0.851,0.475s-0.199,0.663-0.044,0.973 L12.882,7H5.942L4.813,5.419C4.626,5.156,4.323,5,4,5H2v2h1.485l2.868,4.015C3.941,11.094,2,13.068,2,15.5C2,17.981,4.019,20,6.5,20 s4.5-2.019,4.5-4.5c0-0.863-0.256-1.663-0.68-2.349l3.876-3.523l1.011,2.021C13.892,12.436,13,13.859,13,15.5 c0,2.481,2.019,4.5,4.5,4.5s4.5-2.019,4.5-4.5S19.981,11,17.5,11z M6.5,18C5.121,18,4,16.879,4,15.5S5.121,13,6.5,13 S9,14.121,9,15.5S7.879,18,6.5,18z M9.168,11.496L7.421,9h4.492L9.168,11.496z M17.5,18c-1.379,0-2.5-1.121-2.5-2.5 c0-0.859,0.436-1.618,1.098-2.068l0.008,0.016l0.631-0.315C16.979,13.054,17.232,13,17.5,13c1.379,0,2.5,1.121,2.5,2.5 S18.879,18,17.5,18z"/></svg>

After

Width:  |  Height:  |  Size: 810 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M21.585 3.189a1 1 0 0 0-.901-.138L12 5.946 3.316 3.051A1 1 0 0 0 2 4v12a1 1 0 0 0 .594.914l9 4a1.007 1.007 0 0 0 .812 0l9-4A1 1 0 0 0 22 16V4a1 1 0 0 0-.415-.811zM11 18.461L4 15.35V5.387l7 2.333v10.741zm9-3.111l-7 3.111V7.721l7-2.333v9.962z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M21,3c-1.826,0-6.855,0.183-9,2.011C9.855,3.183,4.826,3,3,3C2.447,3,2,3.448,2,4v13c0,0.552,0.447,1,1,1 c5.467,0,8.269,2.684,8.297,2.71l0.007-0.007c0.09,0.088,0.19,0.166,0.311,0.217c0.125,0.052,0.256,0.078,0.386,0.078 c0.258,0,0.513-0.1,0.703-0.287C12.731,20.684,15.533,18,21,18c0.553,0,1-0.448,1-1V4C22,3.448,21.553,3,21,3z M4,5.02 C7.484,5.152,11,5.956,11,7v11.042c-1.433-0.847-3.763-1.841-7-2.016V5.02z M20,16.027c-3.234,0.174-5.567,1.167-7,2.014V7 c0-1.042,3.516-1.846,7-1.98V16.027z"/></svg>

Before

Width:  |  Height:  |  Size: 341 B

After

Width:  |  Height:  |  Size: 586 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><ellipse cx="8.5" cy="12" rx="1.5" ry="2"/><ellipse cx="15.5" cy="12" rx="1.5" ry="2"/><path d="M22,11h-1V7c0-0.553-0.447-1-1-1h-7V4.688c0.305-0.274,0.5-0.668,0.5-1.11c0-0.828-0.672-1.5-1.5-1.5s-1.5,0.672-1.5,1.5 c0,0.442,0.195,0.836,0.5,1.11V6H4C3.447,6,3,6.447,3,7v4H2v4h1v6c0,0.553,0.447,1,1,1h16c0.553,0,1-0.447,1-1v-6h1V11z M19,20H5V8 h14V20z"/><path d="M8,16v2c0,0,6.996-0.003,7.998,0l0.004-2C15.001,15.998,8,16,8,16z"/></svg>

After

Width:  |  Height:  |  Size: 515 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M21,3H3C2.447,3,2,3.447,2,4v4c0,0.553,0.447,1,1,1v11c0,0.553,0.447,1,1,1h16c0.553,0,1-0.447,1-1V9c0.553,0,1-0.447,1-1 V4C22,3.447,21.553,3,21,3z M4,5h16v2H4V5z M19,19H5V9h14V19z"/><path d="M8 11H16V13H8z"/></svg>

After

Width:  |  Height:  |  Size: 304 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M22,9h-1V6.021c0.003-0.146-0.007-1.465-1.3-2.735C18.427,2.036,17.143,2,17,2H6.996C6.757,2,5.503,2.063,4.288,3.302 C3.036,4.578,3,5.859,3,6v3H2v3h1v7c0,0.553,0.447,1,1,1h1v1c0,0.553,0.447,1,1,1h2c0.553,0,1-0.447,1-1v-1h6v1 c0,0.553,0.447,1,1,1h2c0.553,0,1-0.447,1-1v-1h1c0.553,0,1-0.447,1-1v-7h1V9z M5,8h6v4H5V8z M13,8h6v4h-6V8z M7,4l9.975,0 c0.026,0.001,0.64,0.042,1.324,0.713C18.971,5.373,18.999,5.979,19,6H5.002c0.012-0.115,0.1-0.672,0.714-1.298 C6.375,4.03,6.981,4.001,7,4z M18,18h-2H8H6H5v-4h14v4H18z"/><path d="M6 15H8V16.991H6zM16 15H18V16.991H16z"/></svg>

After

Width:  |  Height:  |  Size: 654 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M21,3h-4V2h-2v1H9V2H7v1H3C2.447,3,2,3.447,2,4v17c0,0.553,0.447,1,1,1h18c0.553,0,1-0.447,1-1V4C22,3.447,21.553,3,21,3z M7,5v1h2V5h6v1h2V5h3v3H4V5H7z M4,20V10h16v10H4z"/><path d="M11 15.586L9.707 14.293 8.293 15.707 11 18.414 16.707 12.707 15.293 11.293z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M21,3h-4V2h-2v1H9V2H7v1H3C2.447,3,2,3.447,2,4v17c0,0.553,0.447,1,1,1h18c0.553,0,1-0.447,1-1V4C22,3.447,21.553,3,21,3z M7,5v1h2V5h6v1h2V5h3v3H4V5H7z M4,20V10h16v10H4z"/><path d="M11,15.586l-1.793-1.793l-1.414,1.414l2.5,2.5C10.488,17.902,10.744,18,11,18s0.512-0.098,0.707-0.293l5-5l-1.414-1.414 L11,15.586z"/></svg>

Before

Width:  |  Height:  |  Size: 353 B

After

Width:  |  Height:  |  Size: 405 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M21 4H2v2h2.3l3.761 10.342A.998.998 0 0 0 9 17h9v-2H9.7l-.728-2H19c.446 0 .839-.296.962-.726l2-7a1.004 1.004 0 0 0-.163-.877A1.005 1.005 0 0 0 21 4zm-2.754 7h-10L6.428 6h13.246l-1.428 5z"/><circle cx="10.5" cy="20.5" r="1.5"/><circle cx="16.438" cy="20.5" r="1.5"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M21.799,4.397C21.609,4.147,21.313,4,21,4H5H4H2v2h2h0.3l3.761,10.342C8.204,16.737,8.579,17,9,17h9v-2H9.7l-0.728-2H19 c0.446,0,0.839-0.296,0.962-0.726l2-7C22.048,4.973,21.987,4.648,21.799,4.397z M18.246,11h-10L6.428,6h13.246L18.246,11z"/><circle cx="10.5" cy="20.5" r="1.5"/><circle cx="16.5" cy="20.5" r="1.5"/></svg>

Before

Width:  |  Height:  |  Size: 363 B

After

Width:  |  Height:  |  Size: 408 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12,2C6.486,2,2,6.486,2,12s4.486,10,10,10s10-4.486,10-10S17.514,2,12,2z M12,20c-4.411,0-8-3.589-8-8s3.589-8,8-8 s8,3.589,8,8S16.411,20,12,20z"/><path d="M10.999 12.586L9.707 11.293 8.293 12.707 10.999 15.414 15.707 10.707 14.293 9.293z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12,2C6.486,2,2,6.486,2,12s4.486,10,10,10s10-4.486,10-10S17.514,2,12,2z M12,20c-4.411,0-8-3.589-8-8s3.589-8,8-8 s8,3.589,8,8S16.411,20,12,20z"/><path d="M9.999,13.587L7.7,11.292l-1.412,1.416l3.006,3C9.489,15.902,9.744,16,10,16s0.512-0.098,0.707-0.293l6.5-6.5 l-1.414-1.414L9.999,13.587z"/></svg>

Before

Width:  |  Height:  |  Size: 336 B

After

Width:  |  Height:  |  Size: 387 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M13.247 7.342l-6.384 7.296-3.257-2.485-1.213 1.59 4 3.053C6.574 16.933 6.787 17 7 17c.278 0 .556-.116.753-.342l7-8L13.247 7.342zM20.247 7.342l-6.384 7.296-.805-.614-1.32 1.509 1.655 1.263C13.574 16.933 13.787 17 14 17c.278 0 .556-.116.753-.342l7-8L20.247 7.342z"/></svg>

After

Width:  |  Height:  |  Size: 362 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12,12.586l-2.293-2.293l-1.414,1.414L12,15.414l9.707-9.707l-1.414-1.414L18,6.586V6c0-0.553-0.447-1-1-1H5 C4.447,5,4,5.447,4,6v12c0,0.553,0.447,1,1,1h12c0.553,0,1-0.447,1-1v-5.879l-2,2V17H6V7h10v1.586L12,12.586z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M18,5H6C5.447,5,5,5.447,5,6v12c0,0.553,0.447,1,1,1h12c0.553,0,1-0.447,1-1V6C19,5.447,18.553,5,18,5z M17,17H7V7h10V17z"/><path d="M11,15c0.256,0,0.512-0.098,0.707-0.293l4.5-4.5l-1.414-1.414L11,12.586l-1.293-1.293l-1.414,1.414l2,2 C10.488,14.902,10.744,15,11,15z"/></svg>

Before

Width:  |  Height:  |  Size: 311 B

After

Width:  |  Height:  |  Size: 361 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12,2C6.486,2,2,6.486,2,12c0.001,5.515,4.487,10.001,10,10.001c5.514,0,10-4.486,10.001-10.001C22.001,6.486,17.515,2,12,2 z M12,20.001c-4.41,0-7.999-3.589-8-8.001c0-4.411,3.589-8,8-8c4.412,0,8.001,3.589,8.001,8C20,16.412,16.411,20.001,12,20.001z"/></svg>

After

Width:  |  Height:  |  Size: 344 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M21,4H3C2.447,4,2,4.447,2,5v14c0,0.553,0.447,1,1,1h18c0.553,0,1-0.447,1-1V5C22,4.447,21.553,4,21,4z M4,18V8h16v10H4z"/><path d="M9.293 9.293l-3 3c-.391.391-.391 1.023 0 1.414l3 3 1.414-1.414L8.414 13l2.293-2.293L9.293 9.293zM14.707 9.293l-1.414 1.414L15.586 13l-2.293 2.293 1.414 1.414 3-3c.391-.391.391-1.023 0-1.414L14.707 9.293z"/></svg>

After

Width:  |  Height:  |  Size: 432 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M8.293 6.293L2.586 12l5.707 5.707 1.414-1.414L5.414 12l4.293-4.293zM15.707 17.707L21.414 12l-5.707-5.707-1.414 1.414L18.586 12l-4.293 4.293z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M8.293 6.293l-5 5c-.391.391-.391 1.023 0 1.414l5 5 1.414-1.414L5.414 12l4.293-4.293L8.293 6.293zM20.707 11.293l-5-5-1.414 1.414L18.586 12l-4.293 4.293 1.414 1.414 5-5C21.098 12.316 21.098 11.684 20.707 11.293z"/></svg>

Before

Width:  |  Height:  |  Size: 241 B

After

Width:  |  Height:  |  Size: 310 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M21 4H3a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1zM4 18V6h4v12H4zm6 0V6h4v12h-4zm10 0h-4V6h4v12z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M21,4H3C2.447,4,2,4.448,2,5v14c0,0.552,0.447,1,1,1h5h2h4h2h5c0.553,0,1-0.448,1-1V5C22,4.448,21.553,4,21,4z M4,18v-8h4v8 H4z M10,18v-8h4v8H10z M20,18h-4v-8h4V18z M20,8H4V6h16V8z"/></svg>

Before

Width:  |  Height:  |  Size: 219 B

After

Width:  |  Height:  |  Size: 277 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M10 3H14V6H10zM10 8H14V11H10zM10 13H14V16H10zM16 3H20V6H16zM16 8H20V11H16zM16 13H20V16H16zM4 3H8V6H4zM4 8H8V11H4zM4 13H8V16H4zM10 18H14V21H10z"/></svg>

After

Width:  |  Height:  |  Size: 243 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M16.707 4.293A.996.996 0 0 0 16 4H8a.996.996 0 0 0-.707.293l-5 5a.999.999 0 0 0 0 1.414l9 9a.997.997 0 0 0 1.414 0l9-9a.999.999 0 0 0 0-1.414l-5-5zM12 17.586L4.414 10l4-4h7.172l4 4L12 17.586z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M21.813,9.419l-5-7C16.626,2.156,16.323,2,16,2h-3h-2H8C7.677,2,7.374,2.156,7.187,2.419l-5,7 c-0.263,0.367-0.246,0.865,0.039,1.214l9,11c0.016,0.019,0.039,0.026,0.056,0.043c0.069,0.074,0.148,0.136,0.237,0.186 c0.032,0.019,0.062,0.037,0.096,0.052C11.734,21.964,11.862,22,12,22s0.266-0.036,0.386-0.087c0.034-0.015,0.063-0.033,0.096-0.052 c0.089-0.05,0.168-0.111,0.237-0.186c0.017-0.017,0.04-0.024,0.056-0.043l9-11C22.06,10.284,22.076,9.786,21.813,9.419z M19.057,9 h-3.302l-1.429-5h1.159L19.057,9z M8.236,11l1.563,5.73L5.11,11H8.236z M10.31,11h3.381L12,17.199L10.31,11z M15.764,11h3.126 l-4.688,5.73L15.764,11z M12.246,4l1.429,5h-3.35l1.429-5H12.246z M8.515,4h1.159L8.245,9H4.943L8.515,4z"/></svg>

Before

Width:  |  Height:  |  Size: 292 B

After

Width:  |  Height:  |  Size: 783 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M18.707 10.293A.996.996 0 0 0 18 10h-5V2h-2v1H6a.997.997 0 0 0-.707.293l-3 3a.999.999 0 0 0 0 1.414l3 3A.997.997 0 0 0 6 11h5v11h2v-4h5c.266 0 .52-.105.707-.293l3-3a.999.999 0 0 0 0-1.414l-3-3zM11 9H6.414l-2-2 2-2H11v4zm6.586 7H13v-4h4.586l2 2-2 2z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M21.641,12.731l-3-2.5C18.461,10.082,18.234,10,18,10h-5V5V2h-2v2H6C5.766,4,5.54,4.082,5.36,4.231l-3,2.5 C2.132,6.922,2,7.203,2,7.5s0.132,0.578,0.36,0.769l3,2.5C5.54,10.918,5.766,11,6,11h5v5v6h2v-5h5c0.234,0,0.461-0.082,0.641-0.231 l3-2.5C21.868,14.078,22,13.797,22,13.5S21.868,12.922,21.641,12.731z M6.362,9l-1.8-1.5l1.8-1.5H11v3H6.362z M17.638,15H13v-3 h4.638l1.8,1.5L17.638,15z"/></svg>

Before

Width:  |  Height:  |  Size: 349 B

After

Width:  |  Height:  |  Size: 479 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12,2C6.486,2,2,6.486,2,12s4.486,10,10,10s10-4.486,10-10S17.514,2,12,2z M12,20c-4.411,0-8-3.589-8-8s3.589-8,8-8 s8,3.589,8,8S16.411,20,12,20z"/><path d="M12,11c-1.999,0-1.999-0.578-1.999-1c0-0.826,1.087-1,1.999-1c1.391,0,2.356,0.766,2.366,0.773l1.273-1.542 c-0.05-0.042-1.067-0.86-2.64-1.136V6.012h-2v1.057C8.812,7.38,8.001,8.728,8.001,10c0,1.368,0.693,3,3.999,3 c1.999,0,1.999,0.602,1.999,1c0,0.826-1.087,1-1.999,1c-1.391,0-2.356-0.766-2.36-0.769L8.36,15.769 c0.05,0.042,1.067,0.86,2.64,1.136V18h2v-1.068c2.188-0.312,2.999-1.659,2.999-2.932C15.999,12.632,15.306,11,12,11z"/></svg>

After

Width:  |  Height:  |  Size: 673 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M17 5h-1c-.553 0-1 .447-1 1v5H9V6c0-.553-.447-1-1-1H7C6.447 5 6 5.447 6 6v5 2 5c0 .553.447 1 1 1h1c.553 0 1-.447 1-1v-5h6v5c0 .553.447 1 1 1h1c.553 0 1-.447 1-1V6C18 5.447 17.553 5 17 5zM3 11L2 11 2 13 3 13 3 16 5 16 5 8 3 8zM22 11L21 11 21 8 19 8 19 16 21 16 21 13 22 13z"/></svg>

After

Width:  |  Height:  |  Size: 373 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M19.987,8.938c-0.005-0.089-0.022-0.175-0.051-0.259c-0.011-0.032-0.02-0.063-0.033-0.094 c-0.049-0.106-0.11-0.207-0.196-0.293l-6-6c-0.086-0.086-0.187-0.147-0.293-0.196c-0.03-0.014-0.062-0.022-0.094-0.033 c-0.084-0.028-0.17-0.046-0.259-0.051C13.04,2.011,13.021,2,13,2H5C4.447,2,4,2.447,4,3v18c0,0.553,0.447,1,1,1h14 c0.553,0,1-0.447,1-1V9C20,8.979,19.989,8.96,19.987,8.938z M16.586,8H14V5.414L16.586,8z M6,20V4h6v5c0,0.553,0.447,1,1,1h5v10H6z"/></svg>

After

Width:  |  Height:  |  Size: 540 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M3 4v3c0 .266.105.52.293.707L11 15.414V21h2v-5.586l7.707-7.707A.996.996 0 0 0 21 7V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1zm2 1h14v1.586l-7 7-7-7V5z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M20,3H4C3.447,3,3,3.447,3,4v3c0,0.266,0.105,0.52,0.293,0.707L11,15.414V22l2-2v-4.586l7.707-7.707 C20.895,7.52,21,7.266,21,7V4C21,3.447,20.553,3,20,3z M19,6.586l-7,7l-7-7V5h14V6.586z"/></svg>

Before

Width:  |  Height:  |  Size: 241 B

After

Width:  |  Height:  |  Size: 282 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M5.962 17.674C7 19.331 7 20.567 7 22h2c0-1.521 0-3.244-1.343-5.389L5.962 17.674zM5.768 14.254c-1.641-1.691-2.477-5.947.001-8.509 2.573-2.66 7.985-1.648 9.728-.631 2.691 1.569 4.097 4.308 4.109 4.333l1.789-.895c-.066-.134-1.67-3.288-4.891-5.166C13.997 1.924 7.608.969 4.331 4.354c-3.389 3.503-2.283 8.938.001 11.292.188.193.36.382.524.566l1.494-1.33C6.169 14.679 5.976 14.469 5.768 14.254z"/><path d="M9.34 12.822c-1.03-1.26-1.787-2.317-1.392-3.506.263-.785.813-1.325 1.637-1.604 1.224-.41 2.92-.16 4.04.601l1.123-1.654c-1.648-1.12-3.982-1.457-5.804-.841C7.536 6.294 6.509 7.313 6.052 8.684c-.776 2.328.799 4.254 1.74 5.405.149.183.29.354.409.512C11 18.323 11 20.109 11 22h2c0-2.036 0-4.345-3.201-8.601C9.665 13.221 9.508 13.028 9.34 12.822zM15.131 9.478c1.835 1.764 3.034 4.447 3.889 8.701l1.961-.395c-.939-4.678-2.316-7.685-4.463-9.748L15.131 9.478z"/><path d="M11.556 9.169l-1.115 1.66c.027.019 2.711 1.88 3.801 5.724l1.924-.545C14.867 11.426 11.69 9.259 11.556 9.169zM14.688 18.459C14.898 19.627 15 20.785 15 22h2c0-1.335-.112-2.608-.343-3.895L14.688 18.459z"/></svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M20 6h-7.738L8.935 4.129A.995.995 0 0 0 8.444 4H4a1 1 0 0 0-1 1v6a1.003 1.003 0 0 0-.99 1.142l1 7A1 1 0 0 0 4 20h16a1 1 0 0 0 .99-.858l1-7A1.003 1.003 0 0 0 21 11V7a1 1 0 0 0-1-1zm-.867 12H4.867l-.714-5h15.693l-.713 5zM5 11V6h3.183l3.327 1.871A.988.988 0 0 0 12 8h7v3H5z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M21.835,11.449C21.649,11.169,21.336,11,21,11h-1V7c0-0.553-0.447-1-1-1h-7.738L7.935,4.129C7.785,4.044,7.616,4,7.444,4H3 C2.447,4,2,4.447,2,5v14h0.007c0,0.192,0.049,0.385,0.158,0.551C2.351,19.831,2.664,20,3,20h15c0.4,0,0.762-0.238,0.919-0.606l3-7 C22.052,12.085,22.02,11.73,21.835,11.449z M7.183,6l3.327,1.871C10.659,7.956,10.828,8,11,8h7v3H6c-0.4,0-0.762,0.238-0.919,0.606 L4,14.129V6H7.183z M17.341,18H4.517l2.143-5h12.824L17.341,18z"/></svg>

Before

Width:  |  Height:  |  Size: 371 B

After

Width:  |  Height:  |  Size: 534 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M5 19H19V21H5zM9.191 13h5.604l1.69 4h2.171L13.421 4.61C13.265 4.24 12.901 4 12.5 4h-1c-.401 0-.764.24-.921.609L5.321 17h2.173L9.191 13zM11.999 6.384L13.95 11h-3.91L11.999 6.384z"/></svg>

After

Width:  |  Height:  |  Size: 278 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M22 4L8 4 8 6 14 6 14 20 16 20 16 6 22 6z"/><path d="M2 11L6 11 6 20 8 20 8 11 12 11 12 9 2 9z"/></svg>

After

Width:  |  Height:  |  Size: 195 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12.001,22.009c2.666,0,5.176-1.043,7.07-2.937c3.899-3.898,3.899-10.243,0-14.144c-1.895-1.895-4.405-2.938-7.07-2.938 c-2.666,0-5.177,1.044-7.072,2.938c-3.899,3.898-3.899,10.243,0,14.142C6.823,20.966,9.335,22.009,12.001,22.009z M12.181,4h-0.359 c0.061-0.001,0.119-0.009,0.18-0.009S12.12,3.999,12.181,4z M6.343,6.344c0.919-0.92,2.021-1.584,3.22-1.969L12,6l2.438-1.625 c1.198,0.385,2.301,1.049,3.22,1.968c0.663,0.663,1.177,1.418,1.558,2.221L18,11l1.858,2.478c-0.235,1.26-0.773,2.473-1.615,3.522 H16l-1.258,2.516c-0.868,0.318-1.791,0.493-2.741,0.493c-0.952,0-1.876-0.175-2.746-0.494L8,17.01H5.765 c-0.846-1.052-1.387-2.269-1.623-3.532L6,11L4.784,8.567C5.165,7.764,5.679,7.008,6.343,6.344z"/><path d="M14 15L15.5 11 12 8.5 8.5 11 10 15z"/></svg>

After

Width:  |  Height:  |  Size: 831 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M21 7h-2.209A4.92 4.92 0 0 0 19 5.5C19 3.57 17.43 2 15.5 2c-1.689 0-2.803 1.434-3.5 2.882C11.303 3.434 10.19 2 8.5 2 6.57 2 5 3.57 5 5.5c0 .596.079 1.089.209 1.5H3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h1v6a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-6h1a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1zM8.5 4c.888 0 1.714 1.525 2.198 3H8c-.374 0-1 0-1-1.5C7 4.673 7.673 4 8.5 4zM11 18H6v-5h5v5zm0-7H4V9h7v2zm4.5-7c.827 0 1.5.673 1.5 1.5C17 7 16.374 7 16 7h-2.694c.451-1.368 1.251-3 2.194-3zM18 18h-5v-5h5v5zm2-7h-7V9h7v2z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M21,8h-2.209C18.922,7.589,19,7.096,19,6.5C19,4.57,17.43,3,15.5,3c-1.689,0-2.803,1.434-3.5,2.882 C11.303,4.434,10.19,3,8.5,3C6.57,3,5,4.57,5,6.5C5,7.096,5.079,7.589,5.209,8H3C2.448,8,2,8.448,2,9v4c0,0.553,0.448,1,1,1h1v6 c0,0.553,0.448,1,1,1h14c0.553,0,1-0.447,1-1v-6h1c0.553,0,1-0.447,1-1V9C22,8.448,21.553,8,21,8z M15.5,5C16.327,5,17,5.673,17,6.5 C17,8,16.374,8,16,8h-2.694C13.757,6.632,14.557,5,15.5,5z M7,6.5C7,5.673,7.673,5,8.5,5c0.888,0,1.714,1.525,2.198,3H8 C7.626,8,7,8,7,6.5z M4,10h7v2H4V10z M6,14h5v5H6V14z M18,19h-5v-5h5V19z M20,12h-7v-2h7V12z"/></svg>

Before

Width:  |  Height:  |  Size: 584 B

After

Width:  |  Height:  |  Size: 654 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12.984" cy="3.984" r="2.016"/><path d="M18.929,15.629c-0.102-0.255-0.303-0.456-0.558-0.558L14,13.323V11h3V9h-3V7h-2v7c0,0.409,0.249,0.776,0.629,0.929 l4.602,1.841l1.841,4.602l1.857-0.742L18.929,15.629z"/><path d="M10.005,20.01C7.797,20.01,6,18.213,6,16.005S7.797,12,10.005,12v-2C6.693,10,4,12.693,4,16.005s2.693,6.005,6.005,6.005 c2.352,0,4.499-1.392,5.47-3.546l-1.824-0.822C13.003,19.08,11.571,20.01,10.005,20.01z"/></svg>

After

Width:  |  Height:  |  Size: 518 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M19.759 7.85l-3-3.5c-.174-.204-.424-.329-.691-.348-.269-.014-.531.072-.731.251l-9 8c-.116.103-.206.231-.264.376l-1.916 4.789-.864.866 1.416 1.412.803-.806 4.776-1.433c.14-.042.269-.114.377-.211l9-8C20.072 8.885 20.114 8.264 19.759 7.85zM10.096 15.076l-1.698-1.98 7.505-6.672 1.698 1.981L10.096 15.076zM12 18H20V20H12z"/></svg>

After

Width:  |  Height:  |  Size: 418 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M11.5 22c4.094 0 8.5-2.504 8.5-8 0-.181-.026-4.44-2.293-6.707a1 1 0 0 0-1.677.465c-.285 1.141-.744 1.88-1.219 2.359.502-1.817.396-3.409-.322-4.751-1.524-2.847-5.209-3.339-5.365-3.358a1.018 1.018 0 0 0-.786.242A1 1 0 0 0 8 3c0 .025-.02 2.605-1.707 4.293C4.239 9.347 3 10.586 3 14c0 5.526 4.27 8 8.5 8zM7.707 8.707c1.431-1.431 1.969-3.274 2.171-4.474.916.29 2.22.895 2.852 2.085.682 1.282.472 3.043-.624 5.234A1 1 0 0 0 13 13c.13 0 2.716-.038 4.238-2.833.745 1.731.762 3.807.762 3.833 0 3.385-2.047 5.097-4.35 5.718-1.013.116-4.009-.137-5.65-6.718 0 0-1.387 3.475-.688 5.786C5.965 17.85 5 16.32 5 14c0-2.586.737-3.323 2.707-5.293z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M17.707,7.293c-0.265-0.265-0.656-0.358-1.013-0.245c-0.356,0.114-0.619,0.418-0.681,0.788 c-0.367,2.205-1.224,3.604-2.45,4.046c0.852-2.293,0.896-4.326,0.129-6.06c-1.271-2.871-4.294-3.749-4.422-3.785 c-0.3-0.082-0.625-0.023-0.874,0.166C8.146,2.392,8,2.687,8,3c0,2.526-1.693,4.278-1.707,4.293C4.107,9.478,3,11.734,3,14 c0,5.526,4.27,8,8.5,8c4.094,0,8.5-2.504,8.5-8C20,13.819,19.974,9.56,17.707,7.293z M13.65,19.718C12.637,19.834,9.641,19.581,8,13 c0,0-1.604,2.682-1.679,4.903C5.518,16.974,5,15.698,5,14c0-1.716,0.911-3.497,2.707-5.293c0.079-0.079,1.663-1.69,2.15-4.226 c0.699,0.414,1.549,1.103,2.014,2.167c0.672,1.536,0.414,3.511-0.766,5.87c-0.135,0.271-0.141,0.587-0.016,0.861 c0.125,0.275,0.367,0.479,0.66,0.554c0.064,0.017,0.411,0.101,0.921,0.101c1.083,0,3.422-0.395,4.691-3.559 C17.985,12.135,18,13.976,18,14C18,17.385,15.953,19.097,13.65,19.718z"/></svg>

Before

Width:  |  Height:  |  Size: 729 B

After

Width:  |  Height:  |  Size: 947 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="7" cy="12" r="2"/><path d="M16,9h-5c-0.553,0-1,0.447-1,1v5H4V6H2v14h2v-3h16v3h2v-4C22,13.579,20.746,9,16,9z M12,11h4c2.861,0,3.673,2.539,3.905,4 H12V11z"/></svg>

After

Width:  |  Height:  |  Size: 256 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M18,4h1V2h-2H7H5v2h1c0,3.29,0.682,5.014,3,7.41v1.181C6.682,14.986,6,16.71,6,20H5v2h2h10h2v-2h-1 c0-3.29-0.682-5.014-3-7.41V11.41C17.318,9.014,18,7.29,18,4z M13.293,13.707C15.627,16.041,16,17.266,16,20H8 c0-2.734,0.373-3.959,2.707-6.293C10.895,13.52,11,13.265,11,13v-2c0-0.265-0.105-0.52-0.293-0.707C8.373,7.959,8,6.734,8,4h8 c0,2.734-0.373,3.959-2.707,6.293C13.105,10.48,13,10.735,13,11v2C13,13.265,13.105,13.52,13.293,13.707z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M19,3.977h1v-2H4v2h1c0,3.313,1.166,5.528,4,7.528v0.949c-2.834,2.041-4,4.254-4,7.522H4v2h16v-2h-1 c0-3.269-1.166-5.481-4-7.522v-0.949C17.834,9.505,19,7.289,19,3.977z M13.44,13.806c2.628,1.772,3.56,3.387,3.56,6.171H7 c0-2.784,0.932-4.398,3.56-6.171C10.835,13.62,11,13.309,11,12.977v-2c0-0.336-0.169-0.65-0.45-0.835C7.962,8.437,7,6.766,7,3.977 h10c0,2.789-0.962,4.46-3.55,6.165C13.169,10.326,13,10.641,13,10.977v2C13,13.309,13.165,13.62,13.44,13.806z"/></svg>

Before

Width:  |  Height:  |  Size: 527 B

After

Width:  |  Height:  |  Size: 548 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M20,3H4C3.447,3,3,3.447,3,4v16c0,0.553,0.447,1,1,1h16c0.553,0,1-0.447,1-1V4C21,3.447,20.553,3,20,3z M19,5v9.764 l-3.105-6.211C15.728,8.22,15.391,8.007,15.018,8c-0.391-0.007-0.717,0.193-0.896,0.521l-3.466,6.354L8.8,12.4 c-0.194-0.26-0.513-0.407-0.827-0.4c-0.325,0.01-0.625,0.175-0.805,0.445L5,15.697V5H19z M8.406,19H5.202l2.846-4.27l1.556,2.074 L8.406,19z M14.962,11.159L18.882,19h-8.197L14.962,11.159z"/><circle cx="8.486" cy="8.487" r="1.513"/></svg>

After

Width:  |  Height:  |  Size: 543 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M21 2H7a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V3a1 1 0 0 0-1-1zM8 4h12v8H8V4zm12 12H8v-2h12v2z"/><path d="M4 8H2v13a1 1 0 0 0 1 1h13v-2H4V8zM13 8.667L12 8l-2 2h8l-3-4z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M21,2H7C6.447,2,6,2.447,6,3v14c0,0.553,0.447,1,1,1h14c0.553,0,1-0.447,1-1V3C22,2.447,21.553,2,21,2z M8,4h12v10.4L16,8 l-3.636,5.818L11,12l-3,4V4z"/><path d="M4,8H2v13c0,0.553,0.447,1,1,1h13v-2H4V8z"/><circle cx="11.5" cy="7.5" r="1.5"/></svg>

Before

Width:  |  Height:  |  Size: 277 B

After

Width:  |  Height:  |  Size: 334 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12.614 2.211a1.001 1.001 0 0 0-1.229 0l-9 7a1.002 1.002 0 0 0 .001 1.578l9 7a.994.994 0 0 0 1.228 0l9-7a1 1 0 0 0 0-1.578l-9-7zM12 15.733L4.629 10 12 4.267 19.371 10 12 15.733z"/><path d="M12 22c.217 0 .434-.07.614-.211l8.6-6.688-1.628-1.268-7.586 5.9-7.557-5.878-1.629 1.267 8.571 6.667A.999.999 0 0 0 12 22z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12,17c-0.205,0-0.411-0.063-0.586-0.189l-9-6.5C2.154,10.123,2,9.821,2,9.5s0.154-0.623,0.414-0.811l9-6.5 c0.35-0.252,0.822-0.252,1.172,0l9,6.5C21.846,8.877,22,9.179,22,9.5s-0.154,0.623-0.414,0.811l-9,6.5 C12.411,16.937,12.205,17,12,17z M4.708,9.5L12,14.767L19.292,9.5L12,4.233L4.708,9.5z"/><path d="M19.925,14L12,19.764L4.075,14l-1.7,1.236l9.037,6.572C11.587,21.937,11.794,22,12,22s0.413-0.063,0.588-0.191l9.037-6.572 L19.925,14z"/></svg>

Before

Width:  |  Height:  |  Size: 411 B

After

Width:  |  Height:  |  Size: 529 B

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M8 6h12v2H8zM8 11h12v2H8zM8 16h12v2H8zM4 6h2v2H4zM4 11h2v2H4zM4 16h2v2H4z"/></svg>

Before

Width:  |  Height:  |  Size: 174 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M3 5h18v2H3zM3 9h18v2H3zM3 13h9v2H3zM3 17h9v2H3zM15.994 17.583l-1.292-1.291-1.414 1.415 2.706 2.704 5.712-5.703-1.412-1.416z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M3 5H21V7H3zM3 9H21V11H3zM3 13H12V15H3zM3 17H12V19H3zM20.294 13.292l-4.3 4.291-1.292-1.292-1.414 1.415 1.999 1.998c.195.195.451.293.707.293s.512-.098.706-.292l5.006-4.997L20.294 13.292z"/></svg>

Before

Width:  |  Height:  |  Size: 225 B

After

Width:  |  Height:  |  Size: 286 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M8 5H20V7H8zM8 11H20V13H8zM8 17H20V19H8zM6.182 14H3c.036-.323.147-.628.332-.914.185-.285.532-.622 1.04-1.009.311-.238.51-.42.597-.542.086-.124.13-.241.13-.352 0-.12-.043-.223-.129-.308-.086-.084-.194-.127-.324-.127-.135 0-.246.044-.332.131-.086.088-.144.242-.173.464l-1.063-.089c.042-.307.118-.547.229-.72s.268-.305.47-.397C3.979 10.046 4.26 10 4.617 10c.373 0 .663.044.871.132.208.087.37.223.489.403s.179.386.179.61c0 .24-.068.468-.205.687s-.384.458-.744.719c-.213.152-.356.259-.428.32-.072.06-.157.141-.254.238h1.656V14zM4.06 17.185l-1.002-.182c.083-.323.243-.572.48-.744C3.775 16.086 4.11 16 4.544 16c.498 0 .859.094 1.081.282.222.189.333.425.333.71 0 .168-.045.317-.135.453-.091.137-.227.255-.409.356.148.037.261.081.339.129.127.08.225.184.295.313.07.131.105.284.105.464 0 .226-.058.44-.174.648-.117.207-.284.364-.503.477S4.971 20 4.615 20c-.347 0-.621-.04-.822-.124-.2-.083-.365-.203-.495-.363C3.169 19.354 3.07 19.155 3 18.913l1.06-.143c.042.217.106.366.194.449.088.084.199.125.335.125.143 0 .261-.052.355-.157.094-.105.142-.247.142-.422 0-.18-.045-.319-.137-.418C4.858 18.249 4.734 18.2 4.578 18.2c-.083 0-.198.021-.344.064l.055-.769c.06.009.105.013.138.013.139 0 .254-.044.348-.134s.139-.196.139-.319c0-.118-.034-.213-.104-.282-.07-.07-.165-.105-.287-.105-.125 0-.227.038-.305.114C4.141 16.859 4.088 16.993 4.06 17.185zM5.688 4v4H4.615V5.379C4.441 5.515 4.273 5.625 4.111 5.708 3.949 5.793 3.745 5.874 3.5 5.95V5.055c.361-.12.641-.265.841-.433C4.541 4.454 4.697 4.247 4.81 4H5.688z"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M8 5H20V7H8z"/><path d="M8 5H20V7H8zM8 11H20V13H8zM8 17H20V19H8zM4 5H6V7H4z"/><path d="M4 5H6V7H4zM4 11H6V13H4zM4 17H6V19H4z"/></svg>

After

Width:  |  Height:  |  Size: 225 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M9.5 6L10.5 5.334 11.5 6 11.166 4.833 12 4.125 11 4 10.5 3 10 4 9 4.125 9.834 4.833zM19.334 14.666L18.5 13 17.666 14.666 16 14.875 17.389 16.056 16.834 18 18.5 16.889 20.166 18 19.611 16.056 21 14.875zM4.667 9L6 8.111 7.333 9 6.889 7.444 8 6.5 6.667 6.333 6 5 5.333 6.333 4 6.5 5.111 7.444zM20.707 6.293l-3-3c-.391-.391-1.023-.391-1.414 0l-13 13c-.391.391-.391 1.023 0 1.414l3 3C6.488 20.902 6.744 21 7 21s.512-.098.707-.293l13-13C21.098 7.316 21.098 6.684 20.707 6.293zM7 18.586L5.414 17 12 10.414 13.586 12 7 18.586zM15 10.586L13.414 9 17 5.414 18.586 7 15 10.586z"/></svg>

After

Width:  |  Height:  |  Size: 667 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M3 11H16V13H3zM3 6H21V8H3zM3 16L3 18 11 18 11.235 18 11.235 16 11 16z"/></svg>

After

Width:  |  Height:  |  Size: 170 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M3 6H21V8H3zM8 11H21V13H8zM13 16H21V18H13z"/></svg>

After

Width:  |  Height:  |  Size: 143 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M8 11h8v2H8z"/><path d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2zm0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8 8 3.589 8 8-3.589 8-8 8z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M7 11H17V13H7z"/><path d="M12,2C6.486,2,2,6.486,2,12s4.486,10,10,10s10-4.486,10-10S17.514,2,12,2z M12,20c-4.411,0-8-3.589-8-8s3.589-8,8-8 s8,3.589,8,8S16.411,20,12,20z"/></svg>

Before

Width:  |  Height:  |  Size: 259 B

After

Width:  |  Height:  |  Size: 268 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M21,4H3C2.447,4,2,4.447,2,5v6v9c0,0.553,0.447,1,1,1h18c0.553,0,1-0.447,1-1v-9V5C22,4.447,21.553,4,21,4z M20,10h-0.465 l-2.667-4H20V10z M9.535,10L6.868,6h2.597l2.667,4H9.535z M14.535,10l-2.667-4h2.597l2.667,4H14.535z M4.465,6l2.667,4H4V6H4.465z M20,19H4v-7h16V19z"/></svg>

After

Width:  |  Height:  |  Size: 363 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M15.507 15C13.573 15 12 16.573 12 18.507s1.573 3.507 3.507 3.507c1.769 0 3.22-1.32 3.458-3.023H19v-.348c.002-.047.014-.09.014-.136s-.012-.089-.014-.136V7.411a.997.997 0 0 0-.56-.897l-9-4.411A.998.998 0 0 0 8 3.001l.01 8.337a3.464 3.464 0 0 0-1.503-.352C4.573 10.986 3 12.56 3 14.493S4.573 18 6.507 18s3.507-1.573 3.507-3.507v-.001l-.012-9.888L17 8.034v7.313A3.466 3.466 0 0 0 15.507 15zm-9 1C5.676 16 5 15.324 5 14.493s.676-1.507 1.507-1.507 1.507.676 1.507 1.507c0 .831-.676 1.507-1.507 1.507zm9 4.014c-.831 0-1.507-.676-1.507-1.507S14.676 17 15.507 17c.785 0 1.424.604 1.493 1.371v.271a1.503 1.503 0 0 1-1.493 1.372z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M20,18.439V8c0-0.363-0.197-0.698-0.515-0.874l-9-5c-0.308-0.172-0.687-0.167-0.992,0.012C9.188,2.317,9,2.646,9,3v8.336 c-0.457-0.218-0.961-0.35-1.5-0.35c-1.934,0-3.507,1.573-3.507,3.507S5.566,18,7.5,18s3.507-1.573,3.507-3.507 c0-0.023-0.007-0.045-0.007-0.067V4.699l7,3.89v6.761C17.543,15.132,17.039,15,16.5,15c-1.934,0-3.507,1.573-3.507,3.507 s1.573,3.507,3.507,3.507s3.507-1.573,3.507-3.507C20.007,18.483,20,18.462,20,18.439z M7.5,16c-0.831,0-1.507-0.676-1.507-1.507 s0.676-1.507,1.507-1.507c0.808,0,1.464,0.641,1.5,1.439V14.5h0.006C9.002,15.328,8.329,16,7.5,16z M16.5,20.014 c-0.831,0-1.507-0.676-1.507-1.507S15.669,17,16.5,17c0.808,0,1.464,0.641,1.5,1.439V18.5h0.006c0,0.002,0.001,0.005,0.001,0.007 C18.007,19.338,17.331,20.014,16.5,20.014z"/></svg>

Before

Width:  |  Height:  |  Size: 719 B

After

Width:  |  Height:  |  Size: 842 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 6h4v2h-4zM8 6h2v2H8zM9 10h6v2H9z"/><path d="M21.707 8.293L20 6.586V3a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v3.586L2.293 8.293l.006.006A.986.986 0 0 0 2 9v12a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1V9a.986.986 0 0 0-.299-.701l.006-.006zM18 4v6.329l-6 5.333-6-5.333V4h12zm2 16H4v-8.773l7.336 6.521a.996.996 0 0 0 1.328 0L20 11.227V20z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M21.755,8.359l0.008-0.007L21,7.454V3c0-0.553-0.447-1-1-1H4C3.447,2,3,2.447,3,3v4.586L2.293,8.293l0.006,0.006 C2.114,8.482,2,8.73,2,9v12c0,0.553,0.447,1,1,1h18c0.553,0,1-0.447,1-1V9C22,8.759,21.905,8.537,21.755,8.359z M19,4v5.44 l-7,6.222L5,9.44V4H19z M20,20H4v-8.773l7.336,6.521c0.379,0.338,0.949,0.338,1.328,0L20,11.227V20z"/><path d="M12 6H17V8H12zM7 6H10V8H7zM9 10H15V12H9z"/></svg>

Before

Width:  |  Height:  |  Size: 418 B

After

Width:  |  Height:  |  Size: 477 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M21.71 20.296L19 17.586 19 11 17 11 17 15.586 7.414 6 12 6 12 4 5.414 4 3.71 2.296 2.296 3.71 20.296 21.71z"/><circle cx="17" cy="6" r="3"/><path d="M3,7.121V19c0,0.552,0.447,1,1,1h11.879l-2-2H5V9.121L3,7.121z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M20 18.586L20 11 18 11 18 16.586 7.414 6 13 6 13 4 5.414 4 3.71 2.296 2.296 3.71 20.296 21.71 21.71 20.296z"/><circle cx="18" cy="6" r="3"/><path d="M6,18v-7.879l-2-2V19c0,0.552,0.447,1,1,1h10.879l-2-2H6z"/></svg>

Before

Width:  |  Height:  |  Size: 310 B

After

Width:  |  Height:  |  Size: 305 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M20,2H6C4.794,2,3,2.799,3,5v11v1v2c0,2.201,1.794,3,3,3h14c0.553,0,1-0.447,1-1v-4V3C21,2.447,20.553,2,20,2z M5,5 c0-0.806,0.55-0.988,1-1h13v12H5V5z M6.012,20C5.55,19.988,5,19.806,5,19s0.55-0.988,1.012-1H19v2H6.012z"/><path d="M12 13L17 13 13.5 6.992 10.933 11.399 10 10 8 13 10 13z"/><circle cx="9.503" cy="7.497" r="1.503"/></svg>

After

Width:  |  Height:  |  Size: 422 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M21.222,3.811c-0.661-0.744-1.58-1.091-2.575-0.983C17.815,2.919,16.96,3.33,16.098,4.02c-1.243-0.64-2.634-1-4.097-1 c-1.618,0-3.215,0.443-4.615,1.282C5.319,5.536,3.861,7.495,3.277,9.817c-0.449,1.788-0.333,3.63,0.306,5.325 c-1.065,1.203-2.054,3.677-0.823,5.063c0.517,0.581,1.257,0.841,2.147,0.841c0.975,0,2.133-0.319,3.373-0.86 c1.144,0.519,2.396,0.811,3.709,0.811c1.619,0,3.216-0.443,4.616-1.282c2.065-1.234,3.524-3.192,4.107-5.515 c0.412-1.643,0.344-3.329-0.163-4.908C21.859,7.055,22.303,5.028,21.222,3.811z M18.864,4.815c0.356-0.033,0.632,0.064,0.861,0.323 c0.231,0.261,0.169,0.946-0.252,1.929c-0.461-0.701-1.005-1.319-1.617-1.853C18.287,4.952,18.632,4.841,18.864,4.815z M5.217,10.305 C5.67,8.501,6.805,6.979,8.412,6.019c1.091-0.653,2.332-0.999,3.589-0.999c2.473,0,4.709,1.273,5.983,3.405 c0.13,0.218,0.245,0.44,0.351,0.667c-0.971,1.441-2.433,3.16-4.498,4.994c-2.063,1.833-3.942,3.082-5.488,3.876 c-0.939-0.578-1.749-1.376-2.343-2.371C5.044,13.985,4.764,12.107,5.217,10.305z M4.256,18.877c-0.217-0.244,0.003-1.07,0.377-1.76 c0.452,0.656,0.978,1.237,1.565,1.739C5.174,19.158,4.486,19.139,4.256,18.877z M18.773,13.712 c-0.453,1.804-1.587,3.325-3.194,4.285c-1.091,0.653-2.333,0.999-3.59,0.999c-0.422,0-0.833-0.05-1.237-0.122 c1.487-0.911,3.004-2.04,4.413-3.292c1.411-1.253,2.722-2.626,3.803-3.996C19.012,12.292,18.95,13.008,18.773,13.712z"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M18 5a1 1 0 0 0-1-1h-6a.997.997 0 0 0-.6.2L6.667 7H3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h3.667l3.733 2.8c.173.13.383.2.6.2h6a1 1 0 0 0 1-1v-3h4v-2h-4v-4h4V8h-4V5zm-2 13h-4.667L7.6 15.2A.997.997 0 0 0 7 15H4V9h3c.217 0 .427-.07.6-.2L11.333 6H16v12z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M20,6h-3V2h-2v4H9V2H7v4H4C3.447,6,3,6.448,3,7v4c0,0.552,0.447,1,1,1h1v2c0,3.663,3.542,6,5.992,6H11v2h2v-2 c0.003,0,0.007,0,0.007,0C15.771,20,19,18.429,19,14v-2h1c0.553,0,1-0.448,1-1V7C21,6.448,20.553,6,20,6z M19,10h-1 c-0.553,0-1,0.448-1,1v3c0,1.448-0.453,2.523-1.348,3.197C14.688,17.922,13.481,18,13.007,18v1l-0.015-1l-1.003-0.002L10.98,18 C9.577,18,7,16.481,7,14v-3c0-0.552-0.447-1-1-1H5V8h14V10z"/></svg>

Before

Width:  |  Height:  |  Size: 342 B

After

Width:  |  Height:  |  Size: 499 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M13 8h-2v3H8v2h3v3h2v-3h3v-2h-3z"/><path d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2zm0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8 8 3.589 8 8-3.589 8-8 8z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M13 7L11 7 11 11 7 11 7 13 11 13 11 17 13 17 13 13 17 13 17 11 13 11z"/><path d="M12,2C6.486,2,2,6.486,2,12s4.486,10,10,10c5.514,0,10-4.486,10-10S17.514,2,12,2z M12,20c-4.411,0-8-3.589-8-8 s3.589-8,8-8s8,3.589,8,8S16.411,20,12,20z"/></svg>

Before

Width:  |  Height:  |  Size: 279 B

After

Width:  |  Height:  |  Size: 331 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M6 16c0-2.408 1.564-5 5-5 2.508 0 4.471 1.326 5.404 2.938L14.343 16H20v-5.657l-2.146 2.146C16.518 10.511 14.089 9 11 9c-4.596 0-7 3.521-7 7h2z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M20,9l-4-4v3H9c-2.757,0-5,2.243-5,5s2.243,5,5,5h3v-2H9c-1.654,0-3-1.346-3-3s1.346-3,3-3h7v3L20,9z"/></svg>

Before

Width:  |  Height:  |  Size: 243 B

After

Width:  |  Height:  |  Size: 198 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M10 22V12h2c.553 0 1-.447 1-1V2h-2v8h-1V2H8v8H7V2H5v9c0 .553.447 1 1 1h2v10H10zM19 22V3c0-.553-.447-1-1-1h-1c-1.159 0-2 1.262-2 3v7h2v10H19z"/></svg>

After

Width:  |  Height:  |  Size: 241 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M8.999 14.591l-1.292-1.292-1.414 1.414 2.708 2.708 4.707-4.714-1.416-1.414z"/><path d="M3 22h14a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1zM4 8h12v12H4V8z"/><path d="M21 2H8v2h12v12h2V3a1 1 0 0 0-1-1z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M21,2H7C6.447,2,6,2.447,6,3v14c0,0.553,0.447,1,1,1h14c0.553,0,1-0.447,1-1V3C22,2.447,21.553,2,21,2z M20,16H8V4h12V16z"/><path d="M4 8H2v13c0 .553.447 1 1 1h13v-2H4V8zM13 14c.015 0 .03 0 .045-.001.281-.013.543-.143.724-.358l5-6-1.537-1.281-4.299 5.159-1.726-1.726-1.414 1.414 2.5 2.5C12.48 13.896 12.735 14 13 14z"/></svg>

Before

Width:  |  Height:  |  Size: 321 B

After

Width:  |  Height:  |  Size: 413 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12 2C5.505 2 2 6.637 2 11c0 2.128 1.009 3.979 3 5.507V20a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-3.493c1.991-1.528 3-3.379 3-5.507 0-4.363-3.505-9-10-9zm5.428 13.18A1 1 0 0 0 17 16v3h-2v-3h-2v3h-2v-3H9v3H7v-3a1 1 0 0 0-.428-.82C4.865 13.989 4 12.583 4 11c0-3.479 2.748-7 8-7s8 3.521 8 7c0 1.583-.865 2.989-2.572 4.18z"/><circle cx="8" cy="11" r="2"/><circle cx="16" cy="11" r="2"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12,2C5.505,2,2,6.637,2,11c0,2.128,1.009,3.979,3,5.507V20c0,0.553,0.448,1,1,1h12c0.553,0,1-0.447,1-1v-3.493 c1.991-1.528,3-3.379,3-5.507C22,6.637,18.495,2,12,2z M17.428,15.18C17.16,15.367,17,15.673,17,16v3h-2v-3h-2v3h-2v-3H9v3H7v-3 c0-0.327-0.16-0.633-0.428-0.82C4.865,13.989,4,12.583,4,11c0-3.479,2.748-7,8-7s8,3.521,8,7 C20,12.583,19.135,13.989,17.428,15.18z"/><path d="M8 8c-1.122 0-2 1.098-2 2.5S6.878 13 8 13s2-1.098 2-2.5S9.122 8 8 8zM16 8c-1.121 0-2 1.098-2 2.5s.879 2.5 2 2.5 2-1.098 2-2.5S17.121 8 16 8z"/></svg>

Before

Width:  |  Height:  |  Size: 472 B

After

Width:  |  Height:  |  Size: 613 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M5 2h2v9H5zM17 2h2v13h-2zM11 2h2v3h-2zM3 15h2v7h2v-7h2v-2H3zM9.012 9H11v13h2V9h2V7H9.012zM15 19h2v3h2v-3h2v-2h-6z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M13 5H22V7H13zM9 17H22V19H9zM19 11H22V13H19zM9 9L11 9 11 3 9 3 9 5 2 5 2 7 9 7zM15 15L17 15 17 9 15 9 15 11 2 11 2 13 15 13zM5 17L2 17 2 19 5 19 5 21 7 21 7 15 5 15z"/></svg>

Before

Width:  |  Height:  |  Size: 214 B

After

Width:  |  Height:  |  Size: 266 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="8.5" cy="10.5" r="1.5"/><circle cx="15.5" cy="10.5" r="1.5"/><path d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2zm0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8 8 3.589 8 8-3.589 8-8 8z"/><path d="M12 16a3.97 3.97 0 0 1-3.201-1.601L7.2 15.601A5.954 5.954 0 0 0 12 18a5.957 5.957 0 0 0 4.8-2.399L15.2 14.4A3.97 3.97 0 0 1 12 16z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><ellipse cx="8.5" cy="10" rx="1.5" ry="2"/><ellipse cx="15.5" cy="10" rx="1.5" ry="2"/><path d="M12,2C6.486,2,2,6.486,2,12s4.486,10,10,10c5.514,0,10-4.486,10-10S17.514,2,12,2z M12,20c-4.411,0-8-3.589-8-8 s3.589-8,8-8s8,3.589,8,8S16.411,20,12,20z"/><path d="M12,16c-1.27,0-2.437-0.583-3.201-1.601L7.2,15.601C8.346,17.126,10.095,18,12,18c1.904,0,3.653-0.874,4.8-2.399 l-1.6-1.201C14.436,15.417,13.27,16,12,16z"/></svg>

Before

Width:  |  Height:  |  Size: 450 B

After

Width:  |  Height:  |  Size: 499 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="8.5" cy="10.5" r="1.5"/><circle cx="15.5" cy="10.5" r="1.5"/><path d="M12 22c5.514 0 10-4.486 10-10S17.514 2 12 2 2 6.486 2 12s4.486 10 10 10zm0-18c4.411 0 8 3.589 8 8s-3.589 8-8 8-8-3.589-8-8 3.589-8 8-8z"/><path d="M8 15h8v2H8z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><ellipse cx="8.5" cy="10" rx="1.5" ry="2"/><ellipse cx="15.5" cy="10" rx="1.5" ry="2"/><path d="M12,2C6.486,2,2,6.486,2,12s4.486,10,10,10s10-4.486,10-10S17.514,2,12,2z M12,20c-4.411,0-8-3.589-8-8s3.589-8,8-8 s8,3.589,8,8S16.411,20,12,20z"/><path d="M8 15H16V17H8z"/></svg>

Before

Width:  |  Height:  |  Size: 333 B

After

Width:  |  Height:  |  Size: 355 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="8.5" cy="10.5" r="1.5"/><circle cx="15.5" cy="10.5" r="1.5"/><path d="M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2zm0 18c-4.411 0-8-3.589-8-8s3.589-8 8-8 8 3.589 8 8-3.589 8-8 8z"/><path d="M12 14a5.957 5.957 0 0 0-4.8 2.399L8.8 17.6c.763-1.017 1.93-1.6 3.2-1.6s2.437.583 3.2 1.6l1.6-1.201A5.956 5.956 0 0 0 12 14z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><ellipse cx="8.5" cy="10" rx="1.5" ry="2"/><ellipse cx="15.5" cy="10" rx="1.5" ry="2"/><path d="M12,2C6.486,2,2,6.486,2,12s4.486,10,10,10s10-4.486,10-10S17.514,2,12,2z M12,20c-4.411,0-8-3.589-8-8s3.589-8,8-8 s8,3.589,8,8S16.411,20,12,20z"/><path d="M12,14c-1.905,0-3.654,0.875-4.8,2.399l1.6,1.201C9.563,16.583,10.73,16,12,16s2.437,0.583,3.2,1.6l1.6-1.201 C15.654,14.874,13.904,14,12,14z"/></svg>

Before

Width:  |  Height:  |  Size: 444 B

After

Width:  |  Height:  |  Size: 478 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M18.895 2.553A1.001 1.001 0 0 0 18 2H6c-.379 0-.725.214-.895.553l-3 6A1.002 1.002 0 0 0 2 9c0 1.475.811 2.75 2 3.443V21a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-8.557c1.189-.693 2-1.969 2-3.443 0-.155-.036-.309-.105-.447l-3-6zm1.093 6.661A2.002 2.002 0 0 1 18 11c-1.103 0-2-.897-2-2 0-.057-.023-.106-.032-.161l.019-.003L15.181 4h2.201l2.606 5.214zM10.847 4h2.307l.842 5.051C13.967 10.13 13.085 11 12 11a2 2 0 0 1-1.995-1.949L10.847 4zM6.618 4h2.201l-.805 4.836.019.003C8.023 8.894 8 8.943 8 9c0 1.103-.897 2-2 2a2.002 2.002 0 0 1-1.988-1.786L6.618 4zm3.405 16v-3H14v3h-3.977zM18 20h-2v-4a1 1 0 0 0-1-1H9.023a1 1 0 0 0-1 1v4H6v-7a3.99 3.99 0 0 0 3-1.357c.733.832 1.807 1.357 3 1.357s2.267-.525 3-1.357A3.99 3.99 0 0 0 18 13v7z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M22,8c0-0.182-0.049-0.359-0.143-0.515l-3-5C18.677,2.185,18.352,2,18,2H6C5.648,2,5.323,2.185,5.143,2.485l-3,5 C2.049,7.641,2,7.818,2,8c0,1.006,0.386,1.914,1,2.618V21c0,0.553,0.447,1,1,1h5h6h5c0.553,0,1-0.447,1-1V10.618 C21.614,9.914,22,9.006,22,8z M19.984,8.251C19.86,9.235,19.018,10,18,10c-1.103,0-2-0.897-2-2c0-0.068-0.025-0.128-0.039-0.192 l0.02-0.004L15.22,4h2.214L19.984,8.251z M10.819,4h2.361l0.813,4.065C13.958,9.137,13.08,10,12,10s-1.958-0.863-1.993-1.935 L10.819,4z M6.566,4H8.78L8.02,7.804l0.02,0.004C8.025,7.872,8,7.932,8,8c0,1.103-0.897,2-2,2c-1.018,0-1.86-0.765-1.984-1.749 L6.566,4z M10,20v-4h4v4H10z M16,20v-5c0-0.553-0.447-1-1-1H9c-0.553,0-1,0.447-1,1v5H5v-8.142C5.321,11.941,5.652,12,6,12 c1.193,0,2.267-0.525,3-1.357C9.733,11.475,10.807,12,12,12s2.267-0.525,3-1.357C15.733,11.475,16.807,12,18,12 c0.348,0,0.679-0.059,1-0.142V20H16z"/></svg>

Before

Width:  |  Height:  |  Size: 817 B

After

Width:  |  Height:  |  Size: 949 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12.5 11h-1C10.28 11 8 10.267 8 8.5 8 6.888 9.42 6 12 6c2.701 0 4.538.887 4.557.896l.892-1.79C17.355 5.061 15.199 4 12 4 7.576 4 6 6.324 6 8.5c0 1.009.359 1.838.914 2.5H4v2h7.5 1 4.586H20v-2H12.5zM15.92 15c.046.159.08.323.08.5 0 1.589-1.458 2.5-4 2.5-2.701 0-4.538-.887-4.553-.895l-.895 1.789C6.643 18.939 8.801 20 12 20c4.424 0 6-2.324 6-4.5 0-.173-.014-.338-.033-.5H15.92z"/></svg>

After

Width:  |  Height:  |  Size: 475 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M17.996 13c-1.415 0-2.162.747-2.709 1.292C14.796 14.783 14.556 15 13.991 15c-.562 0-.802-.217-1.292-.707C12.154 13.747 11.407 13 9.993 13s-2.161.747-2.706 1.293C6.797 14.783 6.557 15 5.996 15s-.801-.217-1.291-.707C4.16 13.747 3.413 13 2 13v2c.561 0 .801.217 1.291.707C3.836 16.253 4.583 17 5.996 17s2.16-.747 2.705-1.293C9.191 15.217 9.432 15 9.993 15s.802.217 1.292.707C11.83 16.253 12.577 17 13.991 17c1.415 0 2.163-.747 2.71-1.293C17.192 15.217 17.433 15 17.996 15s.804.217 1.295.707C19.837 16.253 20.585 17 22 17v-2c-.563 0-.804-.217-1.295-.707C20.159 13.747 19.411 13 17.996 13zM17.996 18c-1.415 0-2.162.747-2.709 1.292C14.796 19.783 14.556 20 13.991 20c-.562 0-.802-.217-1.292-.707C12.154 18.747 11.407 18 9.993 18s-2.161.747-2.706 1.293C6.797 19.783 6.557 20 5.996 20s-.801-.217-1.291-.707C4.16 18.747 3.413 18 2 18v2c.561 0 .801.217 1.291.707C3.836 21.253 4.583 22 5.996 22s2.16-.747 2.705-1.293C9.191 20.217 9.432 20 9.993 20s.802.217 1.292.707C11.83 21.253 12.577 22 13.991 22c1.415 0 2.163-.747 2.71-1.293C17.192 20.217 17.433 20 17.996 20s.804.217 1.295.707C19.837 21.253 20.585 22 22 22v-2c-.563 0-.804-.217-1.295-.707C20.159 18.747 19.411 18 17.996 18zM8.625 11.781l4.856-3.886 3.812 3.812 1.414-1.414-7-7C11.52 3.105 11.266 3 11 3H7v2h3.586l1.473 1.473-4.684 3.746L8.625 11.781z"/><circle cx="16.998" cy="4.002" r="2.002"/></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M21.515 5.143l-5-3a1.008 1.008 0 0 0-.857-.08 1.007 1.007 0 0 0-.604.616C15.021 2.773 14.224 5 12 5S8.979 2.773 8.948 2.684a.99.99 0 0 0-.601-.621.993.993 0 0 0-.861.08l-5 3A.998.998 0 0 0 2 6v6a1.001 1.001 0 0 0 1.448.895L6 11.618V21a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-9.382l2.553 1.276A1 1 0 0 0 22 12V6a1 1 0 0 0-.485-.857zM20 10.382l-2.553-1.276A.998.998 0 0 0 16 10v10H8V10a1.001 1.001 0 0 0-1.447-.895L4 10.382V6.566l3.586-2.151C8.252 5.502 9.604 7 12 7s3.748-1.498 4.414-2.585L20 6.566v3.816z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M17,22H7c-0.553,0-1-0.447-1-1V10.618l-2.553,1.276c-0.311,0.153-0.679,0.139-0.973-0.044C2.18,11.668,2,11.347,2,11V6 c0-0.352,0.185-0.677,0.485-0.857l5-3c0.26-0.157,0.578-0.187,0.861-0.08c0.285,0.104,0.506,0.334,0.602,0.621 C8.979,2.773,9.776,5,12,5s3.021-2.227,3.053-2.321c0.099-0.285,0.321-0.513,0.604-0.616c0.284-0.101,0.599-0.075,0.857,0.08l5,3 C21.815,5.323,22,5.648,22,6v5c0,0.347-0.18,0.668-0.475,0.851s-0.662,0.198-0.973,0.044L18,10.618V21C18,21.553,17.553,22,17,22z M8,20h8V9c0-0.347,0.18-0.668,0.475-0.851c0.295-0.184,0.662-0.198,0.973-0.044L20,9.382V6.566l-3.586-2.151 C15.748,5.502,14.396,7,12,7S8.252,5.502,7.586,4.415L4,6.566v2.815l2.553-1.276c0.31-0.155,0.678-0.14,0.973,0.044 C7.82,8.332,8,8.653,8,9V20z"/></svg>

Before

Width:  |  Height:  |  Size: 597 B

After

Width:  |  Height:  |  Size: 818 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M11 21h9a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H4a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h7zm8-2h-6v-4h6v4zm0-6h-6V9h6v4zM5 5h14v2H5V5zm0 4h6v4H5V9zm0 6h6v4H5v-4z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M21,4H3C2.447,4,2,4.448,2,5v14c0,0.552,0.447,1,1,1h18c0.553,0,1-0.448,1-1V5C22,4.448,21.553,4,21,4z M20,6v2H4V6H20z M10,13v-3h4v3H10z M14,15v3h-4v-3H14z M8,13H4v-3h4V13z M16,10h4v3h-4V10z M4,15h4v3H4V15z M16,18v-3h4v3H16z"/></svg>

Before

Width:  |  Height:  |  Size: 245 B

After

Width:  |  Height:  |  Size: 322 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M4 21a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1V5a1 1 0 0 0-1-1h-3V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v1H5a1 1 0 0 0-1 1v16zm6-17h4v2h-4V4zM6 6h2v1a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V6h2v14H6V6z"/><path d="M10.995 13.579l-1.293-1.292-1.414 1.414 2.705 2.704 4.713-4.697-1.412-1.416z"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M19,4h-3V3c0-0.553-0.447-1-1-1H9C8.447,2,8,2.447,8,3v1H5C4.447,4,4,4.447,4,5v16c0,0.553,0.447,1,1,1h14 c0.553,0,1-0.447,1-1V5C20,4.447,19.553,4,19,4z M10,4h4v2h-4V4z M18,20H6V6h2v1c0,0.553,0.447,1,1,1h6c0.553,0,1-0.447,1-1V6h2 V20z"/><path d="M11,14.586l-1.793-1.793l-1.414,1.414l2.5,2.5C10.488,16.902,10.744,17,11,17s0.512-0.098,0.707-0.293l4.5-4.5 l-1.414-1.414L11,14.586z"/></svg>

Before

Width:  |  Height:  |  Size: 363 B

After

Width:  |  Height:  |  Size: 475 B

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