@vkontakte/icons 2.99.0 → 2.100.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/24/compass_24.js +13 -0
- package/dist/36/compass_36.js +13 -0
- package/dist/es6/24/compass_24.js +3 -0
- package/dist/es6/36/compass_36.js +3 -0
- package/dist/es6/index.js +2 -0
- package/dist/icons-map.json +1 -1
- package/dist/index.js +8 -0
- package/dist/typings/24/compass_24.d.ts +11 -0
- package/dist/typings/36/compass_36.d.ts +11 -0
- package/dist/typings/index.d.ts +2 -0
- package/package.json +3 -3
- package/src/svg/24/compass_24.svg +1 -0
- package/src/svg/36/compass_36.svg +1 -0
package/dist/index.js
CHANGED
|
@@ -3570,6 +3570,9 @@ _export(exports, {
|
|
|
3570
3570
|
Icon24CommentOutline: function() {
|
|
3571
3571
|
return _comment_outline_24.Icon24CommentOutline;
|
|
3572
3572
|
},
|
|
3573
|
+
Icon24Compass: function() {
|
|
3574
|
+
return _compass_24.Icon24Compass;
|
|
3575
|
+
},
|
|
3573
3576
|
Icon24CompassOutline: function() {
|
|
3574
3577
|
return _compass_outline_24.Icon24CompassOutline;
|
|
3575
3578
|
},
|
|
@@ -7695,6 +7698,9 @@ _export(exports, {
|
|
|
7695
7698
|
Icon36CoinsStacks3Outline: function() {
|
|
7696
7699
|
return _coins_stacks_3_outline_36.Icon36CoinsStacks3Outline;
|
|
7697
7700
|
},
|
|
7701
|
+
Icon36Compass: function() {
|
|
7702
|
+
return _compass_36.Icon36Compass;
|
|
7703
|
+
},
|
|
7698
7704
|
Icon36Delete: function() {
|
|
7699
7705
|
return _delete_36.Icon36Delete;
|
|
7700
7706
|
},
|
|
@@ -9955,6 +9961,7 @@ var _color_picker_outline_24 = require("./24/color_picker_outline_24");
|
|
|
9955
9961
|
var _comment_24 = require("./24/comment_24");
|
|
9956
9962
|
var _comment_add_badge_outline_24 = require("./24/comment_add_badge_outline_24");
|
|
9957
9963
|
var _comment_outline_24 = require("./24/comment_outline_24");
|
|
9964
|
+
var _compass_24 = require("./24/compass_24");
|
|
9958
9965
|
var _compass_outline_24 = require("./24/compass_outline_24");
|
|
9959
9966
|
var _computer_outline_24 = require("./24/computer_outline_24");
|
|
9960
9967
|
var _connection_24 = require("./24/connection_24");
|
|
@@ -11330,6 +11337,7 @@ var _coins_stack_high_outline_36 = require("./36/coins_stack_high_outline_36");
|
|
|
11330
11337
|
var _coins_stack_outline_36 = require("./36/coins_stack_outline_36");
|
|
11331
11338
|
var _coins_stacks_2_outline_36 = require("./36/coins_stacks_2_outline_36");
|
|
11332
11339
|
var _coins_stacks_3_outline_36 = require("./36/coins_stacks_3_outline_36");
|
|
11340
|
+
var _compass_36 = require("./36/compass_36");
|
|
11333
11341
|
var _delete_36 = require("./36/delete_36");
|
|
11334
11342
|
var _diamond_outline_36 = require("./36/diamond_outline_36");
|
|
11335
11343
|
var _discount_outline_36 = require("./36/discount_outline_36");
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SVGProps, Ref } from 'react';
|
|
2
|
+
export interface Icon24CompassProps 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 Icon24Compass: import("react").FC<Icon24CompassProps>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SVGProps, Ref } from 'react';
|
|
2
|
+
export interface Icon36CompassProps 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 Icon36Compass: import("react").FC<Icon36CompassProps>;
|
package/dist/typings/index.d.ts
CHANGED
|
@@ -1186,6 +1186,7 @@ export { Icon24ColorPickerOutline } from './24/color_picker_outline_24';
|
|
|
1186
1186
|
export { Icon24Comment } from './24/comment_24';
|
|
1187
1187
|
export { Icon24CommentAddBadgeOutline } from './24/comment_add_badge_outline_24';
|
|
1188
1188
|
export { Icon24CommentOutline } from './24/comment_outline_24';
|
|
1189
|
+
export { Icon24Compass } from './24/compass_24';
|
|
1189
1190
|
export { Icon24CompassOutline } from './24/compass_outline_24';
|
|
1190
1191
|
export { Icon24ComputerOutline } from './24/computer_outline_24';
|
|
1191
1192
|
export { Icon24Connection } from './24/connection_24';
|
|
@@ -2561,6 +2562,7 @@ export { Icon36CoinsStackHighOutline } from './36/coins_stack_high_outline_36';
|
|
|
2561
2562
|
export { Icon36CoinsStackOutline } from './36/coins_stack_outline_36';
|
|
2562
2563
|
export { Icon36CoinsStacks2Outline } from './36/coins_stacks_2_outline_36';
|
|
2563
2564
|
export { Icon36CoinsStacks3Outline } from './36/coins_stacks_3_outline_36';
|
|
2565
|
+
export { Icon36Compass } from './36/compass_36';
|
|
2564
2566
|
export { Icon36Delete } from './36/delete_36';
|
|
2565
2567
|
export { Icon36DiamondOutline } from './36/diamond_outline_36';
|
|
2566
2568
|
export { Icon36DiscountOutline } from './36/discount_outline_36';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vkontakte/icons",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.100.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": {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@size-limit/file": "^11.0.2",
|
|
35
35
|
"@size-limit/webpack": "^11.0.2",
|
|
36
|
-
"@swc/cli": "^0.3.
|
|
36
|
+
"@swc/cli": "^0.3.10",
|
|
37
37
|
"@swc/core": "^1.4.2",
|
|
38
38
|
"@types/react": "16.14.34",
|
|
39
39
|
"@vkontakte/icons-scripts": "4.0.0",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"style-loader": "^3.3.4",
|
|
49
49
|
"swc-loader": "0.2.6",
|
|
50
50
|
"typescript": "^5.3.3",
|
|
51
|
-
"webpack": "^5.90.
|
|
51
|
+
"webpack": "^5.90.3"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
54
|
"react": "^16.9.34 || ^17 || ^18"
|
|
@@ -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="M7.392 5.889 20.02 3.02a.8.8 0 0 1 .957.958l-2.88 12.636a2 2 0 0 1-1.509 1.506l-12.61 2.86a.8.8 0 0 1-.957-.958L5.885 7.397a2 2 0 0 1 1.507-1.508ZM12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z" clip-rule="evenodd"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" fill="currentColor" viewBox="0 0 36 36"><path d="M19.414 19.414a2 2 0 1 1-2.828-2.828 2 2 0 0 1 2.828 2.828Z"/><path fill-rule="evenodd" d="M7.393 28.607c5.858 5.858 15.356 5.858 21.214 0 5.858-5.858 5.858-15.356 0-21.214-5.858-5.857-15.356-5.857-21.214 0-5.857 5.858-5.857 15.356 0 21.214Zm8.11-15.286 8.598-2.15a.6.6 0 0 1 .727.728l-2.149 8.597a3 3 0 0 1-2.183 2.183L11.9 24.83a.6.6 0 0 1-.727-.728l2.149-8.597a3 3 0 0 1 2.183-2.183Z" clip-rule="evenodd"/></svg>
|