@vkontakte/icons 2.168.0 → 2.169.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 (49) hide show
  1. package/dist/16/comment_slash_16.d.ts +12 -0
  2. package/dist/16/comment_slash_16.js +13 -0
  3. package/dist/16/hourglass_16.d.ts +12 -0
  4. package/dist/16/hourglass_16.js +13 -0
  5. package/dist/16/question_16.d.ts +12 -0
  6. package/dist/16/question_16.js +13 -0
  7. package/dist/16/rouble_circle_fill_blue_16.d.ts +12 -0
  8. package/dist/16/rouble_circle_fill_blue_16.js +13 -0
  9. package/dist/28/list_insert_first_outline_28.d.ts +12 -0
  10. package/dist/28/list_insert_first_outline_28.js +13 -0
  11. package/dist/28/list_insert_last_outline_28.d.ts +12 -0
  12. package/dist/28/list_insert_last_outline_28.js +13 -0
  13. package/dist/28/podcast_circle_fill_raspberry_pink_28.d.ts +12 -0
  14. package/dist/28/podcast_circle_fill_raspberry_pink_28.js +13 -0
  15. package/dist/icons-map.json +1 -1
  16. package/dist/index.d.ts +7 -0
  17. package/dist/index.js +28 -0
  18. package/dist/typings/16/comment_slash_16.d.ts +12 -0
  19. package/dist/typings/16/hourglass_16.d.ts +12 -0
  20. package/dist/typings/16/question_16.d.ts +12 -0
  21. package/dist/typings/16/rouble_circle_fill_blue_16.d.ts +12 -0
  22. package/dist/typings/28/list_insert_first_outline_28.d.ts +12 -0
  23. package/dist/typings/28/list_insert_last_outline_28.d.ts +12 -0
  24. package/dist/typings/28/podcast_circle_fill_raspberry_pink_28.d.ts +12 -0
  25. package/dist/typings/index.d.ts +7 -0
  26. package/dist_es6/16/comment_slash_16.d.ts +12 -0
  27. package/dist_es6/16/comment_slash_16.js +3 -0
  28. package/dist_es6/16/hourglass_16.d.ts +12 -0
  29. package/dist_es6/16/hourglass_16.js +3 -0
  30. package/dist_es6/16/question_16.d.ts +12 -0
  31. package/dist_es6/16/question_16.js +3 -0
  32. package/dist_es6/16/rouble_circle_fill_blue_16.d.ts +12 -0
  33. package/dist_es6/16/rouble_circle_fill_blue_16.js +3 -0
  34. package/dist_es6/28/list_insert_first_outline_28.d.ts +12 -0
  35. package/dist_es6/28/list_insert_first_outline_28.js +3 -0
  36. package/dist_es6/28/list_insert_last_outline_28.d.ts +12 -0
  37. package/dist_es6/28/list_insert_last_outline_28.js +3 -0
  38. package/dist_es6/28/podcast_circle_fill_raspberry_pink_28.d.ts +12 -0
  39. package/dist_es6/28/podcast_circle_fill_raspberry_pink_28.js +3 -0
  40. package/dist_es6/index.d.ts +7 -0
  41. package/dist_es6/index.js +7 -0
  42. package/package.json +3 -3
  43. package/src/svg/16/comment_slash_16.svg +1 -0
  44. package/src/svg/16/hourglass_16.svg +1 -0
  45. package/src/svg/16/question_16.svg +1 -0
  46. package/src/svg/16/rouble_circle_fill_blue_16.svg +11 -0
  47. package/src/svg/28/list_insert_first_outline_28.svg +1 -0
  48. package/src/svg/28/list_insert_last_outline_28.svg +1 -0
  49. package/src/svg/28/podcast_circle_fill_raspberry_pink_28.svg +10 -0
