@vkontakte/icons 3.67.0 → 3.68.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/12/bookmark_12.d.ts +7 -0
- package/dist/12/bookmark_12.js +20 -0
- package/dist/20/bus_outline_20.d.ts +7 -0
- package/dist/20/bus_outline_20.js +20 -0
- package/dist/20/metro_outline_20.d.ts +7 -0
- package/dist/20/metro_outline_20.js +20 -0
- package/dist/28/chevron_down_circle_28.d.ts +7 -0
- package/dist/28/chevron_down_circle_28.js +28 -0
- package/dist/28/chevron_up_circle_28.d.ts +7 -0
- package/dist/28/chevron_up_circle_28.js +28 -0
- package/dist/28/fish_outline_28.d.ts +7 -0
- package/dist/28/fish_outline_28.js +20 -0
- package/dist/28/hobby_outline_28.d.ts +7 -0
- package/dist/28/hobby_outline_28.js +20 -0
- package/dist/28/science_28.d.ts +7 -0
- package/dist/28/science_28.js +20 -0
- package/dist/icons-map.json +1 -1
- package/dist/index.d.ts +8 -0
- package/dist/index.js +8 -0
- package/dist/typings/12/bookmark_12.d.ts +7 -0
- package/dist/typings/20/bus_outline_20.d.ts +7 -0
- package/dist/typings/20/metro_outline_20.d.ts +7 -0
- package/dist/typings/28/chevron_down_circle_28.d.ts +7 -0
- package/dist/typings/28/chevron_up_circle_28.d.ts +7 -0
- package/dist/typings/28/fish_outline_28.d.ts +7 -0
- package/dist/typings/28/hobby_outline_28.d.ts +7 -0
- package/dist/typings/28/science_28.d.ts +7 -0
- package/dist/typings/index.d.ts +8 -0
- package/package.json +8 -5
- package/src/svg/12/bookmark_12.svg +1 -0
- package/src/svg/20/bus_outline_20.svg +1 -0
- package/src/svg/20/metro_outline_20.svg +1 -0
- package/src/svg/28/chevron_down_circle_28.svg +1 -0
- package/src/svg/28/chevron_up_circle_28.svg +1 -0
- package/src/svg/28/fish_outline_28.svg +1 -0
- package/src/svg/28/hobby_outline_28.svg +1 -0
- package/src/svg/28/science_28.svg +1 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type SvgIconProps } from "@vkontakte/icons-sprite";
|
|
3
|
+
export type Icon12BookmarkProps = SvgIconProps;
|
|
4
|
+
/**
|
|
5
|
+
* 
|
|
6
|
+
*/ export declare const Icon12Bookmark: React.FC<Icon12BookmarkProps> & {
|
|
7
|
+
};
|
|
@@ -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
|
+
/**
|
|
5
|
+
* 
|
|
6
|
+
*/ export const Icon12Bookmark = (props)=>{
|
|
7
|
+
return /*#__PURE__*/ _jsx(SvgIconRootV2, {
|
|
8
|
+
viewBox: "0 0 12 12",
|
|
9
|
+
width: 12,
|
|
10
|
+
height: 12,
|
|
11
|
+
vkuiIconId: "bookmark_12",
|
|
12
|
+
vkuiAttrs: {
|
|
13
|
+
"fill": "currentColor"
|
|
14
|
+
},
|
|
15
|
+
vkuiProps: props,
|
|
16
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
17
|
+
d: "M6.5 0c.692 0 1.24 0 1.683.036.447.037.83.113 1.18.291a3 3 0 0 1 1.31 1.31c.178.35.254.733.29 1.18C11 3.26 11 3.808 11 4.5v4.769c0 .515 0 .937-.03 1.262-.028.317-.091.642-.294.899a1.5 1.5 0 0 1-1.165.568c-.328.002-.623-.148-.89-.32-.274-.177-.607-.437-1.014-.754l-.93-.727c-.389-.303-.473-.357-.546-.377a.5.5 0 0 0-.262 0c-.073.02-.157.074-.546.377l-.93.727c-.407.317-.74.577-1.014.754-.267.172-.562.322-.89.32a1.5 1.5 0 0 1-1.165-.568c-.203-.257-.266-.582-.295-.899C1 10.206 1 9.784 1 9.27V4.5c0-.692 0-1.24.036-1.683.037-.447.113-.83.291-1.18a3 3 0 0 1 1.31-1.31c.35-.178.733-.254 1.18-.29C4.26 0 4.808 0 5.5 0z"
|
|
18
|
+
})
|
|
19
|
+
});
|
|
20
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type SvgIconProps } from "@vkontakte/icons-sprite";
|
|
3
|
+
export type Icon20BusOutlineProps = SvgIconProps;
|
|
4
|
+
/**
|
|
5
|
+
* 
|
|
6
|
+
*/ export declare const Icon20BusOutline: React.FC<Icon20BusOutlineProps> & {
|
|
7
|
+
};
|
|
@@ -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
|
+
/**
|
|
5
|
+
* 
|
|
6
|
+
*/ export const Icon20BusOutline = (props)=>{
|
|
7
|
+
return /*#__PURE__*/ _jsx(SvgIconRootV2, {
|
|
8
|
+
viewBox: "0 0 20 20",
|
|
9
|
+
width: 20,
|
|
10
|
+
height: 20,
|
|
11
|
+
vkuiIconId: "bus_outline_20",
|
|
12
|
+
vkuiAttrs: {
|
|
13
|
+
"fill": "currentColor"
|
|
14
|
+
},
|
|
15
|
+
vkuiProps: props,
|
|
16
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
17
|
+
d: "M10.65 1.499c.968 0 1.739 0 2.36.05.63.051 1.172.16 1.67.413a4.25 4.25 0 0 1 1.857 1.857c.254.498.362 1.04.413 1.67.05.621.05 1.392.05 2.36v.648h.314c.38 0 .686.307.686.686v.399c0 .548-.351 1.035-.871 1.208a.5.5 0 0 1-.129.023v.8c0 .827.001 1.494-.043 2.032-.045.546-.14 1.026-.366 1.47a3.75 3.75 0 0 1-1.587 1.61v.525c0 .186 0 .279-.012.356a1.05 1.05 0 0 1-.882.882c-.077.012-.17.012-.356.012s-.279 0-.356-.012a1.05 1.05 0 0 1-.882-.882c-.012-.077-.012-.17-.012-.356v-.093q-.478.007-1.054.006h-2.9q-.575 0-1.05-.006v.092c0 .186 0 .279-.012.357a1.05 1.05 0 0 1-.882.881c-.077.012-.17.012-.356.012s-.279 0-.356-.012a1.05 1.05 0 0 1-.882-.881C5 17.528 5 17.435 5 17.249v-.522a3.75 3.75 0 0 1-1.59-1.612c-.227-.444-.322-.924-.367-1.47C2.999 13.107 3 12.44 3 11.612v-.8a.5.5 0 0 1-.129-.022A1.27 1.27 0 0 1 2 9.582v-.4c0-.378.307-.685.686-.685H3V7.85c0-.968 0-1.739.05-2.36.051-.63.16-1.172.413-1.67A4.25 4.25 0 0 1 5.32 1.962c.498-.254 1.04-.362 1.67-.413.621-.05 1.392-.05 2.36-.05zM4.5 11.612c0 .852 0 1.447.038 1.91.037.453.106.715.207.913.216.423.56.766.984.982.197.1.458.17.912.207.462.038 1.056.04 1.909.04h2.9c.853 0 1.447-.002 1.91-.04.453-.037.714-.106.912-.207a2.25 2.25 0 0 0 .983-.982c.1-.198.17-.46.207-.914.038-.462.038-1.057.038-1.909V11.5h-11zM7.255 13a.75.75 0 0 1 0 1.5h-.752a.75.75 0 0 1 0-1.5zm6.245 0a.75.75 0 0 1 0 1.5h-.75a.75.75 0 0 1 0-1.5zM9.35 2.999c-.993 0-1.692 0-2.238.045-.537.044-.86.127-1.11.255A2.75 2.75 0 0 0 4.8 4.5c-.128.25-.211.573-.255 1.11C4.5 6.157 4.5 6.856 4.5 7.85V10h11V7.849c0-.993 0-1.692-.045-2.238-.044-.537-.127-.86-.255-1.11a2.75 2.75 0 0 0-1.202-1.202c-.25-.128-.573-.211-1.11-.255-.546-.045-1.245-.045-2.238-.045z"
|
|
18
|
+
})
|
|
19
|
+
});
|
|
20
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type SvgIconProps } from "@vkontakte/icons-sprite";
|
|
3
|
+
export type Icon20MetroOutlineProps = SvgIconProps;
|
|
4
|
+
/**
|
|
5
|
+
* 
|
|
6
|
+
*/ export declare const Icon20MetroOutline: React.FC<Icon20MetroOutlineProps> & {
|
|
7
|
+
};
|
|
@@ -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
|
+
/**
|
|
5
|
+
* 
|
|
6
|
+
*/ export const Icon20MetroOutline = (props)=>{
|
|
7
|
+
return /*#__PURE__*/ _jsx(SvgIconRootV2, {
|
|
8
|
+
viewBox: "0 0 20 20",
|
|
9
|
+
width: 20,
|
|
10
|
+
height: 20,
|
|
11
|
+
vkuiIconId: "metro_outline_20",
|
|
12
|
+
vkuiAttrs: {
|
|
13
|
+
"fill": "currentColor"
|
|
14
|
+
},
|
|
15
|
+
vkuiProps: props,
|
|
16
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
17
|
+
d: "M10 1.5a8.5 8.5 0 1 1 0 17 8.5 8.5 0 0 1 0-17M10 3a7 7 0 1 0 0 14 7 7 0 0 0 0-14M7.257 6.694c.308-.583 1.163-.594 1.486-.02l.06.133 1.198 3.261 1.197-3.261.06-.133c.348-.616 1.303-.558 1.544.154l1.909 5.679a.75.75 0 0 1-1.422.478L11.97 9.06l-1.076 2.934c-.305.83-1.479.83-1.784 0L8.032 9.06l-1.32 3.926a.75.75 0 0 1-1.421-.478l1.91-5.678z"
|
|
18
|
+
})
|
|
19
|
+
});
|
|
20
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type SvgIconProps } from "@vkontakte/icons-sprite";
|
|
3
|
+
export type Icon28ChevronDownCircleProps = SvgIconProps;
|
|
4
|
+
/**
|
|
5
|
+
* 
|
|
6
|
+
*/ export declare const Icon28ChevronDownCircle: React.FC<Icon28ChevronDownCircleProps> & {
|
|
7
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
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
|
+
/**
|
|
5
|
+
* 
|
|
6
|
+
*/ export const Icon28ChevronDownCircle = (props)=>{
|
|
7
|
+
return /*#__PURE__*/ _jsxs(SvgIconRootV2, {
|
|
8
|
+
viewBox: "0 0 28 28",
|
|
9
|
+
width: 28,
|
|
10
|
+
height: 28,
|
|
11
|
+
vkuiIconId: "chevron_down_circle_28",
|
|
12
|
+
vkuiAttrs: {
|
|
13
|
+
"fill": "currentColor"
|
|
14
|
+
},
|
|
15
|
+
vkuiProps: props,
|
|
16
|
+
children: [
|
|
17
|
+
/*#__PURE__*/ _jsx("path", {
|
|
18
|
+
d: "M14 28c7.732 0 14-6.268 14-14S21.732 0 14 0 0 6.268 0 14s6.268 14 14 14",
|
|
19
|
+
opacity: ".12"
|
|
20
|
+
}),
|
|
21
|
+
/*#__PURE__*/ _jsx("path", {
|
|
22
|
+
fillRule: "evenodd",
|
|
23
|
+
d: "M19.707 11.293a1 1 0 0 0-1.414 0L14 15.586l-4.293-4.293a1 1 0 0 0-1.414 1.414l5 5a1 1 0 0 0 1.414 0l5-5a1 1 0 0 0 0-1.414",
|
|
24
|
+
clipRule: "evenodd"
|
|
25
|
+
})
|
|
26
|
+
]
|
|
27
|
+
});
|
|
28
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type SvgIconProps } from "@vkontakte/icons-sprite";
|
|
3
|
+
export type Icon28ChevronUpCircleProps = SvgIconProps;
|
|
4
|
+
/**
|
|
5
|
+
* 
|
|
6
|
+
*/ export declare const Icon28ChevronUpCircle: React.FC<Icon28ChevronUpCircleProps> & {
|
|
7
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
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
|
+
/**
|
|
5
|
+
* 
|
|
6
|
+
*/ export const Icon28ChevronUpCircle = (props)=>{
|
|
7
|
+
return /*#__PURE__*/ _jsxs(SvgIconRootV2, {
|
|
8
|
+
viewBox: "0 0 28 28",
|
|
9
|
+
width: 28,
|
|
10
|
+
height: 28,
|
|
11
|
+
vkuiIconId: "chevron_up_circle_28",
|
|
12
|
+
vkuiAttrs: {
|
|
13
|
+
"fill": "currentColor"
|
|
14
|
+
},
|
|
15
|
+
vkuiProps: props,
|
|
16
|
+
children: [
|
|
17
|
+
/*#__PURE__*/ _jsx("path", {
|
|
18
|
+
d: "M14 28c7.732 0 14-6.268 14-14S21.732 0 14 0 0 6.268 0 14s6.268 14 14 14",
|
|
19
|
+
opacity: ".12"
|
|
20
|
+
}),
|
|
21
|
+
/*#__PURE__*/ _jsx("path", {
|
|
22
|
+
fillRule: "evenodd",
|
|
23
|
+
d: "M19.707 16.707a1 1 0 0 1-1.414 0L14 12.414l-4.293 4.293a1 1 0 0 1-1.414-1.414l5-5a1 1 0 0 1 1.414 0l5 5a1 1 0 0 1 0 1.414",
|
|
24
|
+
clipRule: "evenodd"
|
|
25
|
+
})
|
|
26
|
+
]
|
|
27
|
+
});
|
|
28
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type SvgIconProps } from "@vkontakte/icons-sprite";
|
|
3
|
+
export type Icon28FishOutlineProps = SvgIconProps;
|
|
4
|
+
/**
|
|
5
|
+
* 
|
|
6
|
+
*/ export declare const Icon28FishOutline: React.FC<Icon28FishOutlineProps> & {
|
|
7
|
+
};
|
|
@@ -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
|
+
/**
|
|
5
|
+
* 
|
|
6
|
+
*/ export const Icon28FishOutline = (props)=>{
|
|
7
|
+
return /*#__PURE__*/ _jsx(SvgIconRootV2, {
|
|
8
|
+
viewBox: "0 0 28 28",
|
|
9
|
+
width: 28,
|
|
10
|
+
height: 28,
|
|
11
|
+
vkuiIconId: "fish_outline_28",
|
|
12
|
+
vkuiAttrs: {
|
|
13
|
+
"fill": "currentColor"
|
|
14
|
+
},
|
|
15
|
+
vkuiProps: props,
|
|
16
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
17
|
+
d: "M16.4 7c1.184 0 2.26.135 3.237.373 2.362.576 4.18 2.163 5.37 3.519a16 16 0 0 1 1.744 2.404l.096.168.026.048.008.014.003.006c-.002.002-.044.025-.884.468l.884.467-.003.007-.008.014-.026.048-.096.168a14 14 0 0 1-.361.584 16 16 0 0 1-1.382 1.82c-1.192 1.356-3.009 2.943-5.371 3.519-.976.238-2.053.373-3.237.373-3.447 0-6.715-1.756-9.333-3.814a29 29 0 0 1-2.029-1.761 26 26 0 0 0-2.214 2.742 1 1 0 0 1-1.648-1.134A28 28 0 0 1 3.633 14a28 28 0 0 1-2.457-3.033 1 1 0 0 1 1.648-1.134 26 26 0 0 0 2.214 2.741c.631-.6 1.31-1.196 2.03-1.76C9.684 8.756 12.952 7 16.4 7m0 2c-2.792 0-5.625 1.444-8.097 3.387A27 27 0 0 0 6.44 14a27 27 0 0 0 1.862 1.613C10.775 17.556 13.607 19 16.4 19q.782-.001 1.479-.086c-1.006-2.273-1.785-6.04-.016-9.831A13 13 0 0 0 16.4 9m3.47.535c-1.821 3.487-.932 7.053.004 8.927 1.472-.553 2.707-1.62 3.632-2.674.527-.6.934-1.172 1.209-1.593l.12-.195-.12-.195a14 14 0 0 0-1.21-1.593c-.925-1.054-2.16-2.125-3.635-2.677M21 12.833a1.167 1.167 0 1 1 0 2.334 1.167 1.167 0 0 1 0-2.334M27.13 14l-.245.467L26 14l.885-.467z"
|
|
18
|
+
})
|
|
19
|
+
});
|
|
20
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type SvgIconProps } from "@vkontakte/icons-sprite";
|
|
3
|
+
export type Icon28HobbyOutlineProps = SvgIconProps;
|
|
4
|
+
/**
|
|
5
|
+
* 
|
|
6
|
+
*/ export declare const Icon28HobbyOutline: React.FC<Icon28HobbyOutlineProps> & {
|
|
7
|
+
};
|
|
@@ -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
|
+
/**
|
|
5
|
+
* 
|
|
6
|
+
*/ export const Icon28HobbyOutline = (props)=>{
|
|
7
|
+
return /*#__PURE__*/ _jsx(SvgIconRootV2, {
|
|
8
|
+
viewBox: "0 0 28 28",
|
|
9
|
+
width: 28,
|
|
10
|
+
height: 28,
|
|
11
|
+
vkuiIconId: "hobby_outline_28",
|
|
12
|
+
vkuiAttrs: {
|
|
13
|
+
"fill": "currentColor"
|
|
14
|
+
},
|
|
15
|
+
vkuiProps: props,
|
|
16
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
17
|
+
d: "M16 3c1.384 0 2.481 0 3.365.071.896.073 1.66.227 2.359.583a6 6 0 0 1 2.622 2.622c.356.7.51 1.463.583 2.359C25 9.519 25 10.617 25 12v4c0 1.384 0 2.481-.071 3.365-.073.896-.227 1.66-.583 2.359a6 6 0 0 1-2.622 2.622c-.7.356-1.463.51-2.359.583C18.481 25 17.384 25 16 25h-4c-1.383 0-2.481 0-3.365-.071-.896-.073-1.66-.227-2.359-.583a6 6 0 0 1-2.622-2.622c-.356-.7-.51-1.463-.583-2.359C3 18.481 3 17.384 3 16v-4c0-1.383 0-2.481.071-3.365.073-.896.227-1.66.583-2.359a6 6 0 0 1 2.622-2.622c.7-.356 1.463-.51 2.359-.583C9.519 3 10.617 3 12 3zm-7 9.5A1.5 1.5 0 0 0 7.5 14a1 1 0 0 1-1.14.988V15H5v1c0 1.416 0 2.419.064 3.202.064.772.183 1.244.372 1.614a4 4 0 0 0 1.748 1.749c.37.188.842.307 1.614.37C9.58 23 10.584 23 12 23h1v-.646a3.5 3.5 0 0 1 0-6.708V15h-1.528v-.002A1 1 0 0 1 10.5 14 1.5 1.5 0 0 0 9 12.5m6 4.028a1 1 0 0 1-1 .972 1.5 1.5 0 0 0 0 3 1 1 0 0 1 .99 1.14H15V23h1c1.416 0 2.419 0 3.202-.064.772-.064 1.244-.183 1.614-.372a4 4 0 0 0 1.749-1.748c.188-.37.307-.842.37-1.614C23 18.42 23 17.416 23 16v-1h-.645a3.501 3.501 0 0 1-6.71 0H15zm0-10.882a3.501 3.501 0 0 1 0 6.708V13h1.528v.001A1 1 0 0 1 17.5 14a1.5 1.5 0 0 0 3 0 1 1 0 0 1 1.14-.99V13H23v-1c0-1.416 0-2.419-.064-3.202-.064-.772-.183-1.244-.372-1.614a4 4 0 0 0-1.748-1.748c-.37-.19-.842-.308-1.614-.372C18.42 5 17.416 5 16 5h-1zM12 5c-1.416 0-2.419 0-3.202.064-.772.064-1.244.183-1.614.372a4 4 0 0 0-1.748 1.748c-.19.37-.308.842-.372 1.614C5 9.58 5 10.584 5 12v1h.646a3.501 3.501 0 0 1 6.709 0H13v-1.527h.001A1 1 0 0 1 14 10.5a1.5 1.5 0 0 0 0-3 1 1 0 0 1-.99-1.139H13V5z"
|
|
18
|
+
})
|
|
19
|
+
});
|
|
20
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { type SvgIconProps } from "@vkontakte/icons-sprite";
|
|
3
|
+
export type Icon28ScienceProps = SvgIconProps;
|
|
4
|
+
/**
|
|
5
|
+
* 
|
|
6
|
+
*/ export declare const Icon28Science: React.FC<Icon28ScienceProps> & {
|
|
7
|
+
};
|
|
@@ -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
|
+
/**
|
|
5
|
+
* 
|
|
6
|
+
*/ export const Icon28Science = (props)=>{
|
|
7
|
+
return /*#__PURE__*/ _jsx(SvgIconRootV2, {
|
|
8
|
+
viewBox: "0 0 28 28",
|
|
9
|
+
width: 28,
|
|
10
|
+
height: 28,
|
|
11
|
+
vkuiIconId: "science_28",
|
|
12
|
+
vkuiAttrs: {
|
|
13
|
+
"fill": "currentColor"
|
|
14
|
+
},
|
|
15
|
+
vkuiProps: props,
|
|
16
|
+
children: /*#__PURE__*/ _jsx("path", {
|
|
17
|
+
d: "M17.847 2.998c.74 0 1.416.294 1.907.773s.803 1.15.803 1.894c0 .745-.311 1.415-.803 1.895a2.72 2.72 0 0 1-1.728.762v3.093c0 .086.026.166.067.23 2.035 3.091 3.51 5.746 4.406 7.947l.09.245c.406 1.225.133 2.485-.54 3.445-.703 1.002-1.884 1.72-3.225 1.72H9.137c-1.344 0-2.514-.722-3.207-1.729-.704-1.023-.953-2.383-.429-3.68l.001-.003c.902-2.203 2.376-4.856 4.405-7.944a.4.4 0 0 0 .068-.229V8.322a2.72 2.72 0 0 1-1.729-.762 2.64 2.64 0 0 1-.802-1.895c0-.745.31-1.415.802-1.894a2.73 2.73 0 0 1 1.907-.773zm-5.872 8.419c0 .47-.137.933-.396 1.327-1.992 3.033-3.39 5.563-4.224 7.599-.246.608-.143 1.266.222 1.797.365.529.95.862 1.56.862h9.687c.615 0 1.215-.337 1.588-.87.376-.534.478-1.187.235-1.784v-.001c-.827-2.032-2.224-4.564-4.224-7.603a2.4 2.4 0 0 1-.396-1.329V8.332h-4.052zm4.138 7.584a.778.778 0 1 1 0 1.557.778.778 0 0 1 0-1.557m-4.667-.778a.779.779 0 1 1-.001 1.557.779.779 0 0 1 0-1.557m3.89-3.112a1.168 1.168 0 1 1-.001 2.337 1.168 1.168 0 0 1 0-2.337M10.152 4.998a.73.73 0 0 0-.51.204.64.64 0 0 0-.2.463c0 .176.073.339.2.463a.73.73 0 0 0 .51.204h7.694c.204 0 .383-.08.51-.204a.64.64 0 0 0 .2-.463.64.64 0 0 0-.2-.463.73.73 0 0 0-.51-.204z"
|
|
18
|
+
})
|
|
19
|
+
});
|
|
20
|
+
};
|