@vkontakte/icons 2.58.0 → 2.60.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/12/chevron_left_12.js +13 -0
- package/dist/12/chevron_right_12.js +13 -0
- package/dist/20/notification_waves_20.js +13 -0
- package/dist/20/thumbs_down_outline_20.js +13 -0
- package/dist/20/thumbs_up_outline_20.js +1 -1
- package/dist/24/thumbs_down_outline_24.js +1 -1
- package/dist/24/thumbs_up_outline_24.js +1 -1
- package/dist/28/cross_large_outline_28.js +13 -0
- package/dist/28/play_circle_fill_white_28.js +13 -0
- package/dist/28/thumbs_down_outline_28.js +1 -1
- package/dist/28/thumbs_up_outline_28.js +1 -1
- package/dist/48/forward_48.js +13 -0
- package/dist/48/mute_48.js +13 -0
- package/dist/48/skip_back_48.js +13 -0
- package/dist/48/skip_forward_48.js +13 -0
- package/dist/48/subtitles_48.js +13 -0
- package/dist/48/subtitles_slash_48.js +13 -0
- package/dist/48/volume_48.js +13 -0
- package/dist/es6/12/chevron_left_12.js +3 -0
- package/dist/es6/12/chevron_right_12.js +3 -0
- package/dist/es6/20/notification_waves_20.js +3 -0
- package/dist/es6/20/thumbs_down_outline_20.js +3 -0
- package/dist/es6/20/thumbs_up_outline_20.js +1 -1
- package/dist/es6/24/thumbs_down_outline_24.js +1 -1
- package/dist/es6/24/thumbs_up_outline_24.js +1 -1
- package/dist/es6/28/cross_large_outline_28.js +3 -0
- package/dist/es6/28/play_circle_fill_white_28.js +3 -0
- package/dist/es6/28/thumbs_down_outline_28.js +1 -1
- package/dist/es6/28/thumbs_up_outline_28.js +1 -1
- package/dist/es6/48/forward_48.js +3 -0
- package/dist/es6/48/mute_48.js +3 -0
- package/dist/es6/48/skip_back_48.js +3 -0
- package/dist/es6/48/skip_forward_48.js +3 -0
- package/dist/es6/48/subtitles_48.js +3 -0
- package/dist/es6/48/subtitles_slash_48.js +3 -0
- package/dist/es6/48/volume_48.js +3 -0
- package/dist/es6/index.js +13 -0
- package/dist/icons-map.json +1 -1
- package/dist/index.js +52 -0
- package/dist/typings/12/chevron_left_12.d.ts +11 -0
- package/dist/typings/12/chevron_right_12.d.ts +11 -0
- package/dist/typings/20/notification_waves_20.d.ts +11 -0
- package/dist/typings/20/thumbs_down_outline_20.d.ts +11 -0
- package/dist/typings/28/cross_large_outline_28.d.ts +11 -0
- package/dist/typings/28/play_circle_fill_white_28.d.ts +11 -0
- package/dist/typings/48/forward_48.d.ts +11 -0
- package/dist/typings/48/mute_48.d.ts +11 -0
- package/dist/typings/48/skip_back_48.d.ts +11 -0
- package/dist/typings/48/skip_forward_48.d.ts +11 -0
- package/dist/typings/48/subtitles_48.d.ts +11 -0
- package/dist/typings/48/subtitles_slash_48.d.ts +11 -0
- package/dist/typings/48/volume_48.d.ts +11 -0
- package/dist/typings/index.d.ts +13 -0
- package/package.json +2 -2
- package/src/svg/12/chevron_left_12.svg +1 -0
- package/src/svg/12/chevron_right_12.svg +1 -0
- package/src/svg/20/notification_waves_20.svg +1 -0
- package/src/svg/20/thumbs_down_outline_20.svg +1 -0
- package/src/svg/20/thumbs_up_outline_20.svg +1 -1
- package/src/svg/24/thumbs_down_outline_24.svg +1 -1
- package/src/svg/24/thumbs_up_outline_24.svg +1 -1
- package/src/svg/28/cross_large_outline_28.svg +1 -0
- package/src/svg/28/play_circle_fill_white_28.svg +11 -0
- package/src/svg/28/thumbs_down_outline_28.svg +1 -1
- package/src/svg/28/thumbs_up_outline_28.svg +1 -1
- package/src/svg/48/forward_48.svg +1 -0
- package/src/svg/48/mute_48.svg +1 -0
- package/src/svg/48/skip_back_48.svg +1 -0
- package/src/svg/48/skip_forward_48.svg +1 -0
- package/src/svg/48/subtitles_48.svg +1 -0
- package/src/svg/48/subtitles_slash_48.svg +1 -0
- package/src/svg/48/volume_48.svg +1 -0
package/dist/index.js
CHANGED
|
@@ -81,9 +81,15 @@ _export(exports, {
|
|
|
81
81
|
Icon12ChevronDownSmall: function() {
|
|
82
82
|
return _chevron_down_small_12.Icon12ChevronDownSmall;
|
|
83
83
|
},
|
|
84
|
+
Icon12ChevronLeft: function() {
|
|
85
|
+
return _chevron_left_12.Icon12ChevronLeft;
|
|
86
|
+
},
|
|
84
87
|
Icon12ChevronOutline: function() {
|
|
85
88
|
return _chevron_outline_12.Icon12ChevronOutline;
|
|
86
89
|
},
|
|
90
|
+
Icon12ChevronRight: function() {
|
|
91
|
+
return _chevron_right_12.Icon12ChevronRight;
|
|
92
|
+
},
|
|
87
93
|
Icon12ChevronUp: function() {
|
|
88
94
|
return _chevron_up_12.Icon12ChevronUp;
|
|
89
95
|
},
|
|
@@ -2259,6 +2265,9 @@ _export(exports, {
|
|
|
2259
2265
|
Icon20NotificationSlashOutline: function() {
|
|
2260
2266
|
return _notification_slash_outline_20.Icon20NotificationSlashOutline;
|
|
2261
2267
|
},
|
|
2268
|
+
Icon20NotificationWaves: function() {
|
|
2269
|
+
return _notification_waves_20.Icon20NotificationWaves;
|
|
2270
|
+
},
|
|
2262
2271
|
Icon20PacmanOutline: function() {
|
|
2263
2272
|
return _pacman_outline_20.Icon20PacmanOutline;
|
|
2264
2273
|
},
|
|
@@ -2652,6 +2661,9 @@ _export(exports, {
|
|
|
2652
2661
|
Icon20TextViewfinderOutline: function() {
|
|
2653
2662
|
return _text_viewfinder_outline_20.Icon20TextViewfinderOutline;
|
|
2654
2663
|
},
|
|
2664
|
+
Icon20ThumbsDownOutline: function() {
|
|
2665
|
+
return _thumbs_down_outline_20.Icon20ThumbsDownOutline;
|
|
2666
|
+
},
|
|
2655
2667
|
Icon20ThumbsUp: function() {
|
|
2656
2668
|
return _thumbs_up_20.Icon20ThumbsUp;
|
|
2657
2669
|
},
|
|
@@ -5205,6 +5217,9 @@ _export(exports, {
|
|
|
5205
5217
|
Icon28Crop: function() {
|
|
5206
5218
|
return _crop_28.Icon28Crop;
|
|
5207
5219
|
},
|
|
5220
|
+
Icon28CrossLargeOutline: function() {
|
|
5221
|
+
return _cross_large_outline_28.Icon28CrossLargeOutline;
|
|
5222
|
+
},
|
|
5208
5223
|
Icon28Crown: function() {
|
|
5209
5224
|
return _crown_28.Icon28Crown;
|
|
5210
5225
|
},
|
|
@@ -6210,6 +6225,9 @@ _export(exports, {
|
|
|
6210
6225
|
Icon28PlayCircleFillGray: function() {
|
|
6211
6226
|
return _play_circle_fill_gray_28.Icon28PlayCircleFillGray;
|
|
6212
6227
|
},
|
|
6228
|
+
Icon28PlayCircleFillWhite: function() {
|
|
6229
|
+
return _play_circle_fill_white_28.Icon28PlayCircleFillWhite;
|
|
6230
|
+
},
|
|
6213
6231
|
Icon28PlaylistOutline: function() {
|
|
6214
6232
|
return _playlist_outline_28.Icon28PlaylistOutline;
|
|
6215
6233
|
},
|
|
@@ -7509,6 +7527,9 @@ _export(exports, {
|
|
|
7509
7527
|
Icon48FilmStripPlay: function() {
|
|
7510
7528
|
return _film_strip_play_48.Icon48FilmStripPlay;
|
|
7511
7529
|
},
|
|
7530
|
+
Icon48Forward: function() {
|
|
7531
|
+
return _forward_48.Icon48Forward;
|
|
7532
|
+
},
|
|
7512
7533
|
Icon48Game: function() {
|
|
7513
7534
|
return _game_48.Icon48Game;
|
|
7514
7535
|
},
|
|
@@ -7536,6 +7557,9 @@ _export(exports, {
|
|
|
7536
7557
|
Icon48MentionOutline: function() {
|
|
7537
7558
|
return _mention_outline_48.Icon48MentionOutline;
|
|
7538
7559
|
},
|
|
7560
|
+
Icon48Mute: function() {
|
|
7561
|
+
return _mute_48.Icon48Mute;
|
|
7562
|
+
},
|
|
7539
7563
|
Icon48NewsfeedOutline: function() {
|
|
7540
7564
|
return _newsfeed_outline_48.Icon48NewsfeedOutline;
|
|
7541
7565
|
},
|
|
@@ -7566,6 +7590,12 @@ _export(exports, {
|
|
|
7566
7590
|
Icon48Services: function() {
|
|
7567
7591
|
return _services_48.Icon48Services;
|
|
7568
7592
|
},
|
|
7593
|
+
Icon48SkipBack: function() {
|
|
7594
|
+
return _skip_back_48.Icon48SkipBack;
|
|
7595
|
+
},
|
|
7596
|
+
Icon48SkipForward: function() {
|
|
7597
|
+
return _skip_forward_48.Icon48SkipForward;
|
|
7598
|
+
},
|
|
7569
7599
|
Icon48SkipNext: function() {
|
|
7570
7600
|
return _skip_next_48.Icon48SkipNext;
|
|
7571
7601
|
},
|
|
@@ -7578,6 +7608,12 @@ _export(exports, {
|
|
|
7578
7608
|
Icon48Story: function() {
|
|
7579
7609
|
return _story_48.Icon48Story;
|
|
7580
7610
|
},
|
|
7611
|
+
Icon48Subtitles: function() {
|
|
7612
|
+
return _subtitles_48.Icon48Subtitles;
|
|
7613
|
+
},
|
|
7614
|
+
Icon48SubtitlesSlash: function() {
|
|
7615
|
+
return _subtitles_slash_48.Icon48SubtitlesSlash;
|
|
7616
|
+
},
|
|
7581
7617
|
Icon48SwipeUp: function() {
|
|
7582
7618
|
return _swipe_up_48.Icon48SwipeUp;
|
|
7583
7619
|
},
|
|
@@ -7596,6 +7632,9 @@ _export(exports, {
|
|
|
7596
7632
|
Icon48Video: function() {
|
|
7597
7633
|
return _video_48.Icon48Video;
|
|
7598
7634
|
},
|
|
7635
|
+
Icon48Volume: function() {
|
|
7636
|
+
return _volume_48.Icon48Volume;
|
|
7637
|
+
},
|
|
7599
7638
|
Icon48WritebarDone: function() {
|
|
7600
7639
|
return _writebar_done_48.Icon48WritebarDone;
|
|
7601
7640
|
},
|
|
@@ -8212,7 +8251,9 @@ var _check_circle_12 = require("./12/check_circle_12");
|
|
|
8212
8251
|
var _check_circle_fill_12 = require("./12/check_circle_fill_12");
|
|
8213
8252
|
var _chevron_12 = require("./12/chevron_12");
|
|
8214
8253
|
var _chevron_down_small_12 = require("./12/chevron_down_small_12");
|
|
8254
|
+
var _chevron_left_12 = require("./12/chevron_left_12");
|
|
8215
8255
|
var _chevron_outline_12 = require("./12/chevron_outline_12");
|
|
8256
|
+
var _chevron_right_12 = require("./12/chevron_right_12");
|
|
8216
8257
|
var _chevron_up_12 = require("./12/chevron_up_12");
|
|
8217
8258
|
var _chevron_up_small_12 = require("./12/chevron_up_small_12");
|
|
8218
8259
|
var _circle_12 = require("./12/circle_12");
|
|
@@ -8938,6 +8979,7 @@ var _nft_heptagon_outline_20 = require("./20/nft_heptagon_outline_20");
|
|
|
8938
8979
|
var _notebook_check_outline_20 = require("./20/notebook_check_outline_20");
|
|
8939
8980
|
var _notification_outline_20 = require("./20/notification_outline_20");
|
|
8940
8981
|
var _notification_slash_outline_20 = require("./20/notification_slash_outline_20");
|
|
8982
|
+
var _notification_waves_20 = require("./20/notification_waves_20");
|
|
8941
8983
|
var _pacman_outline_20 = require("./20/pacman_outline_20");
|
|
8942
8984
|
var _pallete_outline_20 = require("./20/pallete_outline_20");
|
|
8943
8985
|
var _pause_20 = require("./20/pause_20");
|
|
@@ -9069,6 +9111,7 @@ var _text_strikethrough_outline_20 = require("./20/text_strikethrough_outline_20
|
|
|
9069
9111
|
var _text_tt_outline_20 = require("./20/text_tt_outline_20");
|
|
9070
9112
|
var _text_underline_outline_20 = require("./20/text_underline_outline_20");
|
|
9071
9113
|
var _text_viewfinder_outline_20 = require("./20/text_viewfinder_outline_20");
|
|
9114
|
+
var _thumbs_down_outline_20 = require("./20/thumbs_down_outline_20");
|
|
9072
9115
|
var _thumbs_up_20 = require("./20/thumbs_up_20");
|
|
9073
9116
|
var _thumbs_up_circle_fill_green_20 = require("./20/thumbs_up_circle_fill_green_20");
|
|
9074
9117
|
var _thumbs_up_outline_20 = require("./20/thumbs_up_outline_20");
|
|
@@ -9920,6 +9963,7 @@ var _computer_outline_28 = require("./28/computer_outline_28");
|
|
|
9920
9963
|
var _computer_smartphone_outline_28 = require("./28/computer_smartphone_outline_28");
|
|
9921
9964
|
var _copy_outline_28 = require("./28/copy_outline_28");
|
|
9922
9965
|
var _crop_28 = require("./28/crop_28");
|
|
9966
|
+
var _cross_large_outline_28 = require("./28/cross_large_outline_28");
|
|
9923
9967
|
var _crown_28 = require("./28/crown_28");
|
|
9924
9968
|
var _crown_outline_28 = require("./28/crown_outline_28");
|
|
9925
9969
|
var _cube_box_outline_28 = require("./28/cube_box_outline_28");
|
|
@@ -10255,6 +10299,7 @@ var _play_cards_2_outline_28 = require("./28/play_cards_2_outline_28");
|
|
|
10255
10299
|
var _play_circle_28 = require("./28/play_circle_28");
|
|
10256
10300
|
var _play_circle_fill_azure_28 = require("./28/play_circle_fill_azure_28");
|
|
10257
10301
|
var _play_circle_fill_gray_28 = require("./28/play_circle_fill_gray_28");
|
|
10302
|
+
var _play_circle_fill_white_28 = require("./28/play_circle_fill_white_28");
|
|
10258
10303
|
var _playlist_outline_28 = require("./28/playlist_outline_28");
|
|
10259
10304
|
var _play_rectangle_stack_outline_28 = require("./28/play_rectangle_stack_outline_28");
|
|
10260
10305
|
var _play_speed_outline_28 = require("./28/play_speed_outline_28");
|
|
@@ -10688,6 +10733,7 @@ var _chevron_up_outline_48 = require("./48/chevron_up_outline_48");
|
|
|
10688
10733
|
var _compass_48 = require("./48/compass_48");
|
|
10689
10734
|
var _donate_outline_48 = require("./48/donate_outline_48");
|
|
10690
10735
|
var _film_strip_play_48 = require("./48/film_strip_play_48");
|
|
10736
|
+
var _forward_48 = require("./48/forward_48");
|
|
10691
10737
|
var _game_48 = require("./48/game_48");
|
|
10692
10738
|
var _hide_circle_fill_purple_48 = require("./48/hide_circle_fill_purple_48");
|
|
10693
10739
|
var _hide_outline_48 = require("./48/hide_outline_48");
|
|
@@ -10697,6 +10743,7 @@ var _lock_circle_fill_green_48 = require("./48/lock_circle_fill_green_48");
|
|
|
10697
10743
|
var _logo_vk_48 = require("./48/logo_vk_48");
|
|
10698
10744
|
var _market_fill_blue_48 = require("./48/market_fill_blue_48");
|
|
10699
10745
|
var _mention_outline_48 = require("./48/mention_outline_48");
|
|
10746
|
+
var _mute_48 = require("./48/mute_48");
|
|
10700
10747
|
var _newsfeed_outline_48 = require("./48/newsfeed_outline_48");
|
|
10701
10748
|
var _notebook_circle_fill_blue_48 = require("./48/notebook_circle_fill_blue_48");
|
|
10702
10749
|
var _palette_48 = require("./48/palette_48");
|
|
@@ -10707,16 +10754,21 @@ var _playlist_48 = require("./48/playlist_48");
|
|
|
10707
10754
|
var _podcast_48 = require("./48/podcast_48");
|
|
10708
10755
|
var _replay_48 = require("./48/replay_48");
|
|
10709
10756
|
var _services_48 = require("./48/services_48");
|
|
10757
|
+
var _skip_back_48 = require("./48/skip_back_48");
|
|
10758
|
+
var _skip_forward_48 = require("./48/skip_forward_48");
|
|
10710
10759
|
var _skip_next_48 = require("./48/skip_next_48");
|
|
10711
10760
|
var _skip_previous_48 = require("./48/skip_previous_48");
|
|
10712
10761
|
var _stars_circle_fill_violet_48 = require("./48/stars_circle_fill_violet_48");
|
|
10713
10762
|
var _story_48 = require("./48/story_48");
|
|
10763
|
+
var _subtitles_48 = require("./48/subtitles_48");
|
|
10764
|
+
var _subtitles_slash_48 = require("./48/subtitles_slash_48");
|
|
10714
10765
|
var _swipe_up_48 = require("./48/swipe_up_48");
|
|
10715
10766
|
var _text_outline_48 = require("./48/text_outline_48");
|
|
10716
10767
|
var _ugc_chat_sticker_circle_fill_blue_48 = require("./48/ugc_chat_sticker_circle_fill_blue_48");
|
|
10717
10768
|
var _user_add_circle_fill_blue_48 = require("./48/user_add_circle_fill_blue_48");
|
|
10718
10769
|
var _user_rectangle_horizontal_outline_48 = require("./48/user_rectangle_horizontal_outline_48");
|
|
10719
10770
|
var _video_48 = require("./48/video_48");
|
|
10771
|
+
var _volume_48 = require("./48/volume_48");
|
|
10720
10772
|
var _writebar_done_48 = require("./48/writebar_done_48");
|
|
10721
10773
|
var _writebar_send_48 = require("./48/writebar_send_48");
|
|
10722
10774
|
var _16_circle_outline_56 = require("./56/16_circle_outline_56");
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SVGProps, Ref } from 'react';
|
|
2
|
+
export interface Icon12ChevronLeftProps 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 Icon12ChevronLeft: import("react").FC<Icon12ChevronLeftProps>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SVGProps, Ref } from 'react';
|
|
2
|
+
export interface Icon12ChevronRightProps 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 Icon12ChevronRight: import("react").FC<Icon12ChevronRightProps>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SVGProps, Ref } from 'react';
|
|
2
|
+
export interface Icon20NotificationWavesProps 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 Icon20NotificationWaves: import("react").FC<Icon20NotificationWavesProps>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SVGProps, Ref } from 'react';
|
|
2
|
+
export interface Icon20ThumbsDownOutlineProps 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 Icon20ThumbsDownOutline: import("react").FC<Icon20ThumbsDownOutlineProps>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SVGProps, Ref } from 'react';
|
|
2
|
+
export interface Icon28CrossLargeOutlineProps 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 Icon28CrossLargeOutline: import("react").FC<Icon28CrossLargeOutlineProps>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SVGProps, Ref } from 'react';
|
|
2
|
+
export interface Icon28PlayCircleFillWhiteProps 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 Icon28PlayCircleFillWhite: import("react").FC<Icon28PlayCircleFillWhiteProps>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SVGProps, Ref } from 'react';
|
|
2
|
+
export interface Icon48ForwardProps 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 Icon48Forward: import("react").FC<Icon48ForwardProps>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SVGProps, Ref } from 'react';
|
|
2
|
+
export interface Icon48MuteProps 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 Icon48Mute: import("react").FC<Icon48MuteProps>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SVGProps, Ref } from 'react';
|
|
2
|
+
export interface Icon48SkipBackProps 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 Icon48SkipBack: import("react").FC<Icon48SkipBackProps>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SVGProps, Ref } from 'react';
|
|
2
|
+
export interface Icon48SkipForwardProps 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 Icon48SkipForward: import("react").FC<Icon48SkipForwardProps>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SVGProps, Ref } from 'react';
|
|
2
|
+
export interface Icon48SubtitlesProps 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 Icon48Subtitles: import("react").FC<Icon48SubtitlesProps>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SVGProps, Ref } from 'react';
|
|
2
|
+
export interface Icon48SubtitlesSlashProps 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 Icon48SubtitlesSlash: import("react").FC<Icon48SubtitlesSlashProps>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SVGProps, Ref } from 'react';
|
|
2
|
+
export interface Icon48VolumeProps 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 Icon48Volume: import("react").FC<Icon48VolumeProps>;
|
package/dist/typings/index.d.ts
CHANGED
|
@@ -22,7 +22,9 @@ export { Icon12CheckCircle } from './12/check_circle_12';
|
|
|
22
22
|
export { Icon12CheckCircleFill } from './12/check_circle_fill_12';
|
|
23
23
|
export { Icon12Chevron } from './12/chevron_12';
|
|
24
24
|
export { Icon12ChevronDownSmall } from './12/chevron_down_small_12';
|
|
25
|
+
export { Icon12ChevronLeft } from './12/chevron_left_12';
|
|
25
26
|
export { Icon12ChevronOutline } from './12/chevron_outline_12';
|
|
27
|
+
export { Icon12ChevronRight } from './12/chevron_right_12';
|
|
26
28
|
export { Icon12ChevronUp } from './12/chevron_up_12';
|
|
27
29
|
export { Icon12ChevronUpSmall } from './12/chevron_up_small_12';
|
|
28
30
|
export { Icon12Circle } from './12/circle_12';
|
|
@@ -748,6 +750,7 @@ export { Icon20NftHeptagonOutline } from './20/nft_heptagon_outline_20';
|
|
|
748
750
|
export { Icon20NotebookCheckOutline } from './20/notebook_check_outline_20';
|
|
749
751
|
export { Icon20NotificationOutline } from './20/notification_outline_20';
|
|
750
752
|
export { Icon20NotificationSlashOutline } from './20/notification_slash_outline_20';
|
|
753
|
+
export { Icon20NotificationWaves } from './20/notification_waves_20';
|
|
751
754
|
export { Icon20PacmanOutline } from './20/pacman_outline_20';
|
|
752
755
|
export { Icon20PalleteOutline } from './20/pallete_outline_20';
|
|
753
756
|
export { Icon20Pause } from './20/pause_20';
|
|
@@ -879,6 +882,7 @@ export { Icon20TextStrikethroughOutline } from './20/text_strikethrough_outline_
|
|
|
879
882
|
export { Icon20TextTtOutline } from './20/text_tt_outline_20';
|
|
880
883
|
export { Icon20TextUnderlineOutline } from './20/text_underline_outline_20';
|
|
881
884
|
export { Icon20TextViewfinderOutline } from './20/text_viewfinder_outline_20';
|
|
885
|
+
export { Icon20ThumbsDownOutline } from './20/thumbs_down_outline_20';
|
|
882
886
|
export { Icon20ThumbsUp } from './20/thumbs_up_20';
|
|
883
887
|
export { Icon20ThumbsUpCircleFillGreen } from './20/thumbs_up_circle_fill_green_20';
|
|
884
888
|
export { Icon20ThumbsUpOutline } from './20/thumbs_up_outline_20';
|
|
@@ -1730,6 +1734,7 @@ export { Icon28ComputerOutline } from './28/computer_outline_28';
|
|
|
1730
1734
|
export { Icon28ComputerSmartphoneOutline } from './28/computer_smartphone_outline_28';
|
|
1731
1735
|
export { Icon28CopyOutline } from './28/copy_outline_28';
|
|
1732
1736
|
export { Icon28Crop } from './28/crop_28';
|
|
1737
|
+
export { Icon28CrossLargeOutline } from './28/cross_large_outline_28';
|
|
1733
1738
|
export { Icon28Crown } from './28/crown_28';
|
|
1734
1739
|
export { Icon28CrownOutline } from './28/crown_outline_28';
|
|
1735
1740
|
export { Icon28CubeBoxOutline } from './28/cube_box_outline_28';
|
|
@@ -2065,6 +2070,7 @@ export { Icon28PlayCards2Outline } from './28/play_cards_2_outline_28';
|
|
|
2065
2070
|
export { Icon28PlayCircle } from './28/play_circle_28';
|
|
2066
2071
|
export { Icon28PlayCircleFillAzure } from './28/play_circle_fill_azure_28';
|
|
2067
2072
|
export { Icon28PlayCircleFillGray } from './28/play_circle_fill_gray_28';
|
|
2073
|
+
export { Icon28PlayCircleFillWhite } from './28/play_circle_fill_white_28';
|
|
2068
2074
|
export { Icon28PlaylistOutline } from './28/playlist_outline_28';
|
|
2069
2075
|
export { Icon28PlayRectangleStackOutline } from './28/play_rectangle_stack_outline_28';
|
|
2070
2076
|
export { Icon28PlaySpeedOutline } from './28/play_speed_outline_28';
|
|
@@ -2498,6 +2504,7 @@ export { Icon48ChevronUpOutline } from './48/chevron_up_outline_48';
|
|
|
2498
2504
|
export { Icon48Compass } from './48/compass_48';
|
|
2499
2505
|
export { Icon48DonateOutline } from './48/donate_outline_48';
|
|
2500
2506
|
export { Icon48FilmStripPlay } from './48/film_strip_play_48';
|
|
2507
|
+
export { Icon48Forward } from './48/forward_48';
|
|
2501
2508
|
export { Icon48Game } from './48/game_48';
|
|
2502
2509
|
export { Icon48HideCircleFillPurple } from './48/hide_circle_fill_purple_48';
|
|
2503
2510
|
export { Icon48HideOutline } from './48/hide_outline_48';
|
|
@@ -2507,6 +2514,7 @@ export { Icon48LockCircleFillGreen } from './48/lock_circle_fill_green_48';
|
|
|
2507
2514
|
export { Icon48LogoVk } from './48/logo_vk_48';
|
|
2508
2515
|
export { Icon48MarketFillBlue } from './48/market_fill_blue_48';
|
|
2509
2516
|
export { Icon48MentionOutline } from './48/mention_outline_48';
|
|
2517
|
+
export { Icon48Mute } from './48/mute_48';
|
|
2510
2518
|
export { Icon48NewsfeedOutline } from './48/newsfeed_outline_48';
|
|
2511
2519
|
export { Icon48NotebookCircleFillBlue } from './48/notebook_circle_fill_blue_48';
|
|
2512
2520
|
export { Icon48Palette } from './48/palette_48';
|
|
@@ -2517,16 +2525,21 @@ export { Icon48Playlist } from './48/playlist_48';
|
|
|
2517
2525
|
export { Icon48Podcast } from './48/podcast_48';
|
|
2518
2526
|
export { Icon48Replay } from './48/replay_48';
|
|
2519
2527
|
export { Icon48Services } from './48/services_48';
|
|
2528
|
+
export { Icon48SkipBack } from './48/skip_back_48';
|
|
2529
|
+
export { Icon48SkipForward } from './48/skip_forward_48';
|
|
2520
2530
|
export { Icon48SkipNext } from './48/skip_next_48';
|
|
2521
2531
|
export { Icon48SkipPrevious } from './48/skip_previous_48';
|
|
2522
2532
|
export { Icon48StarsCircleFillViolet } from './48/stars_circle_fill_violet_48';
|
|
2523
2533
|
export { Icon48Story } from './48/story_48';
|
|
2534
|
+
export { Icon48Subtitles } from './48/subtitles_48';
|
|
2535
|
+
export { Icon48SubtitlesSlash } from './48/subtitles_slash_48';
|
|
2524
2536
|
export { Icon48SwipeUp } from './48/swipe_up_48';
|
|
2525
2537
|
export { Icon48TextOutline } from './48/text_outline_48';
|
|
2526
2538
|
export { Icon48UgcChatStickerCircleFillBlue } from './48/ugc_chat_sticker_circle_fill_blue_48';
|
|
2527
2539
|
export { Icon48UserAddCircleFillBlue } from './48/user_add_circle_fill_blue_48';
|
|
2528
2540
|
export { Icon48UserRectangleHorizontalOutline } from './48/user_rectangle_horizontal_outline_48';
|
|
2529
2541
|
export { Icon48Video } from './48/video_48';
|
|
2542
|
+
export { Icon48Volume } from './48/volume_48';
|
|
2530
2543
|
export { Icon48WritebarDone } from './48/writebar_done_48';
|
|
2531
2544
|
export { Icon48WritebarSend } from './48/writebar_send_48';
|
|
2532
2545
|
export { Icon5616CircleOutline } from './56/16_circle_outline_56';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vkontakte/icons",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.60.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": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@size-limit/file": "^8.2.6",
|
|
35
35
|
"@size-limit/webpack": "^8.2.6",
|
|
36
36
|
"@swc/cli": "^0.1.61",
|
|
37
|
-
"@swc/core": "^1.3.
|
|
37
|
+
"@swc/core": "^1.3.78",
|
|
38
38
|
"@types/react": "16.14.34",
|
|
39
39
|
"@vkontakte/icons-scripts": "4.0.0",
|
|
40
40
|
"css-loader": "^6.7.3",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="8" height="12" fill="currentColor" viewBox="0 0 8 12"><path fill-rule="evenodd" d="M2.15 6.452a.75.75 0 0 1 0-.9c.49-.653.907-1.187 1.305-1.697l.038-.049c.384-.492.751-.961 1.157-1.502a.75.75 0 1 1 1.2.9c-.415.553-.79 1.033-1.172 1.522l-.042.053c-.3.384-.607.777-.946 1.223.34.445.646.838.946 1.223l.042.052c.382.49.757.97 1.172 1.523a.75.75 0 1 1-1.2.9c-.406-.54-.773-1.01-1.157-1.502l-.038-.05A98.062 98.062 0 0 1 2.15 6.452Z" clip-rule="evenodd"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="8" height="12" fill="currentColor" viewBox="0 0 8 12"><path fill-rule="evenodd" d="M5.85 5.552c.2.267.2.633 0 .9-.49.653-.907 1.187-1.304 1.696l-.039.05c-.384.491-.751.961-1.157 1.502a.75.75 0 0 1-1.2-.9 94.04 94.04 0 0 1 1.173-1.523l.04-.052c.3-.385.608-.778.947-1.223-.34-.446-.646-.839-.946-1.223l-.041-.053A93.21 93.21 0 0 1 2.15 3.204a.75.75 0 1 1 1.2-.9c.406.54.773 1.01 1.157 1.502l.039.05c.397.508.814 1.043 1.304 1.696Z" 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="M5.006 2.246a.75.75 0 0 1-.052 1.06c-.89.807-1.506 1.953-1.706 3.304a.75.75 0 1 1-1.484-.22c.248-1.672 1.02-3.141 2.182-4.196a.75.75 0 0 1 1.06.052Zm10.5 6.212c0-3.365-2.299-5.958-5.503-5.958S4.495 5.095 4.495 8.458v1.266c0 .18-.155.42-.575.85-.054.056-.105.107-.216.218-.863.868-1.204 1.368-1.204 2.172 0 .35.035.605.187.92.349.718 1.129 1.115 2.316 1.115h1.525l6.944.001h1.525c1.154 0 1.925-.388 2.29-1.082.172-.328.213-.602.213-.954 0-.804-.341-1.304-1.204-2.172l-.216-.217c-.42-.43-.575-.67-.575-.851V8.458ZM13 15.801c-.434 1.295-1.469 1.999-3 1.999-1.547 0-2.575-.678-3-2h6Zm2.046-12.495a.75.75 0 0 1 1.008-1.112c1.163 1.055 1.934 2.524 2.182 4.196a.75.75 0 1 1-1.484.22c-.2-1.35-.815-2.497-1.706-3.304Z" 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.762 18.503c.898 0 1.711-.532 2.07-1.355l1.77-4.057c.058-.134.097-.224.132-.317.152-.4.24-.823.261-1.251.005-.1.005-.198.005-.345v-4.46c0-.673 0-1.223-.037-1.671-.037-.463-.118-.882-.317-1.272a3.25 3.25 0 0 0-1.42-1.42c-.391-.2-.81-.28-1.273-.318C11.506 2 10.955 2 10.282 2h-2.47c-.829 0-1.433 0-1.974.197a3.25 3.25 0 0 0-1.254.826c-.395.42-.633.975-.96 1.736l-.994 2.32c-.387.902-.698 1.626-.89 2.218-.196.6-.306 1.166-.2 1.726a3.25 3.25 0 0 0 1.378 2.09c.473.319 1.036.441 1.665.498.62.057 1.408.057 2.389.057h1.531v2.578a2.259 2.259 0 0 0 2.26 2.258Zm.695-1.955a.759.759 0 0 1-1.454-.303V13.2c0-.571-.463-1.034-1.034-1.034h-1.96c-1.027 0-1.747-.001-2.29-.05-.543-.05-.803-.141-.963-.249a1.75 1.75 0 0 1-.742-1.125c-.036-.19-.017-.465.152-.983.169-.52.452-1.18.857-2.125l.93-2.167c.399-.93.534-1.215.724-1.417a1.75 1.75 0 0 1 .675-.445c.26-.095.576-.106 1.587-.106h2.311c.713 0 1.202 0 1.581.032.37.03.57.085.713.159.33.168.598.435.765.765.074.144.13.343.16.713.03.38.031.869.031 1.581v4.411c0 .17 0 .23-.003.29-.013.27-.069.537-.165.79-.02.055-.045.11-.113.267l-1.761 4.04Z M16.75 2a.75.75 0 0 0-.75.75v8.5a.75.75 0 0 0 1.5 0v-8.5a.75.75 0 0 0-.75-.75Z"/></svg>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg
|
|
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="M9.238 1.497c-.898 0-1.711.532-2.07 1.356l-1.77 4.056a7.133 7.133 0 0 0-.132.317c-.152.401-.24.823-.261 1.251C5 8.577 5 8.675 5 8.822v4.46c0 .673 0 1.223.037 1.671.037.463.118.882.317 1.273a3.25 3.25 0 0 0 1.42 1.42c.391.199.81.28 1.273.317.447.037.998.037 1.671.037h2.47c.829 0 1.433 0 1.974-.197a3.251 3.251 0 0 0 1.254-.826c.395-.42.633-.974.96-1.736l.994-2.319c.387-.902.698-1.626.89-2.218.196-.6.306-1.166.2-1.726a3.25 3.25 0 0 0-1.378-2.09c-.473-.319-1.036-.44-1.665-.498-.62-.057-1.408-.057-2.389-.057h-1.531V3.755a2.259 2.259 0 0 0-2.26-2.258Zm-.695 1.955a.759.759 0 0 1 1.454.303V6.8c0 .571.463 1.034 1.034 1.034h1.96c1.027 0 1.747.001 2.29.05.543.05.803.141.963.249.388.261.655.666.742 1.125.036.19.017.465-.152.983-.169.52-.452 1.18-.857 2.125l-.93 2.167c-.399.93-.534 1.215-.724 1.417a1.751 1.751 0 0 1-.675.445c-.26.095-.576.106-1.588.106H9.75c-.712 0-1.202 0-1.581-.032-.37-.03-.57-.085-.714-.159a1.75 1.75 0 0 1-.764-.765c-.074-.144-.13-.343-.16-.713-.03-.38-.031-.868-.031-1.581V8.84c0-.171 0-.232.003-.29.013-.27.069-.538.165-.791.02-.055.045-.11.113-.267l1.762-4.04Z M3.25 18a.75.75 0 0 0 .75-.75v-8.5a.75.75 0 0 0-1.5 0v8.5c0 .414.336.75.75.75Z"/></svg>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24"><path
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24"><path d="M20.1 3a.9.9 0 0 0-.9.9v10.2a.9.9 0 1 0 1.8 0V3.9a.9.9 0 0 0-.9-.9Z M12.867 22a2.867 2.867 0 0 0 2.58-1.618l2.064-4.265A4.9 4.9 0 0 0 18 13.983V6.9A3.9 3.9 0 0 0 14.1 3H8.19a3.9 3.9 0 0 0-3.658 2.55l-2.287 6.2c-.94 2.547.945 5.25 3.66 5.25H10v2.133A2.867 2.867 0 0 0 12.867 22Zm.96-2.402a1.067 1.067 0 0 1-2.027-.465v-2.739c0-.66-.535-1.194-1.194-1.194H5.904a2.1 2.1 0 0 1-1.97-2.827l2.287-6.2A2.1 2.1 0 0 1 8.19 4.8h5.91c1.16 0 2.1.94 2.1 2.1v7.083a3.1 3.1 0 0 1-.31 1.35l-2.063 4.265Z" clip-rule="evenodd"/></svg>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24"><path
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor" viewBox="0 0 24 24"><path d="M3.9 21a.9.9 0 0 0 .9-.9V9.9a.9.9 0 0 0-1.8 0v10.2a.9.9 0 0 0 .9.9Z M11.133 2c-1.1 0-2.102.629-2.58 1.618L6.489 7.883A4.9 4.9 0 0 0 6 10.017V17.1A3.9 3.9 0 0 0 9.9 21h5.91a3.9 3.9 0 0 0 3.659-2.55l2.287-6.2C22.694 9.703 20.81 7 18.095 7H14V4.867A2.867 2.867 0 0 0 11.133 2Zm-.96 2.402a1.067 1.067 0 0 1 2.027.465v2.739c0 .66.535 1.194 1.194 1.194h4.702a2.1 2.1 0 0 1 1.97 2.827l-2.287 6.2a2.1 2.1 0 0 1-1.97 1.373h-5.91a2.1 2.1 0 0 1-2.1-2.1v-7.083c0-.468.107-.93.31-1.35l2.064-4.265Z" clip-rule="evenodd"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" fill="currentColor" viewBox="0 0 28 28"><path d="M6.884 5.116a1.25 1.25 0 1 0-1.768 1.768L12.232 14l-7.116 7.116a1.25 1.25 0 0 0 1.768 1.768L14 15.768l7.116 7.116a1.25 1.25 0 0 0 1.768-1.768L15.768 14l7.116-7.116a1.25 1.25 0 0 0-1.768-1.768L14 12.232 6.884 5.116Z"/></svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" fill="none" viewBox="0 0 28 28">
|
|
2
|
+
<g clip-path="url(#a)">
|
|
3
|
+
<circle cx="14" cy="14" r="14" fill="#fff"/>
|
|
4
|
+
<path fill="#000" d="M19.024 13.13c.635.384.635 1.354 0 1.738l-6.612 3.997c-.63.38-1.412-.1-1.412-.868v-7.995c0-.768.783-1.25 1.412-.869l6.612 3.998Z"/>
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<clipPath id="a">
|
|
8
|
+
<path fill="#fff" d="M0 0h28v28H0z"/>
|
|
9
|
+
</clipPath>
|
|
10
|
+
</defs>
|
|
11
|
+
</svg>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" fill="
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" fill="currentColor" viewBox="0 0 28 28"><path fill-rule="evenodd" d="M16.201 23.188a1.419 1.419 0 0 1-2.701-.607v-3.699c0-.763-.619-1.382-1.382-1.382h-5.61a2.5 2.5 0 0 1-2.322-3.424l2.982-7.5A2.5 2.5 0 0 1 9.491 5H16.5A2.5 2.5 0 0 1 19 7.5v8.951c0 .543-.12 1.079-.352 1.569L16.2 23.188ZM14.92 26a3.419 3.419 0 0 0 3.09-1.956l2.446-5.168A5.667 5.667 0 0 0 21 16.45V7.5A4.5 4.5 0 0 0 16.5 3H9.491A4.5 4.5 0 0 0 5.31 5.837l-2.983 7.5C1.152 16.292 3.33 19.5 6.51 19.5h4.99v3.081A3.419 3.419 0 0 0 14.919 26ZM24 3a1 1 0 0 0-1 1v12a1 1 0 1 0 2 0V4a1 1 0 0 0-1-1Z" clip-rule="evenodd"/></svg>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<svg
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" fill="currentColor" viewBox="0 0 28 28"><path d="M5 24a1 1 0 1 1-2 0V12a1 1 0 1 1 2 0v12Z M13.081 4c-.548 0-1.048.316-1.282.812L9.353 9.98A3.667 3.667 0 0 0 9 11.549V20.5a2.5 2.5 0 0 0 2.5 2.5h7.009a2.5 2.5 0 0 0 2.323-1.576l2.982-7.5a2.5 2.5 0 0 0-2.323-3.424h-5.609A1.382 1.382 0 0 1 14.5 9.118v-3.7C14.5 4.636 13.865 4 13.081 4Zm-3.09-.044A3.419 3.419 0 0 1 16.5 5.42V8.5h4.991c3.18 0 5.357 3.208 4.182 6.163l-2.983 7.5A4.5 4.5 0 0 1 18.51 25H11.5A4.5 4.5 0 0 1 7 20.5v-8.951c0-.839.186-1.667.545-2.425L9.99 3.956Z" clip-rule="evenodd"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="currentColor" viewBox="0 0 48 48"><path d="M32.46 7.533a1.157 1.157 0 0 1-.003 1.961l-7.658 4.823c-.78.491-1.799-.065-1.799-.981v-3.3c-7.265.512-13 6.568-13 13.964 0 7.732 6.268 14 14 14 5.98 0 11.089-3.75 13.094-9.032a1.5 1.5 0 1 1 2.805 1.064C37.466 36.441 31.267 41 24 41c-9.389 0-17-7.611-17-17 0-9.053 7.077-16.453 16-16.971V3.664c0-.918 1.022-1.473 1.801-.98l7.658 4.85Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="currentColor" viewBox="0 0 48 48"><path d="M4 24.471v-.942c0-1.96 0-2.94.381-3.69a3.5 3.5 0 0 1 1.53-1.529c.749-.381 1.729-.381 3.689-.381h2.733c.025 0 .037 0 .049-.003a.1.1 0 0 0 .029-.012.227.227 0 0 0 .036-.033L21.9 8.315A4.426 4.426 0 0 1 25.05 7 2.951 2.951 0 0 1 28 9.951V38.05A2.951 2.951 0 0 1 25.049 41a4.426 4.426 0 0 1-3.149-1.315l-9.453-9.566a.227.227 0 0 0-.036-.033.1.1 0 0 0-.03-.012c-.01-.003-.023-.003-.048-.003H9.6c-1.96 0-2.94 0-3.689-.381a3.5 3.5 0 0 1-1.53-1.53C4 27.412 4 26.432 4 24.471Zm28.44-6.031a1.5 1.5 0 0 1 2.12 0L38 21.878l3.44-3.44a1.5 1.5 0 0 1 2.12 2.122L40.122 24l3.44 3.44a1.5 1.5 0 0 1-2.122 2.12L38 26.122l-3.44 3.44a1.5 1.5 0 0 1-2.12-2.122L35.878 24l-3.44-3.44a1.5 1.5 0 0 1 0-2.12Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="currentColor" viewBox="0 0 48 48"><path d="M14 21.817c.631-.505 1.627-1.054 3.084-1.857l13.009-7.172c2.268-1.25 3.402-1.875 4.332-1.778a2.908 2.908 0 0 1 2.026 1.134c.549.73.549 1.991.549 4.511v14.69c0 2.52 0 3.78-.549 4.51a2.909 2.909 0 0 1-2.026 1.135c-.93.097-2.064-.528-4.332-1.778L17.084 28.04c-1.457-.803-2.453-1.352-3.084-1.857V34.5a1.5 1.5 0 0 1-3 0v-21a1.5 1.5 0 0 1 3 0v8.317Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="currentColor" viewBox="0 0 48 48"><path d="m30.916 28.04-13.009 7.172c-2.268 1.25-3.402 1.875-4.332 1.778a2.908 2.908 0 0 1-2.026-1.134C11 35.126 11 33.865 11 31.345v-14.69c0-2.52 0-3.78.549-4.51a2.909 2.909 0 0 1 2.026-1.135c.93-.097 2.064.528 4.332 1.778l13.009 7.172c1.457.803 2.453 1.352 3.084 1.857V13.5a1.5 1.5 0 0 1 3 0v21a1.5 1.5 0 0 1-3 0v-8.317c-.631.505-1.627 1.054-3.084 1.857Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="currentColor" viewBox="0 0 48 48"><path fill-rule="evenodd" d="M28.167 7h-8.334c-2.463 0-4.404 0-5.966.128-1.594.13-2.925.4-4.134 1.016a10.5 10.5 0 0 0-4.589 4.59c-.616 1.208-.886 2.54-1.016 4.133C4 18.429 4 20.37 4 22.833v2.334c0 2.463 0 4.404.128 5.966.13 1.594.4 2.925 1.016 4.134a10.5 10.5 0 0 0 4.59 4.589c1.208.616 2.54.886 4.133 1.016 1.562.128 3.502.128 5.966.128h8.334c2.463 0 4.404 0 5.966-.128 1.594-.13 2.925-.4 4.134-1.016a10.5 10.5 0 0 0 4.589-4.59c.616-1.208.886-2.54 1.016-4.133.128-1.562.128-3.502.128-5.966v-2.334c0-2.463 0-4.404-.128-5.966-.13-1.594-.4-2.925-1.016-4.134a10.5 10.5 0 0 0-4.59-4.589c-1.208-.616-2.54-.886-4.133-1.016C32.571 7 30.63 7 28.167 7ZM13.5 28a1.5 1.5 0 0 0 0 3h11a1.5 1.5 0 0 0 0-3h-11ZM12 22.5a1.5 1.5 0 0 1 1.5-1.5h4a1.5 1.5 0 0 1 0 3h-4a1.5 1.5 0 0 1-1.5-1.5ZM30.5 28a1.5 1.5 0 0 0 0 3h4a1.5 1.5 0 0 0 0-3h-4ZM22 22.5a1.5 1.5 0 0 1 1.5-1.5h11a1.5 1.5 0 0 1 0 3h-11a1.5 1.5 0 0 1-1.5-1.5Z" clip-rule="evenodd"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="currentColor" viewBox="0 0 48 48"><path fill-rule="evenodd" d="M6.56 4.44a1.5 1.5 0 1 0-2.12 2.12l3.088 3.09a10.499 10.499 0 0 0-2.384 3.083c-.616 1.21-.886 2.54-1.016 4.134C4 18.429 4 20.369 4 22.833v2.334c0 2.463 0 4.404.128 5.966.13 1.594.4 2.925 1.016 4.134a10.5 10.5 0 0 0 4.59 4.589c1.208.616 2.54.886 4.133 1.016 1.562.128 3.502.128 5.966.128h8.334c2.463 0 4.404 0 5.966-.128 1.437-.117 2.66-.348 3.773-.844l3.533 3.533a1.5 1.5 0 0 0 2.122-2.122l-37-37ZM13.5 28a1.5 1.5 0 0 0 0 3h11a1.5 1.5 0 0 0 0-3h-11ZM12 22.5a1.5 1.5 0 0 1 1.5-1.5h4a1.5 1.5 0 0 1 0 3h-4a1.5 1.5 0 0 1-1.5-1.5Z M34.5 24h-4.139l12.052 12.051c.158-.254.306-.516.443-.784.616-1.21.886-2.54 1.016-4.134.128-1.562.128-3.502.128-5.966v-2.334c0-2.463 0-4.404-.128-5.966-.13-1.594-.4-2.925-1.016-4.134a10.5 10.5 0 0 0-4.59-4.589c-1.208-.616-2.54-.886-4.133-1.016C32.571 7 30.63 7 28.167 7h-8.334c-2.463 0-4.404 0-5.966.128l-.347.03L27.36 21h7.14a1.5 1.5 0 0 1 0 3Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="currentColor" viewBox="0 0 48 48"><path d="M4 24.471v-.942c0-1.96 0-2.94.381-3.69a3.5 3.5 0 0 1 1.53-1.529c.749-.381 1.729-.381 3.689-.381h2.733c.025 0 .037 0 .049-.003a.1.1 0 0 0 .029-.012.227.227 0 0 0 .036-.033L21.9 8.315A4.426 4.426 0 0 1 25.05 7 2.951 2.951 0 0 1 28 9.951V38.05A2.951 2.951 0 0 1 25.049 41a4.426 4.426 0 0 1-3.149-1.315l-9.453-9.566a.227.227 0 0 0-.036-.033.1.1 0 0 0-.03-.012c-.01-.003-.023-.003-.048-.003H9.6c-1.96 0-2.94 0-3.689-.381a3.5 3.5 0 0 1-1.53-1.53C4 27.412 4 26.432 4 24.471Zm32.372-11.96a1.5 1.5 0 0 1 2.117-.139C41.818 15.29 44 19.111 44 24s-2.182 8.71-5.511 11.628a1.5 1.5 0 1 1-1.978-2.256C39.315 30.915 41 27.872 41 24s-1.685-6.915-4.489-9.372a1.5 1.5 0 0 1-.139-2.117Z M33.365 17.275a1.5 1.5 0 1 0-1.73 2.45C33.123 20.776 34 22.33 34 24c0 1.671-.877 3.224-2.365 4.275a1.5 1.5 0 1 0 1.73 2.45C35.535 29.194 37 26.78 37 24c0-2.779-1.465-5.194-3.635-6.725Z"/></svg>
|