@@ -0,0 +1,12 @@
1
+ import { SVGProps, Ref, FC } from 'react';
2
+ export interface Icon16CommentSlashProps extends SVGProps<SVGSVGElement> {
3
+ fill?: string;
4
+ width?: number;
5
+ height?: number;
6
+ getRootRef?: Ref<SVGSVGElement>;
7
+ title?: string;
8
+ deprecated?: boolean;
9
+ replacement?: string;
10
+ }
11
+ export declare const Icon16CommentSlash: FC<Icon16CommentSlashProps> & {
12
+ };
@@ -0,0 +1,13 @@
1
+ 'use client';
2
+ "use strict";
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "Icon16CommentSlash", {
7
+ enumerable: true,
8
+ get: function() {
9
+ return Icon16CommentSlash;
10
+ }
11
+ });
12
+ var _iconssprite = require("@vkontakte/icons-sprite");
13
+ var Icon16CommentSlash = (0, _iconssprite.makeIcon)('Icon16CommentSlash', 'comment_slash_16', '0 0 16 16', '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16" id="comment_slash_16"><path d="M3.28 2.22a.75.75 0 0 0-1.06 1.06l.818.818C3.013 4.248 3 4.44 3 4.71v4.582c0 .594.062.81.178 1.027s.287.388.504.504.433.178 1.027.178h.958v2.126a.5.5 0 0 0 .853.354L9 11h.94l2.78 2.78a.75.75 0 1 0 1.061-1.06zm10.209 8.098-.04.07L6.06 3h5.896c.595 0 .81.062 1.028.178s.387.287.504.504.178.433.178 1.027v4.582c0 .594-.062.81-.178 1.027Z" /></symbol>', 16, 16, false, undefined);
@@ -0,0 +1,12 @@
1
+ import { SVGProps, Ref, FC } from 'react';
2
+ export interface Icon16HourglassProps extends SVGProps<SVGSVGElement> {
3
+ fill?: string;
4
+ width?: number;
5
+ height?: number;
6
+ getRootRef?: Ref<SVGSVGElement>;
7
+ title?: string;
8
+ deprecated?: boolean;
9
+ replacement?: string;
10
+ }
11
+ export declare const Icon16Hourglass: FC<Icon16HourglassProps> & {
12
+ };
@@ -0,0 +1,13 @@
1
+ 'use client';
2
+ "use strict";
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "Icon16Hourglass", {
7
+ enumerable: true,
8
+ get: function() {
9
+ return Icon16Hourglass;
10
+ }
11
+ });
12
+ var _iconssprite = require("@vkontakte/icons-sprite");
13
+ var Icon16Hourglass = (0, _iconssprite.makeIcon)('Icon16Hourglass', 'hourglass_16', '0 0 16 16', '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16" id="hourglass_16"><path fill-rule="evenodd" d="M10.224 1H5.71a2 2 0 0 0-1.96 1.96v.2a5 5 0 0 0 2.105 4.01c-.298.344-.611.708-.909 1.056a7.1 7.1 0 0 0-1.696 4.618c0 1.19.965 2.156 2.156 2.156h5.188c1.19 0 2.156-.965 2.156-2.156 0-1.69-.595-3.33-1.696-4.618-.298-.348-.61-.712-.909-1.056a5 5 0 0 0 2.105-4.01v-.2A2 2 0 0 0 10.29 1zm.627 11.515C10.505 11.406 9.555 10.5 8 10.5s-2.505.906-2.851 2.015c-.12.385-.18.577-.03.781.149.204.393.204.88.204h4.002c.487 0 .731 0 .88-.204s.09-.396-.03-.781" clip-rule="evenodd" /></symbol>', 16, 16, false, undefined);
@@ -0,0 +1,12 @@
1
+ import { SVGProps, Ref, FC } from 'react';
2
+ export interface Icon16QuestionProps extends SVGProps<SVGSVGElement> {
3
+ fill?: string;
4
+ width?: number;
5
+ height?: number;
6
+ getRootRef?: Ref<SVGSVGElement>;
7
+ title?: string;
8
+ deprecated?: boolean;
9
+ replacement?: string;
10
+ }
11
+ export declare const Icon16Question: FC<Icon16QuestionProps> & {
12
+ };
@@ -0,0 +1,13 @@
1
+ 'use client';
2
+ "use strict";
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "Icon16Question", {
7
+ enumerable: true,
8
+ get: function() {
9
+ return Icon16Question;
10
+ }
11
+ });
12
+ var _iconssprite = require("@vkontakte/icons-sprite");
13
+ var Icon16Question = (0, _iconssprite.makeIcon)('Icon16Question', 'question_16', '0 0 16 16', '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16" id="question_16"><path fill-rule="evenodd" d="M14.5 7.766C14.5 4.582 11.59 2 8 2S1.5 4.582 1.5 7.766c0 1.554.693 2.964 1.82 4q-.164.97-.994 2.54l-.126.235a.313.313 0 0 0 .117.42.3.3 0 0 0 .22.03q2.585-.665 3.692-1.675A7.3 7.3 0 0 0 8 13.531c3.59 0 6.5-2.581 6.5-5.766Zm-6.884-1.91c-.082.057-.17.156-.224.348a.75.75 0 1 1-1.443-.408c.141-.5.421-.9.808-1.17.38-.266.82-.376 1.247-.376 1.204 0 2.083 1.036 2.083 2.083 0 .818-.54 1.353-.842 1.653l-.044.044c-.377.377-.447.496-.447.637a.75.75 0 0 1-1.5 0c0-.818.539-1.353.841-1.653l.045-.044c.376-.377.447-.496.447-.637 0-.286-.272-.583-.583-.583-.172 0-.3.044-.388.105Zm1.22 4.977a.833.833 0 1 1-1.666 0 .833.833 0 0 1 1.666 0" clip-rule="evenodd" /></symbol>', 16, 16, false, undefined);
@@ -0,0 +1,12 @@
1
+ import { SVGProps, Ref, FC } from 'react';
2
+ export interface Icon16RoubleCircleFillBlueProps extends SVGProps<SVGSVGElement> {
3
+ fill?: string;
4
+ width?: number;
5
+ height?: number;
6
+ getRootRef?: Ref<SVGSVGElement>;
7
+ title?: string;
8
+ deprecated?: boolean;
9
+ replacement?: string;
10
+ }
11
+ export declare const Icon16RoubleCircleFillBlue: FC<Icon16RoubleCircleFillBlueProps> & {
12
+ };
@@ -0,0 +1,13 @@
1
+ 'use client';
2
+ "use strict";
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "Icon16RoubleCircleFillBlue", {
7
+ enumerable: true,
8
+ get: function() {
9
+ return Icon16RoubleCircleFillBlue;
10
+ }
11
+ });
12
+ var _iconssprite = require("@vkontakte/icons-sprite");
13
+ var Icon16RoubleCircleFillBlue = (0, _iconssprite.makeIcon)('Icon16RoubleCircleFillBlue', 'rouble_circle_fill_blue_16', '0 0 16 16', '<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" id="rouble_circle_fill_blue_16"><rect width="16" height="16" fill="url(#rouble_circle_fill_blue_16_a)" rx="8" /><path stroke="#fff" stroke-linecap="round" stroke-width="1.5" d="M6 12.627V3.805c0-.03.025-.055.055-.055h3.07A2.375 2.375 0 0 1 11.5 6.125v0A2.375 2.375 0 0 1 9.125 8.5H5m0 2.75h3.5" /><path fill="#fff" fill-rule="evenodd" d="M6.75 4.5v3.25h2.375a1.625 1.625 0 1 0 0-3.25zm0 4.75h2.375a3.125 3.125 0 1 0 0-6.25h-3.07a.805.805 0 0 0-.805.805V7.75H5a.75.75 0 0 0 0 1.5h.25v1.25H5A.75.75 0 0 0 5 12h.25v.627a.75.75 0 0 0 1.5 0V12H8.5a.75.75 0 0 0 0-1.5H6.75z" clip-rule="evenodd" /><defs><linearGradient id="rouble_circle_fill_blue_16_a" x1="-8" x2="8" y1="8" y2="24" gradientUnits="userSpaceOnUse"><stop stop-color="#70B2FF" /><stop offset="1" stop-color="#5C9CE6" /></linearGradient></defs></symbol>', 16, 16, false, undefined);
@@ -0,0 +1,12 @@
1
+ import { SVGProps, Ref, FC } from 'react';
2
+ export interface Icon28ListInsertFirstOutlineProps extends SVGProps<SVGSVGElement> {
3
+ fill?: string;
4
+ width?: number;
5
+ height?: number;
6
+ getRootRef?: Ref<SVGSVGElement>;
7
+ title?: string;
8
+ deprecated?: boolean;
9
+ replacement?: string;
10
+ }
11
+ export declare const Icon28ListInsertFirstOutline: FC<Icon28ListInsertFirstOutlineProps> & {
12
+ };
@@ -0,0 +1,13 @@
1
+ 'use client';
2
+ "use strict";
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "Icon28ListInsertFirstOutline", {
7
+ enumerable: true,
8
+ get: function() {
9
+ return Icon28ListInsertFirstOutline;
10
+ }
11
+ });
12
+ var _iconssprite = require("@vkontakte/icons-sprite");
13
+ var Icon28ListInsertFirstOutline = (0, _iconssprite.makeIcon)('Icon28ListInsertFirstOutline', 'list_insert_first_outline_28', '0 0 28 28', '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 28 28" id="list_insert_first_outline_28"><path d="M9.28 5.307a1 1 0 0 1 1.413-.028l2.91 2.798a1.28 1.28 0 0 1 0 1.846l-2.91 2.798a1 1 0 1 1-1.386-1.442L10.637 10H7a1 1 0 0 0-1 1v4a1 1 0 1 1-2 0v-4a3 3 0 0 1 3-3h3.637l-1.33-1.28a1 1 0 0 1-.028-1.413ZM23 10a1 1 0 1 0 0-2h-6a1 1 0 1 0 0 2zm1 5a1 1 0 0 1-1 1H11a1 1 0 1 1 0-2h12a1 1 0 0 1 1 1m0 6a1 1 0 0 1-1 1H5a1 1 0 1 1 0-2h18a1 1 0 0 1 1 1" /></symbol>', 28, 28, false, undefined);
@@ -0,0 +1,12 @@
1
+ import { SVGProps, Ref, FC } from 'react';
2
+ export interface Icon28ListInsertLastOutlineProps extends SVGProps<SVGSVGElement> {
3
+ fill?: string;
4
+ width?: number;
5
+ height?: number;
6
+ getRootRef?: Ref<SVGSVGElement>;
7
+ title?: string;
8
+ deprecated?: boolean;
9
+ replacement?: string;
10
+ }
11
+ export declare const Icon28ListInsertLastOutline: FC<Icon28ListInsertLastOutlineProps> & {
12
+ };
@@ -0,0 +1,13 @@
1
+ 'use client';
2
+ "use strict";
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "Icon28ListInsertLastOutline", {
7
+ enumerable: true,
8
+ get: function() {
9
+ return Icon28ListInsertLastOutline;
10
+ }
11
+ });
12
+ var _iconssprite = require("@vkontakte/icons-sprite");
13
+ var Icon28ListInsertLastOutline = (0, _iconssprite.makeIcon)('Icon28ListInsertLastOutline', 'list_insert_last_outline_28', '0 0 28 28', '<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 28 28" id="list_insert_last_outline_28"><path d="M4 7a1 1 0 0 1 1-1h18a1 1 0 1 1 0 2H5a1 1 0 0 1-1-1m0 6a1 1 0 0 1 1-1h12a1 1 0 1 1 0 2H5a1 1 0 0 1-1-1m1 5a1 1 0 1 0 0 2h6a1 1 0 1 0 0-2zm13.72 4.693a1 1 0 0 1-1.413.028l-2.91-2.798a1.28 1.28 0 0 1 0-1.846l2.91-2.798a1 1 0 1 1 1.386 1.442L17.363 18H21a1 1 0 0 0 1-1v-4a1 1 0 1 1 2 0v4a3 3 0 0 1-3 3h-3.637l1.33 1.28a1 1 0 0 1 .028 1.413Z" /></symbol>', 28, 28, false, undefined);
@@ -0,0 +1,12 @@
1
+ import { SVGProps, Ref, FC } from 'react';
2
+ export interface Icon28PodcastCircleFillRaspberryPinkProps extends SVGProps<SVGSVGElement> {
3
+ fill?: string;
4
+ width?: number;
5
+ height?: number;
6
+ getRootRef?: Ref<SVGSVGElement>;
7
+ title?: string;
8
+ deprecated?: boolean;
9
+ replacement?: string;
10
+ }
11
+ export declare const Icon28PodcastCircleFillRaspberryPink: FC<Icon28PodcastCircleFillRaspberryPinkProps> & {
12
+ };
@@ -0,0 +1,13 @@
1
+ 'use client';
2
+ "use strict";
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "Icon28PodcastCircleFillRaspberryPink", {
7
+ enumerable: true,
8
+ get: function() {
9
+ return Icon28PodcastCircleFillRaspberryPink;
10
+ }
11
+ });
12
+ var _iconssprite = require("@vkontakte/icons-sprite");
13
+ var Icon28PodcastCircleFillRaspberryPink = (0, _iconssprite.makeIcon)('Icon28PodcastCircleFillRaspberryPink', 'podcast_circle_fill_raspberry_pink_28', '0 0 28 28', '<symbol xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 28 28" id="podcast_circle_fill_raspberry_pink_28"><rect width="28" height="28" fill="url(#podcast_circle_fill_raspberry_pink_28_a)" rx="14" /><path fill="#fff" fill-rule="evenodd" d="M14 5.5a7.5 7.5 0 0 1 7.35 6.003A1.5 1.5 0 0 1 22.75 13v3.5a1.5 1.5 0 0 1-3 0V13l-.004-.22A5.75 5.75 0 0 0 8.25 13v3.5a1.5 1.5 0 0 1-3 0V13a1.5 1.5 0 0 1 1.4-1.497A7.5 7.5 0 0 1 14 5.5m-2.828 4.672A4 4 0 0 1 14 9a4 4 0 0 1 2.828 1.172A4 4 0 0 1 18 13v4a4 4 0 0 1-1.172 2.828 4 4 0 0 1-1.978 1.081v.256a.94.94 0 0 1-.1.451.7.7 0 0 1-.284.284.94.94 0 0 1-.45.1h-.031a.94.94 0 0 1-.451-.1.7.7 0 0 1-.284-.284.94.94 0 0 1-.1-.45v-.257a4 4 0 0 1-1.978-1.08A4 4 0 0 1 10 17v-4a4 4 0 0 1 1.172-2.828M14 19.5a2.5 2.5 0 0 0 1.768-.732A2.5 2.5 0 0 0 16.5 17h-.305a.8.8 0 0 1-.388-.08.55.55 0 0 1-.227-.227.8.8 0 0 1-.08-.388v-.11a.8.8 0 0 1 .08-.388.55.55 0 0 1 .227-.227.8.8 0 0 1 .388-.08h.305v-1h-.305a.8.8 0 0 1-.388-.08.55.55 0 0 1-.227-.227.8.8 0 0 1-.08-.388v-.11a.8.8 0 0 1 .08-.388.55.55 0 0 1 .227-.227.8.8 0 0 1 .388-.08h.305a2.5 2.5 0 0 0-.732-1.768A2.5 2.5 0 0 0 14 10.5a2.5 2.5 0 0 0-1.768.732A2.5 2.5 0 0 0 11.5 13h1.305a.8.8 0 0 1 .388.08q.148.08.227.227a.8.8 0 0 1 .08.388v.11a.8.8 0 0 1-.08.388.55.55 0 0 1-.227.227.8.8 0 0 1-.388.08H11.5v1h1.305a.8.8 0 0 1 .388.08q.148.08.227.227a.8.8 0 0 1 .08.388v.11a.8.8 0 0 1-.08.388.55.55 0 0 1-.227.227.8.8 0 0 1-.388.08H11.5c0 .69.279 1.314.732 1.768A2.5 2.5 0 0 0 14 19.5" clip-rule="evenodd" /><defs><linearGradient id="podcast_circle_fill_raspberry_pink_28_a" x1="0" x2="28" y1="0" y2="28" gradientUnits="userSpaceOnUse"><stop stop-color="#FF80D5" /><stop offset="1" stop-color="#E645B1" /></linearGradient></defs></symbol>', 28, 28, false, undefined);