@vkontakte/icons 3.54.0 → 3.55.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/square_stack_up_outline_16.d.ts +5 -0
- package/dist/16/square_stack_up_outline_16.js +18 -0
- package/dist/28/smile_circle_fill_28.d.ts +5 -0
- package/dist/28/smile_circle_fill_28.js +64 -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/square_stack_up_outline_16.d.ts +5 -0
- package/dist/typings/28/smile_circle_fill_28.d.ts +5 -0
- package/dist/typings/index.d.ts +2 -0
- package/package.json +4 -4
- package/src/svg/16/square_stack_up_outline_16.svg +1 -0
- package/src/svg/28/smile_circle_fill_28.svg +1 -0
|
@@ -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 Icon16SquareStackUpOutline = (props)=>{
|
|
5
|
+
return /*#__PURE__*/ _jsx(SvgIconRootV2, {
|
|
6
|
+
viewBox: "0 0 16 16",
|
|
7
|
+
width: 16,
|
|
8
|
+
height: 16,
|
|
9
|
+
vkuiIconId: "square_stack_up_outline_16",
|
|
10
|
+
vkuiAttrs: {
|
|
11
|
+
"fill": "currentColor"
|
|
12
|
+
},
|
|
13
|
+
vkuiProps: props,
|
|
14
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
15
|
+
d: "M1.326 10.835a.75.75 0 0 1 1.002-.35l5.67 2.735 5.679-2.732a.75.75 0 0 1 .65 1.353l-5.796 2.788a1.23 1.23 0 0 1-1.066-.001l-5.79-2.791a.75.75 0 0 1-.349-1.002m-.002-2.892a.75.75 0 0 1 1.002-.35l5.672 2.734 5.677-2.73a.75.75 0 0 1 .65 1.352l-5.793 2.787a1.23 1.23 0 0 1-1.067 0l-5.791-2.79a.75.75 0 0 1-.35-1.003m6.278-6.626c.26-.09.542-.09.802 0l.128.052 5.51 2.625c.876.417.932 1.613.164 2.128l-.164.094L8.524 8.84a1.23 1.23 0 0 1-1.055 0L1.958 6.22c-.936-.446-.934-1.777-.001-2.222l5.517-2.629zM3.113 5.108l4.883 2.32 4.889-2.324-4.882-2.326z"
|
|
16
|
+
})
|
|
17
|
+
});
|
|
18
|
+
};
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
3
|
+
import * as React from "react";
|
|
4
|
+
import { SvgIconRootV2 } from "@vkontakte/icons-sprite";
|
|
5
|
+
export const Icon28SmileCircleFill = (props)=>{
|
|
6
|
+
const reactId = React.useId();
|
|
7
|
+
return /*#__PURE__*/ _jsxs(SvgIconRootV2, {
|
|
8
|
+
viewBox: "0 0 28 28",
|
|
9
|
+
width: 28,
|
|
10
|
+
height: 28,
|
|
11
|
+
vkuiIconId: "smile_circle_fill_28",
|
|
12
|
+
vkuiAttrs: {
|
|
13
|
+
"fill": "none"
|
|
14
|
+
},
|
|
15
|
+
vkuiProps: props,
|
|
16
|
+
children: [
|
|
17
|
+
/*#__PURE__*/ _jsxs("g", {
|
|
18
|
+
clipPath: `url(#smile_circle_fill_28${reactId}a)`,
|
|
19
|
+
children: [
|
|
20
|
+
/*#__PURE__*/ _jsx("circle", {
|
|
21
|
+
cx: "14",
|
|
22
|
+
cy: "14",
|
|
23
|
+
r: "14",
|
|
24
|
+
fill: `url(#smile_circle_fill_28${reactId}b)`
|
|
25
|
+
}),
|
|
26
|
+
/*#__PURE__*/ _jsx("path", {
|
|
27
|
+
fill: "#fff",
|
|
28
|
+
fillRule: "evenodd",
|
|
29
|
+
d: "M22 14a8 8 0 1 0-16 0 8 8 0 0 0 16 0m-9.5-1.622a1.125 1.125 0 1 0-2.25 0 1.125 1.125 0 0 0 2.25 0m4.12-1.125a1.125 1.125 0 1 1 .01 2.25 1.125 1.125 0 0 1-.01-2.25m.774 4.25a.75.75 0 0 0-1.046.175c-1.114 1.56-3.576 1.576-4.703 0a.75.75 0 0 0-1.22.872c1.692 2.368 5.433 2.393 7.143 0a.75.75 0 0 0-.174-1.047",
|
|
30
|
+
clipRule: "evenodd"
|
|
31
|
+
})
|
|
32
|
+
]
|
|
33
|
+
}),
|
|
34
|
+
/*#__PURE__*/ _jsxs("defs", {
|
|
35
|
+
children: [
|
|
36
|
+
/*#__PURE__*/ _jsxs("linearGradient", {
|
|
37
|
+
id: `smile_circle_fill_28${reactId}b`,
|
|
38
|
+
x1: "-14",
|
|
39
|
+
x2: "14",
|
|
40
|
+
y1: "14",
|
|
41
|
+
y2: "42",
|
|
42
|
+
gradientUnits: "userSpaceOnUse",
|
|
43
|
+
children: [
|
|
44
|
+
/*#__PURE__*/ _jsx("stop", {
|
|
45
|
+
stopColor: "#ffb73d"
|
|
46
|
+
}),
|
|
47
|
+
/*#__PURE__*/ _jsx("stop", {
|
|
48
|
+
offset: "1",
|
|
49
|
+
stopColor: "#ffa000"
|
|
50
|
+
})
|
|
51
|
+
]
|
|
52
|
+
}),
|
|
53
|
+
/*#__PURE__*/ _jsx("clipPath", {
|
|
54
|
+
id: `smile_circle_fill_28${reactId}a`,
|
|
55
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
56
|
+
fill: "#fff",
|
|
57
|
+
d: "M0 0h28v28H0z"
|
|
58
|
+
})
|
|
59
|
+
})
|
|
60
|
+
]
|
|
61
|
+
})
|
|
62
|
+
]
|
|
63
|
+
});
|
|
64
|
+
};
|