@vkontakte/icons 2.28.0 → 2.29.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/56/articles_outline.js +12 -0
- package/dist/es6/56/articles_outline.js +2 -0
- package/dist/es6/index.js +1 -0
- package/dist/icons-map.json +1 -1
- package/dist/index.js +4 -0
- package/dist/typings/56/articles_outline.d.ts +12 -0
- package/dist/typings/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/svg/56/articles_outline_56.svg +1 -0
- package/ts/56/articles_outline.ts +24 -0
- package/ts/index.ts +1 -0
package/dist/index.js
CHANGED
|
@@ -6936,6 +6936,9 @@ _export(exports, {
|
|
|
6936
6936
|
Icon56ArticleOutline: function() {
|
|
6937
6937
|
return _article_outline4.default;
|
|
6938
6938
|
},
|
|
6939
|
+
Icon56ArticlesOutline: function() {
|
|
6940
|
+
return _articles_outline3.default;
|
|
6941
|
+
},
|
|
6939
6942
|
Icon56BackspaceOutline: function() {
|
|
6940
6943
|
return _backspace_outline1.default;
|
|
6941
6944
|
},
|
|
@@ -9773,6 +9776,7 @@ var _arrow_right_door_outline = /*#__PURE__*/ _interop_require_default(require("
|
|
|
9773
9776
|
var _arrow_up_rectangle_outline1 = /*#__PURE__*/ _interop_require_default(require("./56/arrow_up_rectangle_outline"));
|
|
9774
9777
|
var _arrow_uturn_left_outline5 = /*#__PURE__*/ _interop_require_default(require("./56/arrow_uturn_left_outline"));
|
|
9775
9778
|
var _article_outline4 = /*#__PURE__*/ _interop_require_default(require("./56/article_outline"));
|
|
9779
|
+
var _articles_outline3 = /*#__PURE__*/ _interop_require_default(require("./56/articles_outline"));
|
|
9776
9780
|
var _backspace_outline1 = /*#__PURE__*/ _interop_require_default(require("./56/backspace_outline"));
|
|
9777
9781
|
var _block_outline4 = /*#__PURE__*/ _interop_require_default(require("./56/block_outline"));
|
|
9778
9782
|
var _bookmark_outline5 = /*#__PURE__*/ _interop_require_default(require("./56/bookmark_outline"));
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { SVGProps, Ref } from 'react';
|
|
2
|
+
export interface Icon56ArticlesOutlineProps 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
|
+
declare const _default: import("react").FC<Icon56ArticlesOutlineProps>;
|
|
12
|
+
export default _default;
|
package/dist/typings/index.d.ts
CHANGED
|
@@ -2307,6 +2307,7 @@ export { default as Icon56ArrowRightDoorOutline } from './56/arrow_right_door_ou
|
|
|
2307
2307
|
export { default as Icon56ArrowUpRectangleOutline } from './56/arrow_up_rectangle_outline';
|
|
2308
2308
|
export { default as Icon56ArrowUturnLeftOutline } from './56/arrow_uturn_left_outline';
|
|
2309
2309
|
export { default as Icon56ArticleOutline } from './56/article_outline';
|
|
2310
|
+
export { default as Icon56ArticlesOutline } from './56/articles_outline';
|
|
2310
2311
|
export { default as Icon56BackspaceOutline } from './56/backspace_outline';
|
|
2311
2312
|
export { default as Icon56BlockOutline } from './56/block_outline';
|
|
2312
2313
|
export { default as Icon56BookmarkOutline } from './56/bookmark_outline';
|
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="56" height="56" fill="currentColor" viewBox="0 0 56 56"><path d="M6.499 13a1.5 1.5 0 0 0 0 3h6.505v13.5a1.5 1.5 0 1 0 3 0V16h6.495a1.5 1.5 0 0 0 0-3h-16Zm25.002 2.997a1.5 1.5 0 0 0 0 3H48.5a1.5 1.5 0 1 0 0-3H31.501ZM22 29.503a1.5 1.5 0 0 1 1.5-1.5h25a1.5 1.5 0 1 1 0 3h-25a1.5 1.5 0 0 1-1.5-1.5ZM12.996 41.5a1.5 1.5 0 0 1 1.5-1.5H48.5a1.5 1.5 0 1 1 0 3H14.496a1.5 1.5 0 0 1-1.5-1.5Z"/></svg>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { SVGProps, Ref } from 'react';
|
|
2
|
+
import { makeIcon } from '@vkontakte/icons-sprite';
|
|
3
|
+
|
|
4
|
+
export interface Icon56ArticlesOutlineProps extends SVGProps<SVGSVGElement> {
|
|
5
|
+
fill?: string;
|
|
6
|
+
width?: number;
|
|
7
|
+
height?: number;
|
|
8
|
+
getRootRef?: Ref<SVGSVGElement>;
|
|
9
|
+
title?: string;
|
|
10
|
+
deprecated?: boolean;
|
|
11
|
+
replacement?: string;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
export default makeIcon<Icon56ArticlesOutlineProps>(
|
|
16
|
+
'Icon56ArticlesOutline',
|
|
17
|
+
'articles_outline_56',
|
|
18
|
+
'0 0 56 56',
|
|
19
|
+
'<symbol xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 56 56" id="articles_outline_56"><path d="M6.499 13a1.5 1.5 0 0 0 0 3h6.505v13.5a1.5 1.5 0 1 0 3 0V16h6.495a1.5 1.5 0 0 0 0-3h-16Zm25.002 2.997a1.5 1.5 0 0 0 0 3H48.5a1.5 1.5 0 1 0 0-3H31.501ZM22 29.503a1.5 1.5 0 0 1 1.5-1.5h25a1.5 1.5 0 1 1 0 3h-25a1.5 1.5 0 0 1-1.5-1.5ZM12.996 41.5a1.5 1.5 0 0 1 1.5-1.5H48.5a1.5 1.5 0 1 1 0 3H14.496a1.5 1.5 0 0 1-1.5-1.5Z" /></symbol>',
|
|
20
|
+
56,
|
|
21
|
+
56,
|
|
22
|
+
false,
|
|
23
|
+
undefined
|
|
24
|
+
);
|
package/ts/index.ts
CHANGED
|
@@ -2307,6 +2307,7 @@ export { default as Icon56ArrowRightDoorOutline } from './56/arrow_right_door_ou
|
|
|
2307
2307
|
export { default as Icon56ArrowUpRectangleOutline } from './56/arrow_up_rectangle_outline';
|
|
2308
2308
|
export { default as Icon56ArrowUturnLeftOutline } from './56/arrow_uturn_left_outline';
|
|
2309
2309
|
export { default as Icon56ArticleOutline } from './56/article_outline';
|
|
2310
|
+
export { default as Icon56ArticlesOutline } from './56/articles_outline';
|
|
2310
2311
|
export { default as Icon56BackspaceOutline } from './56/backspace_outline';
|
|
2311
2312
|
export { default as Icon56BlockOutline } from './56/block_outline';
|
|
2312
2313
|
export { default as Icon56BookmarkOutline } from './56/bookmark_outline';
|