@vkontakte/icons 2.68.0 → 2.69.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/20/add_circle_fill_20.js +13 -0
- package/dist/20/user_square_20.js +13 -0
- package/dist/es6/20/add_circle_fill_20.js +3 -0
- package/dist/es6/20/user_square_20.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/20/add_circle_fill_20.d.ts +11 -0
- package/dist/typings/20/user_square_20.d.ts +11 -0
- package/dist/typings/index.d.ts +2 -0
- package/package.json +2 -2
- package/src/svg/20/add_circle_fill_20.svg +4 -0
- package/src/svg/20/user_square_20.svg +1 -0
package/dist/index.js
CHANGED
|
@@ -1326,6 +1326,9 @@ _export(exports, {
|
|
|
1326
1326
|
Icon20AddCircle: function() {
|
|
1327
1327
|
return _add_circle_20.Icon20AddCircle;
|
|
1328
1328
|
},
|
|
1329
|
+
Icon20AddCircleFill: function() {
|
|
1330
|
+
return _add_circle_fill_20.Icon20AddCircleFill;
|
|
1331
|
+
},
|
|
1329
1332
|
Icon20AddCircleFillBlue: function() {
|
|
1330
1333
|
return _add_circle_fill_blue_20.Icon20AddCircleFillBlue;
|
|
1331
1334
|
},
|
|
@@ -2787,6 +2790,9 @@ _export(exports, {
|
|
|
2787
2790
|
Icon20UsersOutline: function() {
|
|
2788
2791
|
return _users_outline_20.Icon20UsersOutline;
|
|
2789
2792
|
},
|
|
2793
|
+
Icon20UserSquare: function() {
|
|
2794
|
+
return _user_square_20.Icon20UserSquare;
|
|
2795
|
+
},
|
|
2790
2796
|
Icon20UserSquareOnSquareOutline: function() {
|
|
2791
2797
|
return _user_square_on_square_outline_20.Icon20UserSquareOnSquareOutline;
|
|
2792
2798
|
},
|
|
@@ -8768,6 +8774,7 @@ var _achievement_circle_fill_blue_20 = require("./20/achievement_circle_fill_blu
|
|
|
8768
8774
|
var _add_20 = require("./20/add_20");
|
|
8769
8775
|
var _add_alt_20 = require("./20/add_alt_20");
|
|
8770
8776
|
var _add_circle_20 = require("./20/add_circle_20");
|
|
8777
|
+
var _add_circle_fill_20 = require("./20/add_circle_fill_20");
|
|
8771
8778
|
var _add_circle_fill_blue_20 = require("./20/add_circle_fill_blue_20");
|
|
8772
8779
|
var _add_circle_fill_gray_20 = require("./20/add_circle_fill_gray_20");
|
|
8773
8780
|
var _add_circle_fill_green_20 = require("./20/add_circle_fill_green_20");
|
|
@@ -9255,6 +9262,7 @@ var _users_3_outline_20 = require("./20/users_3_outline_20");
|
|
|
9255
9262
|
var _users_circle_fill_blue_20 = require("./20/users_circle_fill_blue_20");
|
|
9256
9263
|
var _user_slash_outline_20 = require("./20/user_slash_outline_20");
|
|
9257
9264
|
var _users_outline_20 = require("./20/users_outline_20");
|
|
9265
|
+
var _user_square_20 = require("./20/user_square_20");
|
|
9258
9266
|
var _user_square_on_square_outline_20 = require("./20/user_square_on_square_outline_20");
|
|
9259
9267
|
var _user_square_outline_20 = require("./20/user_square_outline_20");
|
|
9260
9268
|
var _users_slash_outline_20 = require("./20/users_slash_outline_20");
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SVGProps, Ref } from 'react';
|
|
2
|
+
export interface Icon20AddCircleFillProps 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 Icon20AddCircleFill: import("react").FC<Icon20AddCircleFillProps>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SVGProps, Ref } from 'react';
|
|
2
|
+
export interface Icon20UserSquareProps 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 Icon20UserSquare: import("react").FC<Icon20UserSquareProps>;
|
package/dist/typings/index.d.ts
CHANGED
|
@@ -437,6 +437,7 @@ export { Icon20AchievementCircleFillBlue } from './20/achievement_circle_fill_bl
|
|
|
437
437
|
export { Icon20Add } from './20/add_20';
|
|
438
438
|
export { Icon20AddAlt } from './20/add_alt_20';
|
|
439
439
|
export { Icon20AddCircle } from './20/add_circle_20';
|
|
440
|
+
export { Icon20AddCircleFill } from './20/add_circle_fill_20';
|
|
440
441
|
export { Icon20AddCircleFillBlue } from './20/add_circle_fill_blue_20';
|
|
441
442
|
export { Icon20AddCircleFillGray } from './20/add_circle_fill_gray_20';
|
|
442
443
|
export { Icon20AddCircleFillGreen } from './20/add_circle_fill_green_20';
|
|
@@ -924,6 +925,7 @@ export { Icon20Users3Outline } from './20/users_3_outline_20';
|
|
|
924
925
|
export { Icon20UsersCircleFillBlue } from './20/users_circle_fill_blue_20';
|
|
925
926
|
export { Icon20UserSlashOutline } from './20/user_slash_outline_20';
|
|
926
927
|
export { Icon20UsersOutline } from './20/users_outline_20';
|
|
928
|
+
export { Icon20UserSquare } from './20/user_square_20';
|
|
927
929
|
export { Icon20UserSquareOnSquareOutline } from './20/user_square_on_square_outline_20';
|
|
928
930
|
export { Icon20UserSquareOutline } from './20/user_square_outline_20';
|
|
929
931
|
export { Icon20UsersSlashOutline } from './20/users_slash_outline_20';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vkontakte/icons",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.69.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": "^9.0.0",
|
|
35
35
|
"@size-limit/webpack": "^9.0.0",
|
|
36
36
|
"@swc/cli": "^0.1.61",
|
|
37
|
-
"@swc/core": "^1.3.
|
|
37
|
+
"@swc/core": "^1.3.89",
|
|
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,4 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20">
|
|
2
|
+
<circle cx="10" cy="10" r="10" fill="currentColor"/>
|
|
3
|
+
<path fill="#fff" d="M10 4.5a1 1 0 0 1 1 1V9h3.5a1 1 0 1 1 0 2H11v3.5a1 1 0 1 1-2 0V11H5.5a1 1 0 1 1 0-2H9V5.5a1 1 0 0 1 1-1Z"/>
|
|
4
|
+
</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="M2.327 3.638C2 4.28 2 5.12 2 6.8v6.4c0 1.68 0 2.52.327 3.162a3 3 0 0 0 1.311 1.311C4.28 18 5.12 18 6.8 18h6.4c1.68 0 2.52 0 3.162-.327a3 3 0 0 0 1.311-1.311C18 15.72 18 14.88 18 13.2V6.8c0-1.68 0-2.52-.327-3.162a3 3 0 0 0-1.311-1.311C15.72 2 14.88 2 13.2 2H6.8c-1.68 0-2.52 0-3.162.327a3 3 0 0 0-1.311 1.311ZM10 6a2 2 0 1 1 .001 3.999A2 2 0 0 1 10 6Zm-4 7.498V13c0-1.75 2.665-2.25 4-2.25s4 .5 4 2.25v.498a.503.503 0 0 1-.502.502H6.503A.503.503 0 0 1 6 13.498Z" clip-rule="evenodd"/></svg>
|