@vkontakte/icons 3.56.0 → 3.58.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/cake_outline_16.d.ts +5 -0
- package/dist/16/cake_outline_16.js +25 -0
- package/dist/16/home_outline_16.d.ts +5 -0
- package/dist/16/home_outline_16.js +20 -0
- package/dist/20/flower_outline_20.d.ts +5 -0
- package/dist/20/flower_outline_20.js +27 -0
- package/dist/20/moon_auto_outline_20.d.ts +5 -0
- package/dist/20/moon_auto_outline_20.js +18 -0
- package/dist/20/sun_auto_outline_20.d.ts +5 -0
- package/dist/20/sun_auto_outline_20.js +18 -0
- package/dist/icons-map.json +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.js +5 -0
- package/dist/typings/16/cake_outline_16.d.ts +5 -0
- package/dist/typings/16/home_outline_16.d.ts +5 -0
- package/dist/typings/20/flower_outline_20.d.ts +5 -0
- package/dist/typings/20/moon_auto_outline_20.d.ts +5 -0
- package/dist/typings/20/sun_auto_outline_20.d.ts +5 -0
- package/dist/typings/index.d.ts +5 -0
- package/package.json +4 -4
- package/src/svg/16/cake_outline_16.svg +1 -0
- package/src/svg/16/home_outline_16.svg +1 -0
- package/src/svg/20/flower_outline_20.svg +1 -0
- package/src/svg/20/moon_auto_outline_20.svg +1 -0
- package/src/svg/20/sun_auto_outline_20.svg +1 -0
|
@@ -0,0 +1,25 @@
|
|
|
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 Icon16CakeOutline = (props)=>{
|
|
5
|
+
return /*#__PURE__*/ _jsxs(SvgIconRootV2, {
|
|
6
|
+
viewBox: "0 0 16 16",
|
|
7
|
+
width: 16,
|
|
8
|
+
height: 16,
|
|
9
|
+
vkuiIconId: "cake_outline_16",
|
|
10
|
+
vkuiAttrs: {
|
|
11
|
+
"fill": "currentColor"
|
|
12
|
+
},
|
|
13
|
+
vkuiProps: props,
|
|
14
|
+
children: [
|
|
15
|
+
/*#__PURE__*/ _jsx("path", {
|
|
16
|
+
fillRule: "evenodd",
|
|
17
|
+
d: "M12 5c1.13 0 1.83.46 2.206 1.044a2.2 2.2 0 0 1 .338.978q.004.047.005.08v.029c0 .784-.115 1.625-.599 2.27q-.26.342-.6.548v1.4c0 .408 0 .76-.023 1.047-.024.297-.077.592-.222.875-.215.424-.56.768-.983.984-.284.144-.579.197-.875.222-.288.023-.64.023-1.047.023H5.8c-.407 0-.759 0-1.046-.023-.297-.025-.592-.078-.875-.222a2.25 2.25 0 0 1-.984-.984 2.3 2.3 0 0 1-.222-.875c-.024-.287-.023-.639-.023-1.046v-1.4a2.2 2.2 0 0 1-.6-.55c-.484-.644-.6-1.485-.6-2.27a1 1 0 0 1 .007-.109q.008-.096.038-.247c.042-.195.126-.46.299-.73C2.17 5.459 2.87 5 4 5zM9.83 9.48c-.36.36-.941.82-1.83.82s-1.47-.46-1.83-.82c-.063-.062-.12-.125-.17-.18-.051.055-.108.118-.17.18-.34.34-.875.767-1.68.815v1.055c0 .432 0 .712.018.924.016.203.045.279.064.316a.75.75 0 0 0 .327.328c.037.019.114.047.317.064.212.017.492.018.925.018H10.2c.432 0 .712-.001.925-.018.202-.017.278-.045.315-.064a.75.75 0 0 0 .328-.328c.02-.037.047-.113.064-.316.017-.212.018-.492.018-.924v-1.056c-.805-.048-1.34-.474-1.68-.814-.063-.062-.12-.125-.17-.18-.051.055-.108.118-.17.18M4 6.5c-.67 0-.87.24-.945.355a.7.7 0 0 0-.105.311l.006.242c.029.569.154.906.294 1.092.13.172.333.3.75.3.31 0 .53-.14.77-.38a6 6 0 0 0 .183-.195c.059-.065.133-.147.204-.218.07-.07.169-.162.29-.238A1.03 1.03 0 0 1 6 7.599c.242 0 .433.092.555.17.12.076.218.168.288.238.071.071.145.153.204.218.064.07.122.134.183.195.24.24.46.38.77.38s.53-.14.77-.38a6 6 0 0 0 .183-.195c.059-.065.133-.147.204-.218.07-.07.169-.162.29-.238a1.03 1.03 0 0 1 .553-.17c.242 0 .433.092.555.17.12.076.218.168.288.238.071.071.145.153.204.218.064.07.122.134.183.195.24.24.46.38.77.38.417 0 .62-.128.75-.3.16-.212.298-.62.299-1.344l-.01-.067a.7.7 0 0 0-.095-.234C12.87 6.74 12.67 6.5 12 6.5z",
|
|
18
|
+
clipRule: "evenodd"
|
|
19
|
+
}),
|
|
20
|
+
/*#__PURE__*/ _jsx("path", {
|
|
21
|
+
d: "M4.825 1.058c.028-.077.14-.077.169 0 .425 1.15.825 1.373.825 2.033a.91.91 0 0 1-1.82 0c0-.66.401-.883.826-2.033m3.091 0c.028-.077.14-.077.169 0 .425 1.15.825 1.373.825 2.033a.91.91 0 0 1-1.82 0c0-.66.4-.883.826-2.033m3.09 0c.028-.077.14-.077.169 0 .425 1.15.824 1.373.824 2.033a.91.91 0 0 1-1.819 0c0-.66.4-.883.826-2.033"
|
|
22
|
+
})
|
|
23
|
+
]
|
|
24
|
+
});
|
|
25
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
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 Icon16HomeOutline = (props)=>{
|
|
5
|
+
return /*#__PURE__*/ _jsx(SvgIconRootV2, {
|
|
6
|
+
viewBox: "0 0 16 16",
|
|
7
|
+
width: 16,
|
|
8
|
+
height: 16,
|
|
9
|
+
vkuiIconId: "home_outline_16",
|
|
10
|
+
vkuiAttrs: {
|
|
11
|
+
"fill": "currentColor"
|
|
12
|
+
},
|
|
13
|
+
vkuiProps: props,
|
|
14
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
15
|
+
fillRule: "evenodd",
|
|
16
|
+
d: "M7.488 1.57a2 2 0 0 1 1.025 0c.38.101.727.364 1.419.888l3.299 2.497c.465.352.697.529.865.751.148.197.26.42.327.657.076.268.075.56.075 1.144v3.99l-.004.556a3 3 0 0 1-.027.35l-.04.197a2.5 2.5 0 0 1-2.03 1.874l-.16.018c-.171.013-.393.014-.746.014l-.446-.004-.153-.007-.127-.015a2 2 0 0 1-1.624-1.499l-.032-.157a2 2 0 0 1-.023-.28l-.003-.445v-1.972a1.084 1.084 0 1 0-2.166 0v1.972l-.004.445a2 2 0 0 1-.021.28l-.032.157a2 2 0 0 1-1.624 1.5l-.127.014c-.138.01-.315.01-.599.01l-.557-.003a4 4 0 0 1-.191-.01l-.158-.018A2.5 2.5 0 0 1 1.573 12.6l-.04-.198a3 3 0 0 1-.028-.35l-.004-.556v-3.99c0-.437 0-.711.032-.934l.044-.21q.077-.268.223-.505l.105-.152c.125-.167.288-.307.557-.516l.308-.235 3.299-2.497c.605-.458.945-.717 1.276-.842zm.64 1.45a.5.5 0 0 0-.257 0c-.016.007-.063.03-.158.092-.165.108-.377.267-.74.541L3.676 6.151c-.245.186-.382.29-.482.374a1 1 0 0 0-.091.084.5.5 0 0 0-.082.164c-.002.01-.007.045-.011.123-.007.13-.008.304-.008.61v3.991c0 .53.005.619.013.668.069.425.403.76.828.828.05.008.137.013.668.013a16 16 0 0 0 .486-.007.5.5 0 0 0 .414-.414q.002-.013.004-.083c.003-.089.003-.206.003-.403v-1.972A2.584 2.584 0 0 1 8 7.543l.264.014a2.584 2.584 0 0 1 2.32 2.57v1.972c0 .197 0 .314.002.403.002.082.005.096.003.083.035.212.202.38.414.414-.013-.002.001.002.084.004.089.002.207.003.404.003.528 0 .617-.005.667-.013.425-.069.759-.403.828-.828.007-.05.012-.138.012-.668v-3.99c0-.307 0-.48-.006-.61a1 1 0 0 0-.012-.124.5.5 0 0 0-.082-.164 1 1 0 0 0-.091-.084c-.1-.084-.238-.189-.482-.374L9.027 3.653a15 15 0 0 0-.74-.54 1 1 0 0 0-.159-.093",
|
|
17
|
+
clipRule: "evenodd"
|
|
18
|
+
})
|
|
19
|
+
});
|
|
20
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
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 Icon20FlowerOutline = (props)=>{
|
|
5
|
+
return /*#__PURE__*/ _jsxs(SvgIconRootV2, {
|
|
6
|
+
viewBox: "0 0 20 20",
|
|
7
|
+
width: 20,
|
|
8
|
+
height: 20,
|
|
9
|
+
vkuiIconId: "flower_outline_20",
|
|
10
|
+
vkuiAttrs: {
|
|
11
|
+
"fill": "currentColor"
|
|
12
|
+
},
|
|
13
|
+
vkuiProps: props,
|
|
14
|
+
children: [
|
|
15
|
+
/*#__PURE__*/ _jsx("path", {
|
|
16
|
+
fillRule: "evenodd",
|
|
17
|
+
d: "M9.998 6.75a3.5 3.5 0 1 1 0 7 3.5 3.5 0 0 1 0-7m0 1.5a2 2 0 1 0 0 4.001 2 2 0 0 0 0-4.001",
|
|
18
|
+
clipRule: "evenodd"
|
|
19
|
+
}),
|
|
20
|
+
/*#__PURE__*/ _jsx("path", {
|
|
21
|
+
fillRule: "evenodd",
|
|
22
|
+
d: "M10.205 1.505A4 4 0 0 1 13.97 5.02a4 4 0 0 1 4.583 2.682 3.99 3.99 0 0 1-2.126 4.857 3.99 3.99 0 0 1-1.141 5.177l-.157.109a4.006 4.006 0 0 1-5.13-.626 4.01 4.01 0 0 1-5.128.626l-.157-.109a3.99 3.99 0 0 1-1.142-5.177 3.99 3.99 0 0 1-2.18-4.674l.054-.183A4 4 0 0 1 6.027 5.02 4 4 0 0 1 10 1.5zM9.986 3a2.5 2.5 0 0 0-2.469 2.196 1.5 1.5 0 0 1-1.782 1.295 2.5 2.5 0 0 0-2.778 1.455l-.084.221a2.49 2.49 0 0 0 1.326 3.03 1.5 1.5 0 0 1 .682 2.097 2.49 2.49 0 0 0 .713 3.229 2.505 2.505 0 0 0 3.304-.322l.112-.108a1.5 1.5 0 0 1 2.09.108 2.506 2.506 0 0 0 3.305.322 2.49 2.49 0 0 0 .713-3.23 1.5 1.5 0 0 1 .681-2.096 2.49 2.49 0 0 0 1.328-3.03 2.5 2.5 0 0 0-2.864-1.676 1.5 1.5 0 0 1-1.782-1.295 2.5 2.5 0 0 0-2.338-2.192z",
|
|
23
|
+
clipRule: "evenodd"
|
|
24
|
+
})
|
|
25
|
+
]
|
|
26
|
+
});
|
|
27
|
+
};
|
|
@@ -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 Icon20MoonAutoOutline = (props)=>{
|
|
5
|
+
return /*#__PURE__*/ _jsx(SvgIconRootV2, {
|
|
6
|
+
viewBox: "0 0 20 20",
|
|
7
|
+
width: 20,
|
|
8
|
+
height: 20,
|
|
9
|
+
vkuiIconId: "moon_auto_outline_20",
|
|
10
|
+
vkuiAttrs: {
|
|
11
|
+
"fill": "currentColor"
|
|
12
|
+
},
|
|
13
|
+
vkuiProps: props,
|
|
14
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
15
|
+
d: "M16.488 11.503c.597 0 .951.262 1.168.86l2 5.436c.061.154.094.319.097.485 0 .42-.319.719-.763.719-.43 0-.656-.2-.793-.674l-.384-1.154H15.18l-.385 1.14c-.141.485-.369.687-.773.687-.474 0-.773-.279-.773-.719q.012-.25.1-.485l1.992-5.43c.212-.592.57-.865 1.146-.865M9.895 1.5a.75.75 0 0 1 .494 1.322 5.798 5.798 0 0 0 2.223 10.015.75.75 0 0 1-.393 1.447 7.3 7.3 0 0 1-5.38-7.04 7.26 7.26 0 0 1 1.167-3.955 7 7 0 0 0 2.785 13.667.75.75 0 0 1 .168 1.49A8.5 8.5 0 1 1 9.895 1.5m5.619 14.492h1.946l-.966-2.991h-.035V13z"
|
|
16
|
+
})
|
|
17
|
+
});
|
|
18
|
+
};
|
|
@@ -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 Icon20SunAutoOutline = (props)=>{
|
|
5
|
+
return /*#__PURE__*/ _jsx(SvgIconRootV2, {
|
|
6
|
+
viewBox: "0 0 20 20",
|
|
7
|
+
width: 20,
|
|
8
|
+
height: 20,
|
|
9
|
+
vkuiIconId: "sun_auto_outline_20",
|
|
10
|
+
vkuiAttrs: {
|
|
11
|
+
"fill": "currentColor"
|
|
12
|
+
},
|
|
13
|
+
vkuiProps: props,
|
|
14
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
15
|
+
d: "M9.998 15.67a.75.75 0 0 1 .75.75v1.833a.75.75 0 0 1-1.5 0V16.42a.75.75 0 0 1 .75-.75m6.49-4.167c.597 0 .95.263 1.168.86l2 5.435c.061.154.094.32.097.485 0 .42-.319.72-.763.72-.43 0-.656-.199-.793-.674l-.384-1.154H15.18l-.385 1.14c-.142.485-.37.687-.773.687-.474 0-.773-.279-.773-.719q.011-.25.1-.485l1.992-5.43c.212-.592.57-.865 1.146-.865m-.974 4.49h1.946L16.494 13h-.035zm-11.29-3.401a.75.75 0 1 1 .718 1.316l-1.833 1a.75.75 0 0 1-.718-1.316zM10 6c1.104 0 2.104.448 2.828 1.172A4 4 0 0 1 14 10a4 4 0 0 1-1.172 2.828A4 4 0 0 1 10 14a4 4 0 0 1-2.828-1.172A4 4 0 0 1 6 10c0-1.105.448-2.104 1.172-2.828A4 4 0 0 1 10 6m0 1.5a2.5 2.5 0 0 0-1.768.732A2.5 2.5 0 0 0 7.5 10c0 .69.278 1.313.732 1.768A2.5 2.5 0 0 0 10 12.5c.69 0 1.313-.278 1.768-.732A2.5 2.5 0 0 0 12.5 10a2.5 2.5 0 0 0-.732-1.768A2.5 2.5 0 0 0 10 7.5M2.092 5.39a.75.75 0 0 1 1.017-.298l1.833 1a.75.75 0 1 1-.717 1.316l-1.834-1a.75.75 0 0 1-.3-1.017m14.799-.298a.75.75 0 0 1 .718 1.316l-1.834 1a.75.75 0 1 1-.717-1.316zM10 1a.75.75 0 0 1 .75.75v1.833a.75.75 0 0 1-1.5 0V1.75A.75.75 0 0 1 10 1"
|
|
16
|
+
})
|
|
17
|
+
});
|
|
18
|
+
};
|