@vkontakte/icons 3.30.0 → 3.32.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/16/stories_ideas_16.d.ts +5 -0
- package/dist/16/stories_ideas_16.js +23 -0
- package/dist/20/circle_20.d.ts +5 -0
- package/dist/20/circle_20.js +18 -0
- package/dist/icons-map.json +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/dist/typings/16/stories_ideas_16.d.ts +5 -0
- package/dist/typings/20/circle_20.d.ts +5 -0
- package/dist/typings/index.d.ts +2 -0
- package/package.json +1 -1
- package/src/svg/16/stories_ideas_16.svg +1 -0
- package/src/svg/20/circle_20.svg +1 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
import { SvgIconRootV2 } from "@vkontakte/icons-sprite";
|
|
4
|
+
export const Icon16StoriesIdeas = (props)=>{
|
|
5
|
+
return /*#__PURE__*/ _jsxs(SvgIconRootV2, {
|
|
6
|
+
viewBox: "0 0 16 16",
|
|
7
|
+
width: 16,
|
|
8
|
+
height: 16,
|
|
9
|
+
vkuiIconId: "stories_ideas_16",
|
|
10
|
+
vkuiAttrs: {
|
|
11
|
+
"fill": "currentColor"
|
|
12
|
+
},
|
|
13
|
+
vkuiProps: props,
|
|
14
|
+
children: [
|
|
15
|
+
/*#__PURE__*/ _jsx("path", {
|
|
16
|
+
d: "M4.122 3.955A3 3 0 0 1 7.598 1.52l3.482.614a3 3 0 0 1 2.433 3.475l-1.1 6.245a3 3 0 0 1-3.476 2.434l-1.933-.346a.2.2 0 0 1-.155-.26l.338-1.033a.73.73 0 0 1 .464-.464l1.018-.34c1.774-.591 1.774-3.101 0-3.693l-1.018-.34a.73.73 0 0 1-.464-.464l-.34-1.018c-.386-1.159-1.59-1.56-2.545-1.207-.167.062-.373-.076-.342-.251z"
|
|
17
|
+
}),
|
|
18
|
+
/*#__PURE__*/ _jsx("path", {
|
|
19
|
+
d: "M4.576 6.805a.447.447 0 0 1 .848 0l.34 1.02c.222.666.745 1.19 1.412 1.412l1.019.34a.447.447 0 0 1 0 .847l-1.02.34a2.23 2.23 0 0 0-1.412 1.412l-.34 1.019a.447.447 0 0 1-.847 0l-.34-1.02a2.23 2.23 0 0 0-1.412-1.412l-1.019-.34a.447.447 0 0 1 0-.847l1.02-.34a2.23 2.23 0 0 0 1.412-1.412z"
|
|
20
|
+
})
|
|
21
|
+
]
|
|
22
|
+
});
|
|
23
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
import { SvgIconRootV2 } from "@vkontakte/icons-sprite";
|
|
4
|
+
export const Icon20Circle = (props)=>{
|
|
5
|
+
return /*#__PURE__*/ _jsx(SvgIconRootV2, {
|
|
6
|
+
viewBox: "0 0 20 20",
|
|
7
|
+
width: 20,
|
|
8
|
+
height: 20,
|
|
9
|
+
vkuiIconId: "circle_20",
|
|
10
|
+
vkuiAttrs: {
|
|
11
|
+
"fill": "currentColor"
|
|
12
|
+
},
|
|
13
|
+
vkuiProps: props,
|
|
14
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
15
|
+
d: "M10 3a7 7 0 1 1 0 14 7 7 0 0 1 0-14"
|
|
16
|
+
})
|
|
17
|
+
});
|
|
18
|
+
};
|