@vkontakte/icons 2.29.0 → 2.31.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.
Files changed (61) hide show
  1. package/dist/20/crop_outline.js +12 -0
  2. package/dist/20/transparency_outline.js +12 -0
  3. package/dist/24/brackets_slash_outline.js +12 -0
  4. package/dist/24/marker_outline.js +12 -0
  5. package/dist/24/picture.js +12 -0
  6. package/dist/24/text_bold_outline.js +12 -0
  7. package/dist/24/text_heading_1_outline.js +12 -0
  8. package/dist/24/text_heading_2_outline.js +12 -0
  9. package/dist/24/text_italic_outline.js +12 -0
  10. package/dist/24/text_strikethrough_outline.js +12 -0
  11. package/dist/24/text_underline_outline.js +12 -0
  12. package/dist/es6/20/crop_outline.js +2 -0
  13. package/dist/es6/20/transparency_outline.js +2 -0
  14. package/dist/es6/24/brackets_slash_outline.js +2 -0
  15. package/dist/es6/24/marker_outline.js +2 -0
  16. package/dist/es6/24/picture.js +2 -0
  17. package/dist/es6/24/text_bold_outline.js +2 -0
  18. package/dist/es6/24/text_heading_1_outline.js +2 -0
  19. package/dist/es6/24/text_heading_2_outline.js +2 -0
  20. package/dist/es6/24/text_italic_outline.js +2 -0
  21. package/dist/es6/24/text_strikethrough_outline.js +2 -0
  22. package/dist/es6/24/text_underline_outline.js +2 -0
  23. package/dist/es6/index.js +11 -0
  24. package/dist/icons-map.json +1 -1
  25. package/dist/index.js +46 -2
  26. package/dist/typings/20/crop_outline.d.ts +12 -0
  27. package/dist/typings/20/transparency_outline.d.ts +12 -0
  28. package/dist/typings/24/brackets_slash_outline.d.ts +12 -0
  29. package/dist/typings/24/marker_outline.d.ts +12 -0
  30. package/dist/typings/24/picture.d.ts +12 -0
  31. package/dist/typings/24/text_bold_outline.d.ts +12 -0
  32. package/dist/typings/24/text_heading_1_outline.d.ts +12 -0
  33. package/dist/typings/24/text_heading_2_outline.d.ts +12 -0
  34. package/dist/typings/24/text_italic_outline.d.ts +12 -0
  35. package/dist/typings/24/text_strikethrough_outline.d.ts +12 -0
  36. package/dist/typings/24/text_underline_outline.d.ts +12 -0
  37. package/dist/typings/index.d.ts +11 -0
  38. package/package.json +1 -1
  39. package/src/svg/20/crop_outline_20.svg +1 -0
  40. package/src/svg/20/transparency_outline_20.svg +1 -0
  41. package/src/svg/24/brackets_slash_outline_24.svg +1 -0
  42. package/src/svg/24/marker_outline_24.svg +1 -0
  43. package/src/svg/24/picture_24.svg +1 -0
  44. package/src/svg/24/text_bold_outline_24.svg +1 -0
  45. package/src/svg/24/text_heading_1_outline_24.svg +1 -0
  46. package/src/svg/24/text_heading_2_outline_24.svg +1 -0
  47. package/src/svg/24/text_italic_outline_24.svg +1 -0
  48. package/src/svg/24/text_strikethrough_outline_24.svg +1 -0
  49. package/src/svg/24/text_underline_outline_24.svg +1 -0
  50. package/ts/20/crop_outline.ts +24 -0
  51. package/ts/20/transparency_outline.ts +24 -0
  52. package/ts/24/brackets_slash_outline.ts +24 -0
  53. package/ts/24/marker_outline.ts +24 -0
  54. package/ts/24/picture.ts +24 -0
  55. package/ts/24/text_bold_outline.ts +24 -0
  56. package/ts/24/text_heading_1_outline.ts +24 -0
  57. package/ts/24/text_heading_2_outline.ts +24 -0
  58. package/ts/24/text_italic_outline.ts +24 -0
  59. package/ts/24/text_strikethrough_outline.ts +24 -0
  60. package/ts/24/text_underline_outline.ts +24 -0
  61. package/ts/index.ts +11 -0
