@vkontakte/icons 2.53.0 → 2.55.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/arrow_right_circle_16.js +21 -0
- package/dist/16/chevron_down_circle_16.js +21 -0
- package/dist/16/chevron_up_circle_16.js +21 -0
- package/dist/16/clock_16.js +21 -0
- package/dist/16/sync_circle_fill_black_16.js +21 -0
- package/dist/28/user_minus_outline_28.js +21 -0
- package/dist/es6/16/arrow_right_circle_16.js +3 -0
- package/dist/es6/16/chevron_down_circle_16.js +3 -0
- package/dist/es6/16/chevron_up_circle_16.js +3 -0
- package/dist/es6/16/clock_16.js +3 -0
- package/dist/es6/16/sync_circle_fill_black_16.js +3 -0
- package/dist/es6/28/user_minus_outline_28.js +3 -0
- package/dist/es6/index.js +6 -0
- package/dist/icons-map.json +1 -1
- package/dist/index.js +24 -0
- package/dist/typings/16/arrow_right_circle_16.d.ts +12 -0
- package/dist/typings/16/chevron_down_circle_16.d.ts +12 -0
- package/dist/typings/16/chevron_up_circle_16.d.ts +12 -0
- package/dist/typings/16/clock_16.d.ts +12 -0
- package/dist/typings/16/sync_circle_fill_black_16.d.ts +12 -0
- package/dist/typings/28/user_minus_outline_28.d.ts +12 -0
- package/dist/typings/index.d.ts +6 -0
- package/package.json +2 -2
- package/src/svg/16/arrow_right_circle_16.svg +1 -0
- package/src/svg/16/chevron_down_circle_16.svg +1 -0
- package/src/svg/16/chevron_up_circle_16.svg +1 -0
- package/src/svg/16/clock_16.svg +1 -0
- package/src/svg/16/sync_circle_fill_black_16.svg +10 -0
- package/src/svg/28/user_minus_outline_28.svg +1 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: all[name]
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
_export(exports, {
|
|
12
|
+
Icon16ArrowRightCircle: function() {
|
|
13
|
+
return Icon16ArrowRightCircle;
|
|
14
|
+
},
|
|
15
|
+
default: function() {
|
|
16
|
+
return _default;
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
var _iconssprite = require("@vkontakte/icons-sprite");
|
|
20
|
+
var Icon16ArrowRightCircle = (0, _iconssprite.makeIcon)("Icon16ArrowRightCircle", "arrow_right_circle_16", "0 0 16 16", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16" id="arrow_right_circle_16"><path fill-rule="evenodd" d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16ZM9.552 5.28a.9.9 0 1 0-1.304 1.24l.552.58H4.9a.9.9 0 1 0 0 1.8h3.9l-.552.58a.9.9 0 1 0 1.304 1.24l2-2.1a.9.9 0 0 0 0-1.24l-2-2.1Z" clip-rule="evenodd" /></symbol>', 16, 16, false, undefined);
|
|
21
|
+
var _default = Icon16ArrowRightCircle;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: all[name]
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
_export(exports, {
|
|
12
|
+
Icon16ChevronDownCircle: function() {
|
|
13
|
+
return Icon16ChevronDownCircle;
|
|
14
|
+
},
|
|
15
|
+
default: function() {
|
|
16
|
+
return _default;
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
var _iconssprite = require("@vkontakte/icons-sprite");
|
|
20
|
+
var Icon16ChevronDownCircle = (0, _iconssprite.makeIcon)("Icon16ChevronDownCircle", "chevron_down_circle_16", "0 0 16 16", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16" id="chevron_down_circle_16"><path fill-rule="evenodd" d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16Zm.578-5.66a.9.9 0 0 1-1.156 0l-3.1-2.6a.9.9 0 1 1 1.156-1.38L8 8.475l2.522-2.115a.9.9 0 0 1 1.156 1.38l-3.1 2.6Z" clip-rule="evenodd" /></symbol>', 16, 16, false, undefined);
|
|
21
|
+
var _default = Icon16ChevronDownCircle;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: all[name]
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
_export(exports, {
|
|
12
|
+
Icon16ChevronUpCircle: function() {
|
|
13
|
+
return Icon16ChevronUpCircle;
|
|
14
|
+
},
|
|
15
|
+
default: function() {
|
|
16
|
+
return _default;
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
var _iconssprite = require("@vkontakte/icons-sprite");
|
|
20
|
+
var Icon16ChevronUpCircle = (0, _iconssprite.makeIcon)("Icon16ChevronUpCircle", "chevron_up_circle_16", "0 0 16 16", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16" id="chevron_up_circle_16"><path fill-rule="evenodd" d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16Zm.578-10.34a.9.9 0 0 0-1.156 0l-3.1 2.6a.9.9 0 1 0 1.156 1.38L8 7.525l2.522 2.115a.9.9 0 0 0 1.156-1.38l-3.1-2.6Z" clip-rule="evenodd" /></symbol>', 16, 16, false, undefined);
|
|
21
|
+
var _default = Icon16ChevronUpCircle;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: all[name]
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
_export(exports, {
|
|
12
|
+
Icon16Clock: function() {
|
|
13
|
+
return Icon16Clock;
|
|
14
|
+
},
|
|
15
|
+
default: function() {
|
|
16
|
+
return _default;
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
var _iconssprite = require("@vkontakte/icons-sprite");
|
|
20
|
+
var Icon16Clock = (0, _iconssprite.makeIcon)("Icon16Clock", "clock_16", "0 0 16 16", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16" id="clock_16"><path fill-rule="evenodd" d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16Zm.9-11.5a.9.9 0 1 0-1.8 0V8a.9.9 0 0 0 .264.636l2.1 2.1a.9.9 0 1 0 1.272-1.272L8.9 7.627V4.5Z" clip-rule="evenodd" /></symbol>', 16, 16, false, undefined);
|
|
21
|
+
var _default = Icon16Clock;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: all[name]
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
_export(exports, {
|
|
12
|
+
Icon16SyncCircleFillBlack: function() {
|
|
13
|
+
return Icon16SyncCircleFillBlack;
|
|
14
|
+
},
|
|
15
|
+
default: function() {
|
|
16
|
+
return _default;
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
var _iconssprite = require("@vkontakte/icons-sprite");
|
|
20
|
+
var Icon16SyncCircleFillBlack = (0, _iconssprite.makeIcon)("Icon16SyncCircleFillBlack", "sync_circle_fill_black_16", "0 0 16 16", '<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="sync_circle_fill_black_16"><path fill="url(#sync_circle_fill_black_16_a)" fill-rule="evenodd" d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16Z" clip-rule="evenodd" /><path fill="#fff" d="M8.022 4.5A3.499 3.499 0 0 0 4.68 6.967a.75.75 0 1 1-1.433-.44A4.999 4.999 0 0 1 11.5 4.408V3.75a.75.75 0 0 1 1.5 0v2.5a.75.75 0 0 1-.75.75h-2.5a.75.75 0 0 1 0-1.5h.72c-.63-.62-1.495-1-2.448-1Zm4.28 4.035a.75.75 0 0 1 .496.937 4.999 4.999 0 0 1-8.298 2.07v.708a.75.75 0 0 1-1.5 0V9.747a.75.75 0 0 1 .75-.75h2.5a.75.75 0 1 1 0 1.5h-.673a3.5 3.5 0 0 0 5.788-1.467.75.75 0 0 1 .937-.495Z" /><defs><linearGradient id="sync_circle_fill_black_16_a" x1="-8" x2="8" y1="8" y2="24" gradientUnits="userSpaceOnUse"><stop stop-color="#626466" /><stop offset="1" stop-color="#444647" /></linearGradient></defs></symbol>', 16, 16, false, undefined);
|
|
21
|
+
var _default = Icon16SyncCircleFillBlack;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
function _export(target, all) {
|
|
6
|
+
for(var name in all)Object.defineProperty(target, name, {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: all[name]
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
_export(exports, {
|
|
12
|
+
Icon28UserMinusOutline: function() {
|
|
13
|
+
return Icon28UserMinusOutline;
|
|
14
|
+
},
|
|
15
|
+
default: function() {
|
|
16
|
+
return _default;
|
|
17
|
+
}
|
|
18
|
+
});
|
|
19
|
+
var _iconssprite = require("@vkontakte/icons-sprite");
|
|
20
|
+
var Icon28UserMinusOutline = (0, _iconssprite.makeIcon)("Icon28UserMinusOutline", "user_minus_outline_28", "0 0 28 28", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 28 28" id="user_minus_outline_28"><path d="M17.75 15c4.951 0 9.25 1.763 9.25 5.643 0 2.016-.781 2.857-2.456 2.857H10.956c-1.675 0-2.456-.84-2.456-2.857 0-3.88 4.299-5.643 9.25-5.643Zm0 2c-3.946 0-7.25 1.355-7.25 3.643 0 .89-.072.863.372.858l13.672-.001c.536 0 .456.086.456-.857C25 18.355 21.696 17 17.75 17ZM5 11h4a1 1 0 1 1 0 2H1a1 1 0 1 1 0-2h4Zm12.5-8C20.538 3 23 5.461 23 8.5S20.538 14 17.5 14A5.499 5.499 0 0 1 12 8.5C12 5.461 14.461 3 17.5 3Zm0 2A3.499 3.499 0 0 0 14 8.5c0 1.934 1.566 3.5 3.5 3.5S21 10.434 21 8.5 19.434 5 17.5 5Z" /></symbol>', 28, 28, false, undefined);
|
|
21
|
+
var _default = Icon28UserMinusOutline;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { makeIcon } from "@vkontakte/icons-sprite";
|
|
2
|
+
export var Icon16ArrowRightCircle = makeIcon("Icon16ArrowRightCircle", "arrow_right_circle_16", "0 0 16 16", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16" id="arrow_right_circle_16"><path fill-rule="evenodd" d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16ZM9.552 5.28a.9.9 0 1 0-1.304 1.24l.552.58H4.9a.9.9 0 1 0 0 1.8h3.9l-.552.58a.9.9 0 1 0 1.304 1.24l2-2.1a.9.9 0 0 0 0-1.24l-2-2.1Z" clip-rule="evenodd" /></symbol>', 16, 16, false, undefined);
|
|
3
|
+
export default Icon16ArrowRightCircle;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { makeIcon } from "@vkontakte/icons-sprite";
|
|
2
|
+
export var Icon16ChevronDownCircle = makeIcon("Icon16ChevronDownCircle", "chevron_down_circle_16", "0 0 16 16", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16" id="chevron_down_circle_16"><path fill-rule="evenodd" d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16Zm.578-5.66a.9.9 0 0 1-1.156 0l-3.1-2.6a.9.9 0 1 1 1.156-1.38L8 8.475l2.522-2.115a.9.9 0 0 1 1.156 1.38l-3.1 2.6Z" clip-rule="evenodd" /></symbol>', 16, 16, false, undefined);
|
|
3
|
+
export default Icon16ChevronDownCircle;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { makeIcon } from "@vkontakte/icons-sprite";
|
|
2
|
+
export var Icon16ChevronUpCircle = makeIcon("Icon16ChevronUpCircle", "chevron_up_circle_16", "0 0 16 16", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16" id="chevron_up_circle_16"><path fill-rule="evenodd" d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16Zm.578-10.34a.9.9 0 0 0-1.156 0l-3.1 2.6a.9.9 0 1 0 1.156 1.38L8 7.525l2.522 2.115a.9.9 0 0 0 1.156-1.38l-3.1-2.6Z" clip-rule="evenodd" /></symbol>', 16, 16, false, undefined);
|
|
3
|
+
export default Icon16ChevronUpCircle;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { makeIcon } from "@vkontakte/icons-sprite";
|
|
2
|
+
export var Icon16Clock = makeIcon("Icon16Clock", "clock_16", "0 0 16 16", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16" id="clock_16"><path fill-rule="evenodd" d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16Zm.9-11.5a.9.9 0 1 0-1.8 0V8a.9.9 0 0 0 .264.636l2.1 2.1a.9.9 0 1 0 1.272-1.272L8.9 7.627V4.5Z" clip-rule="evenodd" /></symbol>', 16, 16, false, undefined);
|
|
3
|
+
export default Icon16Clock;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { makeIcon } from "@vkontakte/icons-sprite";
|
|
2
|
+
export var Icon16SyncCircleFillBlack = makeIcon("Icon16SyncCircleFillBlack", "sync_circle_fill_black_16", "0 0 16 16", '<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="sync_circle_fill_black_16"><path fill="url(#sync_circle_fill_black_16_a)" fill-rule="evenodd" d="M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16Z" clip-rule="evenodd" /><path fill="#fff" d="M8.022 4.5A3.499 3.499 0 0 0 4.68 6.967a.75.75 0 1 1-1.433-.44A4.999 4.999 0 0 1 11.5 4.408V3.75a.75.75 0 0 1 1.5 0v2.5a.75.75 0 0 1-.75.75h-2.5a.75.75 0 0 1 0-1.5h.72c-.63-.62-1.495-1-2.448-1Zm4.28 4.035a.75.75 0 0 1 .496.937 4.999 4.999 0 0 1-8.298 2.07v.708a.75.75 0 0 1-1.5 0V9.747a.75.75 0 0 1 .75-.75h2.5a.75.75 0 1 1 0 1.5h-.673a3.5 3.5 0 0 0 5.788-1.467.75.75 0 0 1 .937-.495Z" /><defs><linearGradient id="sync_circle_fill_black_16_a" x1="-8" x2="8" y1="8" y2="24" gradientUnits="userSpaceOnUse"><stop stop-color="#626466" /><stop offset="1" stop-color="#444647" /></linearGradient></defs></symbol>', 16, 16, false, undefined);
|
|
3
|
+
export default Icon16SyncCircleFillBlack;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { makeIcon } from "@vkontakte/icons-sprite";
|
|
2
|
+
export var Icon28UserMinusOutline = makeIcon("Icon28UserMinusOutline", "user_minus_outline_28", "0 0 28 28", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 28 28" id="user_minus_outline_28"><path d="M17.75 15c4.951 0 9.25 1.763 9.25 5.643 0 2.016-.781 2.857-2.456 2.857H10.956c-1.675 0-2.456-.84-2.456-2.857 0-3.88 4.299-5.643 9.25-5.643Zm0 2c-3.946 0-7.25 1.355-7.25 3.643 0 .89-.072.863.372.858l13.672-.001c.536 0 .456.086.456-.857C25 18.355 21.696 17 17.75 17ZM5 11h4a1 1 0 1 1 0 2H1a1 1 0 1 1 0-2h4Zm12.5-8C20.538 3 23 5.461 23 8.5S20.538 14 17.5 14A5.499 5.499 0 0 1 12 8.5C12 5.461 14.461 3 17.5 3Zm0 2A3.499 3.499 0 0 0 14 8.5c0 1.934 1.566 3.5 3.5 3.5S21 10.434 21 8.5 19.434 5 17.5 5Z" /></symbol>', 28, 28, false, undefined);
|
|
3
|
+
export default Icon28UserMinusOutline;
|
package/dist/es6/index.js
CHANGED
|
@@ -113,6 +113,7 @@ export { Icon16Advertising } from "./16/advertising_16";
|
|
|
113
113
|
export { Icon16ArchiveOutline } from "./16/archive_outline_16";
|
|
114
114
|
export { Icon16ArrowDownOutline } from "./16/arrow_down_outline_16";
|
|
115
115
|
export { Icon16ArrowLeftOutline } from "./16/arrow_left_outline_16";
|
|
116
|
+
export { Icon16ArrowRightCircle } from "./16/arrow_right_circle_16";
|
|
116
117
|
export { Icon16ArrowRightOutline } from "./16/arrow_right_outline_16";
|
|
117
118
|
export { Icon16ArrowshapeRightOutline } from "./16/arrowshape_right_outline_16";
|
|
118
119
|
export { Icon16ArrowsUpDown } from "./16/arrows_up_down_16";
|
|
@@ -148,10 +149,13 @@ export { Icon16CheckDoubleOutline } from "./16/check_double_outline_16";
|
|
|
148
149
|
export { Icon16CheckOutline } from "./16/check_outline_16";
|
|
149
150
|
export { Icon16CheckSquareOutline } from "./16/check_square_outline_16";
|
|
150
151
|
export { Icon16Chevron } from "./16/chevron_16";
|
|
152
|
+
export { Icon16ChevronDownCircle } from "./16/chevron_down_circle_16";
|
|
151
153
|
export { Icon16ChevronLeft } from "./16/chevron_left_16";
|
|
152
154
|
export { Icon16ChevronOutline } from "./16/chevron_outline_16";
|
|
153
155
|
export { Icon16ChevronRightCircleOutline } from "./16/chevron_right_circle_outline_16";
|
|
156
|
+
export { Icon16ChevronUpCircle } from "./16/chevron_up_circle_16";
|
|
154
157
|
export { Icon16Clear } from "./16/clear_16";
|
|
158
|
+
export { Icon16Clock } from "./16/clock_16";
|
|
155
159
|
export { Icon16ClockCircleFill } from "./16/clock_circle_fill_16";
|
|
156
160
|
export { Icon16ClockOutline } from "./16/clock_outline_16";
|
|
157
161
|
export { Icon16Cloud } from "./16/cloud_16";
|
|
@@ -367,6 +371,7 @@ export { Icon16Story } from "./16/story_16";
|
|
|
367
371
|
export { Icon16StoryOutline } from "./16/story_outline_16";
|
|
368
372
|
export { Icon16Sun } from "./16/sun_16";
|
|
369
373
|
export { Icon16Sync } from "./16/sync_16";
|
|
374
|
+
export { Icon16SyncCircleFillBlack } from "./16/sync_circle_fill_black_16";
|
|
370
375
|
export { Icon16TableOutline } from "./16/table_outline_16";
|
|
371
376
|
export { Icon16Tag } from "./16/tag_16";
|
|
372
377
|
export { Icon16TearOffFlyer } from "./16/tear_off_flyer_16";
|
|
@@ -2226,6 +2231,7 @@ export { Icon28UserCircleOutline } from "./28/user_circle_outline_28";
|
|
|
2226
2231
|
export { Icon28UserIncomingOutline } from "./28/user_incoming_outline_28";
|
|
2227
2232
|
export { Icon28UserMicrophoneBadgeOutline } from "./28/user_microphone_badge_outline_28";
|
|
2228
2233
|
export { Icon28UserMicrophoneBadgeSlashOutline } from "./28/user_microphone_badge_slash_outline_28";
|
|
2234
|
+
export { Icon28UserMinusOutline } from "./28/user_minus_outline_28";
|
|
2229
2235
|
export { Icon28UserOutgoingOutline } from "./28/user_outgoing_outline_28";
|
|
2230
2236
|
export { Icon28UserOutline } from "./28/user_outline_28";
|
|
2231
2237
|
export { Icon28UserRectangleHorizontalOutline } from "./28/user_rectangle_horizontal_outline_28";
|