@vkontakte/icons 2.6.0 → 2.7.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/20/add_alt.js +8 -0
- package/dist/20/check_alt.js +8 -0
- package/dist/es6/20/add_alt.js +2 -0
- package/dist/es6/20/check_alt.js +2 -0
- package/dist/es6/index.js +2 -0
- package/dist/icons-map.json +1 -1
- package/dist/index.js +14 -0
- package/dist/typings/20/add_alt.d.ts +12 -0
- package/dist/typings/20/check_alt.d.ts +12 -0
- package/dist/typings/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/svg/20/add_alt_20.svg +1 -0
- package/src/svg/20/check_alt_20.svg +1 -0
- package/ts/20/add_alt.ts +24 -0
- package/ts/20/check_alt.ts +24 -0
- package/ts/index.ts +2 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
exports.default = void 0;
|
|
6
|
+
var _svgIcon = require("../SvgIcon");
|
|
7
|
+
var _default = (0, _svgIcon).makeIcon("Icon20AddAlt", "add_alt_20", "0 0 20 20", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20" id="add_alt_20"><path d="M10 3c-.644 0-1.167.522-1.167 1.167v4.666H4.167c-.599 0-1.092.45-1.16 1.03L3 10c0 .644.522 1.167 1.167 1.167h4.666v4.666c0 .599.45 1.092 1.03 1.16L10 17c.644 0 1.167-.522 1.167-1.167v-4.666h4.666c.599 0 1.092-.45 1.16-1.03L17 10c0-.644-.522-1.167-1.167-1.167h-4.666V4.167c0-.599-.45-1.092-1.03-1.16L10 3Z" /></symbol>', 20, 20, false, undefined);
|
|
8
|
+
exports.default = _default;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", {
|
|
3
|
+
value: true
|
|
4
|
+
});
|
|
5
|
+
exports.default = void 0;
|
|
6
|
+
var _svgIcon = require("../SvgIcon");
|
|
7
|
+
var _default = (0, _svgIcon).makeIcon("Icon20CheckAlt", "check_alt_20", "0 0 20 20", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20" id="check_alt_20"><path fill-rule="evenodd" d="M16.659 5.344a1.162 1.162 0 0 1 0 1.645L8.82 14.812a1.167 1.167 0 0 1-1.649 0l-3.83-3.823a1.162 1.162 0 0 1 0-1.646 1.167 1.167 0 0 1 1.648 0l3.007 3 7.013-7a1.167 1.167 0 0 1 1.649 0Z" clip-rule="evenodd" /></symbol>', 20, 20, false, undefined);
|
|
8
|
+
exports.default = _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { makeIcon } from "../SvgIcon";
|
|
2
|
+
export default makeIcon("Icon20AddAlt", "add_alt_20", "0 0 20 20", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20" id="add_alt_20"><path d="M10 3c-.644 0-1.167.522-1.167 1.167v4.666H4.167c-.599 0-1.092.45-1.16 1.03L3 10c0 .644.522 1.167 1.167 1.167h4.666v4.666c0 .599.45 1.092 1.03 1.16L10 17c.644 0 1.167-.522 1.167-1.167v-4.666h4.666c.599 0 1.092-.45 1.16-1.03L17 10c0-.644-.522-1.167-1.167-1.167h-4.666V4.167c0-.599-.45-1.092-1.03-1.16L10 3Z" /></symbol>', 20, 20, false, undefined);
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { makeIcon } from "../SvgIcon";
|
|
2
|
+
export default makeIcon("Icon20CheckAlt", "check_alt_20", "0 0 20 20", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20" id="check_alt_20"><path fill-rule="evenodd" d="M16.659 5.344a1.162 1.162 0 0 1 0 1.645L8.82 14.812a1.167 1.167 0 0 1-1.649 0l-3.83-3.823a1.162 1.162 0 0 1 0-1.646 1.167 1.167 0 0 1 1.648 0l3.007 3 7.013-7a1.167 1.167 0 0 1 1.649 0Z" clip-rule="evenodd" /></symbol>', 20, 20, false, undefined);
|
package/dist/es6/index.js
CHANGED
|
@@ -361,6 +361,7 @@ export { default as Icon204Square } from "./20/4_square";
|
|
|
361
361
|
export { default as Icon20AccessibilityOutline } from "./20/accessibility_outline";
|
|
362
362
|
export { default as Icon20AchievementCircleFillBlue } from "./20/achievement_circle_fill_blue";
|
|
363
363
|
export { default as Icon20Add } from "./20/add";
|
|
364
|
+
export { default as Icon20AddAlt } from "./20/add_alt";
|
|
364
365
|
export { default as Icon20AddCircle } from "./20/add_circle";
|
|
365
366
|
export { default as Icon20AddCircleFillBlue } from "./20/add_circle_fill_blue";
|
|
366
367
|
export { default as Icon20AddCircleFillGray } from "./20/add_circle_fill_gray";
|
|
@@ -420,6 +421,7 @@ export { default as Icon20CarOutline } from "./20/car_outline";
|
|
|
420
421
|
export { default as Icon20CashOutOutline } from "./20/cash_out_outline";
|
|
421
422
|
export { default as Icon20Chain } from "./20/chain";
|
|
422
423
|
export { default as Icon20Check } from "./20/check";
|
|
424
|
+
export { default as Icon20CheckAlt } from "./20/check_alt";
|
|
423
425
|
export { default as Icon20CheckbackPrizeOutline } from "./20/checkback_prize_outline";
|
|
424
426
|
export { default as Icon20CheckBoxIndetermanate } from "./20/check_box_indetermanate";
|
|
425
427
|
export { default as Icon20CheckBoxOff } from "./20/check_box_off";
|