@vkontakte/icons 2.52.0 → 2.53.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/index.js CHANGED
@@ -2181,9 +2181,15 @@ _export(exports, {
2181
2181
  Icon20More: function() {
2182
2182
  return _more_20.Icon20More;
2183
2183
  },
2184
+ Icon20MoreHorizontalCircle: function() {
2185
+ return _more_horizontal_circle_20.Icon20MoreHorizontalCircle;
2186
+ },
2184
2187
  Icon20MoreVertical: function() {
2185
2188
  return _more_vertical_20.Icon20MoreVertical;
2186
2189
  },
2190
+ Icon20MoreVerticalCircle: function() {
2191
+ return _more_vertical_circle_20.Icon20MoreVerticalCircle;
2192
+ },
2187
2193
  Icon20MusicMic: function() {
2188
2194
  return _music_mic_20.Icon20MusicMic;
2189
2195
  },
@@ -2649,6 +2655,9 @@ _export(exports, {
2649
2655
  Icon20UnlockOutline: function() {
2650
2656
  return _unlock_outline_20.Icon20UnlockOutline;
2651
2657
  },
2658
+ Icon20UploadOutline: function() {
2659
+ return _upload_outline_20.Icon20UploadOutline;
2660
+ },
2652
2661
  Icon20User: function() {
2653
2662
  return _user_20.Icon20User;
2654
2663
  },
@@ -2871,6 +2880,9 @@ _export(exports, {
2871
2880
  Icon24Advertising: function() {
2872
2881
  return _advertising_24.Icon24Advertising;
2873
2882
  },
2883
+ Icon24AdvertisingCheckOutline: function() {
2884
+ return _advertising_check_outline_24.Icon24AdvertisingCheckOutline;
2885
+ },
2874
2886
  Icon24AdvertisingOutline: function() {
2875
2887
  return _advertising_outline_24.Icon24AdvertisingOutline;
2876
2888
  },
@@ -8840,7 +8852,9 @@ var _money_transfer_circle_fill_turquoise_20 = require("./20/money_transfer_circ
8840
8852
  var _money_transfer_outline_20 = require("./20/money_transfer_outline_20");
8841
8853
  var _moon_outline_20 = require("./20/moon_outline_20");
8842
8854
  var _more_20 = require("./20/more_20");
8855
+ var _more_horizontal_circle_20 = require("./20/more_horizontal_circle_20");
8843
8856
  var _more_vertical_20 = require("./20/more_vertical_20");
8857
+ var _more_vertical_circle_20 = require("./20/more_vertical_circle_20");
8844
8858
  var _music_mic_20 = require("./20/music_mic_20");
8845
8859
  var _music_mic_outline_20 = require("./20/music_mic_outline_20");
8846
8860
  var _music_note_20 = require("./20/music_note_20");
@@ -8996,6 +9010,7 @@ var _tv_text_outline_20 = require("./20/tv_text_outline_20");
8996
9010
  var _unarchive_outline_20 = require("./20/unarchive_outline_20");
8997
9011
  var _unfavorite_outline_20 = require("./20/unfavorite_outline_20");
8998
9012
  var _unlock_outline_20 = require("./20/unlock_outline_20");
9013
+ var _upload_outline_20 = require("./20/upload_outline_20");
8999
9014
  var _user_20 = require("./20/user_20");
9000
9015
  var _user_add_outline_20 = require("./20/user_add_outline_20");
9001
9016
  var _user_check_outline_20 = require("./20/user_check_outline_20");
@@ -9070,6 +9085,7 @@ var _add_circle_outline_24 = require("./24/add_circle_outline_24");
9070
9085
  var _add_outline_24 = require("./24/add_outline_24");
9071
9086
  var _add_square_outline_24 = require("./24/add_square_outline_24");
9072
9087
  var _advertising_24 = require("./24/advertising_24");
9088
+ var _advertising_check_outline_24 = require("./24/advertising_check_outline_24");
9073
9089
  var _advertising_outline_24 = require("./24/advertising_outline_24");
9074
9090
  var _airplay_24 = require("./24/airplay_24");
9075
9091
  var _airplay_video_outline_24 = require("./24/airplay_video_outline_24");
@@ -0,0 +1,12 @@
1
+ import { SVGProps, Ref } from 'react';
2
+ export interface Icon20MoreHorizontalCircleProps 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 Icon20MoreHorizontalCircle: import("react").FC<Icon20MoreHorizontalCircleProps>;
12
+ export default Icon20MoreHorizontalCircle;
@@ -0,0 +1,12 @@
1
+ import { SVGProps, Ref } from 'react';
2
+ export interface Icon20MoreVerticalCircleProps 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 Icon20MoreVerticalCircle: import("react").FC<Icon20MoreVerticalCircleProps>;
12
+ export default Icon20MoreVerticalCircle;
@@ -0,0 +1,12 @@
1
+ import { SVGProps, Ref } from 'react';
2
+ export interface Icon20UploadOutlineProps 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 Icon20UploadOutline: import("react").FC<Icon20UploadOutlineProps>;
12
+ export default Icon20UploadOutline;
@@ -0,0 +1,12 @@
1
+ import { SVGProps, Ref } from 'react';
2
+ export interface Icon24AdvertisingCheckOutlineProps 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 Icon24AdvertisingCheckOutline: import("react").FC<Icon24AdvertisingCheckOutlineProps>;
12
+ export default Icon24AdvertisingCheckOutline;
@@ -722,7 +722,9 @@ export { Icon20MoneyTransferCircleFillTurquoise } from './20/money_transfer_circ
722
722
  export { Icon20MoneyTransferOutline } from './20/money_transfer_outline_20';
723
723
  export { Icon20MoonOutline } from './20/moon_outline_20';
724
724
  export { Icon20More } from './20/more_20';
725
+ export { Icon20MoreHorizontalCircle } from './20/more_horizontal_circle_20';
725
726
  export { Icon20MoreVertical } from './20/more_vertical_20';
727
+ export { Icon20MoreVerticalCircle } from './20/more_vertical_circle_20';
726
728
  export { Icon20MusicMic } from './20/music_mic_20';
727
729
  export { Icon20MusicMicOutline } from './20/music_mic_outline_20';
728
730
  export { Icon20MusicNote } from './20/music_note_20';
@@ -878,6 +880,7 @@ export { Icon20TvTextOutline } from './20/tv_text_outline_20';
878
880
  export { Icon20UnarchiveOutline } from './20/unarchive_outline_20';
879
881
  export { Icon20UnfavoriteOutline } from './20/unfavorite_outline_20';
880
882
  export { Icon20UnlockOutline } from './20/unlock_outline_20';
883
+ export { Icon20UploadOutline } from './20/upload_outline_20';
881
884
  export { Icon20User } from './20/user_20';
882
885
  export { Icon20UserAddOutline } from './20/user_add_outline_20';
883
886
  export { Icon20UserCheckOutline } from './20/user_check_outline_20';
@@ -952,6 +955,7 @@ export { Icon24AddCircleOutline } from './24/add_circle_outline_24';
952
955
  export { Icon24AddOutline } from './24/add_outline_24';
953
956
  export { Icon24AddSquareOutline } from './24/add_square_outline_24';
954
957
  export { Icon24Advertising } from './24/advertising_24';
958
+ export { Icon24AdvertisingCheckOutline } from './24/advertising_check_outline_24';
955
959
  export { Icon24AdvertisingOutline } from './24/advertising_outline_24';
956
960
  export { Icon24Airplay } from './24/airplay_24';
957
961
  export { Icon24AirplayVideoOutline } from './24/airplay_video_outline_24';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vkontakte/icons",
3
- "version": "2.52.0",
3
+ "version": "2.53.0",
4
4
  "description": "SVG icons, provided as a React components. With love from VKontakte",
5
5
  "homepage": "https://vkcom.github.io/icons/",
6
6
  "repository": {
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="evenodd" d="M10 0C4.477 0 0 4.477 0 10s4.477 10 10 10 10-4.477 10-10S15.523 0 10 0Zm6.5 10a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0Zm-5 0a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0Zm-5 0a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0Z" clip-rule="evenodd"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="evenodd" d="M10 0C4.477 0 0 4.477 0 10s4.477 10 10 10 10-4.477 10-10S15.523 0 10 0Zm0 3.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm0 5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Zm0 5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z" clip-rule="evenodd"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" viewBox="0 0 20 20"><path fill-rule="evenodd" d="M10.001 15.003a.738.738 0 0 1-.75-.726V4.565l-3.97 3.971a.75.75 0 0 1-1.061-1.06L9.476 2.22a.75.75 0 0 1 1.06 0l5.245 5.245a.75.75 0 0 1-1.06 1.06l-3.97-3.97v9.722a.738.738 0 0 1-.75.726ZM15.25 17H4.75a.75.75 0 0 0 0 1.5h10.5a.75.75 0 0 0 0-1.5Z" clip-rule="evenodd"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M22 7a5 5 0 1 1-10 0 5 5 0 0 1 10 0Zm-2.258-2.24a.9.9 0 0 0-1.273 0l-2.08 2.567-.848-.875a.9.9 0 1 0-1.273 1.273l1.485 1.511a.9.9 0 0 0 1.273 0l2.716-3.203a.9.9 0 0 0 0-1.273Z M5.663 9.63A2.86 2.86 0 0 1 7.6 8.9h1.763a.9.9 0 1 0 0-1.8H7.6a4.658 4.658 0 0 0-3.154 1.204C3.585 9.094 3.1 10.37 3.1 11.5c0 1.13.485 2.407 1.346 3.197a4.596 4.596 0 0 0 2.104 1.088l.456 2.16a2.364 2.364 0 0 0 1.02 1.54 2.497 2.497 0 0 0 1.823.378 2.497 2.497 0 0 0 1.583-.979 2.363 2.363 0 0 0 .429-1.812l-.007-.04-.307-1.132h1.509a3.1 3.1 0 0 1 1.386.327l2.673 1.337a2.61 2.61 0 0 0 1.285.336 2.57 2.57 0 0 0 1.74-.666c.458-.42.76-1.02.76-1.701v-1.435a.9.9 0 0 0-1.8 0v1.435c0 .13-.056.263-.177.374a.77.77 0 0 1-.523.193.808.808 0 0 1-.405-.107l-.026-.014-2.722-1.361a4.899 4.899 0 0 0-2.191-.518H7.6a2.86 2.86 0 0 1-1.937-.73c-.442-.405-.763-1.176-.763-1.87 0-.694.321-1.465.763-1.87Zm2.755 6.289h1.27l.405 1.496a.566.566 0 0 1-.112.405.697.697 0 0 1-.445.27.697.697 0 0 1-.51-.102.563.563 0 0 1-.25-.372l-.003-.015-.355-1.682Z" clip-rule="evenodd"/></svg>