@spark-hire/bootstrap-themes 0.9.14 → 1.0.0-ada-2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/dark.css +1 -1
- package/css/dark.map +1 -1
- package/css/light.css +1 -1
- package/css/light.map +1 -1
- package/package.json +1 -1
- package/scss/_global_variables.scss +4 -3
- package/scss/dark/_variables.scss +11 -9
- package/scss/dark/theme.scss +8 -0
- package/scss/link.scss +5 -5
- package/svg/icons/custom/business-man.svg +1 -29
- package/svg/icons/custom/calendar-graduation.svg +1 -24
- package/svg/icons/custom/group-view.svg +1 -32
- package/svg/icons/custom/pedestial-winners.svg +1 -29
- package/svg/icons/custom/person-favorite-heart.svg +1 -26
- package/svg/icons/custom/video-meeting-computer.svg +1 -28
- package/svg/icons/custom/window-list-user.svg +1 -26
- package/svg/icons/custom/arrow-circle-down.svg +0 -15
- package/svg/icons/custom/badge-like.svg +0 -27
- package/svg/icons/custom/bubble-chat-exclamation.svg +0 -20
- package/svg/icons/custom/bubble-chat-question.svg +0 -21
- package/svg/icons/custom/business-strategy.svg +0 -33
- package/svg/icons/custom/calendar-timeout.svg +0 -22
- package/svg/icons/custom/cancel-cloud.svg +0 -26
- package/svg/icons/custom/check.svg +0 -17
- package/svg/icons/custom/computer-setting.svg +0 -30
- package/svg/icons/custom/credit-card-remove.svg +0 -23
- package/svg/icons/custom/dollar-decrease.svg +0 -23
- package/svg/icons/custom/help-circle.svg +0 -19
- package/svg/icons/custom/megaphone.svg +0 -22
- package/svg/icons/custom/operator-female.svg +0 -41
- package/svg/icons/custom/remove-circle.svg +0 -18
- package/svg/icons/custom/rocket.svg +0 -27
- package/svg/icons/custom/video-meeting-group.svg +0 -28
- package/svg/icons/custom/video-meeting-laptop.svg +0 -27
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@ $gray-200: #ececec;
|
|
|
9
9
|
$gray-300: #e6e6e6;
|
|
10
10
|
$gray-400: #dbdbdb;
|
|
11
11
|
$gray-500: #bcbcbc;
|
|
12
|
-
$gray-600: #
|
|
12
|
+
$gray-600: #949494;
|
|
13
13
|
$gray-700: #585858;
|
|
14
14
|
$gray-800: #404040;
|
|
15
15
|
$gray-900: #292929;
|
|
@@ -29,7 +29,7 @@ $dark-blue: #213d55;
|
|
|
29
29
|
$midnight-blue: #1a3043;
|
|
30
30
|
|
|
31
31
|
$primary: $blue;
|
|
32
|
-
$secondary: $gray-
|
|
32
|
+
$secondary: $gray-700;
|
|
33
33
|
$info: $cyan;
|
|
34
34
|
$success: #28a745;
|
|
35
35
|
$warning: #ffc107;
|
|
@@ -100,7 +100,7 @@ $btn-line-height-lg: 1.4;
|
|
|
100
100
|
$btn-disabled-opacity: .45;
|
|
101
101
|
$btn-padding-y-sm: .75;
|
|
102
102
|
|
|
103
|
-
$link-color:
|
|
103
|
+
$link-color: #155E9D;
|
|
104
104
|
$link-decoration: none;
|
|
105
105
|
$link-hover-color: lighten($link-color, 13%);
|
|
106
106
|
$link-hover-decoration: none;
|
|
@@ -123,6 +123,7 @@ $modal-sm: 350px;
|
|
|
123
123
|
$modal-content-box-shadow-xs: 0 0.15rem 0.6rem rgba(0, 0, 0, 0.4);
|
|
124
124
|
$modal-content-box-shadow-sm-up: 0 0.2rem 0.75rem rgba(0, 0, 0, 0.4);
|
|
125
125
|
|
|
126
|
+
$grays: (); // For some reason we started getting an error where these was undefined
|
|
126
127
|
|
|
127
128
|
@import "~bootstrap/scss/functions";
|
|
128
129
|
@import "~bootstrap/scss/mixins";
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
@import "../global_variables";
|
|
2
2
|
|
|
3
|
-
$gray-100: #
|
|
4
|
-
$gray-200: #
|
|
5
|
-
$gray-300: #
|
|
6
|
-
$gray-400: #
|
|
7
|
-
$gray-500: #
|
|
8
|
-
$gray-600: #
|
|
9
|
-
$gray-700: #
|
|
10
|
-
$gray-800: #
|
|
3
|
+
$gray-100: #F8F9FA;
|
|
4
|
+
$gray-200: #DEE3E6;
|
|
5
|
+
$gray-300: #CDD3D9;
|
|
6
|
+
$gray-400: #B6BFC7;
|
|
7
|
+
$gray-500: #96A0AA;
|
|
8
|
+
$gray-600: #6E7780;
|
|
9
|
+
$gray-700: #4F565D;
|
|
10
|
+
$gray-800: #343A40;
|
|
11
11
|
$gray-900: #212529;
|
|
12
|
-
$gray-1000: #
|
|
12
|
+
$gray-1000: #1A1C20;
|
|
13
13
|
|
|
14
14
|
$light: $gray-800;
|
|
15
15
|
$dark: $gray-1000;
|
|
@@ -81,3 +81,5 @@ $dropdown-link-hover-bg: $gray-200;
|
|
|
81
81
|
$dropdown-border-color: transparent;
|
|
82
82
|
|
|
83
83
|
$opacifiedBg: rgba(255,255,255,.25);
|
|
84
|
+
|
|
85
|
+
$link-color: #6ba3d5;
|
package/scss/dark/theme.scss
CHANGED
package/scss/link.scss
CHANGED
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
-
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
-
<g id="Filled_Icons_1_">
|
|
6
|
-
<g id="Filled_Icons">
|
|
7
|
-
<g>
|
|
8
|
-
<path d="M21.038,16.773l-5.402-1.495c0.948-0.852,1.712-1.993,1.844-3.356c0.686-0.234,1.146-0.971,1.146-1.922
|
|
9
|
-
c0-0.318-0.056-0.608-0.15-0.868l0.523-3.582C19.102,0.833,14.616,0,12,0S4.901,0.854,5.005,5.571l0.52,3.559
|
|
10
|
-
C5.431,9.39,5.375,9.682,5.375,10c0,0.951,0.46,1.688,1.146,1.922c0.134,1.376,0.911,2.524,1.872,3.381L2.92,16.787
|
|
11
|
-
C1.173,17.441,0,19.135,0,21v2.5C0,23.776,0.224,24,0.5,24h8.135l2.551-4.677C10.489,19.011,10,18.312,10,17.5v-1.102
|
|
12
|
-
C10.761,16.788,11.49,17,12,17s1.24-0.212,2-0.602V17.5c0,0.812-0.489,1.511-1.186,1.823L15.365,24H23.5
|
|
13
|
-
c0.276,0,0.5-0.224,0.5-0.5V21C24,19.135,22.827,17.441,21.038,16.773z M12,16c-1.342,0-4.5-1.9-4.5-4.5
|
|
14
|
-
C7.5,11.225,7.276,11,7,11c-0.494,0-0.625-0.654-0.625-1S6.505,9,7,9c0.238,0,0.444-0.168,0.49-0.401l0.42-2.104
|
|
15
|
-
C10.54,6.425,11.461,5.676,12,4.894c0.539,0.781,1.46,1.53,4.089,1.601l0.42,2.104C16.556,8.832,16.762,9,17,9
|
|
16
|
-
c0.495,0,0.625,0.654,0.625,1s-0.13,1-0.625,1c-0.276,0-0.5,0.225-0.5,0.5C16.5,14.1,13.342,16,12,16z M21,21h-3.5v-1H21V21z"/>
|
|
17
|
-
<path d="M10,8.5C9.149,8.492,8.5,8.621,8.5,9.502c0,0.275,0.224,0.5,0.5,0.5c0.273,0,0.495-0.22,0.5-0.491
|
|
18
|
-
c0.095-0.012,0.906-0.012,1,0c0.004,0.271,0.227,0.491,0.5,0.491c0.276,0,0.5-0.225,0.5-0.5C11.5,8.615,10.849,8.496,10,8.5z"/>
|
|
19
|
-
<path d="M14,8.5c-0.851-0.008-1.5,0.121-1.5,1.002c0,0.275,0.224,0.5,0.5,0.5c0.273,0,0.495-0.22,0.5-0.491
|
|
20
|
-
c0.095-0.012,0.906-0.012,1,0c0.004,0.271,0.227,0.491,0.5,0.491c0.276,0,0.5-0.225,0.5-0.5C15.5,8.615,14.849,8.496,14,8.5z"/>
|
|
21
|
-
</g>
|
|
22
|
-
</g>
|
|
23
|
-
<g id="New_icons">
|
|
24
|
-
</g>
|
|
25
|
-
</g>
|
|
26
|
-
<g id="Invisible_Shape">
|
|
27
|
-
<rect fill="none" width="24" height="24"/>
|
|
28
|
-
</g>
|
|
29
|
-
</svg>
|
|
1
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24"><image id="Filled_Icons" data-name="Filled Icons" width="24" height="24" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsSAAALEgHS3X78AAAAuklEQVRIS72VwQ7DMAhD7Wr//8veKRPawJB027s1JDYQlFISKkjWwYAkVrGrCkzFAb83NdgRX1Rnygq+xYfBSfaO/1fgJkISXTzj0W3IBONa19JRi0gqCr1/O6yBJDphkupaNqrgDvYOJhl2rUor6EQzqjNti1yGXfaAMehGMa65ipk915PMMjKjl8GpaMUyu4C5+M5TsTSvqfgJJEUAPzMABo9dZLUnq7qaui0Dx+1fZsxwetHAhsEpT+c2Zz0PuqVsAAAAAElFTkSuQmCC"/></svg>
|
|
@@ -1,24 +1 @@
|
|
|
1
|
-
|
|
2
|
-
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
-
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
-
<g id="Filled_Icons_1_">
|
|
6
|
-
<g id="Filled_Icons">
|
|
7
|
-
</g>
|
|
8
|
-
<g id="New_icons">
|
|
9
|
-
<g>
|
|
10
|
-
<path d="M23.5,2H20V0.5C20,0.224,19.776,0,19.5,0h-3C16.225,0,16,0.224,16,0.5V2H8V0.5C8,0.224,7.776,0,7.5,0h-3
|
|
11
|
-
C4.225,0,4,0.224,4,0.5V2H0.5C0.225,2,0,2.224,0,2.5V7h24V2.5C24,2.224,23.776,2,23.5,2z M7,4H5V1h2V4z M19,4h-2V1h2V4z"/>
|
|
12
|
-
<path d="M0,8v15.5C0,23.776,0.225,24,0.5,24h23c0.276,0,0.5-0.224,0.5-0.5V8H0z M17,18c0,0.19-0.107,0.362-0.276,0.447l-4.011,2
|
|
13
|
-
c-0.135,0.064-0.29,0.064-0.425,0l-4.011-2C8.107,18.362,8,18.19,8,18v-2.296l3.909,1.675c0.189,0.081,0.39,0.121,0.591,0.121
|
|
14
|
-
s0.402-0.041,0.591-0.121L17,15.704V18z M19.697,13.46l-7.003,3c-0.124,0.052-0.264,0.052-0.388,0L6,13.758v2.661l0.974,2.922
|
|
15
|
-
c0.051,0.152,0.025,0.32-0.068,0.451C6.812,19.923,6.661,20,6.5,20h-2c-0.161,0-0.312-0.077-0.406-0.208
|
|
16
|
-
c-0.094-0.13-0.12-0.298-0.068-0.451L5,16.419V13c0-0.197,0.121-0.375,0.3-0.455l7.003-3.004c0.125-0.054,0.269-0.054,0.394,0
|
|
17
|
-
l7,3C19.881,12.619,20,12.8,20,13C20,13.2,19.881,13.381,19.697,13.46z"/>
|
|
18
|
-
</g>
|
|
19
|
-
</g>
|
|
20
|
-
</g>
|
|
21
|
-
<g id="Invisible_Shape">
|
|
22
|
-
<rect fill="none" width="24" height="24"/>
|
|
23
|
-
</g>
|
|
24
|
-
</svg>
|
|
1
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24"><image id="Filled_Icons" data-name="Filled Icons" width="24" height="24" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsSAAALEgHS3X78AAAAm0lEQVRIS+WUSQ6AMAwDbcT/v2xOlUJUslA4IOaYRnaWtpQEC8lTQBIRkOVvmCCJmbAlyt99BZ7s3OPzpx08CQG0KuzyegevG9Bf06f54Q46DxAojigSzR5iaNCp9sro8i+axe+wR4ejqpURhQYDKyKJmailfYs64kChAzse38ks7kkN7B78LirdpAYDa1QRHpQe2grtJXf5vsEBxdlQLSEI9s4AAAAASUVORK5CYII="/></svg>
|
|
@@ -1,32 +1 @@
|
|
|
1
|
-
|
|
2
|
-
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
-
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
-
<g id="Filled_Icons_1_">
|
|
6
|
-
<g id="Filled_Icons">
|
|
7
|
-
<g>
|
|
8
|
-
<path d="M14.5,1c-0.95,0-1.822,0.363-2.541,0.966c0.7,0.851,1.194,1.923,1.391,3.116c0.585-0.236,1.096-0.603,1.3-0.994
|
|
9
|
-
c0.085-0.163,0.251-0.266,0.434-0.27c0.191,0.017,0.352,0.093,0.444,0.252c0.656,1.148,1.314,1.495,2.421,1.282
|
|
10
|
-
c0.339-0.082,0.634-0.172,0.886-0.257C18.39,2.756,16.619,1,14.5,1z"/>
|
|
11
|
-
<path d="M5.621,5.344c0.981,0,2.186-0.599,2.528-1.256C8.234,3.925,8.4,3.822,8.583,3.818C8.774,3.835,8.936,3.911,9.027,4.07
|
|
12
|
-
c0.656,1.148,1.314,1.495,2.421,1.282c0.339-0.082,0.634-0.172,0.886-0.257C11.89,2.756,10.119,1,8,1
|
|
13
|
-
C6.001,1,4.325,2.572,3.767,4.714C4.724,5.327,5.139,5.344,5.621,5.344z"/>
|
|
14
|
-
<path d="M15.109,13.936c-0.282-0.271-0.617-0.49-0.999-0.627l-3.61-1.293v-1.46c1.186-0.964,1.966-2.593,1.936-4.441
|
|
15
|
-
c-0.554,0.229-1.309,0.295-1.553,0.295c-0.948,0-1.694-0.398-2.327-1.235c-0.707,0.683-1.871,1.17-2.935,1.17
|
|
16
|
-
c-0.642,0-1.191-0.105-2.028-0.58C3.415,7.801,4.246,9.545,5.5,10.553v1.463l-3.61,1.293C0.76,13.714,0,14.8,0,16.012V17.5
|
|
17
|
-
C0,17.776,0.224,18,0.5,18H13C13,16.322,13.837,14.844,15.109,13.936z"/>
|
|
18
|
-
<path d="M16.002,13.423C16.615,13.154,17.289,13,18,13c1.978,0,3.676,1.164,4.486,2.834c-0.071-1.139-0.802-2.141-1.876-2.525
|
|
19
|
-
L17,12.016v-1.46c1.186-0.964,1.966-2.593,1.937-4.441c-0.554,0.229-1.309,0.295-1.553,0.295c-0.948,0-1.694-0.398-2.327-1.235
|
|
20
|
-
c-0.417,0.402-0.996,0.72-1.615,0.927c0.043,1.728-0.519,3.259-1.441,4.452v0.938C14.225,12.287,15.106,12.423,16.002,13.423z"/>
|
|
21
|
-
<path d="M23.854,23.146l-2.707-2.706C21.673,19.763,22,18.923,22,18c0-2.205-1.794-4-4-4s-4,1.795-4,4s1.794,4,4,4
|
|
22
|
-
c0.923,0,1.762-0.326,2.44-0.852l2.707,2.705c0.195,0.195,0.512,0.195,0.707,0C24.049,23.658,24.049,23.342,23.854,23.146z
|
|
23
|
-
M15,18c0-1.654,1.346-3,3-3s3,1.346,3,3s-1.346,3-3,3S15,19.654,15,18z"/>
|
|
24
|
-
</g>
|
|
25
|
-
</g>
|
|
26
|
-
<g id="New_icons">
|
|
27
|
-
</g>
|
|
28
|
-
</g>
|
|
29
|
-
<g id="Invisible_Shape">
|
|
30
|
-
<rect fill="none" width="24" height="24"/>
|
|
31
|
-
</g>
|
|
32
|
-
</svg>
|
|
1
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 23"><image id="Filled_Icons" data-name="Filled Icons" width="24" height="23" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAXCAYAAAARIY8tAAAACXBIWXMAAAsSAAALEgHS3X78AAAAjElEQVRIS+2UQRKAIAhF+Y33vzJtolEMcBB3vaWVj48SmJk0AObFAGbG1/qlFzKbe0yCLFZhg6C6eqLCBBa/IGQQWHd5h7IEy4PmpbCeed9AfhVVM6BlIKKSjTUiKjsDjXTkmEBo0QsRU8+fyo+3SDguaNnpXb3W22cQidItipKL+J3kSvpU6QQefbobmAU8I3SMBzUAAAAASUVORK5CYII="/></svg>
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
|
|
2
|
-
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
-
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
-
<g id="Filled_Icons_1_">
|
|
6
|
-
<g id="Filled_Icons">
|
|
7
|
-
</g>
|
|
8
|
-
<g id="New_icons">
|
|
9
|
-
<g>
|
|
10
|
-
<g>
|
|
11
|
-
<path d="M5.5,8h-5C0.224,8,0,8.224,0,8.5v3c0,1.083,0.336,1.73,1,1.932V17.5C1,17.776,1.224,18,1.5,18h3
|
|
12
|
-
C4.776,18,5,17.776,5,17.5v-4.068c0.663-0.202,0.999-0.849,1-1.932v-3C6,8.224,5.776,8,5.5,8z"/>
|
|
13
|
-
<circle cx="3" cy="5" r="2"/>
|
|
14
|
-
<path d="M23.5,8h-5C18.224,8,18,8.224,18,8.5v3c0,1.083,0.336,1.73,1,1.932V17.5c0,0.276,0.224,0.5,0.5,0.5h3
|
|
15
|
-
c0.276,0,0.5-0.224,0.5-0.5v-4.068c0.663-0.202,0.999-0.849,1-1.932v-3C24,8.224,23.776,8,23.5,8z"/>
|
|
16
|
-
<circle cx="21" cy="5" r="2"/>
|
|
17
|
-
<path d="M14.5,5h-5C9.224,5,9,5.224,9,5.5v3c0,1.083,0.336,1.73,1,1.932V14.5c0,0.276,0.224,0.5,0.5,0.5h3
|
|
18
|
-
c0.276,0,0.5-0.224,0.5-0.5v-4.068c0.663-0.202,0.999-0.849,1-1.932v-3C15,5.224,14.776,5,14.5,5z"/>
|
|
19
|
-
<circle cx="12" cy="2" r="2"/>
|
|
20
|
-
</g>
|
|
21
|
-
<path d="M23.5,19H17v-2.5c0-0.276-0.224-0.5-0.5-0.5h-9C7.224,16,7,16.224,7,16.5V19H0.5C0.224,19,0,19.224,0,19.5v4
|
|
22
|
-
C0,23.776,0.224,24,0.5,24h23c0.276,0,0.5-0.224,0.5-0.5v-4C24,19.224,23.776,19,23.5,19z"/>
|
|
23
|
-
</g>
|
|
24
|
-
</g>
|
|
25
|
-
</g>
|
|
26
|
-
<g id="Invisible_Shape">
|
|
27
|
-
<rect fill="none" width="24" height="24"/>
|
|
28
|
-
</g>
|
|
29
|
-
</svg>
|
|
1
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24"><image id="Filled_Icons" data-name="Filled Icons" width="24" height="24" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsSAAALEgHS3X78AAAAgElEQVRIS+2UQQrAMAgE15L/f9meCqloXRRLD52zOHFNIqoKBhG5FaqqRLU7R1bQZVywgPr4Fq/PiootVSklsCe7YKTv7IA5CYPXZ3XG34n6jEf0DYEXFxshJegwL+iMvxP1oV4yUJMCyVcR3W3Lk3x8B+NfhQCgYqgyHtEvSDkBMJ5BJas3EyIAAAAASUVORK5CYII="/></svg>
|
|
@@ -1,26 +1 @@
|
|
|
1
|
-
|
|
2
|
-
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
-
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
-
<g id="Filled_Icons_1_">
|
|
6
|
-
<g id="Filled_Icons">
|
|
7
|
-
<g>
|
|
8
|
-
<path d="M6.875,5.5c1.308,0,2.861-0.776,3.322-1.661c0.084-0.162,0.251-0.265,0.434-0.269c0.226,0.014,0.353,0.093,0.444,0.252
|
|
9
|
-
c0.853,1.494,1.755,1.967,3.206,1.687c0.032-0.007,0.543-0.134,1.113-0.275C14.894,2.254,12.666,0,10,0
|
|
10
|
-
C7.46,0,5.322,2.049,4.693,4.819C5.596,5.375,6.239,5.5,6.875,5.5z"/>
|
|
11
|
-
<path d="M13,17.803c0-1.392,0.601-2.458,1.442-3.141L13,14.148v-2.206c1.503-1.162,2.594-3.348,2.489-5.704
|
|
12
|
-
c-0.839,0.294-1.655,0.348-1.948,0.348c-1.194,0-2.134-0.525-2.931-1.635C9.756,5.847,8.249,6.5,6.875,6.5
|
|
13
|
-
c-0.783,0-1.434-0.141-2.348-0.628C4.344,8.656,5.497,10.779,7,11.941v2.206l-4.678,1.671C0.933,16.315,0,17.64,0,19.114V21.5
|
|
14
|
-
C0,21.776,0.224,22,0.5,22h14.572C13.958,20.76,13,19.269,13,17.803z"/>
|
|
15
|
-
<path d="M21.272,14.818c-0.771,0-1.674,0.38-2.272,1.368c-0.599-0.988-1.501-1.368-2.272-1.368c-1.341,0-2.728,1.117-2.728,2.984
|
|
16
|
-
c0,2.604,4.225,5.752,4.706,6.102C18.794,23.969,18.896,24,19,24s0.206-0.031,0.294-0.096C19.775,23.555,24,20.407,24,17.803
|
|
17
|
-
C24,15.936,22.613,14.818,21.272,14.818z"/>
|
|
18
|
-
</g>
|
|
19
|
-
</g>
|
|
20
|
-
<g id="New_icons">
|
|
21
|
-
</g>
|
|
22
|
-
</g>
|
|
23
|
-
<g id="Invisible_Shape">
|
|
24
|
-
<rect fill="none" width="24" height="24"/>
|
|
25
|
-
</g>
|
|
26
|
-
</svg>
|
|
1
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24"><image id="Filled_Icons" data-name="Filled Icons" width="24" height="24" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsSAAALEgHS3X78AAAAhElEQVRIS+2UwQ6AIAxDW///n+uJRHGDEoWD4d1gpc0gg5KQQTIsSmK0H3Fkhcy8V6sJAxwDRwMEAe5BwNOmV/QVO6DLDwNGptTRhh04Bx0N0LiiloFrDix4A9a/qTP+BUks+tLVYy1pyHQUAphmDix4gx3QZWqAJE4LuM3BW+o5un4lJ5npQB1s1DcZAAAAAElFTkSuQmCC"/></svg>
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
-
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
-
<g id="Filled_Icons_1_">
|
|
6
|
-
<g id="Filled_Icons">
|
|
7
|
-
</g>
|
|
8
|
-
<g id="New_icons">
|
|
9
|
-
<g>
|
|
10
|
-
<path d="M23.276,1.053L21,2.191V0.5C21,0.224,20.776,0,20.5,0h-7C13.224,0,13,0.224,13,0.5v7C13,7.776,13.224,8,13.5,8h7
|
|
11
|
-
C20.776,8,21,7.776,21,7.5V5.809l2.276,1.139C23.609,7.112,24,6.87,24,6.5v-5C24,1.128,23.607,0.886,23.276,1.053z"/>
|
|
12
|
-
<g>
|
|
13
|
-
<path d="M19,18V9h-5.5C12.671,9,12,8.328,12,7.5V6H2C0.897,6,0,6.937,0,8.088V18H19z M9.5,8c1.465,0,2.718,0.977,3.239,2.356
|
|
14
|
-
c-0.534,0.424-0.781,0.758-1.417,0.656c-0.232-0.034-0.654-0.154-0.881-0.577c-0.164-0.306-0.569-0.345-0.794-0.117
|
|
15
|
-
c-0.85,0.852-2.199,0.794-2.763,0.396l-0.576-0.472C6.853,8.924,8.077,8,9.5,8z M5.323,16.245L7.5,15.623v-0.765
|
|
16
|
-
c-1.001-0.756-1.632-2.044-1.457-3.543c1.174,0.962,2.807,0.816,3.875,0.072c0.425,0.422,1.015,0.64,1.619,0.64
|
|
17
|
-
c0.738,0,0.955-0.204,1.432-0.582c0.117,1.458-0.494,2.677-1.47,3.413v0.765l2.175,0.622c0.403,0.115,0.748,0.4,0.989,0.756
|
|
18
|
-
H4.335C4.576,16.646,4.92,16.36,5.323,16.245z"/>
|
|
19
|
-
<path d="M0,19v1c0,1.103,0.897,2,2,2h7v1H5c-0.276,0-0.5,0.224-0.5,0.5S4.724,24,5,24h9c0.276,0,0.5-0.224,0.5-0.5
|
|
20
|
-
S14.276,23,14,23h-4v-1h7c1.103,0,2-0.937,2-2.088V19H0z"/>
|
|
21
|
-
</g>
|
|
22
|
-
</g>
|
|
23
|
-
</g>
|
|
24
|
-
</g>
|
|
25
|
-
<g id="Invisible_Shape">
|
|
26
|
-
<rect fill="none" width="24" height="24"/>
|
|
27
|
-
</g>
|
|
28
|
-
</svg>
|
|
1
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24"><image id="Filled_Icons" data-name="Filled Icons" width="24" height="24" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsSAAALEgHS3X78AAAAjElEQVRIS+2VwQrAMAhDk9H//2V3GogUU6Wll73TDnbRGFqaGaqQTA+ZGb/vkRV28Q08WeEOfgHJUImI+ISsQAAlgRV8E+ctUgW+G2XnzD4poH6quGtRHLkzTWmCakQBIRA7Pj5Bh1QgWtKxKF1yx5IIOy9aha130czCu0vewdIOSFonQcBEoJKcFdEXPmk9J5AmbEAAAAAASUVORK5CYII="/></svg>
|
|
@@ -1,26 +1 @@
|
|
|
1
|
-
|
|
2
|
-
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
-
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
-
<g id="Filled_Icon">
|
|
6
|
-
<g>
|
|
7
|
-
<path d="M21.5,2h-19C1.121,2,0,3.121,0,4.5V7h24V4.5C24,3.121,22.879,2,21.5,2z M4,6C3.448,6,3,5.551,3,5s0.448-1,1-1s1,0.449,1,1
|
|
8
|
-
S4.552,6,4,6z M7,6C6.448,6,6,5.551,6,5s0.448-1,1-1s1,0.449,1,1S7.552,6,7,6z M10,6C9.448,6,9,5.551,9,5s0.448-1,1-1s1,0.449,1,1
|
|
9
|
-
S10.552,6,10,6z"/>
|
|
10
|
-
<path d="M15.493,18.636c-0.478-0.697-0.743-1.528-0.743-2.386c0-2.344,1.906-4.25,4.25-4.25c2.344,0,4.25,1.906,4.25,4.25
|
|
11
|
-
c0,0.857-0.266,1.688-0.743,2.386c0.594,0.426,1.096,0.954,1.493,1.552c0-4.174,0-7.962,0-12.188H0c0,9.185,0-2.601,0,10.5
|
|
12
|
-
C0,19.879,1.121,21,2.5,21c4.232,0,7.721,0,11.055,0C13.985,20.065,14.644,19.245,15.493,18.636z M8.5,10h10
|
|
13
|
-
c0.276,0,0.5,0.224,0.5,0.5S18.776,11,18.5,11h-10C8.224,11,8,10.776,8,10.5S8.224,10,8.5,10z M8.5,13h4
|
|
14
|
-
c0.276,0,0.5,0.224,0.5,0.5S12.776,14,12.5,14h-4C8.224,14,8,13.776,8,13.5S8.224,13,8.5,13z M5.5,17h-1C4.224,17,4,16.776,4,16.5
|
|
15
|
-
S4.224,16,4.5,16h1C5.776,16,6,16.224,6,16.5S5.776,17,5.5,17z M5.5,14h-1C4.224,14,4,13.776,4,13.5S4.224,13,4.5,13h1
|
|
16
|
-
C5.776,13,6,13.224,6,13.5S5.776,14,5.5,14z M5.5,11h-1C4.224,11,4,10.776,4,10.5S4.224,10,4.5,10h1C5.776,10,6,10.224,6,10.5
|
|
17
|
-
S5.776,11,5.5,11z M12.5,17h-4C8.224,17,8,16.776,8,16.5S8.224,16,8.5,16h4c0.276,0,0.5,0.224,0.5,0.5S12.776,17,12.5,17z"/>
|
|
18
|
-
<path d="M20.896,18.879c0.816-0.592,1.354-1.546,1.354-2.629c0-1.792-1.458-3.25-3.25-3.25s-3.25,1.458-3.25,3.25
|
|
19
|
-
c0,1.083,0.538,2.037,1.354,2.629C15.286,19.627,14,21.414,14,23.5c0,0.276,0.224,0.5,0.5,0.5h9c0.276,0,0.5-0.224,0.5-0.5
|
|
20
|
-
C24,21.414,22.714,19.627,20.896,18.879z"/>
|
|
21
|
-
</g>
|
|
22
|
-
</g>
|
|
23
|
-
<g id="Invisible_Shape">
|
|
24
|
-
<rect fill="none" width="24" height="24"/>
|
|
25
|
-
</g>
|
|
26
|
-
</svg>
|
|
1
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 22"><path id="Filled_Icon" data-name="Filled Icon" d="M21.5,2H2.5A2.5,2.5,0,0,0,0,4.5V7H24V4.5A2.5,2.5,0,0,0,21.5,2ZM4,6A1,1,0,1,1,5,5,1,1,0,0,1,4,6ZM7,6A1,1,0,1,1,8,5,1,1,0,0,1,7,6Zm3,0a1,1,0,1,1,1-1A1,1,0,0,1,10,6Zm5.49,12.64a4.25,4.25,0,1,1,7,0A5.94,5.94,0,0,1,24,20.19V8H0V18.5A2.5,2.5,0,0,0,2.5,21H13.56A5.89,5.89,0,0,1,15.49,18.64ZM8.5,10h10a.5.5,0,0,1,0,1H8.5a.5.5,0,0,1,0-1Zm0,3h4a.5.5,0,0,1,0,1h-4a.5.5,0,0,1,0-1Zm-3,4h-1a.5.5,0,0,1,0-1h1a.5.5,0,0,1,0,1Zm0-3h-1a.5.5,0,0,1,0-1h1a.5.5,0,0,1,0,1Zm0-3h-1a.5.5,0,0,1,0-1h1a.5.5,0,0,1,0,1Zm7,6h-4a.5.5,0,0,1,0-1h4a.5.5,0,0,1,0,1Zm8.4,1.88a3.25,3.25,0,1,0-3.8,0A5,5,0,0,0,14,23.5a.5.5,0,0,0,.5.5h9a.5.5,0,0,0,.5-.5A5,5,0,0,0,20.9,18.88Z" transform="translate(0 -2)"/></svg>
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
-
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
-
<g id="Filled_Icons">
|
|
6
|
-
<path d="M12.01,0c-6.617,0-12,5.384-12,12c0,6.617,5.383,12,12,12c6.616,0,12-5.383,12-12C24.01,5.384,18.626,0,12.01,0z
|
|
7
|
-
M19.857,12.854l-7.493,7.493c-0.094,0.094-0.221,0.146-0.354,0.146s-0.26-0.053-0.354-0.146l-7.493-7.493
|
|
8
|
-
c-0.143-0.143-0.186-0.357-0.108-0.545C4.132,12.121,4.298,12,4.5,12H9l0.011-7.493c0-0.132,0.053-0.26,0.146-0.354
|
|
9
|
-
C9.251,4.06,9.378,4.007,9.511,4.007h4.993c0.276,0,0.503,0.22,0.503,0.496l0.003,7.493L19.503,12c0.202,0,0.385,0.121,0.462,0.309
|
|
10
|
-
C20.042,12.496,19.999,12.711,19.857,12.854z"/>
|
|
11
|
-
</g>
|
|
12
|
-
<g id="Frames-24px">
|
|
13
|
-
<rect fill="none" width="24" height="24"/>
|
|
14
|
-
</g>
|
|
15
|
-
</svg>
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
-
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
-
<g id="Filled_Icons_1_">
|
|
6
|
-
<g id="Filled_Icons">
|
|
7
|
-
<g>
|
|
8
|
-
<g>
|
|
9
|
-
<path d="M3.083,15l-3.016,5.215c-0.21,0.36,0.089,0.81,0.517,0.743l3.439-0.583l1.193,3.278C5.359,24.049,5.9,24.1,6.115,23.738
|
|
10
|
-
l2.562-4.303C6.335,18.651,4.365,17.063,3.083,15z"/>
|
|
11
|
-
<path d="M20.917,15l3.016,5.215c0.21,0.36-0.089,0.81-0.517,0.743l-3.439-0.583l-1.193,3.278
|
|
12
|
-
c-0.143,0.396-0.684,0.446-0.898,0.085l-2.562-4.303C17.665,18.651,19.635,17.063,20.917,15z"/>
|
|
13
|
-
</g>
|
|
14
|
-
<path d="M12,0C6.762,0,2.5,4.262,2.5,9.5S6.762,19,12,19s9.5-4.262,9.5-9.5S17.238,0,12,0z M15.997,12.542
|
|
15
|
-
C15.606,13.454,14.72,14,13.629,14h-2.004c-0.966,0-1.394-0.171-1.849-0.352c-0.567-0.227-1.21-0.483-3.438-0.483
|
|
16
|
-
c-0.276,0-0.5-0.224-0.5-0.5V8.5c0-0.276,0.224-0.5,0.5-0.5h1.135c1.512,0,2.432-1.999,3.405-4.115
|
|
17
|
-
c0.132-0.286,0.663-0.949,1.247-0.949C12.524,2.935,13,3.207,13,4.503V7h3.557c0.729,0,1.279,0.523,1.279,1.215
|
|
18
|
-
C17.836,8.384,16.065,12.387,15.997,12.542z"/>
|
|
19
|
-
</g>
|
|
20
|
-
</g>
|
|
21
|
-
<g id="New_icons">
|
|
22
|
-
</g>
|
|
23
|
-
</g>
|
|
24
|
-
<g id="Invisible_Shape">
|
|
25
|
-
<rect fill="none" width="24" height="24"/>
|
|
26
|
-
</g>
|
|
27
|
-
</svg>
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
-
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
-
<g id="Filled_Icons_1_">
|
|
6
|
-
<g id="Filled_Icons">
|
|
7
|
-
<path d="M11.996,0.902c-6.617,0-12,4.434-12,9.883c0,2.574,1.177,4.985,3.325,6.832l-2.41,4.81
|
|
8
|
-
c-0.212,0.423,0.234,0.878,0.658,0.677l6.437-2.995c1.278,0.37,2.62,0.559,3.99,0.559c6.617,0,12-4.434,12-9.883
|
|
9
|
-
C23.996,5.336,18.613,0.902,11.996,0.902z M11,6.151c-0.004-0.276,0.22-0.5,0.496-0.5c0.276,0,0.5,0.224,0.504,0.5v6
|
|
10
|
-
c-0.004,0.276-0.228,0.5-0.504,0.5c-0.276,0-0.5-0.224-0.496-0.5V6.151z M11.514,15.402c-0.006,0-0.012,0-0.019,0
|
|
11
|
-
c-0.544,0-0.99-0.436-0.999-0.982c-0.009-0.552,0.431-1.008,0.982-1.017c0.006,0,0.012,0,0.018,0c0.545,0,0.99,0.436,1,0.982
|
|
12
|
-
C12.506,14.938,12.065,15.393,11.514,15.402z"/>
|
|
13
|
-
</g>
|
|
14
|
-
<g id="New_icons">
|
|
15
|
-
</g>
|
|
16
|
-
</g>
|
|
17
|
-
<g id="Invisible_Shape">
|
|
18
|
-
<rect fill="none" width="24" height="24"/>
|
|
19
|
-
</g>
|
|
20
|
-
</svg>
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
-
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
-
<g id="Filled_Icons_1_">
|
|
6
|
-
<g id="Filled_Icons">
|
|
7
|
-
<path d="M11.996,0.902c-6.617,0-12,4.434-12,9.883c0,2.574,1.177,4.985,3.325,6.832l-2.41,4.81
|
|
8
|
-
c-0.214,0.424,0.234,0.878,0.658,0.677l6.437-2.995c1.278,0.37,2.62,0.559,3.99,0.559c6.617,0,12-4.434,12-9.883
|
|
9
|
-
C23.996,5.336,18.613,0.902,11.996,0.902z M12.496,16.402c-0.552,0-1-0.447-1-1c0-0.552,0.448-1,1-1c0.552,0,1,0.448,1,1
|
|
10
|
-
C13.496,15.955,13.048,16.402,12.496,16.402z M12.996,12.367v0.784c0,0.276-0.224,0.5-0.5,0.5c-0.276,0-0.5-0.224-0.5-0.5v-1.249
|
|
11
|
-
c0-0.276,0.224-0.5,0.5-0.5c1.378,0,2.5-1.107,2.5-2.469s-1.122-2.469-2.5-2.469c-1.355,0-2.5,1.173-2.5,2.562
|
|
12
|
-
c0,0.275-0.224,0.5-0.5,0.5c-0.276,0-0.5-0.225-0.5-0.5c0-1.965,1.57-3.562,3.5-3.562s3.5,1.556,3.5,3.469
|
|
13
|
-
C15.996,10.678,14.69,12.126,12.996,12.367z"/>
|
|
14
|
-
</g>
|
|
15
|
-
<g id="New_icons">
|
|
16
|
-
</g>
|
|
17
|
-
</g>
|
|
18
|
-
<g id="Invisible_Shape">
|
|
19
|
-
<rect fill="none" width="24" height="24"/>
|
|
20
|
-
</g>
|
|
21
|
-
</svg>
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
-
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
-
<g id="Filled_Icons_1_">
|
|
6
|
-
<g id="Filled_Icons">
|
|
7
|
-
<g>
|
|
8
|
-
<path d="M21.5,9c-1.378,0-2.5,1.121-2.5,2.5s1.122,2.5,2.5,2.5s2.5-1.121,2.5-2.5S22.878,9,21.5,9z M21.5,13
|
|
9
|
-
c-0.827,0-1.5-0.673-1.5-1.5s0.673-1.5,1.5-1.5s1.5,0.673,1.5,1.5S22.327,13,21.5,13z"/>
|
|
10
|
-
<g>
|
|
11
|
-
<circle cx="6.5" cy="4" r="4"/>
|
|
12
|
-
<path d="M12,9H7.46l0.558,6.689L6.5,17.207l-1.518-1.518L5.54,9H1C0.724,9,0.5,9.224,0.5,9.5c0,3.554,1.271,6.369,3.5,7.783
|
|
13
|
-
V23.5C4,23.776,4.224,24,4.5,24h4C8.776,24,9,23.776,9,23.5v-6.217c2.229-1.414,3.5-4.23,3.5-7.783C12.5,9.224,12.276,9,12,9z"
|
|
14
|
-
/>
|
|
15
|
-
</g>
|
|
16
|
-
<path d="M15.572,4.281l1.553-1.553c0.195-0.195,0.195-0.512,0-0.707c-0.196-0.196-0.512-0.196-0.708-0.001l-1.553,1.553
|
|
17
|
-
L13.312,2.02c-0.195-0.195-0.512-0.195-0.707,0c-0.195,0.195-0.195,0.512,0,0.707l1.553,1.553l-1.553,1.553
|
|
18
|
-
c-0.195,0.195-0.195,0.512,0.001,0.708c0.195,0.195,0.512,0.195,0.707,0l1.553-1.553l1.553,1.553
|
|
19
|
-
c0.195,0.195,0.512,0.195,0.707,0s0.195-0.512,0-0.707L15.572,4.281z"/>
|
|
20
|
-
<path d="M22.944,4.957c-0.069-0.136-0.196-0.233-0.346-0.264l-2.998-0.62c-0.271-0.056-0.535,0.118-0.591,0.388
|
|
21
|
-
c-0.056,0.271,0.117,0.535,0.389,0.591l1.402,0.291c-2.697,1.3-4.887,3.451-6.233,6.161c-0.123,0.246-0.024,0.544,0.22,0.669
|
|
22
|
-
c0.002,0.001,0.003,0.001,0.005,0.002c0.247,0.123,0.548,0.021,0.67-0.226c1.292-2.601,3.428-4.641,6.053-5.828l-0.673,1.467
|
|
23
|
-
c-0.113,0.25-0.006,0.548,0.245,0.664c0.251,0.115,0.549,0.005,0.663-0.246l1.201-2.614C23.016,5.252,23.013,5.093,22.944,4.957z
|
|
24
|
-
"/>
|
|
25
|
-
</g>
|
|
26
|
-
</g>
|
|
27
|
-
<g id="New_icons">
|
|
28
|
-
</g>
|
|
29
|
-
</g>
|
|
30
|
-
<g id="Invisible_Shape">
|
|
31
|
-
<rect fill="none" width="24" height="24"/>
|
|
32
|
-
</g>
|
|
33
|
-
</svg>
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
-
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
-
<g id="Filled_Icons_1_">
|
|
6
|
-
<g id="Filled_Icons">
|
|
7
|
-
</g>
|
|
8
|
-
<g id="New_icons">
|
|
9
|
-
<g>
|
|
10
|
-
<path d="M17.5,11c-3.584,0-6.5,2.916-6.5,6.5s2.916,6.5,6.5,6.5s6.5-2.916,6.5-6.5S21.084,11,17.5,11z M20,19h-2.5
|
|
11
|
-
c-0.276,0-0.5-0.224-0.5-0.5V15c0-0.276,0.224-0.5,0.5-0.5S18,14.724,18,15v3h2c0.276,0,0.5,0.224,0.5,0.5S20.276,19,20,19z"/>
|
|
12
|
-
<path d="M20.5,2H17V0.5C17,0.224,16.776,0,16.5,0h-3C13.224,0,13,0.224,13,0.5V2H8V0.5C8,0.224,7.776,0,7.5,0h-3
|
|
13
|
-
C4.224,0,4,0.224,4,0.5V2H0.5C0.224,2,0,2.224,0,2.5V7h21V2.5C21,2.224,20.776,2,20.5,2z M7,4H5V1h2V4z M16,4h-2V1h2V4z"/>
|
|
14
|
-
<path d="M10,17.5c0-4.135,3.364-7.5,7.5-7.5c1.264,0,2.454,0.318,3.5,0.872V8H0v10.5C0,18.776,0.224,19,0.5,19h9.651
|
|
15
|
-
C10.052,18.515,10,18.014,10,17.5z"/>
|
|
16
|
-
</g>
|
|
17
|
-
</g>
|
|
18
|
-
</g>
|
|
19
|
-
<g id="Invisible_Shape">
|
|
20
|
-
<rect fill="none" width="24" height="24"/>
|
|
21
|
-
</g>
|
|
22
|
-
</svg>
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
-
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
-
<g id="Filled_Icons_1_">
|
|
6
|
-
<g id="Filled_Icons">
|
|
7
|
-
<g>
|
|
8
|
-
<g>
|
|
9
|
-
<path d="M15.293,14.414l-4.879,4.879C10.998,19.73,11.716,20,12.5,20c1.93,0,3.5-1.57,3.5-3.5
|
|
10
|
-
C16,15.715,15.731,14.998,15.293,14.414z"/>
|
|
11
|
-
<path d="M12.5,11C9.463,11,7,13.463,7,16.5S9.463,22,12.5,22s5.5-2.463,5.5-5.5S15.537,11,12.5,11z M12.5,21
|
|
12
|
-
C10.019,21,8,18.982,8,16.5c0-2.481,2.019-4.5,4.5-4.5s4.5,2.019,4.5,4.5C17,18.982,14.981,21,12.5,21z"/>
|
|
13
|
-
<path d="M12.5,13C10.57,13,9,14.57,9,16.5c0,0.785,0.269,1.502,0.707,2.086l4.879-4.879C14.002,13.269,13.284,13,12.5,13z"/>
|
|
14
|
-
</g>
|
|
15
|
-
<path d="M18.852,6.332C17.611,3.994,15.152,2.5,12.5,2.5c-3.618,0-6.648,2.693-7.123,6.227C3.012,8.547,0.999,10.451,1,12.803
|
|
16
|
-
C1,15.189,2.523,17,6.025,17c-0.294-3.848,2.76-7,6.475-7c3.717,0,6.769,3.154,6.475,7C20.151,17,24,15.695,24,11.607
|
|
17
|
-
C24,8.74,21.702,6.399,18.852,6.332z"/>
|
|
18
|
-
</g>
|
|
19
|
-
</g>
|
|
20
|
-
<g id="New_icons">
|
|
21
|
-
</g>
|
|
22
|
-
</g>
|
|
23
|
-
<g id="Invisible_Shape">
|
|
24
|
-
<rect fill="none" width="24" height="24"/>
|
|
25
|
-
</g>
|
|
26
|
-
</svg>
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
-
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
-
<g id="Filled_Icons_1_">
|
|
6
|
-
<g id="Filled_Icons">
|
|
7
|
-
<path d="M23.854,7.146l-3.5-3.5c-0.195-0.195-0.512-0.195-0.707,0L7.5,15.792l-3.147-3.146c-0.195-0.195-0.512-0.195-0.707,0
|
|
8
|
-
l-3.5,3.5c-0.195,0.195-0.195,0.512,0,0.707l7,7c0.195,0.196,0.512,0.196,0.707,0l16-16C24.049,7.658,24.049,7.341,23.854,7.146z"
|
|
9
|
-
/>
|
|
10
|
-
</g>
|
|
11
|
-
<g id="New_icons">
|
|
12
|
-
</g>
|
|
13
|
-
</g>
|
|
14
|
-
<g id="Invisible_Shape">
|
|
15
|
-
<rect fill="none" width="24" height="24"/>
|
|
16
|
-
</g>
|
|
17
|
-
</svg>
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
-
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
-
<g id="Filled_Icons_1_">
|
|
6
|
-
<g id="Filled_Icons">
|
|
7
|
-
</g>
|
|
8
|
-
<g id="New_icons">
|
|
9
|
-
<g>
|
|
10
|
-
<path d="M0,18v1.912C0,21.063,0.897,22,2,22h9.5v1H5c-0.276,0-0.5,0.224-0.5,0.5S4.724,24,5,24h14c0.276,0,0.5-0.224,0.5-0.5
|
|
11
|
-
S19.276,23,19,23h-6.5v-1H22c1.103,0,2-0.937,2-2.088V18H0z M12,21c-0.551,0-1-0.449-1-1s0.449-1,1-1s1,0.449,1,1
|
|
12
|
-
S12.551,21,12,21z"/>
|
|
13
|
-
<g>
|
|
14
|
-
<path d="M22,3H2C0.897,3,0,3.937,0,5.088V17h24V5.088C24,3.937,23.103,3,22,3z M17.514,11.451l-1.5,2.598
|
|
15
|
-
c-0.139,0.24-0.443,0.321-0.684,0.183l-0.85-0.49c-0.153,0.101-0.316,0.183-0.481,0.265V15c0,0.276-0.224,0.5-0.5,0.5h-3
|
|
16
|
-
c-0.276,0-0.5-0.224-0.5-0.5v-0.982c-0.166-0.083-0.325-0.176-0.478-0.277L8.67,14.232c-0.24,0.138-0.545,0.058-0.684-0.183
|
|
17
|
-
l-1.5-2.598c-0.138-0.239-0.057-0.544,0.184-0.683l0.859-0.496C7.519,10.09,7.512,9.909,7.523,9.725L6.67,9.232
|
|
18
|
-
C6.431,9.094,6.349,8.79,6.486,8.549l1.5-2.598C8.125,5.712,8.431,5.63,8.67,5.768l0.85,0.491C9.672,6.157,9.836,6.076,10,5.994
|
|
19
|
-
V5c0-0.276,0.224-0.5,0.5-0.5h3C13.776,4.5,14,4.724,14,5v0.982c0.167,0.083,0.325,0.176,0.478,0.278l0.852-0.493
|
|
20
|
-
c0.239-0.138,0.545-0.056,0.684,0.183l1.5,2.598c0.138,0.24,0.056,0.544-0.184,0.683l-0.859,0.496
|
|
21
|
-
c0.011,0.182,0.018,0.363,0.006,0.548l0.853,0.492C17.57,10.907,17.651,11.212,17.514,11.451z"/>
|
|
22
|
-
<circle cx="12" cy="10" r="2.5"/>
|
|
23
|
-
</g>
|
|
24
|
-
</g>
|
|
25
|
-
</g>
|
|
26
|
-
</g>
|
|
27
|
-
<g id="Invisible_Shape">
|
|
28
|
-
<rect fill="none" width="24" height="24"/>
|
|
29
|
-
</g>
|
|
30
|
-
</svg>
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
-
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
-
<g id="Filled_Icon">
|
|
6
|
-
<g>
|
|
7
|
-
<path d="M17.5,11c-3.584,0-6.5,2.916-6.5,6.5s2.916,6.5,6.5,6.5s6.5-2.916,6.5-6.5S21.084,11,17.5,11z M18.207,17.5l2.347,2.346
|
|
8
|
-
c0.195,0.196,0.195,0.513,0,0.707c-0.195,0.195-0.512,0.195-0.707,0L17.5,18.206l-2.347,2.347c-0.195,0.195-0.512,0.195-0.707,0
|
|
9
|
-
c-0.195-0.194-0.195-0.511,0-0.707l2.347-2.346l-2.347-2.346c-0.195-0.195-0.195-0.512,0-0.707c0.195-0.195,0.512-0.195,0.707,0
|
|
10
|
-
l2.347,2.347l2.347-2.347c0.195-0.195,0.512-0.195,0.707,0c0.195,0.195,0.195,0.512,0,0.707L18.207,17.5z"/>
|
|
11
|
-
<g>
|
|
12
|
-
<path d="M17.98,3V2.5c0-1.378-1.121-2.5-2.5-2.5h-0.001H2.501H2.5C1.121,0,0,1.122,0,2.5V3H17.98z"/>
|
|
13
|
-
<path d="M11.514,13c1.436-1.905,3.756-3.141,6.467-2.976V4.001H0V10.5C0,11.878,1.121,13,2.5,13c3.459,0,5.634,0,8.979,0H11.514z
|
|
14
|
-
M13.479,5h2c0.276,0,0.5,0.224,0.5,0.5S15.756,6,15.479,6h-2c-0.276,0-0.5-0.224-0.5-0.5S13.203,5,13.479,5z M6.479,8h-3
|
|
15
|
-
c-0.276,0-0.5-0.224-0.5-0.5S3.203,7,3.48,7h3c0.276,0,0.5,0.224,0.5,0.5S6.756,8,6.479,8z M8.479,6h-5
|
|
16
|
-
c-0.276,0-0.5-0.224-0.5-0.5S3.203,5,3.48,5h5c0.276,0,0.5,0.224,0.5,0.5S8.756,6,8.479,6z"/>
|
|
17
|
-
</g>
|
|
18
|
-
</g>
|
|
19
|
-
</g>
|
|
20
|
-
<g id="Invisibla_Shape">
|
|
21
|
-
<rect fill="none" width="24" height="24"/>
|
|
22
|
-
</g>
|
|
23
|
-
</svg>
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
-
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
-
<g id="Filled_Icon">
|
|
6
|
-
<g>
|
|
7
|
-
<path d="M23.5,19.024c-0.276,0-0.5,0.224-0.5,0.5v2.828l-6.659-6.188c-0.183-0.169-0.46-0.179-0.653-0.024l-4.671,3.737
|
|
8
|
-
l-8.685-7.72c-0.206-0.184-0.523-0.166-0.706,0.042c-0.184,0.206-0.164,0.523,0.042,0.706l9,8
|
|
9
|
-
c0.183,0.162,0.454,0.169,0.644,0.017l4.663-3.731L22.227,23h-2.664c-0.276,0-0.5,0.224-0.5,0.5s0.224,0.5,0.5,0.5H23.5
|
|
10
|
-
c0.226,0,0.445-0.15,0.487-0.435C23.99,23.543,24,23.523,24,23.5v-3.976C24,19.248,23.776,19.024,23.5,19.024z"/>
|
|
11
|
-
<path d="M15,0c-4.963,0-9,4.038-9,9c0,4.018,2.646,7.427,6.287,8.58l2.775-2.22c0.581-0.464,1.413-0.435,1.959,0.072l1.822,1.693
|
|
12
|
-
C21.887,15.681,24,12.586,24,9C24,4.038,19.963,0,15,0z M15,8.033c1.213,0,2.2,0.987,2.2,2.201c0,1.04-0.728,1.909-1.7,2.137
|
|
13
|
-
v0.695c0,0.276-0.224,0.5-0.5,0.5s-0.5-0.224-0.5-0.5v-0.695c-0.972-0.227-1.699-1.097-1.699-2.137c0-0.276,0.224-0.5,0.5-0.5
|
|
14
|
-
c0.276,0,0.5,0.224,0.5,0.5c0,0.661,0.538,1.199,1.199,1.199c0.662,0,1.2-0.538,1.2-1.199c0-0.662-0.538-1.201-1.2-1.201
|
|
15
|
-
c-1.213,0-2.199-0.986-2.199-2.199c0-1.04,0.727-1.909,1.699-2.137V4c0-0.276,0.224-0.5,0.5-0.5s0.5,0.224,0.5,0.5v0.697
|
|
16
|
-
c0.972,0.227,1.7,1.097,1.7,2.137c0,0.276-0.224,0.5-0.5,0.5c-0.276,0-0.5-0.224-0.5-0.5c0-0.661-0.538-1.199-1.2-1.199
|
|
17
|
-
c-0.661,0-1.199,0.538-1.199,1.199S14.339,8.033,15,8.033z"/>
|
|
18
|
-
</g>
|
|
19
|
-
</g>
|
|
20
|
-
<g id="Invisible_Shape">
|
|
21
|
-
<rect fill="none" width="24" height="24"/>
|
|
22
|
-
</g>
|
|
23
|
-
</svg>
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="24px"
|
|
4
|
-
height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
|
5
|
-
<g id="Filled_Icons_1_">
|
|
6
|
-
<g id="Filled_Icons">
|
|
7
|
-
<path d="M11.5,1C5.148,1,0,6.148,0,12.5S5.148,24,11.5,24S23,18.852,23,12.5S17.852,1,11.5,1z M11.5,19c-0.553,0-1-0.447-1-1
|
|
8
|
-
c0-0.552,0.447-1,1-1c0.551,0,1,0.448,1,1C12.5,18.553,12.051,19,11.5,19z M12,12.965V15.5c0,0.276-0.225,0.5-0.5,0.5
|
|
9
|
-
c-0.276,0-0.5-0.224-0.5-0.5v-3c0-0.276,0.224-0.5,0.5-0.5c1.378,0,2.5-1.121,2.5-2.5S12.878,7,11.5,7C10.121,7,9,8.121,9,9.5
|
|
10
|
-
C9,9.776,8.775,10,8.5,10C8.224,10,8,9.776,8,9.5C8,7.57,9.569,6,11.5,6C13.43,6,15,7.57,15,9.5C15,11.26,13.693,12.721,12,12.965
|
|
11
|
-
z"/>
|
|
12
|
-
</g>
|
|
13
|
-
<g id="New_icons">
|
|
14
|
-
</g>
|
|
15
|
-
</g>
|
|
16
|
-
<g id="Invisible_Shape">
|
|
17
|
-
<rect fill="none" width="24" height="24"/>
|
|
18
|
-
</g>
|
|
19
|
-
</svg>
|