@@ -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)("Icon20CropOutline", "crop_outline_20", "0 0 20 20", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20" id="crop_outline_20"><path fill-rule="evenodd" d="M6.001 1.75a.75.75 0 1 0-1.5 0v2.744H1.75a.75.75 0 0 0 0 1.5H4.5v7.092a2.417 2.417 0 0 0 2.417 2.418h7.085v2.746a.75.75 0 1 0 1.5 0v-2.746h2.747a.75.75 0 0 0 0-1.5H6.918a.917.917 0 0 1-.917-.918V1.75Zm2.75 2.747a.75.75 0 0 0 0 1.5h4.342c.506 0 .917.412.917.918v4.33a.75.75 0 1 0 1.5 0v-4.33a2.417 2.417 0 0 0-2.417-2.418H8.752Z" 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)("Icon20TransparencyOutline", "transparency_outline_20", "0 0 20 20", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20" id="transparency_outline_20"><path fill-rule="evenodd" d="M8 13c.553 0 1.086-.09 1.583-.256l-2.327-2.327a4.995 4.995 0 0 0-.172 2.5c.297.054.603.083.916.083Zm-.017-3.978 2.995 2.995a5.032 5.032 0 0 0 1.039-1.04L9.022 7.984a5.03 5.03 0 0 0-1.04 1.04Zm2.433-1.766 2.328 2.327a4.995 4.995 0 0 0 .172-2.5 5.027 5.027 0 0 0-2.5.173ZM14.14 5.86a6.5 6.5 0 1 0-8.28 8.28 6.5 6.5 0 1 0 8.28-8.28Zm.351 1.804a5 5 0 1 1-6.828 6.828 6.5 6.5 0 0 0 6.828-6.828Z" 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)("Icon24BracketsSlashOutline", "brackets_slash_outline_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" id="brackets_slash_outline_24"><path fill-rule="evenodd" d="M7.136 6.266a.9.9 0 0 1 0 1.273L2.674 12l4.462 4.461a.9.9 0 0 1-1.273 1.273L.764 12.637a.9.9 0 0 1 0-1.273l5.099-5.098a.9.9 0 0 1 1.273 0Zm9.73 0a.9.9 0 0 0 0 1.273L21.328 12l-4.462 4.461a.9.9 0 1 0 1.272 1.273l5.099-5.098a.9.9 0 0 0 0-1.273l-5.099-5.098a.9.9 0 0 0-1.272 0ZM14.79 3.035a.9.9 0 0 1 .592 1.127L10.34 20.384a.9.9 0 0 1-1.719-.535l5.042-16.221a.9.9 0 0 1 1.126-.593Z" 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)("Icon24MarkerOutline", "marker_outline_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" id="marker_outline_24"><path fill-rule="evenodd" d="M3.5 21h1.7c.147 0 .22-.012.29-.029a.6.6 0 0 0 .173-.072c.06-.037.113-.089.216-.192l.693-.694h.084l1.154-.004c1.201-.004 1.802-.006 2.365-.147a4.8 4.8 0 0 0 1.41-.604c.49-.31.906-.744 1.738-1.61l5.82-6.064c1.044-1.088 1.563-1.632 1.745-2.249a2.64 2.64 0 0 0-.052-1.653c-.22-.604-.772-1.114-1.883-2.134l-.867-.797-.093-.085c-1.003-.922-1.522-1.4-2.104-1.566a2.64 2.64 0 0 0-1.606.049c-.572.202-1.063.71-2.012 1.695l-.083.086-6.033 6.255c-.795.824-1.192 1.236-1.476 1.713a4.8 4.8 0 0 0-.55 1.36c-.126.54-.126 1.113-.126 2.258v.854c0 .13 0 .194.003.255a2.4 2.4 0 0 0 .066.449l-1.275 1.275c-.514.514-.78.771-.797.992a.593.593 0 0 0 .2.503c.168.144.573.156 1.3.156ZM17.736 6.874l-.867-.797c-.555-.51-.892-.817-1.163-1.028a2.193 2.193 0 0 0-.257-.18.5.5 0 0 0-.046-.023l-.008-.003h-.002a.841.841 0 0 0-.511.015h-.002l-.007.004a.508.508 0 0 0-.046.027 2.195 2.195 0 0 0-.245.194c-.257.226-.576.555-1.098 1.096l-5.304 5.5 4.447 4.094 5.217-5.436c.543-.565.874-.912 1.1-1.19.178-.219.216-.308.221-.322a.84.84 0 0 0-.016-.526c-.006-.013-.05-.1-.241-.307-.243-.263-.595-.588-1.172-1.118Zm-11.51 6.945a3 3 0 0 0-.344.85c-.068.29-.079.619-.079 1.847v1.017a.6.6 0 0 0 .251.458l.024.016.114.073.062.04.013.008a.6.6 0 0 0 .294.085h.089l1.153-.004c1.29-.004 1.634-.018 1.937-.093a3 3 0 0 0 .881-.378c.184-.117.36-.27.756-.67l-4.445-4.092c-.437.462-.59.649-.706.843Z" 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)("Icon24Picture", "picture_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" id="picture_24"><path d="M18 3a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h12Zm-3.275 9.322a.375.375 0 0 0-.526.066L11 16.51l-2.202-2.651a.375.375 0 0 0-.584.01L5.47 17.394a.375.375 0 0 0 .296.605H18.25a.375.375 0 0 0 .3-.6l-3.755-5.007a.372.372 0 0 0-.07-.071Z" /></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)("Icon24TextBoldOutline", "text_bold_outline_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" id="text_bold_outline_24"><path d="M11.99 19.001c1.036 0 1.683-.695 1.683-1.799v-4.11h.057l4.22 5.214c.351.447.77.695 1.396.695.932 0 1.654-.714 1.654-1.646 0-.41-.085-.819-.428-1.228l-3.868-4.586 3.773-4.264c.266-.304.352-.609.352-.942 0-.866-.665-1.484-1.568-1.484-.475 0-.827.152-1.16.561l-4.362 5.196h-.066V6.649c0-1.103-.647-1.798-1.682-1.798-1.036 0-1.683.695-1.683 1.798v3.959h-.066L5.899 5.412c-.324-.4-.685-.561-1.17-.561-.902 0-1.567.618-1.567 1.475 0 .342.085.685.351.99l3.754 4.282-3.849 4.539A1.849 1.849 0 0 0 3 17.364c0 .933.703 1.637 1.644 1.637.618 0 1.046-.248 1.397-.695l4.21-5.214h.057v4.11c0 1.104.647 1.799 1.683 1.799Z" /></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)("Icon24TextHeading1Outline", "text_heading_1_outline_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" id="text_heading_1_outline_24"><path d="M18.205 18.85c0 .736.254 1.15.895 1.15.637 0 .9-.41.9-1.15v-4.755c0-.787-.36-1.295-.9-1.295-.397 0-.91.145-1.321.414l-.675.44c-.335.218-.508.493-.508.809 0 .425.278.725.67.725.192 0 .345-.062.661-.264l.268-.171h.01v4.097ZM4.896 4.002a.9.9 0 0 1 .9.9V11H13V4.902a.9.9 0 1 1 1.8 0V19.1a.9.9 0 0 1-1.8 0v-6.3H5.796v6.299a.9.9 0 0 1-1.8 0V4.902a.9.9 0 0 1 .9-.9Z" 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)("Icon24TextHeading2Outline", "text_heading_2_outline_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" id="text_heading_2_outline_24"><path d="M17.465 20.004h3.759c.497 0 .778-.305.778-.75 0-.455-.281-.75-.778-.75h-2.147v-.038l1.233-1.064c1.05-.909 1.518-1.383 1.518-2.292 0-1.228-1.05-2.058-2.695-2.058-1.181 0-2.133.502-2.489 1.308-.06.14-.089.286-.089.44 0 .479.31.774.816.774.38 0 .619-.14.881-.525.253-.365.497-.53.853-.53.483 0 .811.296.811.722 0 .404-.216.699-.975 1.35l-1.86 1.594c-.376.314-.545.596-.545.961 0 .497.282.858.928.858ZM4.896 4.002a.9.9 0 0 1 .9.9V11H13V4.902a.9.9 0 1 1 1.8 0V19.1a.9.9 0 0 1-1.8 0v-6.3H5.796v6.299a.9.9 0 0 1-1.8 0V4.902a.9.9 0 0 1 .9-.9Z" 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)("Icon24TextItalicOutline", "text_italic_outline_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" id="text_italic_outline_24"><path fill-rule="evenodd" d="M10.648 5.866a.9.9 0 1 0-1.767-.332l-2.365 12.6a.9.9 0 1 0 1.766.332l1-5.329 4.449 5.716a.898.898 0 0 0 1.261.157.9.9 0 0 0 .157-1.263l-4.397-5.65 6.161-5.738a.9.9 0 0 0 .046-1.272.898.898 0 0 0-1.27-.046l-5.922 5.516.88-4.69Z" 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)("Icon24TextStrikethroughOutline", "text_strikethrough_outline_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" id="text_strikethrough_outline_24"><path fill-rule="evenodd" d="m6.365 20.225 1.722-4.855h7.81l1.735 4.854c.105.297.23.487.377.603.144.113.33.174.594.174.601 0 .987-.37.987-.841 0-.14-.032-.312-.133-.59l-2.874-7.767H19.1a.9.9 0 0 0 0-1.8h-3.183l-2.59-6.998c-.136-.365-.309-.612-.515-.769-.204-.155-.459-.235-.787-.235-.356 0-.628.084-.842.243-.215.16-.39.41-.526.774l-2.582 6.985H4.9a.9.9 0 0 0 0 1.8h2.51L4.54 19.57c-.101.278-.133.452-.133.59 0 .473.385.843.986.843.265 0 .451-.061.595-.175.147-.116.272-.305.377-.602Zm2.95-8.422-.684 1.95h6.735l-.684-1.95H9.315Zm4.735-1.8-1.87-5.329h-.363l-1.87 5.329h4.103Z" 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)("Icon24TextUnderlineOutline", "text_underline_outline_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" id="text_underline_outline_24"><path fill-rule="evenodd" d="M14.204 11.893c-.682.521-1.744.905-2.944.905-3.109 0-4.758-1.972-4.758-4.54V5.79c0-.606.371-.99.967-.99.587 0 .967.384.967.99v2.4c0 1.8 1.054 2.902 2.988 2.902 1.252 0 2.288-.444 2.901-1.05v-4.25c0-.607.38-.991.968-.991.595 0 .967.384.967.99V16.4c0 .607-.372.99-.968.99-.587 0-.967-.384-.967-.99v-4.507h-.12ZM7.41 19.202a.904.904 0 0 0-.909.899c0 .497.407.899.91.899h9.18c.503 0 .91-.402.91-.899 0-.496-.407-.9-.91-.9H7.41Z" clip-rule="evenodd" /></symbol>', 24, 24, false, undefined);
@@ -0,0 +1,2 @@
1
+ import { makeIcon } from "@vkontakte/icons-sprite";
2
+ export default makeIcon("Icon20CropOutline", "crop_outline_20", "0 0 20 20", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20" id="crop_outline_20"><path fill-rule="evenodd" d="M6.001 1.75a.75.75 0 1 0-1.5 0v2.744H1.75a.75.75 0 0 0 0 1.5H4.5v7.092a2.417 2.417 0 0 0 2.417 2.418h7.085v2.746a.75.75 0 1 0 1.5 0v-2.746h2.747a.75.75 0 0 0 0-1.5H6.918a.917.917 0 0 1-.917-.918V1.75Zm2.75 2.747a.75.75 0 0 0 0 1.5h4.342c.506 0 .917.412.917.918v4.33a.75.75 0 1 0 1.5 0v-4.33a2.417 2.417 0 0 0-2.417-2.418H8.752Z" clip-rule="evenodd" /></symbol>', 20, 20, false, undefined);
@@ -0,0 +1,2 @@
1
+ import { makeIcon } from "@vkontakte/icons-sprite";
2
+ export default makeIcon("Icon20TransparencyOutline", "transparency_outline_20", "0 0 20 20", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 20 20" id="transparency_outline_20"><path fill-rule="evenodd" d="M8 13c.553 0 1.086-.09 1.583-.256l-2.327-2.327a4.995 4.995 0 0 0-.172 2.5c.297.054.603.083.916.083Zm-.017-3.978 2.995 2.995a5.032 5.032 0 0 0 1.039-1.04L9.022 7.984a5.03 5.03 0 0 0-1.04 1.04Zm2.433-1.766 2.328 2.327a4.995 4.995 0 0 0 .172-2.5 5.027 5.027 0 0 0-2.5.173ZM14.14 5.86a6.5 6.5 0 1 0-8.28 8.28 6.5 6.5 0 1 0 8.28-8.28Zm.351 1.804a5 5 0 1 1-6.828 6.828 6.5 6.5 0 0 0 6.828-6.828Z" clip-rule="evenodd" /></symbol>', 20, 20, false, undefined);
@@ -0,0 +1,2 @@
1
+ import { makeIcon } from "@vkontakte/icons-sprite";
2
+ export default makeIcon("Icon24BracketsSlashOutline", "brackets_slash_outline_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" id="brackets_slash_outline_24"><path fill-rule="evenodd" d="M7.136 6.266a.9.9 0 0 1 0 1.273L2.674 12l4.462 4.461a.9.9 0 0 1-1.273 1.273L.764 12.637a.9.9 0 0 1 0-1.273l5.099-5.098a.9.9 0 0 1 1.273 0Zm9.73 0a.9.9 0 0 0 0 1.273L21.328 12l-4.462 4.461a.9.9 0 1 0 1.272 1.273l5.099-5.098a.9.9 0 0 0 0-1.273l-5.099-5.098a.9.9 0 0 0-1.272 0ZM14.79 3.035a.9.9 0 0 1 .592 1.127L10.34 20.384a.9.9 0 0 1-1.719-.535l5.042-16.221a.9.9 0 0 1 1.126-.593Z" clip-rule="evenodd" /></symbol>', 24, 24, false, undefined);
@@ -0,0 +1,2 @@
1
+ import { makeIcon } from "@vkontakte/icons-sprite";
2
+ export default makeIcon("Icon24MarkerOutline", "marker_outline_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" id="marker_outline_24"><path fill-rule="evenodd" d="M3.5 21h1.7c.147 0 .22-.012.29-.029a.6.6 0 0 0 .173-.072c.06-.037.113-.089.216-.192l.693-.694h.084l1.154-.004c1.201-.004 1.802-.006 2.365-.147a4.8 4.8 0 0 0 1.41-.604c.49-.31.906-.744 1.738-1.61l5.82-6.064c1.044-1.088 1.563-1.632 1.745-2.249a2.64 2.64 0 0 0-.052-1.653c-.22-.604-.772-1.114-1.883-2.134l-.867-.797-.093-.085c-1.003-.922-1.522-1.4-2.104-1.566a2.64 2.64 0 0 0-1.606.049c-.572.202-1.063.71-2.012 1.695l-.083.086-6.033 6.255c-.795.824-1.192 1.236-1.476 1.713a4.8 4.8 0 0 0-.55 1.36c-.126.54-.126 1.113-.126 2.258v.854c0 .13 0 .194.003.255a2.4 2.4 0 0 0 .066.449l-1.275 1.275c-.514.514-.78.771-.797.992a.593.593 0 0 0 .2.503c.168.144.573.156 1.3.156ZM17.736 6.874l-.867-.797c-.555-.51-.892-.817-1.163-1.028a2.193 2.193 0 0 0-.257-.18.5.5 0 0 0-.046-.023l-.008-.003h-.002a.841.841 0 0 0-.511.015h-.002l-.007.004a.508.508 0 0 0-.046.027 2.195 2.195 0 0 0-.245.194c-.257.226-.576.555-1.098 1.096l-5.304 5.5 4.447 4.094 5.217-5.436c.543-.565.874-.912 1.1-1.19.178-.219.216-.308.221-.322a.84.84 0 0 0-.016-.526c-.006-.013-.05-.1-.241-.307-.243-.263-.595-.588-1.172-1.118Zm-11.51 6.945a3 3 0 0 0-.344.85c-.068.29-.079.619-.079 1.847v1.017a.6.6 0 0 0 .251.458l.024.016.114.073.062.04.013.008a.6.6 0 0 0 .294.085h.089l1.153-.004c1.29-.004 1.634-.018 1.937-.093a3 3 0 0 0 .881-.378c.184-.117.36-.27.756-.67l-4.445-4.092c-.437.462-.59.649-.706.843Z" clip-rule="evenodd" /></symbol>', 24, 24, false, undefined);
@@ -0,0 +1,2 @@
1
+ import { makeIcon } from "@vkontakte/icons-sprite";
2
+ export default makeIcon("Icon24Picture", "picture_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" id="picture_24"><path d="M18 3a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h12Zm-3.275 9.322a.375.375 0 0 0-.526.066L11 16.51l-2.202-2.651a.375.375 0 0 0-.584.01L5.47 17.394a.375.375 0 0 0 .296.605H18.25a.375.375 0 0 0 .3-.6l-3.755-5.007a.372.372 0 0 0-.07-.071Z" /></symbol>', 24, 24, false, undefined);
@@ -0,0 +1,2 @@
1
+ import { makeIcon } from "@vkontakte/icons-sprite";
2
+ export default makeIcon("Icon24TextBoldOutline", "text_bold_outline_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" id="text_bold_outline_24"><path d="M11.99 19.001c1.036 0 1.683-.695 1.683-1.799v-4.11h.057l4.22 5.214c.351.447.77.695 1.396.695.932 0 1.654-.714 1.654-1.646 0-.41-.085-.819-.428-1.228l-3.868-4.586 3.773-4.264c.266-.304.352-.609.352-.942 0-.866-.665-1.484-1.568-1.484-.475 0-.827.152-1.16.561l-4.362 5.196h-.066V6.649c0-1.103-.647-1.798-1.682-1.798-1.036 0-1.683.695-1.683 1.798v3.959h-.066L5.899 5.412c-.324-.4-.685-.561-1.17-.561-.902 0-1.567.618-1.567 1.475 0 .342.085.685.351.99l3.754 4.282-3.849 4.539A1.849 1.849 0 0 0 3 17.364c0 .933.703 1.637 1.644 1.637.618 0 1.046-.248 1.397-.695l4.21-5.214h.057v4.11c0 1.104.647 1.799 1.683 1.799Z" /></symbol>', 24, 24, false, undefined);
@@ -0,0 +1,2 @@
1
+ import { makeIcon } from "@vkontakte/icons-sprite";
2
+ export default makeIcon("Icon24TextHeading1Outline", "text_heading_1_outline_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" id="text_heading_1_outline_24"><path d="M18.205 18.85c0 .736.254 1.15.895 1.15.637 0 .9-.41.9-1.15v-4.755c0-.787-.36-1.295-.9-1.295-.397 0-.91.145-1.321.414l-.675.44c-.335.218-.508.493-.508.809 0 .425.278.725.67.725.192 0 .345-.062.661-.264l.268-.171h.01v4.097ZM4.896 4.002a.9.9 0 0 1 .9.9V11H13V4.902a.9.9 0 1 1 1.8 0V19.1a.9.9 0 0 1-1.8 0v-6.3H5.796v6.299a.9.9 0 0 1-1.8 0V4.902a.9.9 0 0 1 .9-.9Z" clip-rule="evenodd" /></symbol>', 24, 24, false, undefined);
@@ -0,0 +1,2 @@
1
+ import { makeIcon } from "@vkontakte/icons-sprite";
2
+ export default makeIcon("Icon24TextHeading2Outline", "text_heading_2_outline_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" id="text_heading_2_outline_24"><path d="M17.465 20.004h3.759c.497 0 .778-.305.778-.75 0-.455-.281-.75-.778-.75h-2.147v-.038l1.233-1.064c1.05-.909 1.518-1.383 1.518-2.292 0-1.228-1.05-2.058-2.695-2.058-1.181 0-2.133.502-2.489 1.308-.06.14-.089.286-.089.44 0 .479.31.774.816.774.38 0 .619-.14.881-.525.253-.365.497-.53.853-.53.483 0 .811.296.811.722 0 .404-.216.699-.975 1.35l-1.86 1.594c-.376.314-.545.596-.545.961 0 .497.282.858.928.858ZM4.896 4.002a.9.9 0 0 1 .9.9V11H13V4.902a.9.9 0 1 1 1.8 0V19.1a.9.9 0 0 1-1.8 0v-6.3H5.796v6.299a.9.9 0 0 1-1.8 0V4.902a.9.9 0 0 1 .9-.9Z" clip-rule="evenodd" /></symbol>', 24, 24, false, undefined);
@@ -0,0 +1,2 @@
1
+ import { makeIcon } from "@vkontakte/icons-sprite";
2
+ export default makeIcon("Icon24TextItalicOutline", "text_italic_outline_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" id="text_italic_outline_24"><path fill-rule="evenodd" d="M10.648 5.866a.9.9 0 1 0-1.767-.332l-2.365 12.6a.9.9 0 1 0 1.766.332l1-5.329 4.449 5.716a.898.898 0 0 0 1.261.157.9.9 0 0 0 .157-1.263l-4.397-5.65 6.161-5.738a.9.9 0 0 0 .046-1.272.898.898 0 0 0-1.27-.046l-5.922 5.516.88-4.69Z" clip-rule="evenodd" /></symbol>', 24, 24, false, undefined);
@@ -0,0 +1,2 @@
1
+ import { makeIcon } from "@vkontakte/icons-sprite";
2
+ export default makeIcon("Icon24TextStrikethroughOutline", "text_strikethrough_outline_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" id="text_strikethrough_outline_24"><path fill-rule="evenodd" d="m6.365 20.225 1.722-4.855h7.81l1.735 4.854c.105.297.23.487.377.603.144.113.33.174.594.174.601 0 .987-.37.987-.841 0-.14-.032-.312-.133-.59l-2.874-7.767H19.1a.9.9 0 0 0 0-1.8h-3.183l-2.59-6.998c-.136-.365-.309-.612-.515-.769-.204-.155-.459-.235-.787-.235-.356 0-.628.084-.842.243-.215.16-.39.41-.526.774l-2.582 6.985H4.9a.9.9 0 0 0 0 1.8h2.51L4.54 19.57c-.101.278-.133.452-.133.59 0 .473.385.843.986.843.265 0 .451-.061.595-.175.147-.116.272-.305.377-.602Zm2.95-8.422-.684 1.95h6.735l-.684-1.95H9.315Zm4.735-1.8-1.87-5.329h-.363l-1.87 5.329h4.103Z" clip-rule="evenodd" /></symbol>', 24, 24, false, undefined);
@@ -0,0 +1,2 @@
1
+ import { makeIcon } from "@vkontakte/icons-sprite";
2
+ export default makeIcon("Icon24TextUnderlineOutline", "text_underline_outline_24", "0 0 24 24", '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" id="text_underline_outline_24"><path fill-rule="evenodd" d="M14.204 11.893c-.682.521-1.744.905-2.944.905-3.109 0-4.758-1.972-4.758-4.54V5.79c0-.606.371-.99.967-.99.587 0 .967.384.967.99v2.4c0 1.8 1.054 2.902 2.988 2.902 1.252 0 2.288-.444 2.901-1.05v-4.25c0-.607.38-.991.968-.991.595 0 .967.384.967.99V16.4c0 .607-.372.99-.968.99-.587 0-.967-.384-.967-.99v-4.507h-.12ZM7.41 19.202a.904.904 0 0 0-.909.899c0 .497.407.899.91.899h9.18c.503 0 .91-.402.91-.899 0-.496-.407-.9-.91-.9H7.41Z" clip-rule="evenodd" /></symbol>', 24, 24, false, undefined);
package/dist/es6/index.js CHANGED
@@ -497,6 +497,7 @@ export { default as Icon20ComputerOutline } from "./20/computer_outline";
497
497
  export { default as Icon20CookieOutline } from "./20/cookie_outline";
498
498
  export { default as Icon20CopyOutline } from "./20/copy_outline";
499
499
  export { default as Icon20CopyrightOutline } from "./20/copyright_outline";
500
+ export { default as Icon20CropOutline } from "./20/crop_outline";
500
501
  export { default as Icon20CrownCircleFillVkDating } from "./20/crown_circle_fill_vk_dating";
501
502
  export { default as Icon20CubeBoxOutline } from "./20/cube_box_outline";
502
503
  export { default as Icon20CursorOutline } from "./20/cursor_outline";
@@ -809,6 +810,7 @@ export { default as Icon20ThumbsUpCircleFillGreen } from "./20/thumbs_up_circle_
809
810
  export { default as Icon20ThumbsUpOutline } from "./20/thumbs_up_outline";
810
811
  export { default as Icon20TicketOutline } from "./20/ticket_outline";
811
812
  export { default as Icon20TouchIdOutline } from "./20/touch_id_outline";
813
+ export { default as Icon20TransparencyOutline } from "./20/transparency_outline";
812
814
  export { default as Icon20TrashSmileOutline } from "./20/trash_smile_outline";
813
815
  export { default as Icon20TvTextOutline } from "./20/tv_text_outline";
814
816
  export { default as Icon20UnarchiveOutline } from "./20/unarchive_outline";
@@ -930,6 +932,7 @@ export { default as Icon24BookmarkOutline } from "./24/bookmark_outline";
930
932
  export { default as Icon24BookSpreadOutline } from "./24/book_spread_outline";
931
933
  export { default as Icon24BowlSticksOutline } from "./24/bowl_sticks_outline";
932
934
  export { default as Icon24BoxingGloveOutline } from "./24/boxing_glove_outline";
935
+ export { default as Icon24BracketsSlashOutline } from "./24/brackets_slash_outline";
933
936
  export { default as Icon24BrainOutline } from "./24/brain_outline";
934
937
  export { default as Icon24BriefcaseOutline } from "./24/briefcase_outline";
935
938
  export { default as Icon24Broadcast } from "./24/broadcast";
@@ -1163,6 +1166,7 @@ export { default as Icon24LotusOutline } from "./24/lotus_outline";
1163
1166
  export { default as Icon24MagicWandOutline } from "./24/magic_wand_outline";
1164
1167
  export { default as Icon24MailOutline } from "./24/mail_outline";
1165
1168
  export { default as Icon24MappinViewfinderOutline } from "./24/mappin_viewfinder_outline";
1169
+ export { default as Icon24MarkerOutline } from "./24/marker_outline";
1166
1170
  export { default as Icon24Market } from "./24/market";
1167
1171
  export { default as Icon24MarketOutline } from "./24/market_outline";
1168
1172
  export { default as Icon24MasksOutline } from "./24/masks_outline";
@@ -1233,6 +1237,7 @@ export { default as Icon24PhoneAddOutline } from "./24/phone_add_outline";
1233
1237
  export { default as Icon24PhoneArrowDownLeft } from "./24/phone_arrow_down_left";
1234
1238
  export { default as Icon24PhoneOutline } from "./24/phone_outline";
1235
1239
  export { default as Icon24PhotosStackOutline } from "./24/photos_stack_outline";
1240
+ export { default as Icon24Picture } from "./24/picture";
1236
1241
  export { default as Icon24PictureInPicture16x9Outline } from "./24/picture_in_picture_16x9_outline";
1237
1242
  export { default as Icon24PictureInPictureOut16x9Outline } from "./24/picture_in_picture_out_16x9_outline";
1238
1243
  export { default as Icon24PictureInPictureSquareFilled } from "./24/picture_in_picture_square_filled";
@@ -1357,9 +1362,15 @@ export { default as Icon24Tag } from "./24/tag";
1357
1362
  export { default as Icon24TargetOutline } from "./24/target_outline";
1358
1363
  export { default as Icon24TearOffFlyerOutline } from "./24/tear_off_flyer_outline";
1359
1364
  export { default as Icon24TennisBallOutline } from "./24/tennis_ball_outline";
1365
+ export { default as Icon24TextBoldOutline } from "./24/text_bold_outline";
1366
+ export { default as Icon24TextHeading1Outline } from "./24/text_heading_1_outline";
1367
+ export { default as Icon24TextHeading2Outline } from "./24/text_heading_2_outline";
1368
+ export { default as Icon24TextItalicOutline } from "./24/text_italic_outline";
1360
1369
  export { default as Icon24TextLiveOutline } from "./24/text_live_outline";
1361
1370
  export { default as Icon24TextOutline } from "./24/text_outline";
1371
+ export { default as Icon24TextStrikethroughOutline } from "./24/text_strikethrough_outline";
1362
1372
  export { default as Icon24TextTtOutline } from "./24/text_tt_outline";
1373
+ export { default as Icon24TextUnderlineOutline } from "./24/text_underline_outline";
1363
1374
  export { default as Icon24ThermometerOutline } from "./24/thermometer_outline";
1364
1375
  export { default as Icon24ThumbDown } from "./24/thumb_down";
1365
1376
  export { default as Icon24ThumbsDown } from "./24/thumbs_down";