@vkontakte/icons 2.25.0 → 2.27.0
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/dist/16/add_circle.js +12 -0
- package/dist/16/hide_outline.js +12 -0
- package/dist/16/share_outline.js +12 -0
- package/dist/16/view_outline.js +1 -1
- package/dist/20/cookie_outline.js +12 -0
- package/dist/20/heart_settings_outline.js +12 -0
- package/dist/24/cancel_circle_fill_red.js +12 -0
- package/dist/24/check_circle_fill_green.js +12 -0
- package/dist/24/clock_circle_fill_gray.js +12 -0
- package/dist/24/error_circle_fill_gray.js +12 -0
- package/dist/24/error_circle_fill_red.js +12 -0
- package/dist/28/articles_slash_outline.js +12 -0
- package/dist/36/list_play_outline.js +12 -0
- package/dist/36/lock_outline.js +12 -0
- package/dist/96/radiowaves_around_outline.js +12 -0
- package/dist/es6/16/add_circle.js +2 -0
- package/dist/es6/16/hide_outline.js +2 -0
- package/dist/es6/16/share_outline.js +2 -0
- package/dist/es6/16/view_outline.js +1 -1
- package/dist/es6/20/cookie_outline.js +2 -0
- package/dist/es6/20/heart_settings_outline.js +2 -0
- package/dist/es6/24/cancel_circle_fill_red.js +2 -0
- package/dist/es6/24/check_circle_fill_green.js +2 -0
- package/dist/es6/24/clock_circle_fill_gray.js +2 -0
- package/dist/es6/24/error_circle_fill_gray.js +2 -0
- package/dist/es6/24/error_circle_fill_red.js +2 -0
- package/dist/es6/28/articles_slash_outline.js +2 -0
- package/dist/es6/36/list_play_outline.js +2 -0
- package/dist/es6/36/lock_outline.js +2 -0
- package/dist/es6/96/radiowaves_around_outline.js +2 -0
- package/dist/es6/index.js +14 -0
- package/dist/icons-map.json +1 -1
- package/dist/index.js +82 -26
- package/dist/typings/16/add_circle.d.ts +12 -0
- package/dist/typings/16/hide_outline.d.ts +12 -0
- package/dist/typings/16/share_outline.d.ts +12 -0
- package/dist/typings/20/cookie_outline.d.ts +12 -0
- package/dist/typings/20/heart_settings_outline.d.ts +12 -0
- package/dist/typings/24/cancel_circle_fill_red.d.ts +12 -0
- package/dist/typings/24/check_circle_fill_green.d.ts +12 -0
- package/dist/typings/24/clock_circle_fill_gray.d.ts +12 -0
- package/dist/typings/24/error_circle_fill_gray.d.ts +12 -0
- package/dist/typings/24/error_circle_fill_red.d.ts +12 -0
- package/dist/typings/28/articles_slash_outline.d.ts +12 -0
- package/dist/typings/36/list_play_outline.d.ts +12 -0
- package/dist/typings/36/lock_outline.d.ts +12 -0
- package/dist/typings/96/radiowaves_around_outline.d.ts +12 -0
- package/dist/typings/index.d.ts +14 -0
- package/package.json +1 -1
- package/src/svg/16/add_circle_16.svg +1 -0
- package/src/svg/16/hide_outline_16.svg +1 -0
- package/src/svg/16/share_outline_16.svg +1 -0
- package/src/svg/16/view_outline_16.svg +1 -1
- package/src/svg/20/cookie_outline_20.svg +1 -0
- package/src/svg/20/heart_settings_outline_20.svg +1 -0
- package/src/svg/24/cancel_circle_fill_red_24.svg +1 -0
- package/src/svg/24/check_circle_fill_green_24.svg +1 -0
- package/src/svg/24/clock_circle_fill_gray_24.svg +1 -0
- package/src/svg/24/error_circle_fill_gray_24.svg +1 -0
- package/src/svg/24/error_circle_fill_red_24.svg +1 -0
- package/src/svg/28/articles_slash_outline_28.svg +1 -0
- package/src/svg/36/list_play_outline_36.svg +1 -0
- package/src/svg/36/lock_outline_36.svg +1 -0
- package/src/svg/96/radiowaves_around_outline_96.svg +1 -0
- package/ts/16/add_circle.ts +24 -0
- package/ts/16/hide_outline.ts +24 -0
- package/ts/16/share_outline.ts +24 -0
- package/ts/16/view_outline.ts +1 -1
- package/ts/20/cookie_outline.ts +24 -0
- package/ts/20/heart_settings_outline.ts +24 -0
- package/ts/24/cancel_circle_fill_red.ts +24 -0
- package/ts/24/check_circle_fill_green.ts +24 -0
- package/ts/24/clock_circle_fill_gray.ts +24 -0
- package/ts/24/error_circle_fill_gray.ts +24 -0
- package/ts/24/error_circle_fill_red.ts +24 -0
- package/ts/28/articles_slash_outline.ts +24 -0
- package/ts/36/list_play_outline.ts +24 -0
- package/ts/36/lock_outline.ts +24 -0
- package/ts/96/radiowaves_around_outline.ts +24 -0
- package/ts/index.ts +15 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "default", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return _default;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
var _iconsSprite = require("@vkontakte/icons-sprite");
|
|
12
|
+
var _default = (0, _iconsSprite.makeIcon)("Icon16AddCircle", "add_circle_16", "0 0 16 16", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16" id="add_circle_16"><path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0Z" opacity=".12" /><path fill-rule="evenodd" d="M8.9 4.9a.9.9 0 0 0-1.8 0v2.2H4.9a.9.9 0 0 0 0 1.8h2.2v2.2a.9.9 0 1 0 1.8 0V8.9h2.2a.9.9 0 1 0 0-1.8H8.9V4.9Z" clip-rule="evenodd" /></symbol>', 16, 16, false, undefined);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "default", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return _default;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
var _iconsSprite = require("@vkontakte/icons-sprite");
|
|
12
|
+
var _default = (0, _iconsSprite.makeIcon)("Icon16HideOutline", "hide_outline_16", "0 0 16 16", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16" id="hide_outline_16"><path fill-rule="evenodd" d="M4.03 1.97a.75.75 0 0 0-1.06 1.06l1.028 1.028c-.78.44-1.444.983-1.946 1.563C1.439 6.33 1 7.171 1 8c0 .618.245 1.239.607 1.792.366.56.883 1.1 1.503 1.569A8.188 8.188 0 0 0 8 13a8.168 8.168 0 0 0 3.77-.932.757.757 0 0 0 .141-.096l1.559 1.558a.75.75 0 1 0 1.06-1.06L4.03 1.97Zm6.78 8.9L9.736 9.798a2.5 2.5 0 0 1-3.535-3.535L5.11 5.169c-.807.39-1.467.907-1.923 1.434C2.692 7.173 2.5 7.678 2.5 8c0 .232.099.568.362.97a4.91 4.91 0 0 0 1.153 1.194A6.688 6.688 0 0 0 8 11.5a6.65 6.65 0 0 0 2.81-.63ZM7.262 7.324a1 1 0 0 0 1.413 1.413L7.263 7.324Zm1.031-3.607a.75.75 0 0 1 .85-.635 8.17 8.17 0 0 1 4.11 1.85C14.251 5.79 15 6.914 15 8c0 .383-.094.764-.246 1.123a.75.75 0 0 1-1.381-.585A1.41 1.41 0 0 0 13.5 8c0-.443-.362-1.19-1.224-1.93a6.67 6.67 0 0 0-3.348-1.503.75.75 0 0 1-.635-.85Z" /></symbol>', 16, 16, false, undefined);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "default", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return _default;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
var _iconsSprite = require("@vkontakte/icons-sprite");
|
|
12
|
+
var _default = (0, _iconsSprite.makeIcon)("Icon16ShareOutline", "share_outline_16", "0 0 16 16", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16" id="share_outline_16"><path fill-rule="evenodd" d="M7.887 3.502c.017.002.04.008.067.03l5.493 4.366a.13.13 0 0 1 0 .204l-5.493 4.366a.122.122 0 0 1-.067.03.137.137 0 0 1-.07-.015.137.137 0 0 1-.056-.046.122.122 0 0 1-.018-.071v-2.303a.75.75 0 0 0-.75-.75c-1.345 0-2.414.188-3.353.605-.338.15-.651.327-.949.527.196-.836.534-1.554.994-2.143.758-.97 1.895-1.654 3.436-1.921a.75.75 0 0 0 .622-.74V3.635c0-.035.009-.056.018-.07a.137.137 0 0 1 .055-.047.137.137 0 0 1 .071-.015Zm1-1.144c-1.068-.85-2.644-.089-2.644 1.276v1.4c-1.57.392-2.84 1.192-3.74 2.345C1.492 8.674.995 10.352.995 12.25a.75.75 0 0 0 1.29.52c.673-.7 1.27-1.172 1.963-1.48.54-.24 1.173-.395 1.995-.452v1.528c0 1.364 1.576 2.125 2.644 1.276l5.492-4.366a1.63 1.63 0 0 0 0-2.553L8.887 2.358Z" clip-rule="evenodd" /></symbol>', 16, 16, false, undefined);
|
package/dist/16/view_outline.js
CHANGED
|
@@ -9,4 +9,4 @@ Object.defineProperty(exports, "default", {
|
|
|
9
9
|
}
|
|
10
10
|
});
|
|
11
11
|
var _iconsSprite = require("@vkontakte/icons-sprite");
|
|
12
|
-
var _default = (0, _iconsSprite.makeIcon)("Icon16ViewOutline", "view_outline_16", "0 0 16 16", '<symbol xmlns="http://www.w3.org/2000/svg" fill="
|
|
12
|
+
var _default = (0, _iconsSprite.makeIcon)("Icon16ViewOutline", "view_outline_16", "0 0 16 16", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16" id="view_outline_16"><path fill-rule="evenodd" d="M8 5.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5ZM7 8a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm1-5a8.147 8.147 0 0 0-3.4.75c-1.041.48-1.92 1.147-2.548 1.871C1.439 6.33 1 7.171 1 8c0 .618.245 1.239.607 1.792.366.56.883 1.1 1.503 1.569A8.188 8.188 0 0 0 8 13c1.93 0 3.649-.702 4.89-1.64.62-.468 1.137-1.008 1.503-1.568C14.755 9.239 15 8.618 15 8c0-1.086-.75-2.21-1.747-3.068A8.17 8.17 0 0 0 8 3ZM5.227 5.114A6.647 6.647 0 0 1 8 4.5a6.67 6.67 0 0 1 4.276 1.57C13.138 6.81 13.5 7.557 13.5 8c0 .232-.099.568-.362.97-.259.396-.649.813-1.153 1.194A6.688 6.688 0 0 1 8 11.5a6.688 6.688 0 0 1-3.985-1.336 4.908 4.908 0 0 1-1.153-1.193C2.6 8.568 2.5 8.23 2.5 8c0-.322.192-.827.686-1.397.478-.552 1.18-1.094 2.041-1.49Z" clip-rule="evenodd" /></symbol>', 16, 16, false, undefined);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "default", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return _default;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
var _iconsSprite = require("@vkontakte/icons-sprite");
|
|
12
|
+
var _default = (0, _iconsSprite.makeIcon)("Icon20CookieOutline", "cookie_outline_20", "0 0 20 20", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20" id="cookie_outline_20"><path fill-rule="evenodd" d="M4.444 3.026h.004l.006.002.018.005a3.877 3.877 0 0 1 .268.085 10.047 10.047 0 0 1 2.849 1.558C8.487 5.384 9.39 6.364 10 7.682c.61-1.318 1.513-2.298 2.411-3.004a10.049 10.049 0 0 1 2.849-1.559 6.094 6.094 0 0 1 .268-.085l.018-.005.006-.001h.002l-.086.024.088-.025a.75.75 0 0 1 .73.2C17.824 4.795 18.5 7.337 18.5 9.5c0 4.662-3.657 8.5-8.5 8.5s-8.5-3.838-8.5-8.5c0-2.162.676-4.704 2.214-6.275a.75.75 0 0 1 .73-.2ZM15.518 4.62a8.544 8.544 0 0 0-2.18 1.235c-1.301 1.025-2.588 2.7-2.588 5.395a.75.75 0 0 1-1.5 0c0-2.696-1.286-4.37-2.589-5.394A8.546 8.546 0 0 0 4.482 4.62C3.512 5.845 3 7.74 3 9.5c0 3.854 3.006 7 7 7s7-3.146 7-7c0-1.76-.512-3.655-1.482-4.88Z" clip-rule="evenodd" /></symbol>', 20, 20, false, undefined);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "default", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return _default;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
var _iconsSprite = require("@vkontakte/icons-sprite");
|
|
12
|
+
var _default = (0, _iconsSprite.makeIcon)("Icon20HeartSettingsOutline", "heart_settings_outline_20", "0 0 20 20", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20" id="heart_settings_outline_20"><path d="M6.371 2.5A5.371 5.371 0 0 0 1 7.871c0 1.39.285 2.563 1.263 3.843.88 1.151 2.314 2.373 4.44 4.026l1.418 1.103a.75.75 0 0 0 .92-1.184l-1.418-1.103c-2.142-1.667-3.423-2.778-4.168-3.753C2.71 9.828 2.5 8.99 2.5 7.87A3.871 3.871 0 0 1 6.371 4c1.124 0 2.137.53 3.055 1.622a.75.75 0 0 0 1.148 0C11.492 4.529 12.505 4 13.63 4a3.871 3.871 0 0 1 3.87 3.865l-.002.123a.75.75 0 1 0 1.5.024L19 7.884V7.87a5.371 5.371 0 0 0-5.371-5.37c-1.4 0-2.611.571-3.629 1.543C8.982 3.07 7.771 2.5 6.371 2.5Z" /><path fill-rule="evenodd" d="m15.063 9.375.017.058c.094.319.187.636.716.942.63.17.937 0 1.223-.19.298-.199.387-.141.506-.024l.29.29c.132.132.185.185 0 .53l-.03.053c-.158.292-.317.583-.158 1.173.324.565.66.663.998.73.352.07.373.174.375.341v.41c0 .187 0 .262-.375.374l-.059.018c-.318.094-.636.187-.94.716-.172.63-.002.937.189 1.223.198.298.14.387.024.506l-.29.29c-.132.132-.185.185-.53 0l-.054-.03c-.291-.159-.582-.317-1.172-.159-.565.325-.663.662-.73.999-.07.351-.174.373-.341.375h-.41c-.187 0-.262 0-.374-.375l-.018-.059c-.094-.318-.187-.636-.716-.941-.63-.17-.937-.001-1.223.19-.298.198-.387.14-.506.023l-.29-.289c-.132-.132-.185-.186 0-.53l.03-.054c.158-.291.317-.582.158-1.173-.324-.565-.66-.662-.998-.73-.352-.07-.373-.173-.375-.34v-.41c0-.187 0-.262.375-.375l.059-.017c.318-.094.636-.188.94-.717.171-.629.002-.936-.189-1.222-.198-.299-.14-.387-.024-.506l.29-.29c.132-.132.185-.185.53 0l.054.03c.291.158.582.317 1.172.158.565-.324.663-.661.73-.998.07-.352.174-.374.341-.375h.41c.187 0 .262 0 .374.375Zm1.406 4.125a1.969 1.969 0 1 1-3.938 0 1.969 1.969 0 0 1 3.938 0Z" clip-rule="evenodd" /></symbol>', 20, 20, false, undefined);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "default", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return _default;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
var _iconsSprite = require("@vkontakte/icons-sprite");
|
|
12
|
+
var _default = (0, _iconsSprite.makeIcon)("Icon24CancelCircleFillRed", "cancel_circle_fill_red_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="cancel_circle_fill_red_24"><path fill="#FF3347" d="M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12Z" /><path fill="#fff" d="M7.293 8.707a1 1 0 0 1 1.414-1.414L12 10.586l3.293-3.293a1 1 0 1 1 1.414 1.414L13.414 12l3.293 3.293a1 1 0 0 1-1.414 1.414L12 13.414l-3.293 3.293a1 1 0 0 1-1.414-1.414L10.586 12 7.293 8.707Z" /></symbol>', 24, 24, false, undefined);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "default", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return _default;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
var _iconsSprite = require("@vkontakte/icons-sprite");
|
|
12
|
+
var _default = (0, _iconsSprite.makeIcon)("Icon24CheckCircleFillGreen", "check_circle_fill_green_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="check_circle_fill_green_24"><path fill="#4BB34B" d="M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12Z" /><path fill="#fff" fill-rule="evenodd" d="M18.207 7.793a1 1 0 0 1 0 1.414l-7.5 7.5a1 1 0 0 1-1.414 0l-3.5-3.5a1 1 0 1 1 1.414-1.414L10 14.586l6.793-6.793a1 1 0 0 1 1.414 0Z" clip-rule="evenodd" /></symbol>', 24, 24, false, undefined);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "default", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return _default;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
var _iconsSprite = require("@vkontakte/icons-sprite");
|
|
12
|
+
var _default = (0, _iconsSprite.makeIcon)("Icon24ClockCircleFillGray", "clock_circle_fill_gray_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="clock_circle_fill_gray_24"><path fill="#A3ADB8" d="M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12Z" /><path fill="#fff" fill-rule="evenodd" d="M11.499 4.998c.55 0 .996.448.996 1l-.001 7.194 5.054 1.869a1 1 0 0 1-.69 1.876l-5.706-2.11a1 1 0 0 1-.652-.938l.002-7.891c0-.552.446-1 .997-1Z" clip-rule="evenodd" /></symbol>', 24, 24, false, undefined);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "default", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return _default;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
var _iconsSprite = require("@vkontakte/icons-sprite");
|
|
12
|
+
var _default = (0, _iconsSprite.makeIcon)("Icon24ErrorCircleFillGray", "error_circle_fill_gray_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="error_circle_fill_gray_24"><circle cx="12" cy="12" r="12" fill="#A3ADB8" /><path fill="#fff" d="M12 5c-.815 0-1.464.684-1.421 1.498l.368 7.003.006.093A1 1 0 0 0 12 14.5h.092a1 1 0 0 0 .955-.906l.006-.093.368-7.003A1.423 1.423 0 0 0 12 5Zm0 11a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z" /></symbol>', 24, 24, false, undefined);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "default", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return _default;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
var _iconsSprite = require("@vkontakte/icons-sprite");
|
|
12
|
+
var _default = (0, _iconsSprite.makeIcon)("Icon24ErrorCircleFillRed", "error_circle_fill_red_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="error_circle_fill_red_24"><circle cx="12" cy="12" r="12" fill="#FF3347" /><path fill="#fff" d="M12 5c-.815 0-1.464.684-1.421 1.498l.368 7.003.006.093A1 1 0 0 0 12 14.5h.092a1 1 0 0 0 .955-.906l.006-.093.368-7.003A1.423 1.423 0 0 0 12 5Zm0 11a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z" /></symbol>', 24, 24, false, undefined);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "default", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return _default;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
var _iconsSprite = require("@vkontakte/icons-sprite");
|
|
12
|
+
var _default = (0, _iconsSprite.makeIcon)("Icon28ArticlesSlashOutline", "articles_slash_outline_28", "0 0 28 28", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 28 28" id="articles_slash_outline_28"><path d="M5.71 3.298a1 1 0 0 0-1.414 1.414l1.29 1.29H3.002a1 1 0 0 0 0 2h3v7.003a1 1 0 1 0 2 0V8.417l5.586 5.588H12a1 1 0 1 0 0 2h3.59l4 4H7a1 1 0 1 0 0 2h14.587l2.708 2.707a1 1 0 0 0 1.414-1.414l-20-20ZM15 9.002a1 1 0 0 1 1-1h8a1 1 0 1 1 0 2h-8a1 1 0 0 1-1-1Zm7.004 5.003a1 1 0 1 0 0 2h2a1 1 0 1 0 0-2h-2Z" /></symbol>', 28, 28, false, undefined);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "default", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return _default;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
var _iconsSprite = require("@vkontakte/icons-sprite");
|
|
12
|
+
var _default = (0, _iconsSprite.makeIcon)("Icon36ListPlayOutline", "list_play_outline_36", "0 0 36 36", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 36 36" id="list_play_outline_36"><path fill-rule="evenodd" d="M4 9.25C4 8.56 4.56 8 5.25 8h23.5a1.25 1.25 0 1 1 0 2.5H5.25C4.56 10.5 4 9.94 4 9.25Zm0 8c0-.69.56-1.25 1.25-1.25h11.5a1.25 1.25 0 1 1 0 2.5H5.25c-.69 0-1.25-.56-1.25-1.25Zm0 8c0-.69.56-1.25 1.25-1.25h11.5a1.25 1.25 0 1 1 0 2.5H5.25c-.69 0-1.25-.56-1.25-1.25Zm28.416-1.801a1.238 1.238 0 0 1 0 2.102l-8.575 5.269c-.808.497-1.841-.093-1.841-1.051V19.23c0-.958 1.033-1.548 1.841-1.051l8.575 5.269Z" /></symbol>', 36, 36, false, undefined);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "default", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return _default;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
var _iconsSprite = require("@vkontakte/icons-sprite");
|
|
12
|
+
var _default = (0, _iconsSprite.makeIcon)("Icon36LockOutline", "lock_outline_36", "0 0 36 36", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 36 36" id="lock_outline_36"><path fill-rule="evenodd" d="M18 3c-4.217 0-7.5 3.622-7.5 7.917v2.185c-.581.074-1.122.21-1.633.47a5.25 5.25 0 0 0-2.295 2.295c-.323.633-.453 1.31-.513 2.054C6 18.639 6 19.522 6 20.598v4.804c0 1.076 0 1.959.059 2.677.06.744.19 1.421.513 2.055a5.25 5.25 0 0 0 2.295 2.294c.633.323 1.31.453 2.054.513.718.059 1.601.059 2.677.059h8.804c1.076 0 1.959 0 2.677-.059.744-.06 1.421-.19 2.055-.513a5.25 5.25 0 0 0 2.294-2.294c.322-.634.453-1.31.513-2.055.059-.718.059-1.601.059-2.677v-4.804c0-1.076 0-1.959-.059-2.677-.06-.744-.19-1.421-.513-2.054a5.25 5.25 0 0 0-2.294-2.295c-.512-.26-1.053-.396-1.634-.47v-2.185C25.5 6.622 22.217 3 18 3Zm5 10v-2.083c0-3.07-2.313-5.417-5-5.417s-5 2.348-5 5.417V13h10Zm-11.875 2.55c-.59.048-.901.136-1.123.25A2.75 2.75 0 0 0 8.8 17c-.114.223-.201.534-.25 1.124-.049.604-.05 1.384-.05 2.525v4.7c0 1.14.001 1.921.05 2.525.049.59.136.901.25 1.123A2.75 2.75 0 0 0 10 30.2c.223.114.534.201 1.124.25.604.049 1.384.05 2.525.05h8.7c1.14 0 1.921-.001 2.525-.05.59-.049.901-.136 1.123-.25A2.751 2.751 0 0 0 27.2 29c.114-.223.201-.534.25-1.124.049-.604.05-1.384.05-2.525v-4.7c0-1.14-.001-1.921-.05-2.525-.049-.59-.136-.901-.25-1.123A2.751 2.751 0 0 0 26 15.8c-.223-.114-.534-.202-1.124-.25-.604-.049-1.384-.05-2.525-.05h-8.7c-1.14 0-1.921.001-2.525.05ZM17.993 20a1.25 1.25 0 0 1 1.257 1.243l.02 3.5a1.25 1.25 0 1 1-2.5.014l-.02-3.5A1.25 1.25 0 0 1 17.993 20Z" clip-rule="evenodd" /></symbol>', 36, 36, false, undefined);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
Object.defineProperty(exports, "default", {
|
|
6
|
+
enumerable: true,
|
|
7
|
+
get: function() {
|
|
8
|
+
return _default;
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
var _iconsSprite = require("@vkontakte/icons-sprite");
|
|
12
|
+
var _default = (0, _iconsSprite.makeIcon)("Icon96RadiowavesAroundOutline", "radiowaves_around_outline_96", "0 0 96 96", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 96 96" id="radiowaves_around_outline_96"><path d="M13 48.393c0-19.573 15.694-35.396 35-35.396 19.306 0 35.001 15.823 35.001 35.396 0 10.78-3.85 19.807-11.152 26.227a2.5 2.5 0 0 0 3.302 3.754c8.501-7.475 12.85-17.931 12.85-29.98 0-22.286-17.884-40.397-40-40.397-22.117 0-40.002 18.11-40.002 40.396C8 60.442 12.345 70.9 20.846 78.376a2.5 2.5 0 0 0 3.302-3.755c-7.3-6.42-11.149-15.447-11.149-26.228ZM48.005 31c-9.37 0-17 7.664-17 17.162 0 5.335 1.669 9.412 5.144 12.461a2.5 2.5 0 1 1-3.298 3.759c-4.741-4.16-6.846-9.71-6.846-16.22 0-12.22 9.83-22.162 22-22.162s22 9.942 22 22.162c0 6.513-2.117 12.06-6.856 16.219a2.5 2.5 0 1 1-3.298-3.759c3.477-3.05 5.154-7.128 5.154-12.46 0-9.498-7.63-17.162-17-17.162ZM54 48a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z" /></symbol>', 96, 96, false, undefined);
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { makeIcon } from "@vkontakte/icons-sprite";
|
|
2
|
+
export default makeIcon("Icon16AddCircle", "add_circle_16", "0 0 16 16", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16" id="add_circle_16"><path d="M8 0a8 8 0 1 1 0 16A8 8 0 0 1 8 0Z" opacity=".12" /><path fill-rule="evenodd" d="M8.9 4.9a.9.9 0 0 0-1.8 0v2.2H4.9a.9.9 0 0 0 0 1.8h2.2v2.2a.9.9 0 1 0 1.8 0V8.9h2.2a.9.9 0 1 0 0-1.8H8.9V4.9Z" clip-rule="evenodd" /></symbol>', 16, 16, false, undefined);
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { makeIcon } from "@vkontakte/icons-sprite";
|
|
2
|
+
export default makeIcon("Icon16HideOutline", "hide_outline_16", "0 0 16 16", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16" id="hide_outline_16"><path fill-rule="evenodd" d="M4.03 1.97a.75.75 0 0 0-1.06 1.06l1.028 1.028c-.78.44-1.444.983-1.946 1.563C1.439 6.33 1 7.171 1 8c0 .618.245 1.239.607 1.792.366.56.883 1.1 1.503 1.569A8.188 8.188 0 0 0 8 13a8.168 8.168 0 0 0 3.77-.932.757.757 0 0 0 .141-.096l1.559 1.558a.75.75 0 1 0 1.06-1.06L4.03 1.97Zm6.78 8.9L9.736 9.798a2.5 2.5 0 0 1-3.535-3.535L5.11 5.169c-.807.39-1.467.907-1.923 1.434C2.692 7.173 2.5 7.678 2.5 8c0 .232.099.568.362.97a4.91 4.91 0 0 0 1.153 1.194A6.688 6.688 0 0 0 8 11.5a6.65 6.65 0 0 0 2.81-.63ZM7.262 7.324a1 1 0 0 0 1.413 1.413L7.263 7.324Zm1.031-3.607a.75.75 0 0 1 .85-.635 8.17 8.17 0 0 1 4.11 1.85C14.251 5.79 15 6.914 15 8c0 .383-.094.764-.246 1.123a.75.75 0 0 1-1.381-.585A1.41 1.41 0 0 0 13.5 8c0-.443-.362-1.19-1.224-1.93a6.67 6.67 0 0 0-3.348-1.503.75.75 0 0 1-.635-.85Z" /></symbol>', 16, 16, false, undefined);
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { makeIcon } from "@vkontakte/icons-sprite";
|
|
2
|
+
export default makeIcon("Icon16ShareOutline", "share_outline_16", "0 0 16 16", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16" id="share_outline_16"><path fill-rule="evenodd" d="M7.887 3.502c.017.002.04.008.067.03l5.493 4.366a.13.13 0 0 1 0 .204l-5.493 4.366a.122.122 0 0 1-.067.03.137.137 0 0 1-.07-.015.137.137 0 0 1-.056-.046.122.122 0 0 1-.018-.071v-2.303a.75.75 0 0 0-.75-.75c-1.345 0-2.414.188-3.353.605-.338.15-.651.327-.949.527.196-.836.534-1.554.994-2.143.758-.97 1.895-1.654 3.436-1.921a.75.75 0 0 0 .622-.74V3.635c0-.035.009-.056.018-.07a.137.137 0 0 1 .055-.047.137.137 0 0 1 .071-.015Zm1-1.144c-1.068-.85-2.644-.089-2.644 1.276v1.4c-1.57.392-2.84 1.192-3.74 2.345C1.492 8.674.995 10.352.995 12.25a.75.75 0 0 0 1.29.52c.673-.7 1.27-1.172 1.963-1.48.54-.24 1.173-.395 1.995-.452v1.528c0 1.364 1.576 2.125 2.644 1.276l5.492-4.366a1.63 1.63 0 0 0 0-2.553L8.887 2.358Z" clip-rule="evenodd" /></symbol>', 16, 16, false, undefined);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { makeIcon } from "@vkontakte/icons-sprite";
|
|
2
|
-
export default makeIcon("Icon16ViewOutline", "view_outline_16", "0 0 16 16", '<symbol xmlns="http://www.w3.org/2000/svg" fill="
|
|
2
|
+
export default makeIcon("Icon16ViewOutline", "view_outline_16", "0 0 16 16", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16" id="view_outline_16"><path fill-rule="evenodd" d="M8 5.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5ZM7 8a1 1 0 1 1 2 0 1 1 0 0 1-2 0Zm1-5a8.147 8.147 0 0 0-3.4.75c-1.041.48-1.92 1.147-2.548 1.871C1.439 6.33 1 7.171 1 8c0 .618.245 1.239.607 1.792.366.56.883 1.1 1.503 1.569A8.188 8.188 0 0 0 8 13c1.93 0 3.649-.702 4.89-1.64.62-.468 1.137-1.008 1.503-1.568C14.755 9.239 15 8.618 15 8c0-1.086-.75-2.21-1.747-3.068A8.17 8.17 0 0 0 8 3ZM5.227 5.114A6.647 6.647 0 0 1 8 4.5a6.67 6.67 0 0 1 4.276 1.57C13.138 6.81 13.5 7.557 13.5 8c0 .232-.099.568-.362.97-.259.396-.649.813-1.153 1.194A6.688 6.688 0 0 1 8 11.5a6.688 6.688 0 0 1-3.985-1.336 4.908 4.908 0 0 1-1.153-1.193C2.6 8.568 2.5 8.23 2.5 8c0-.322.192-.827.686-1.397.478-.552 1.18-1.094 2.041-1.49Z" clip-rule="evenodd" /></symbol>', 16, 16, false, undefined);
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { makeIcon } from "@vkontakte/icons-sprite";
|
|
2
|
+
export default makeIcon("Icon20CookieOutline", "cookie_outline_20", "0 0 20 20", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20" id="cookie_outline_20"><path fill-rule="evenodd" d="M4.444 3.026h.004l.006.002.018.005a3.877 3.877 0 0 1 .268.085 10.047 10.047 0 0 1 2.849 1.558C8.487 5.384 9.39 6.364 10 7.682c.61-1.318 1.513-2.298 2.411-3.004a10.049 10.049 0 0 1 2.849-1.559 6.094 6.094 0 0 1 .268-.085l.018-.005.006-.001h.002l-.086.024.088-.025a.75.75 0 0 1 .73.2C17.824 4.795 18.5 7.337 18.5 9.5c0 4.662-3.657 8.5-8.5 8.5s-8.5-3.838-8.5-8.5c0-2.162.676-4.704 2.214-6.275a.75.75 0 0 1 .73-.2ZM15.518 4.62a8.544 8.544 0 0 0-2.18 1.235c-1.301 1.025-2.588 2.7-2.588 5.395a.75.75 0 0 1-1.5 0c0-2.696-1.286-4.37-2.589-5.394A8.546 8.546 0 0 0 4.482 4.62C3.512 5.845 3 7.74 3 9.5c0 3.854 3.006 7 7 7s7-3.146 7-7c0-1.76-.512-3.655-1.482-4.88Z" clip-rule="evenodd" /></symbol>', 20, 20, false, undefined);
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { makeIcon } from "@vkontakte/icons-sprite";
|
|
2
|
+
export default makeIcon("Icon20HeartSettingsOutline", "heart_settings_outline_20", "0 0 20 20", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20" id="heart_settings_outline_20"><path d="M6.371 2.5A5.371 5.371 0 0 0 1 7.871c0 1.39.285 2.563 1.263 3.843.88 1.151 2.314 2.373 4.44 4.026l1.418 1.103a.75.75 0 0 0 .92-1.184l-1.418-1.103c-2.142-1.667-3.423-2.778-4.168-3.753C2.71 9.828 2.5 8.99 2.5 7.87A3.871 3.871 0 0 1 6.371 4c1.124 0 2.137.53 3.055 1.622a.75.75 0 0 0 1.148 0C11.492 4.529 12.505 4 13.63 4a3.871 3.871 0 0 1 3.87 3.865l-.002.123a.75.75 0 1 0 1.5.024L19 7.884V7.87a5.371 5.371 0 0 0-5.371-5.37c-1.4 0-2.611.571-3.629 1.543C8.982 3.07 7.771 2.5 6.371 2.5Z" /><path fill-rule="evenodd" d="m15.063 9.375.017.058c.094.319.187.636.716.942.63.17.937 0 1.223-.19.298-.199.387-.141.506-.024l.29.29c.132.132.185.185 0 .53l-.03.053c-.158.292-.317.583-.158 1.173.324.565.66.663.998.73.352.07.373.174.375.341v.41c0 .187 0 .262-.375.374l-.059.018c-.318.094-.636.187-.94.716-.172.63-.002.937.189 1.223.198.298.14.387.024.506l-.29.29c-.132.132-.185.185-.53 0l-.054-.03c-.291-.159-.582-.317-1.172-.159-.565.325-.663.662-.73.999-.07.351-.174.373-.341.375h-.41c-.187 0-.262 0-.374-.375l-.018-.059c-.094-.318-.187-.636-.716-.941-.63-.17-.937-.001-1.223.19-.298.198-.387.14-.506.023l-.29-.289c-.132-.132-.185-.186 0-.53l.03-.054c.158-.291.317-.582.158-1.173-.324-.565-.66-.662-.998-.73-.352-.07-.373-.173-.375-.34v-.41c0-.187 0-.262.375-.375l.059-.017c.318-.094.636-.188.94-.717.171-.629.002-.936-.189-1.222-.198-.299-.14-.387-.024-.506l.29-.29c.132-.132.185-.185.53 0l.054.03c.291.158.582.317 1.172.158.565-.324.663-.661.73-.998.07-.352.174-.374.341-.375h.41c.187 0 .262 0 .374.375Zm1.406 4.125a1.969 1.969 0 1 1-3.938 0 1.969 1.969 0 0 1 3.938 0Z" clip-rule="evenodd" /></symbol>', 20, 20, false, undefined);
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { makeIcon } from "@vkontakte/icons-sprite";
|
|
2
|
+
export default makeIcon("Icon24CancelCircleFillRed", "cancel_circle_fill_red_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="cancel_circle_fill_red_24"><path fill="#FF3347" d="M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12Z" /><path fill="#fff" d="M7.293 8.707a1 1 0 0 1 1.414-1.414L12 10.586l3.293-3.293a1 1 0 1 1 1.414 1.414L13.414 12l3.293 3.293a1 1 0 0 1-1.414 1.414L12 13.414l-3.293 3.293a1 1 0 0 1-1.414-1.414L10.586 12 7.293 8.707Z" /></symbol>', 24, 24, false, undefined);
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { makeIcon } from "@vkontakte/icons-sprite";
|
|
2
|
+
export default makeIcon("Icon24CheckCircleFillGreen", "check_circle_fill_green_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="check_circle_fill_green_24"><path fill="#4BB34B" d="M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12Z" /><path fill="#fff" fill-rule="evenodd" d="M18.207 7.793a1 1 0 0 1 0 1.414l-7.5 7.5a1 1 0 0 1-1.414 0l-3.5-3.5a1 1 0 1 1 1.414-1.414L10 14.586l6.793-6.793a1 1 0 0 1 1.414 0Z" clip-rule="evenodd" /></symbol>', 24, 24, false, undefined);
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { makeIcon } from "@vkontakte/icons-sprite";
|
|
2
|
+
export default makeIcon("Icon24ClockCircleFillGray", "clock_circle_fill_gray_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="clock_circle_fill_gray_24"><path fill="#A3ADB8" d="M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12Z" /><path fill="#fff" fill-rule="evenodd" d="M11.499 4.998c.55 0 .996.448.996 1l-.001 7.194 5.054 1.869a1 1 0 0 1-.69 1.876l-5.706-2.11a1 1 0 0 1-.652-.938l.002-7.891c0-.552.446-1 .997-1Z" clip-rule="evenodd" /></symbol>', 24, 24, false, undefined);
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { makeIcon } from "@vkontakte/icons-sprite";
|
|
2
|
+
export default makeIcon("Icon24ErrorCircleFillGray", "error_circle_fill_gray_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="error_circle_fill_gray_24"><circle cx="12" cy="12" r="12" fill="#A3ADB8" /><path fill="#fff" d="M12 5c-.815 0-1.464.684-1.421 1.498l.368 7.003.006.093A1 1 0 0 0 12 14.5h.092a1 1 0 0 0 .955-.906l.006-.093.368-7.003A1.423 1.423 0 0 0 12 5Zm0 11a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z" /></symbol>', 24, 24, false, undefined);
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { makeIcon } from "@vkontakte/icons-sprite";
|
|
2
|
+
export default makeIcon("Icon24ErrorCircleFillRed", "error_circle_fill_red_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" id="error_circle_fill_red_24"><circle cx="12" cy="12" r="12" fill="#FF3347" /><path fill="#fff" d="M12 5c-.815 0-1.464.684-1.421 1.498l.368 7.003.006.093A1 1 0 0 0 12 14.5h.092a1 1 0 0 0 .955-.906l.006-.093.368-7.003A1.423 1.423 0 0 0 12 5Zm0 11a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z" /></symbol>', 24, 24, false, undefined);
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { makeIcon } from "@vkontakte/icons-sprite";
|
|
2
|
+
export default makeIcon("Icon28ArticlesSlashOutline", "articles_slash_outline_28", "0 0 28 28", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 28 28" id="articles_slash_outline_28"><path d="M5.71 3.298a1 1 0 0 0-1.414 1.414l1.29 1.29H3.002a1 1 0 0 0 0 2h3v7.003a1 1 0 1 0 2 0V8.417l5.586 5.588H12a1 1 0 1 0 0 2h3.59l4 4H7a1 1 0 1 0 0 2h14.587l2.708 2.707a1 1 0 0 0 1.414-1.414l-20-20ZM15 9.002a1 1 0 0 1 1-1h8a1 1 0 1 1 0 2h-8a1 1 0 0 1-1-1Zm7.004 5.003a1 1 0 1 0 0 2h2a1 1 0 1 0 0-2h-2Z" /></symbol>', 28, 28, false, undefined);
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { makeIcon } from "@vkontakte/icons-sprite";
|
|
2
|
+
export default makeIcon("Icon36ListPlayOutline", "list_play_outline_36", "0 0 36 36", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 36 36" id="list_play_outline_36"><path fill-rule="evenodd" d="M4 9.25C4 8.56 4.56 8 5.25 8h23.5a1.25 1.25 0 1 1 0 2.5H5.25C4.56 10.5 4 9.94 4 9.25Zm0 8c0-.69.56-1.25 1.25-1.25h11.5a1.25 1.25 0 1 1 0 2.5H5.25c-.69 0-1.25-.56-1.25-1.25Zm0 8c0-.69.56-1.25 1.25-1.25h11.5a1.25 1.25 0 1 1 0 2.5H5.25c-.69 0-1.25-.56-1.25-1.25Zm28.416-1.801a1.238 1.238 0 0 1 0 2.102l-8.575 5.269c-.808.497-1.841-.093-1.841-1.051V19.23c0-.958 1.033-1.548 1.841-1.051l8.575 5.269Z" /></symbol>', 36, 36, false, undefined);
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { makeIcon } from "@vkontakte/icons-sprite";
|
|
2
|
+
export default makeIcon("Icon36LockOutline", "lock_outline_36", "0 0 36 36", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 36 36" id="lock_outline_36"><path fill-rule="evenodd" d="M18 3c-4.217 0-7.5 3.622-7.5 7.917v2.185c-.581.074-1.122.21-1.633.47a5.25 5.25 0 0 0-2.295 2.295c-.323.633-.453 1.31-.513 2.054C6 18.639 6 19.522 6 20.598v4.804c0 1.076 0 1.959.059 2.677.06.744.19 1.421.513 2.055a5.25 5.25 0 0 0 2.295 2.294c.633.323 1.31.453 2.054.513.718.059 1.601.059 2.677.059h8.804c1.076 0 1.959 0 2.677-.059.744-.06 1.421-.19 2.055-.513a5.25 5.25 0 0 0 2.294-2.294c.322-.634.453-1.31.513-2.055.059-.718.059-1.601.059-2.677v-4.804c0-1.076 0-1.959-.059-2.677-.06-.744-.19-1.421-.513-2.054a5.25 5.25 0 0 0-2.294-2.295c-.512-.26-1.053-.396-1.634-.47v-2.185C25.5 6.622 22.217 3 18 3Zm5 10v-2.083c0-3.07-2.313-5.417-5-5.417s-5 2.348-5 5.417V13h10Zm-11.875 2.55c-.59.048-.901.136-1.123.25A2.75 2.75 0 0 0 8.8 17c-.114.223-.201.534-.25 1.124-.049.604-.05 1.384-.05 2.525v4.7c0 1.14.001 1.921.05 2.525.049.59.136.901.25 1.123A2.75 2.75 0 0 0 10 30.2c.223.114.534.201 1.124.25.604.049 1.384.05 2.525.05h8.7c1.14 0 1.921-.001 2.525-.05.59-.049.901-.136 1.123-.25A2.751 2.751 0 0 0 27.2 29c.114-.223.201-.534.25-1.124.049-.604.05-1.384.05-2.525v-4.7c0-1.14-.001-1.921-.05-2.525-.049-.59-.136-.901-.25-1.123A2.751 2.751 0 0 0 26 15.8c-.223-.114-.534-.202-1.124-.25-.604-.049-1.384-.05-2.525-.05h-8.7c-1.14 0-1.921.001-2.525.05ZM17.993 20a1.25 1.25 0 0 1 1.257 1.243l.02 3.5a1.25 1.25 0 1 1-2.5.014l-.02-3.5A1.25 1.25 0 0 1 17.993 20Z" clip-rule="evenodd" /></symbol>', 36, 36, false, undefined);
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { makeIcon } from "@vkontakte/icons-sprite";
|
|
2
|
+
export default makeIcon("Icon96RadiowavesAroundOutline", "radiowaves_around_outline_96", "0 0 96 96", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 96 96" id="radiowaves_around_outline_96"><path d="M13 48.393c0-19.573 15.694-35.396 35-35.396 19.306 0 35.001 15.823 35.001 35.396 0 10.78-3.85 19.807-11.152 26.227a2.5 2.5 0 0 0 3.302 3.754c8.501-7.475 12.85-17.931 12.85-29.98 0-22.286-17.884-40.397-40-40.397-22.117 0-40.002 18.11-40.002 40.396C8 60.442 12.345 70.9 20.846 78.376a2.5 2.5 0 0 0 3.302-3.755c-7.3-6.42-11.149-15.447-11.149-26.228ZM48.005 31c-9.37 0-17 7.664-17 17.162 0 5.335 1.669 9.412 5.144 12.461a2.5 2.5 0 1 1-3.298 3.759c-4.741-4.16-6.846-9.71-6.846-16.22 0-12.22 9.83-22.162 22-22.162s22 9.942 22 22.162c0 6.513-2.117 12.06-6.856 16.219a2.5 2.5 0 1 1-3.298-3.759c3.477-3.05 5.154-7.128 5.154-12.46 0-9.498-7.63-17.162-17-17.162ZM54 48a6 6 0 1 1-12 0 6 6 0 0 1 12 0Z" /></symbol>', 96, 96, false, undefined);
|
package/dist/es6/index.js
CHANGED
|
@@ -92,6 +92,7 @@ export { default as Icon12Verified } from "./12/verified";
|
|
|
92
92
|
export { default as Icon12VerifiedAlt } from "./12/verified_alt";
|
|
93
93
|
export { default as Icon12View } from "./12/view";
|
|
94
94
|
export { default as Icon16Add } from "./16/add";
|
|
95
|
+
export { default as Icon16AddCircle } from "./16/add_circle";
|
|
95
96
|
export { default as Icon16AddCircleOutline } from "./16/add_circle_outline";
|
|
96
97
|
export { default as Icon16AddSquareOutline } from "./16/add_square_outline";
|
|
97
98
|
export { default as Icon16Advertising } from "./16/advertising";
|
|
@@ -214,6 +215,7 @@ export { default as Icon16Headphones } from "./16/headphones";
|
|
|
214
215
|
export { default as Icon16HeadphonesOutline } from "./16/headphones_outline";
|
|
215
216
|
export { default as Icon16Help } from "./16/help";
|
|
216
217
|
export { default as Icon16HelpOutline } from "./16/help_outline";
|
|
218
|
+
export { default as Icon16HideOutline } from "./16/hide_outline";
|
|
217
219
|
export { default as Icon16HieroglyphCharacterOutline } from "./16/hieroglyph_character_outline";
|
|
218
220
|
export { default as Icon16HistoryBackwardOutline } from "./16/history_backward_outline";
|
|
219
221
|
export { default as Icon16HomeArrowDownOutline } from "./16/home_arrow_down_outline";
|
|
@@ -316,6 +318,7 @@ export { default as Icon16SearchOutline } from "./16/search_outline";
|
|
|
316
318
|
export { default as Icon16SearchStarsOutline } from "./16/search_stars_outline";
|
|
317
319
|
export { default as Icon16Services } from "./16/services";
|
|
318
320
|
export { default as Icon16Share } from "./16/share";
|
|
321
|
+
export { default as Icon16ShareOutline } from "./16/share_outline";
|
|
319
322
|
export { default as Icon16ShoppingCartOutline } from "./16/shopping_cart_outline";
|
|
320
323
|
export { default as Icon16ShuffleOutline } from "./16/shuffle_outline";
|
|
321
324
|
export { default as Icon16Smile } from "./16/smile";
|
|
@@ -486,6 +489,7 @@ export { default as Icon20CommentOutline } from "./20/comment_outline";
|
|
|
486
489
|
export { default as Icon20CommunityName } from "./20/community_name";
|
|
487
490
|
export { default as Icon20CompassOutline } from "./20/compass_outline";
|
|
488
491
|
export { default as Icon20ComputerOutline } from "./20/computer_outline";
|
|
492
|
+
export { default as Icon20CookieOutline } from "./20/cookie_outline";
|
|
489
493
|
export { default as Icon20CopyOutline } from "./20/copy_outline";
|
|
490
494
|
export { default as Icon20CopyrightOutline } from "./20/copyright_outline";
|
|
491
495
|
export { default as Icon20CrownCircleFillVkDating } from "./20/crown_circle_fill_vk_dating";
|
|
@@ -565,6 +569,7 @@ export { default as Icon20Grid4UnevenVerticalOutline } from "./20/grid_4_uneven_
|
|
|
565
569
|
export { default as Icon20Hand } from "./20/hand";
|
|
566
570
|
export { default as Icon20HeadphonesSupportOutline } from "./20/headphones_support_outline";
|
|
567
571
|
export { default as Icon20HealthOutline } from "./20/health_outline";
|
|
572
|
+
export { default as Icon20HeartSettingsOutline } from "./20/heart_settings_outline";
|
|
568
573
|
export { default as Icon20HelpOutline } from "./20/help_outline";
|
|
569
574
|
export { default as Icon20HideOutline } from "./20/hide_outline";
|
|
570
575
|
export { default as Icon20HieroglyphCharacterOutline } from "./20/hieroglyph_character_outline";
|
|
@@ -933,6 +938,7 @@ export { default as Icon24CalendarOutline } from "./24/calendar_outline";
|
|
|
933
938
|
export { default as Icon24Camera } from "./24/camera";
|
|
934
939
|
export { default as Icon24CameraOutline } from "./24/camera_outline";
|
|
935
940
|
export { default as Icon24Cancel } from "./24/cancel";
|
|
941
|
+
export { default as Icon24CancelCircleFillRed } from "./24/cancel_circle_fill_red";
|
|
936
942
|
export { default as Icon24CancelOutline } from "./24/cancel_outline";
|
|
937
943
|
export { default as Icon24Cards2Outline } from "./24/cards_2_outline";
|
|
938
944
|
export { default as Icon24CarOutline } from "./24/car_outline";
|
|
@@ -942,6 +948,7 @@ export { default as Icon24Chats } from "./24/chats";
|
|
|
942
948
|
export { default as Icon24CheckBoxOff } from "./24/check_box_off";
|
|
943
949
|
export { default as Icon24CheckBoxOn } from "./24/check_box_on";
|
|
944
950
|
export { default as Icon24CheckCircleFilledBlue } from "./24/check_circle_filled_blue";
|
|
951
|
+
export { default as Icon24CheckCircleFillGreen } from "./24/check_circle_fill_green";
|
|
945
952
|
export { default as Icon24CheckCircleOff } from "./24/check_circle_off";
|
|
946
953
|
export { default as Icon24CheckCircleOn } from "./24/check_circle_on";
|
|
947
954
|
export { default as Icon24CheckCircleOutline } from "./24/check_circle_outline";
|
|
@@ -960,6 +967,7 @@ export { default as Icon24ChevronRight } from "./24/chevron_right";
|
|
|
960
967
|
export { default as Icon24ChevronRightSquareOutline } from "./24/chevron_right_square_outline";
|
|
961
968
|
export { default as Icon24ChevronUp } from "./24/chevron_up";
|
|
962
969
|
export { default as Icon24ClipOutline } from "./24/clip_outline";
|
|
970
|
+
export { default as Icon24ClockCircleFillGray } from "./24/clock_circle_fill_gray";
|
|
963
971
|
export { default as Icon24ClockOutline } from "./24/clock_outline";
|
|
964
972
|
export { default as Icon24CloudArrowUpOutline } from "./24/cloud_arrow_up_outline";
|
|
965
973
|
export { default as Icon24CloudOutline } from "./24/cloud_outline";
|
|
@@ -1023,6 +1031,8 @@ export { default as Icon24EducationOutline } from "./24/education_outline";
|
|
|
1023
1031
|
export { default as Icon24EmployeeOutline } from "./24/employee_outline";
|
|
1024
1032
|
export { default as Icon24Error } from "./24/error";
|
|
1025
1033
|
export { default as Icon24ErrorCircle } from "./24/error_circle";
|
|
1034
|
+
export { default as Icon24ErrorCircleFillGray } from "./24/error_circle_fill_gray";
|
|
1035
|
+
export { default as Icon24ErrorCircleFillRed } from "./24/error_circle_fill_red";
|
|
1026
1036
|
export { default as Icon24ErrorCircleOutline } from "./24/error_circle_outline";
|
|
1027
1037
|
export { default as Icon24EternalFlameOutline } from "./24/eternal_flame_outline";
|
|
1028
1038
|
export { default as Icon24EuroOutline } from "./24/euro_outline";
|
|
@@ -1444,6 +1454,7 @@ export { default as Icon28ArrowUturnLeftOutline } from "./28/arrow_uturn_left_ou
|
|
|
1444
1454
|
export { default as Icon28ArrowUturnRightOutline } from "./28/arrow_uturn_right_outline";
|
|
1445
1455
|
export { default as Icon28ArticleOutline } from "./28/article_outline";
|
|
1446
1456
|
export { default as Icon28ArticlesOutline } from "./28/articles_outline";
|
|
1457
|
+
export { default as Icon28ArticlesSlashOutline } from "./28/articles_slash_outline";
|
|
1447
1458
|
export { default as Icon28AttachCircleFillBlue } from "./28/attach_circle_fill_blue";
|
|
1448
1459
|
export { default as Icon28Attachments } from "./28/attachments";
|
|
1449
1460
|
export { default as Icon28AttachOutline } from "./28/attach_outline";
|
|
@@ -2182,7 +2193,9 @@ export { default as Icon36LightbulbOutline } from "./36/lightbulb_outline";
|
|
|
2182
2193
|
export { default as Icon36Like } from "./36/like";
|
|
2183
2194
|
export { default as Icon36LikeOutline } from "./36/like_outline";
|
|
2184
2195
|
export { default as Icon36LinkOutline } from "./36/link_outline";
|
|
2196
|
+
export { default as Icon36ListPlayOutline } from "./36/list_play_outline";
|
|
2185
2197
|
export { default as Icon36LiveOutline } from "./36/live_outline";
|
|
2198
|
+
export { default as Icon36LockOutline } from "./36/lock_outline";
|
|
2186
2199
|
export { default as Icon36LogoVk } from "./36/logo_vk";
|
|
2187
2200
|
export { default as Icon36MailOutline } from "./36/mail_outline";
|
|
2188
2201
|
export { default as Icon36Market } from "./36/market";
|
|
@@ -2460,3 +2473,4 @@ export { default as Icon56WindowsDeviceOutline } from "./56/windows_device_outli
|
|
|
2460
2473
|
export { default as Icon56WriteOutline } from "./56/write_outline";
|
|
2461
2474
|
export { default as Icon96GoodsCollection } from "./96/goods_collection";
|
|
2462
2475
|
export { default as Icon96NotePenOutline } from "./96/note_pen_outline";
|
|
2476
|
+
export { default as Icon96RadiowavesAroundOutline } from "./96/radiowaves_around_outline";
|