@skbkontur/logos 2.0.0 → 2.1.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/CHANGELOG.md +22 -0
- package/cjs/index.d.ts +5 -0
- package/cjs/index.js +10 -0
- package/cjs/src/Career.d.ts +8 -0
- package/cjs/src/Career.js +24 -0
- package/cjs/src/ENigma.d.ts +8 -0
- package/cjs/src/ENigma.js +24 -0
- package/cjs/src/Kedo.d.ts +8 -0
- package/cjs/src/Kedo.js +24 -0
- package/cjs/src/MarkirovkaEN.d.ts +8 -0
- package/cjs/src/MarkirovkaEN.js +24 -0
- package/cjs/src/Stream.d.ts +8 -0
- package/cjs/src/Stream.js +24 -0
- package/index.d.ts +5 -0
- package/index.js +5 -0
- package/package.json +3 -2
- package/src/Career.d.ts +8 -0
- package/src/Career.js +20 -0
- package/src/ENigma.d.ts +8 -0
- package/src/ENigma.js +20 -0
- package/src/Kedo.d.ts +8 -0
- package/src/Kedo.js +20 -0
- package/src/MarkirovkaEN.d.ts +8 -0
- package/src/MarkirovkaEN.js +20 -0
- package/src/Stream.d.ts +8 -0
- package/src/Stream.js +20 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [2.1.0](https://git.skbkontur.ru/ui/ui-parking/compare/@skbkontur/logos@2.0.1...@skbkontur/logos@2.1.0) (2023-01-12)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **logos:** add new logos ([3c55b30](https://git.skbkontur.ru/ui/ui-parking/commits/3c55b30a49a0c8f344e944a8ac7d9304d294757d))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [2.0.1](https://git.skbkontur.ru/ui/ui-parking/compare/@skbkontur/logos@2.0.0...@skbkontur/logos@2.0.1) (2022-11-25)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **logos:** add MarkirovkaEN ([0c9c7e7](https://git.skbkontur.ru/ui/ui-parking/commits/0c9c7e7b5c82f58ab820229cf70cf232f61e0210))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
# [2.0.0](https://git.skbkontur.ru/ui/ui-parking/compare/@skbkontur/logos@1.10.0...@skbkontur/logos@2.0.0) (2022-11-03)
|
|
7
29
|
|
|
8
30
|
|
package/cjs/index.d.ts
CHANGED
|
@@ -161,3 +161,8 @@ export { Panda } from './src/Panda';
|
|
|
161
161
|
export { Roadmaps } from './src/Roadmaps';
|
|
162
162
|
export { ShantakEN } from './src/ShantakEN';
|
|
163
163
|
export { Skbkontur } from './src/Skbkontur';
|
|
164
|
+
export { MarkirovkaEN } from './src/MarkirovkaEN';
|
|
165
|
+
export { Career } from './src/Career';
|
|
166
|
+
export { ENigma } from './src/ENigma';
|
|
167
|
+
export { Kedo } from './src/Kedo';
|
|
168
|
+
export { Stream } from './src/Stream';
|
package/cjs/index.js
CHANGED
|
@@ -326,3 +326,13 @@ var ShantakEN_1 = require("./src/ShantakEN");
|
|
|
326
326
|
Object.defineProperty(exports, "ShantakEN", { enumerable: true, get: function () { return ShantakEN_1.ShantakEN; } });
|
|
327
327
|
var Skbkontur_1 = require("./src/Skbkontur");
|
|
328
328
|
Object.defineProperty(exports, "Skbkontur", { enumerable: true, get: function () { return Skbkontur_1.Skbkontur; } });
|
|
329
|
+
var MarkirovkaEN_1 = require("./src/MarkirovkaEN");
|
|
330
|
+
Object.defineProperty(exports, "MarkirovkaEN", { enumerable: true, get: function () { return MarkirovkaEN_1.MarkirovkaEN; } });
|
|
331
|
+
var Career_1 = require("./src/Career");
|
|
332
|
+
Object.defineProperty(exports, "Career", { enumerable: true, get: function () { return Career_1.Career; } });
|
|
333
|
+
var ENigma_1 = require("./src/ENigma");
|
|
334
|
+
Object.defineProperty(exports, "ENigma", { enumerable: true, get: function () { return ENigma_1.ENigma; } });
|
|
335
|
+
var Kedo_1 = require("./src/Kedo");
|
|
336
|
+
Object.defineProperty(exports, "Kedo", { enumerable: true, get: function () { return Kedo_1.Kedo; } });
|
|
337
|
+
var Stream_1 = require("./src/Stream");
|
|
338
|
+
Object.defineProperty(exports, "Stream", { enumerable: true, get: function () { return Stream_1.Stream; } });
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const CareerWithStaticFields: React.ForwardRefExoticComponent<{
|
|
3
|
+
color?: string | undefined;
|
|
4
|
+
size?: number | undefined;
|
|
5
|
+
} & React.RefAttributes<HTMLSpanElement>> & {
|
|
6
|
+
__KONTUR_REACT_UI__: string;
|
|
7
|
+
};
|
|
8
|
+
export { CareerWithStaticFields as Career };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Career = void 0;
|
|
4
|
+
var tslib_1 = require("tslib");
|
|
5
|
+
var react_1 = tslib_1.__importStar(require("react"));
|
|
6
|
+
var Career = react_1.forwardRef(function (_a, ref) {
|
|
7
|
+
var _b = _a.color, color = _b === void 0 ? '#366AF3' : _b, _c = _a.size, size = _c === void 0 ? 24 : _c;
|
|
8
|
+
return (react_1.default.createElement("span", { style: {
|
|
9
|
+
width: size * 3.375 + "px",
|
|
10
|
+
height: size,
|
|
11
|
+
lineHeight: size + "px",
|
|
12
|
+
display: 'inline-block',
|
|
13
|
+
}, ref: ref },
|
|
14
|
+
react_1.default.createElement("svg", { viewBox: "0 0 81 24", xmlns: "http://www.w3.org/2000/svg", focusable: false, style: {
|
|
15
|
+
marginBottom: "-" + size * 0.20833333333333337 + "px",
|
|
16
|
+
width: '100%',
|
|
17
|
+
height: '100%',
|
|
18
|
+
display: 'inline-block',
|
|
19
|
+
} },
|
|
20
|
+
react_1.default.createElement("path", { d: "m12.751 19-5.445-7.207 5.168-6.851h-2.06L5.802 11.06H3.346V4.942H1.525V19h1.821v-6.435h2.455L10.692 19h2.06zm9.573-6.831c0-1.082-.356-1.927-1.069-2.534-.713-.608-1.71-.911-2.99-.911-1.782 0-3.247.693-4.395 2.079l1.089.99c.54-.594 1.069-1.017 1.584-1.267a3.885 3.885 0 0 1 1.762-.396c.779 0 1.373.184 1.782.554.409.356.614.891.614 1.604v.673l-2.614.178c-1.478.08-2.574.383-3.287.911-.7.515-1.05 1.274-1.05 2.277v.099c0 .91.311 1.617.931 2.119.634.501 1.505.752 2.614.752.779 0 1.465-.139 2.06-.416.593-.29 1.068-.7 1.425-1.227V19h1.544v-6.831zm-1.623 3.128c0 .502-.132.957-.396 1.367a2.61 2.61 0 0 1-1.11.95 3.617 3.617 0 0 1-1.563.337c-.713 0-1.268-.139-1.664-.416-.382-.277-.574-.673-.574-1.188v-.1c0-.633.211-1.095.634-1.385.422-.29 1.148-.462 2.178-.515l2.495-.119v1.07zm14.538-1.386c0-1.03-.204-1.927-.614-2.692a4.495 4.495 0 0 0-1.722-1.822c-.74-.436-1.571-.653-2.495-.653-1.822 0-3.122.673-3.9 2.02V9h-1.585v13.563h1.703v-5.01c.726 1.123 1.98 1.684 3.762 1.684.964 0 1.809-.218 2.535-.654a4.337 4.337 0 0 0 1.702-1.841c.41-.792.614-1.703.614-2.733v-.099zm-1.722.1c0 .739-.146 1.392-.436 1.96a3.33 3.33 0 0 1-1.228 1.366c-.514.317-1.102.475-1.762.475-1.069 0-1.927-.343-2.574-1.03-.647-.7-.97-1.623-.97-2.772v-.099c0-.752.152-1.412.455-1.98a3.214 3.214 0 0 1 1.268-1.287 3.646 3.646 0 0 1 1.841-.475c.647 0 1.24.159 1.782.475.515.317.91.76 1.188 1.327.29.554.436 1.201.436 1.94v.1zM41.678 19c1.149 0 2.066-.304 2.753-.91.686-.608 1.03-1.42 1.03-2.436 0-1.03-.344-1.848-1.03-2.455-.687-.608-1.604-.911-2.753-.911h-2.633V9h-1.703V19h4.336zm-2.633-5.306h2.356c1.545 0 2.317.653 2.317 1.96s-.772 1.96-2.317 1.96h-2.356v-3.92zm16.611 2.514c-.554.594-1.102 1.017-1.643 1.267-.528.251-1.135.377-1.822.377-.713 0-1.333-.152-1.86-.456-.99-.594-1.559-1.63-1.704-3.108h7.96l.04-.733c0-1.505-.41-2.686-1.228-3.544-.805-.858-1.934-1.287-3.386-1.287-1.03 0-1.927.224-2.693.673a4.723 4.723 0 0 0-1.801 1.9c-.436.806-.654 1.71-.654 2.713 0 1.056.218 1.98.654 2.772a4.582 4.582 0 0 0 1.821 1.862c.792.422 1.716.633 2.772.633.937 0 1.756-.152 2.455-.455.7-.317 1.4-.838 2.1-1.564l-1.01-1.05zm-6.97-3.168c.133-.91.496-1.63 1.09-2.158.594-.541 1.333-.812 2.217-.812.898 0 1.61.27 2.139.812.54.528.831 1.247.87 2.158h-6.315zm20.173.871c0-1.03-.205-1.927-.614-2.692a4.495 4.495 0 0 0-1.722-1.822c-.74-.436-1.571-.653-2.495-.653-1.822 0-3.122.673-3.9 2.02V9h-1.585v13.563h1.703v-5.01c.726 1.123 1.98 1.684 3.762 1.684.964 0 1.808-.218 2.534-.654a4.337 4.337 0 0 0 1.703-1.841c.41-.792.614-1.703.614-2.733v-.099zm-1.723.1c0 .739-.145 1.392-.435 1.96a3.33 3.33 0 0 1-1.228 1.366c-.515.317-1.102.475-1.762.475-1.07 0-1.927-.343-2.574-1.03-.647-.7-.97-1.623-.97-2.772v-.099c0-.752.152-1.412.455-1.98a3.214 3.214 0 0 1 1.267-1.287 3.646 3.646 0 0 1 1.842-.475c.647 0 1.24.159 1.782.475.515.317.91.76 1.188 1.327.29.554.435 1.201.435 1.94v.1zm11.904-1.842c0-1.082-.356-1.927-1.069-2.534-.713-.608-1.71-.911-2.99-.911-1.782 0-3.247.693-4.395 2.079l1.089.99c.541-.594 1.069-1.017 1.584-1.267a3.885 3.885 0 0 1 1.762-.396c.779 0 1.373.184 1.782.554.41.356.614.891.614 1.604v.673l-2.614.178c-1.478.08-2.574.383-3.287.911-.7.515-1.049 1.274-1.049 2.277v.099c0 .91.31 1.617.93 2.119.634.501 1.505.752 2.614.752.779 0 1.465-.139 2.06-.416.593-.29 1.069-.7 1.425-1.227V19h1.544v-6.831zm-1.623 3.128c0 .502-.132.957-.396 1.367a2.61 2.61 0 0 1-1.109.95 3.617 3.617 0 0 1-1.564.337c-.713 0-1.267-.139-1.663-.416-.383-.277-.575-.673-.575-1.188v-.1c0-.633.212-1.095.634-1.385.422-.29 1.148-.462 2.178-.515l2.495-.119v1.07z", fill: color }))));
|
|
21
|
+
});
|
|
22
|
+
Career.displayName = 'Career';
|
|
23
|
+
var CareerWithStaticFields = Object.assign(Career, { __KONTUR_REACT_UI__: 'Career' });
|
|
24
|
+
exports.Career = CareerWithStaticFields;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const ENigmaWithStaticFields: React.ForwardRefExoticComponent<{
|
|
3
|
+
color?: string | undefined;
|
|
4
|
+
size?: number | undefined;
|
|
5
|
+
} & React.RefAttributes<HTMLSpanElement>> & {
|
|
6
|
+
__KONTUR_REACT_UI__: string;
|
|
7
|
+
};
|
|
8
|
+
export { ENigmaWithStaticFields as ENigma };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ENigma = void 0;
|
|
4
|
+
var tslib_1 = require("tslib");
|
|
5
|
+
var react_1 = tslib_1.__importStar(require("react"));
|
|
6
|
+
var ENigma = react_1.forwardRef(function (_a, ref) {
|
|
7
|
+
var _b = _a.color, color = _b === void 0 ? '#B750D1' : _b, _c = _a.size, size = _c === void 0 ? 24 : _c;
|
|
8
|
+
return (react_1.default.createElement("span", { style: {
|
|
9
|
+
width: size * 2.9166666666666665 + "px",
|
|
10
|
+
height: size,
|
|
11
|
+
lineHeight: size + "px",
|
|
12
|
+
display: 'inline-block',
|
|
13
|
+
}, ref: ref },
|
|
14
|
+
react_1.default.createElement("svg", { viewBox: "0 0 70 24", xmlns: "http://www.w3.org/2000/svg", focusable: false, style: {
|
|
15
|
+
marginBottom: "-" + size * 0.20833333333333337 + "px",
|
|
16
|
+
width: '100%',
|
|
17
|
+
height: '100%',
|
|
18
|
+
display: 'inline-block',
|
|
19
|
+
} },
|
|
20
|
+
react_1.default.createElement("path", { d: "M1.604 7.892c.686-.594 1.353-1.016 2-1.267a5.651 5.651 0 0 1 2.118-.396c.964 0 1.822.198 2.574.594.753.41 1.353.983 1.802 1.723.462.726.74 1.557.832 2.494H3.94v1.545h7.01c-.067 1.016-.317 1.9-.753 2.653a4.832 4.832 0 0 1-1.802 1.841c-.752.423-1.604.634-2.554.634a5.963 5.963 0 0 1-1.544-.218c-.885-.25-1.855-.864-2.911-1.841L.297 16.862c.634.633 1.221 1.115 1.762 1.445 1.056.66 2.31.99 3.762.99 1.413 0 2.653-.317 3.723-.95a6.242 6.242 0 0 0 2.435-2.594c.58-1.109.871-2.37.871-3.782 0-1.056-.165-2.026-.495-2.91a6.548 6.548 0 0 0-1.406-2.337C9.63 5.338 7.88 4.645 5.702 4.645c-.99 0-1.894.158-2.712.475-.819.304-1.637.805-2.455 1.505l1.069 1.267zm21.85 1.109H21.75v4.178h-5.01V9H15.04V19h1.702v-4.435h5.01V19h1.703V9.001zm6.47 4.653a66.755 66.755 0 0 0-2.238 3.524l.04-1.98c.013-.171.02-.712.02-1.623V9h-1.604V19h1.822l2.91-4.435 1.09-1.604a35.972 35.972 0 0 0 1.385-2.178c-.053.832-.079 2.244-.079 4.237V19h1.624V9.001h-1.842l-3.128 4.653zm14.679-4.653h-7.01V19h1.703v-8.593h5.307V9zM52 17.079l-3.128-8.078h-2.515V19h1.584v-8.474L51.228 19h1.545l3.286-8.494V19h1.584V9.001H55.11L52 17.079zm16.42-4.91c0-1.082-.356-1.927-1.069-2.534-.713-.608-1.71-.911-2.99-.911-1.782 0-3.247.693-4.395 2.079l1.089.99c.54-.594 1.069-1.017 1.584-1.267a3.885 3.885 0 0 1 1.762-.396c.779 0 1.373.184 1.782.554.41.356.614.891.614 1.604v.673l-2.614.178c-1.478.08-2.574.383-3.287.911-.7.515-1.05 1.274-1.05 2.277v.099c0 .91.311 1.617.932 2.119.633.501 1.504.752 2.613.752.779 0 1.465-.139 2.06-.416.593-.29 1.069-.7 1.425-1.227V19h1.544v-6.831zm-1.623 3.128c0 .502-.132.957-.396 1.367a2.61 2.61 0 0 1-1.11.95 3.617 3.617 0 0 1-1.563.337c-.713 0-1.267-.139-1.663-.416-.383-.277-.575-.673-.575-1.188v-.1c0-.633.212-1.095.634-1.385.422-.29 1.148-.462 2.178-.515l2.495-.119v1.07z", fill: color }))));
|
|
21
|
+
});
|
|
22
|
+
ENigma.displayName = 'ENigma';
|
|
23
|
+
var ENigmaWithStaticFields = Object.assign(ENigma, { __KONTUR_REACT_UI__: 'ENigma' });
|
|
24
|
+
exports.ENigma = ENigmaWithStaticFields;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const KedoWithStaticFields: React.ForwardRefExoticComponent<{
|
|
3
|
+
color?: string | undefined;
|
|
4
|
+
size?: number | undefined;
|
|
5
|
+
} & React.RefAttributes<HTMLSpanElement>> & {
|
|
6
|
+
__KONTUR_REACT_UI__: string;
|
|
7
|
+
};
|
|
8
|
+
export { KedoWithStaticFields as Kedo };
|
package/cjs/src/Kedo.js
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Kedo = void 0;
|
|
4
|
+
var tslib_1 = require("tslib");
|
|
5
|
+
var react_1 = tslib_1.__importStar(require("react"));
|
|
6
|
+
var Kedo = react_1.forwardRef(function (_a, ref) {
|
|
7
|
+
var _b = _a.color, color = _b === void 0 ? '#00BEA2' : _b, _c = _a.size, size = _c === void 0 ? 24 : _c;
|
|
8
|
+
return (react_1.default.createElement("span", { style: {
|
|
9
|
+
width: size * 4.125 + "px",
|
|
10
|
+
height: size,
|
|
11
|
+
lineHeight: size + "px",
|
|
12
|
+
display: 'inline-block',
|
|
13
|
+
}, ref: ref },
|
|
14
|
+
react_1.default.createElement("svg", { viewBox: "0 0 99 24", xmlns: "http://www.w3.org/2000/svg", focusable: false, style: {
|
|
15
|
+
marginBottom: "-" + size * 0.20833333333333337 + "px",
|
|
16
|
+
width: '100%',
|
|
17
|
+
height: '100%',
|
|
18
|
+
display: 'inline-block',
|
|
19
|
+
} },
|
|
20
|
+
react_1.default.createElement("path", { d: "m12.752 19-5.445-7.207 5.168-6.851h-2.06L5.803 11.06H3.347V4.942H1.525V19h1.822v-6.435h2.455L10.692 19h2.06zM14.719 7.892c.686-.594 1.353-1.016 2-1.267a5.651 5.651 0 0 1 2.118-.396c.964 0 1.822.198 2.574.594.753.41 1.353.983 1.802 1.723.462.726.74 1.557.832 2.494h-6.99v1.545h7.01c-.066 1.016-.317 1.9-.753 2.653a4.832 4.832 0 0 1-1.802 1.841c-.752.423-1.603.634-2.554.634a5.963 5.963 0 0 1-1.544-.218c-.885-.25-1.855-.864-2.91-1.841l-1.09 1.208c.634.633 1.221 1.115 1.762 1.445 1.056.66 2.31.99 3.762.99 1.413 0 2.654-.317 3.723-.95a6.242 6.242 0 0 0 2.435-2.594c.581-1.109.871-2.37.871-3.782 0-1.056-.165-2.026-.495-2.91a6.548 6.548 0 0 0-1.405-2.337c-1.32-1.386-3.07-2.079-5.247-2.079-.99 0-1.895.158-2.713.475-.818.304-1.637.805-2.455 1.505l1.069 1.267zM30.094 10.17a49.501 49.501 0 0 1-.138 2.732c-.198 1.953-.707 3.478-1.525 4.573h-1.168v4.455h1.782V19h10.573v2.93h1.762v-4.455h-1.683V4.942h-9.563l-.04 5.227zm.218 7.305c.475-.726.832-1.663 1.07-2.811.25-1.149.382-2.594.395-4.336l.04-3.861h6.059v11.008h-7.564zM57.318 11.912c0-1.03-.172-1.987-.515-2.871a6.532 6.532 0 0 0-1.465-2.317A6.491 6.491 0 0 0 53.02 5.18c-.897-.357-1.894-.535-2.99-.535-1.069 0-2.052.178-2.95.535a6.491 6.491 0 0 0-2.316 1.544A7.482 7.482 0 0 0 43.26 9.08a7.757 7.757 0 0 0-.515 2.832v.079c0 1.03.172 1.993.515 2.89a6.77 6.77 0 0 0 1.485 2.317 6.516 6.516 0 0 0 2.297 1.564c.897.357 1.894.535 2.99.535 1.082 0 2.072-.178 2.97-.535a6.491 6.491 0 0 0 2.316-1.544 6.983 6.983 0 0 0 1.485-2.336 8.026 8.026 0 0 0 .515-2.891v-.08zm-12.712 0c0-1.083.231-2.066.693-2.95.475-.872 1.116-1.545 1.92-2.02.82-.475 1.756-.713 2.812-.713 1.07 0 2.02.238 2.852.713a4.872 4.872 0 0 1 1.9 2c.45.858.674 1.848.674 2.97v.079c0 1.148-.225 2.145-.674 2.99a4.844 4.844 0 0 1-1.9 2.02c-.819.474-1.77.712-2.852.712-1.056 0-1.993-.238-2.811-.713a4.974 4.974 0 0 1-1.92-2.02c-.463-.884-.694-1.88-.694-2.99v-.078z", fill: color }))));
|
|
21
|
+
});
|
|
22
|
+
Kedo.displayName = 'Kedo';
|
|
23
|
+
var KedoWithStaticFields = Object.assign(Kedo, { __KONTUR_REACT_UI__: 'Kedo' });
|
|
24
|
+
exports.Kedo = KedoWithStaticFields;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const MarkirovkaENWithStaticFields: React.ForwardRefExoticComponent<{
|
|
3
|
+
color?: string | undefined;
|
|
4
|
+
size?: number | undefined;
|
|
5
|
+
} & React.RefAttributes<HTMLSpanElement>> & {
|
|
6
|
+
__KONTUR_REACT_UI__: string;
|
|
7
|
+
};
|
|
8
|
+
export { MarkirovkaENWithStaticFields as MarkirovkaEN };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MarkirovkaEN = void 0;
|
|
4
|
+
var tslib_1 = require("tslib");
|
|
5
|
+
var react_1 = tslib_1.__importStar(require("react"));
|
|
6
|
+
var MarkirovkaEN = react_1.forwardRef(function (_a, ref) {
|
|
7
|
+
var _b = _a.color, color = _b === void 0 ? '#2291FF' : _b, _c = _a.size, size = _c === void 0 ? 24 : _c;
|
|
8
|
+
return (react_1.default.createElement("span", { style: {
|
|
9
|
+
width: size * 3 + "px",
|
|
10
|
+
height: size,
|
|
11
|
+
lineHeight: size + "px",
|
|
12
|
+
display: 'inline-block',
|
|
13
|
+
}, ref: ref },
|
|
14
|
+
react_1.default.createElement("svg", { viewBox: "0 0 72 24", xmlns: "http://www.w3.org/2000/svg", focusable: false, style: {
|
|
15
|
+
marginBottom: "-" + size * 0.20833333333333337 + "px",
|
|
16
|
+
width: '100%',
|
|
17
|
+
height: '100%',
|
|
18
|
+
display: 'inline-block',
|
|
19
|
+
} },
|
|
20
|
+
react_1.default.createElement("path", { d: "M9.85 11.14c-.87 2.468-1.491 4.329-1.86 5.583-.357-1.267-.99-3.128-1.901-5.584L3.89 4.942H1V19h1.723v-7.01l-.02-4.256V6.308c.435 1.412 1.089 3.293 1.96 5.643L7.158 19h1.604l2.653-7.564a189.65 189.65 0 0 0 1.782-5.167c-.04 1.518-.06 3.425-.06 5.722V19h1.782V4.942h-2.89L9.85 11.139zM25.976 12.169c0-1.083-.356-1.927-1.069-2.535-.713-.607-1.71-.91-2.99-.91-1.782 0-3.247.693-4.395 2.079l1.088.99c.542-.594 1.07-1.017 1.585-1.268a3.885 3.885 0 0 1 1.762-.396c.779 0 1.372.185 1.782.555.409.356.614.89.614 1.604v.673l-2.614.178c-1.478.08-2.574.383-3.287.91-.7.516-1.05 1.275-1.05 2.278v.099c0 .91.311 1.617.931 2.119.634.501 1.505.752 2.614.752.779 0 1.465-.139 2.06-.416.593-.29 1.068-.7 1.425-1.227V19h1.544v-6.831zm-1.623 3.128c0 .502-.132.957-.396 1.366a2.61 2.61 0 0 1-1.11.95 3.617 3.617 0 0 1-1.563.338c-.713 0-1.268-.14-1.664-.416-.382-.277-.574-.674-.574-1.188v-.1c0-.633.211-1.095.634-1.385.422-.29 1.148-.462 2.178-.515l2.495-.119v1.07zM34.278 9.18c-.634-.199-1.168-.298-1.604-.298-.554 0-1.056.152-1.505.455-.435.29-.779.707-1.03 1.248V9h-1.564V19h1.703v-5.346c0-.977.211-1.756.634-2.336.435-.581.996-.872 1.683-.872.343 0 .785.08 1.326.238l.357-1.505zM44.662 19l-4.06-6.138L44.346 9h-2.06l-4.672 4.85v-8.91H35.91V19h1.703v-3.188l1.782-1.841L42.741 19h1.92zM45.826 6.288c0 .304.105.568.317.792.224.211.495.317.811.317.317 0 .581-.106.792-.317.212-.224.317-.488.317-.792a1.05 1.05 0 0 0-.317-.772 1.042 1.042 0 0 0-.792-.337c-.33 0-.6.106-.811.317a1.075 1.075 0 0 0-.317.792zm.277 2.713V19h1.703V9h-1.703zM52.18 12.96c0-.857.245-1.53.733-2.019.502-.488 1.182-.732 2.04-.732.792 0 1.386.191 1.782.574.409.383.614.944.614 1.683V19h1.722v-6.95c0-1.082-.317-1.907-.95-2.475-.62-.568-1.558-.851-2.812-.851-.752 0-1.412.138-1.98.415a2.793 2.793 0 0 0-1.267 1.169V9h-1.624V19h1.743v-6.04zM69.616 10.486c-.74-1.175-1.96-1.762-3.663-1.762-.924 0-1.75.204-2.475.613a4.273 4.273 0 0 0-1.683 1.802c-.396.766-.594 1.65-.594 2.654 0 1.069.184 1.953.554 2.653a4.432 4.432 0 0 0 1.683 1.801c.726.436 1.538.654 2.436.654 1.663 0 2.87-.568 3.623-1.703v1.525c0 .87-.277 1.544-.832 2.02-.54.475-1.306.712-2.297.712-.66 0-1.28-.092-1.86-.277-.568-.185-1.3-.521-2.198-1.01l-.812 1.287c.818.489 1.623.852 2.415 1.09.792.25 1.61.375 2.456.375.99 0 1.854-.171 2.593-.515.753-.316 1.314-.785 1.683-1.405.383-.608.575-1.347.575-2.218V9.001h-1.604v1.485zm-.06 3.306c0 1.096-.31 1.98-.93 2.654-.62.66-1.433.99-2.436.99a3.29 3.29 0 0 1-1.703-.456 3.204 3.204 0 0 1-1.187-1.287c-.29-.554-.436-1.188-.436-1.9 0-.7.132-1.327.396-1.881.277-.542.68-.964 1.208-1.268a3.58 3.58 0 0 1 1.782-.455c.99 0 1.788.33 2.395.99.608.647.911 1.518.911 2.614z", fill: color }))));
|
|
21
|
+
});
|
|
22
|
+
MarkirovkaEN.displayName = 'MarkirovkaEN';
|
|
23
|
+
var MarkirovkaENWithStaticFields = Object.assign(MarkirovkaEN, { __KONTUR_REACT_UI__: 'MarkirovkaEN' });
|
|
24
|
+
exports.MarkirovkaEN = MarkirovkaENWithStaticFields;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const StreamWithStaticFields: React.ForwardRefExoticComponent<{
|
|
3
|
+
color?: string | undefined;
|
|
4
|
+
size?: number | undefined;
|
|
5
|
+
} & React.RefAttributes<HTMLSpanElement>> & {
|
|
6
|
+
__KONTUR_REACT_UI__: string;
|
|
7
|
+
};
|
|
8
|
+
export { StreamWithStaticFields as Stream };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Stream = void 0;
|
|
4
|
+
var tslib_1 = require("tslib");
|
|
5
|
+
var react_1 = tslib_1.__importStar(require("react"));
|
|
6
|
+
var Stream = react_1.forwardRef(function (_a, ref) {
|
|
7
|
+
var _b = _a.color, color = _b === void 0 ? '#2291FF' : _b, _c = _a.size, size = _c === void 0 ? 24 : _c;
|
|
8
|
+
return (react_1.default.createElement("span", { style: {
|
|
9
|
+
width: size * 4.166666666666667 + "px",
|
|
10
|
+
height: size,
|
|
11
|
+
lineHeight: size + "px",
|
|
12
|
+
display: 'inline-block',
|
|
13
|
+
}, ref: ref },
|
|
14
|
+
react_1.default.createElement("svg", { viewBox: "0 0 100 24", xmlns: "http://www.w3.org/2000/svg", focusable: false, style: {
|
|
15
|
+
marginBottom: "-" + size * 0.20833333333333337 + "px",
|
|
16
|
+
width: '100%',
|
|
17
|
+
height: '100%',
|
|
18
|
+
display: 'inline-block',
|
|
19
|
+
} },
|
|
20
|
+
react_1.default.createElement("path", { d: "M13.068 6.625c-.832-.713-1.65-1.221-2.455-1.525-.806-.303-1.71-.455-2.713-.455-2.178 0-3.92.693-5.227 2.079A6.637 6.637 0 0 0 1.227 9.06c-.33.885-.495 1.855-.495 2.911 0 1.4.297 2.653.891 3.762.594 1.135 1.42 2.013 2.475 2.633 1.056.62 2.284.931 3.683.931.74 0 1.413-.08 2.02-.238a6.335 6.335 0 0 0 1.742-.752c.555-.343 1.142-.825 1.762-1.445l-1.089-1.208c-.54.501-1.049.904-1.524 1.208a5.314 5.314 0 0 1-2.93.851c-1.03 0-1.928-.244-2.693-.733-.78-.475-1.386-1.148-1.822-2.02-.436-.884-.653-1.88-.653-2.989 0-1.135.217-2.138.653-3.01.436-.87 1.05-1.544 1.841-2.02.806-.474 1.736-.712 2.792-.712.74 0 1.426.125 2.06.376.633.251 1.32.68 2.059 1.287l1.069-1.267zM22.2 9.001H13.49v1.386h3.504V19h1.703v-8.613h3.505V9.001zM34.253 13.911c0-1.03-.205-1.927-.614-2.692a4.495 4.495 0 0 0-1.723-1.822c-.739-.436-1.57-.653-2.494-.653-1.822 0-3.122.673-3.9 2.02V9h-1.585v13.563h1.703v-5.01c.726 1.123 1.98 1.684 3.762 1.684.963 0 1.808-.218 2.534-.654a4.337 4.337 0 0 0 1.703-1.841c.41-.792.614-1.703.614-2.733v-.099zm-1.723.1c0 .739-.145 1.392-.435 1.96a3.33 3.33 0 0 1-1.228 1.366c-.515.317-1.102.475-1.762.475-1.07 0-1.927-.343-2.574-1.03-.647-.7-.97-1.623-.97-2.772v-.099c0-.752.151-1.412.455-1.98a3.214 3.214 0 0 1 1.267-1.287 3.646 3.646 0 0 1 1.842-.475c.646 0 1.24.159 1.782.475.515.317.91.76 1.188 1.327.29.554.435 1.201.435 1.94v.1zM40.138 13.654a66.755 66.755 0 0 0-2.238 3.524l.04-1.98c.013-.171.02-.712.02-1.623V9h-1.604V19h1.822l2.91-4.435 1.09-1.604a35.972 35.972 0 0 0 1.385-2.178c-.053.832-.08 2.244-.08 4.237V19h1.625V9.001h-1.842l-3.128 4.653zM53.45 17.08 50.322 9h-2.515V19h1.584v-8.474L52.678 19h1.545l3.286-8.494V19h1.584V9.001H56.56l-3.109 8.078z", fill: color }))));
|
|
21
|
+
});
|
|
22
|
+
Stream.displayName = 'Stream';
|
|
23
|
+
var StreamWithStaticFields = Object.assign(Stream, { __KONTUR_REACT_UI__: 'Stream' });
|
|
24
|
+
exports.Stream = StreamWithStaticFields;
|
package/index.d.ts
CHANGED
|
@@ -161,3 +161,8 @@ export { Panda } from './src/Panda';
|
|
|
161
161
|
export { Roadmaps } from './src/Roadmaps';
|
|
162
162
|
export { ShantakEN } from './src/ShantakEN';
|
|
163
163
|
export { Skbkontur } from './src/Skbkontur';
|
|
164
|
+
export { MarkirovkaEN } from './src/MarkirovkaEN';
|
|
165
|
+
export { Career } from './src/Career';
|
|
166
|
+
export { ENigma } from './src/ENigma';
|
|
167
|
+
export { Kedo } from './src/Kedo';
|
|
168
|
+
export { Stream } from './src/Stream';
|
package/index.js
CHANGED
|
@@ -161,3 +161,8 @@ export { Panda } from './src/Panda';
|
|
|
161
161
|
export { Roadmaps } from './src/Roadmaps';
|
|
162
162
|
export { ShantakEN } from './src/ShantakEN';
|
|
163
163
|
export { Skbkontur } from './src/Skbkontur';
|
|
164
|
+
export { MarkirovkaEN } from './src/MarkirovkaEN';
|
|
165
|
+
export { Career } from './src/Career';
|
|
166
|
+
export { ENigma } from './src/ENigma';
|
|
167
|
+
export { Kedo } from './src/Kedo';
|
|
168
|
+
export { Stream } from './src/Stream';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skbkontur/logos",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "Kontur's product logos",
|
|
5
5
|
"main": "cjs/index.js",
|
|
6
6
|
"module": "index.js",
|
|
@@ -14,7 +14,8 @@
|
|
|
14
14
|
"clean": "git clean -fdxqe node_modules",
|
|
15
15
|
"build": "yarn build:esm && yarn build:cjs",
|
|
16
16
|
"build:esm": "yarn tsc",
|
|
17
|
-
"build:cjs": "yarn tsc --module commonjs --outDir cjs"
|
|
17
|
+
"build:cjs": "yarn tsc --module commonjs --outDir cjs",
|
|
18
|
+
"logos:update": "node scripts/svg-to-tsx"
|
|
18
19
|
},
|
|
19
20
|
"peerDependencies": {
|
|
20
21
|
"react": ">=15",
|
package/src/Career.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const CareerWithStaticFields: React.ForwardRefExoticComponent<{
|
|
3
|
+
color?: string | undefined;
|
|
4
|
+
size?: number | undefined;
|
|
5
|
+
} & React.RefAttributes<HTMLSpanElement>> & {
|
|
6
|
+
__KONTUR_REACT_UI__: string;
|
|
7
|
+
};
|
|
8
|
+
export { CareerWithStaticFields as Career };
|
package/src/Career.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
var Career = forwardRef(function (_a, ref) {
|
|
3
|
+
var _b = _a.color, color = _b === void 0 ? '#366AF3' : _b, _c = _a.size, size = _c === void 0 ? 24 : _c;
|
|
4
|
+
return (React.createElement("span", { style: {
|
|
5
|
+
width: size * 3.375 + "px",
|
|
6
|
+
height: size,
|
|
7
|
+
lineHeight: size + "px",
|
|
8
|
+
display: 'inline-block',
|
|
9
|
+
}, ref: ref },
|
|
10
|
+
React.createElement("svg", { viewBox: "0 0 81 24", xmlns: "http://www.w3.org/2000/svg", focusable: false, style: {
|
|
11
|
+
marginBottom: "-" + size * 0.20833333333333337 + "px",
|
|
12
|
+
width: '100%',
|
|
13
|
+
height: '100%',
|
|
14
|
+
display: 'inline-block',
|
|
15
|
+
} },
|
|
16
|
+
React.createElement("path", { d: "m12.751 19-5.445-7.207 5.168-6.851h-2.06L5.802 11.06H3.346V4.942H1.525V19h1.821v-6.435h2.455L10.692 19h2.06zm9.573-6.831c0-1.082-.356-1.927-1.069-2.534-.713-.608-1.71-.911-2.99-.911-1.782 0-3.247.693-4.395 2.079l1.089.99c.54-.594 1.069-1.017 1.584-1.267a3.885 3.885 0 0 1 1.762-.396c.779 0 1.373.184 1.782.554.409.356.614.891.614 1.604v.673l-2.614.178c-1.478.08-2.574.383-3.287.911-.7.515-1.05 1.274-1.05 2.277v.099c0 .91.311 1.617.931 2.119.634.501 1.505.752 2.614.752.779 0 1.465-.139 2.06-.416.593-.29 1.068-.7 1.425-1.227V19h1.544v-6.831zm-1.623 3.128c0 .502-.132.957-.396 1.367a2.61 2.61 0 0 1-1.11.95 3.617 3.617 0 0 1-1.563.337c-.713 0-1.268-.139-1.664-.416-.382-.277-.574-.673-.574-1.188v-.1c0-.633.211-1.095.634-1.385.422-.29 1.148-.462 2.178-.515l2.495-.119v1.07zm14.538-1.386c0-1.03-.204-1.927-.614-2.692a4.495 4.495 0 0 0-1.722-1.822c-.74-.436-1.571-.653-2.495-.653-1.822 0-3.122.673-3.9 2.02V9h-1.585v13.563h1.703v-5.01c.726 1.123 1.98 1.684 3.762 1.684.964 0 1.809-.218 2.535-.654a4.337 4.337 0 0 0 1.702-1.841c.41-.792.614-1.703.614-2.733v-.099zm-1.722.1c0 .739-.146 1.392-.436 1.96a3.33 3.33 0 0 1-1.228 1.366c-.514.317-1.102.475-1.762.475-1.069 0-1.927-.343-2.574-1.03-.647-.7-.97-1.623-.97-2.772v-.099c0-.752.152-1.412.455-1.98a3.214 3.214 0 0 1 1.268-1.287 3.646 3.646 0 0 1 1.841-.475c.647 0 1.24.159 1.782.475.515.317.91.76 1.188 1.327.29.554.436 1.201.436 1.94v.1zM41.678 19c1.149 0 2.066-.304 2.753-.91.686-.608 1.03-1.42 1.03-2.436 0-1.03-.344-1.848-1.03-2.455-.687-.608-1.604-.911-2.753-.911h-2.633V9h-1.703V19h4.336zm-2.633-5.306h2.356c1.545 0 2.317.653 2.317 1.96s-.772 1.96-2.317 1.96h-2.356v-3.92zm16.611 2.514c-.554.594-1.102 1.017-1.643 1.267-.528.251-1.135.377-1.822.377-.713 0-1.333-.152-1.86-.456-.99-.594-1.559-1.63-1.704-3.108h7.96l.04-.733c0-1.505-.41-2.686-1.228-3.544-.805-.858-1.934-1.287-3.386-1.287-1.03 0-1.927.224-2.693.673a4.723 4.723 0 0 0-1.801 1.9c-.436.806-.654 1.71-.654 2.713 0 1.056.218 1.98.654 2.772a4.582 4.582 0 0 0 1.821 1.862c.792.422 1.716.633 2.772.633.937 0 1.756-.152 2.455-.455.7-.317 1.4-.838 2.1-1.564l-1.01-1.05zm-6.97-3.168c.133-.91.496-1.63 1.09-2.158.594-.541 1.333-.812 2.217-.812.898 0 1.61.27 2.139.812.54.528.831 1.247.87 2.158h-6.315zm20.173.871c0-1.03-.205-1.927-.614-2.692a4.495 4.495 0 0 0-1.722-1.822c-.74-.436-1.571-.653-2.495-.653-1.822 0-3.122.673-3.9 2.02V9h-1.585v13.563h1.703v-5.01c.726 1.123 1.98 1.684 3.762 1.684.964 0 1.808-.218 2.534-.654a4.337 4.337 0 0 0 1.703-1.841c.41-.792.614-1.703.614-2.733v-.099zm-1.723.1c0 .739-.145 1.392-.435 1.96a3.33 3.33 0 0 1-1.228 1.366c-.515.317-1.102.475-1.762.475-1.07 0-1.927-.343-2.574-1.03-.647-.7-.97-1.623-.97-2.772v-.099c0-.752.152-1.412.455-1.98a3.214 3.214 0 0 1 1.267-1.287 3.646 3.646 0 0 1 1.842-.475c.647 0 1.24.159 1.782.475.515.317.91.76 1.188 1.327.29.554.435 1.201.435 1.94v.1zm11.904-1.842c0-1.082-.356-1.927-1.069-2.534-.713-.608-1.71-.911-2.99-.911-1.782 0-3.247.693-4.395 2.079l1.089.99c.541-.594 1.069-1.017 1.584-1.267a3.885 3.885 0 0 1 1.762-.396c.779 0 1.373.184 1.782.554.41.356.614.891.614 1.604v.673l-2.614.178c-1.478.08-2.574.383-3.287.911-.7.515-1.049 1.274-1.049 2.277v.099c0 .91.31 1.617.93 2.119.634.501 1.505.752 2.614.752.779 0 1.465-.139 2.06-.416.593-.29 1.069-.7 1.425-1.227V19h1.544v-6.831zm-1.623 3.128c0 .502-.132.957-.396 1.367a2.61 2.61 0 0 1-1.109.95 3.617 3.617 0 0 1-1.564.337c-.713 0-1.267-.139-1.663-.416-.383-.277-.575-.673-.575-1.188v-.1c0-.633.212-1.095.634-1.385.422-.29 1.148-.462 2.178-.515l2.495-.119v1.07z", fill: color }))));
|
|
17
|
+
});
|
|
18
|
+
Career.displayName = 'Career';
|
|
19
|
+
var CareerWithStaticFields = Object.assign(Career, { __KONTUR_REACT_UI__: 'Career' });
|
|
20
|
+
export { CareerWithStaticFields as Career };
|
package/src/ENigma.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const ENigmaWithStaticFields: React.ForwardRefExoticComponent<{
|
|
3
|
+
color?: string | undefined;
|
|
4
|
+
size?: number | undefined;
|
|
5
|
+
} & React.RefAttributes<HTMLSpanElement>> & {
|
|
6
|
+
__KONTUR_REACT_UI__: string;
|
|
7
|
+
};
|
|
8
|
+
export { ENigmaWithStaticFields as ENigma };
|
package/src/ENigma.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
var ENigma = forwardRef(function (_a, ref) {
|
|
3
|
+
var _b = _a.color, color = _b === void 0 ? '#B750D1' : _b, _c = _a.size, size = _c === void 0 ? 24 : _c;
|
|
4
|
+
return (React.createElement("span", { style: {
|
|
5
|
+
width: size * 2.9166666666666665 + "px",
|
|
6
|
+
height: size,
|
|
7
|
+
lineHeight: size + "px",
|
|
8
|
+
display: 'inline-block',
|
|
9
|
+
}, ref: ref },
|
|
10
|
+
React.createElement("svg", { viewBox: "0 0 70 24", xmlns: "http://www.w3.org/2000/svg", focusable: false, style: {
|
|
11
|
+
marginBottom: "-" + size * 0.20833333333333337 + "px",
|
|
12
|
+
width: '100%',
|
|
13
|
+
height: '100%',
|
|
14
|
+
display: 'inline-block',
|
|
15
|
+
} },
|
|
16
|
+
React.createElement("path", { d: "M1.604 7.892c.686-.594 1.353-1.016 2-1.267a5.651 5.651 0 0 1 2.118-.396c.964 0 1.822.198 2.574.594.753.41 1.353.983 1.802 1.723.462.726.74 1.557.832 2.494H3.94v1.545h7.01c-.067 1.016-.317 1.9-.753 2.653a4.832 4.832 0 0 1-1.802 1.841c-.752.423-1.604.634-2.554.634a5.963 5.963 0 0 1-1.544-.218c-.885-.25-1.855-.864-2.911-1.841L.297 16.862c.634.633 1.221 1.115 1.762 1.445 1.056.66 2.31.99 3.762.99 1.413 0 2.653-.317 3.723-.95a6.242 6.242 0 0 0 2.435-2.594c.58-1.109.871-2.37.871-3.782 0-1.056-.165-2.026-.495-2.91a6.548 6.548 0 0 0-1.406-2.337C9.63 5.338 7.88 4.645 5.702 4.645c-.99 0-1.894.158-2.712.475-.819.304-1.637.805-2.455 1.505l1.069 1.267zm21.85 1.109H21.75v4.178h-5.01V9H15.04V19h1.702v-4.435h5.01V19h1.703V9.001zm6.47 4.653a66.755 66.755 0 0 0-2.238 3.524l.04-1.98c.013-.171.02-.712.02-1.623V9h-1.604V19h1.822l2.91-4.435 1.09-1.604a35.972 35.972 0 0 0 1.385-2.178c-.053.832-.079 2.244-.079 4.237V19h1.624V9.001h-1.842l-3.128 4.653zm14.679-4.653h-7.01V19h1.703v-8.593h5.307V9zM52 17.079l-3.128-8.078h-2.515V19h1.584v-8.474L51.228 19h1.545l3.286-8.494V19h1.584V9.001H55.11L52 17.079zm16.42-4.91c0-1.082-.356-1.927-1.069-2.534-.713-.608-1.71-.911-2.99-.911-1.782 0-3.247.693-4.395 2.079l1.089.99c.54-.594 1.069-1.017 1.584-1.267a3.885 3.885 0 0 1 1.762-.396c.779 0 1.373.184 1.782.554.41.356.614.891.614 1.604v.673l-2.614.178c-1.478.08-2.574.383-3.287.911-.7.515-1.05 1.274-1.05 2.277v.099c0 .91.311 1.617.932 2.119.633.501 1.504.752 2.613.752.779 0 1.465-.139 2.06-.416.593-.29 1.069-.7 1.425-1.227V19h1.544v-6.831zm-1.623 3.128c0 .502-.132.957-.396 1.367a2.61 2.61 0 0 1-1.11.95 3.617 3.617 0 0 1-1.563.337c-.713 0-1.267-.139-1.663-.416-.383-.277-.575-.673-.575-1.188v-.1c0-.633.212-1.095.634-1.385.422-.29 1.148-.462 2.178-.515l2.495-.119v1.07z", fill: color }))));
|
|
17
|
+
});
|
|
18
|
+
ENigma.displayName = 'ENigma';
|
|
19
|
+
var ENigmaWithStaticFields = Object.assign(ENigma, { __KONTUR_REACT_UI__: 'ENigma' });
|
|
20
|
+
export { ENigmaWithStaticFields as ENigma };
|
package/src/Kedo.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const KedoWithStaticFields: React.ForwardRefExoticComponent<{
|
|
3
|
+
color?: string | undefined;
|
|
4
|
+
size?: number | undefined;
|
|
5
|
+
} & React.RefAttributes<HTMLSpanElement>> & {
|
|
6
|
+
__KONTUR_REACT_UI__: string;
|
|
7
|
+
};
|
|
8
|
+
export { KedoWithStaticFields as Kedo };
|
package/src/Kedo.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
var Kedo = forwardRef(function (_a, ref) {
|
|
3
|
+
var _b = _a.color, color = _b === void 0 ? '#00BEA2' : _b, _c = _a.size, size = _c === void 0 ? 24 : _c;
|
|
4
|
+
return (React.createElement("span", { style: {
|
|
5
|
+
width: size * 4.125 + "px",
|
|
6
|
+
height: size,
|
|
7
|
+
lineHeight: size + "px",
|
|
8
|
+
display: 'inline-block',
|
|
9
|
+
}, ref: ref },
|
|
10
|
+
React.createElement("svg", { viewBox: "0 0 99 24", xmlns: "http://www.w3.org/2000/svg", focusable: false, style: {
|
|
11
|
+
marginBottom: "-" + size * 0.20833333333333337 + "px",
|
|
12
|
+
width: '100%',
|
|
13
|
+
height: '100%',
|
|
14
|
+
display: 'inline-block',
|
|
15
|
+
} },
|
|
16
|
+
React.createElement("path", { d: "m12.752 19-5.445-7.207 5.168-6.851h-2.06L5.803 11.06H3.347V4.942H1.525V19h1.822v-6.435h2.455L10.692 19h2.06zM14.719 7.892c.686-.594 1.353-1.016 2-1.267a5.651 5.651 0 0 1 2.118-.396c.964 0 1.822.198 2.574.594.753.41 1.353.983 1.802 1.723.462.726.74 1.557.832 2.494h-6.99v1.545h7.01c-.066 1.016-.317 1.9-.753 2.653a4.832 4.832 0 0 1-1.802 1.841c-.752.423-1.603.634-2.554.634a5.963 5.963 0 0 1-1.544-.218c-.885-.25-1.855-.864-2.91-1.841l-1.09 1.208c.634.633 1.221 1.115 1.762 1.445 1.056.66 2.31.99 3.762.99 1.413 0 2.654-.317 3.723-.95a6.242 6.242 0 0 0 2.435-2.594c.581-1.109.871-2.37.871-3.782 0-1.056-.165-2.026-.495-2.91a6.548 6.548 0 0 0-1.405-2.337c-1.32-1.386-3.07-2.079-5.247-2.079-.99 0-1.895.158-2.713.475-.818.304-1.637.805-2.455 1.505l1.069 1.267zM30.094 10.17a49.501 49.501 0 0 1-.138 2.732c-.198 1.953-.707 3.478-1.525 4.573h-1.168v4.455h1.782V19h10.573v2.93h1.762v-4.455h-1.683V4.942h-9.563l-.04 5.227zm.218 7.305c.475-.726.832-1.663 1.07-2.811.25-1.149.382-2.594.395-4.336l.04-3.861h6.059v11.008h-7.564zM57.318 11.912c0-1.03-.172-1.987-.515-2.871a6.532 6.532 0 0 0-1.465-2.317A6.491 6.491 0 0 0 53.02 5.18c-.897-.357-1.894-.535-2.99-.535-1.069 0-2.052.178-2.95.535a6.491 6.491 0 0 0-2.316 1.544A7.482 7.482 0 0 0 43.26 9.08a7.757 7.757 0 0 0-.515 2.832v.079c0 1.03.172 1.993.515 2.89a6.77 6.77 0 0 0 1.485 2.317 6.516 6.516 0 0 0 2.297 1.564c.897.357 1.894.535 2.99.535 1.082 0 2.072-.178 2.97-.535a6.491 6.491 0 0 0 2.316-1.544 6.983 6.983 0 0 0 1.485-2.336 8.026 8.026 0 0 0 .515-2.891v-.08zm-12.712 0c0-1.083.231-2.066.693-2.95.475-.872 1.116-1.545 1.92-2.02.82-.475 1.756-.713 2.812-.713 1.07 0 2.02.238 2.852.713a4.872 4.872 0 0 1 1.9 2c.45.858.674 1.848.674 2.97v.079c0 1.148-.225 2.145-.674 2.99a4.844 4.844 0 0 1-1.9 2.02c-.819.474-1.77.712-2.852.712-1.056 0-1.993-.238-2.811-.713a4.974 4.974 0 0 1-1.92-2.02c-.463-.884-.694-1.88-.694-2.99v-.078z", fill: color }))));
|
|
17
|
+
});
|
|
18
|
+
Kedo.displayName = 'Kedo';
|
|
19
|
+
var KedoWithStaticFields = Object.assign(Kedo, { __KONTUR_REACT_UI__: 'Kedo' });
|
|
20
|
+
export { KedoWithStaticFields as Kedo };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const MarkirovkaENWithStaticFields: React.ForwardRefExoticComponent<{
|
|
3
|
+
color?: string | undefined;
|
|
4
|
+
size?: number | undefined;
|
|
5
|
+
} & React.RefAttributes<HTMLSpanElement>> & {
|
|
6
|
+
__KONTUR_REACT_UI__: string;
|
|
7
|
+
};
|
|
8
|
+
export { MarkirovkaENWithStaticFields as MarkirovkaEN };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
var MarkirovkaEN = forwardRef(function (_a, ref) {
|
|
3
|
+
var _b = _a.color, color = _b === void 0 ? '#2291FF' : _b, _c = _a.size, size = _c === void 0 ? 24 : _c;
|
|
4
|
+
return (React.createElement("span", { style: {
|
|
5
|
+
width: size * 3 + "px",
|
|
6
|
+
height: size,
|
|
7
|
+
lineHeight: size + "px",
|
|
8
|
+
display: 'inline-block',
|
|
9
|
+
}, ref: ref },
|
|
10
|
+
React.createElement("svg", { viewBox: "0 0 72 24", xmlns: "http://www.w3.org/2000/svg", focusable: false, style: {
|
|
11
|
+
marginBottom: "-" + size * 0.20833333333333337 + "px",
|
|
12
|
+
width: '100%',
|
|
13
|
+
height: '100%',
|
|
14
|
+
display: 'inline-block',
|
|
15
|
+
} },
|
|
16
|
+
React.createElement("path", { d: "M9.85 11.14c-.87 2.468-1.491 4.329-1.86 5.583-.357-1.267-.99-3.128-1.901-5.584L3.89 4.942H1V19h1.723v-7.01l-.02-4.256V6.308c.435 1.412 1.089 3.293 1.96 5.643L7.158 19h1.604l2.653-7.564a189.65 189.65 0 0 0 1.782-5.167c-.04 1.518-.06 3.425-.06 5.722V19h1.782V4.942h-2.89L9.85 11.139zM25.976 12.169c0-1.083-.356-1.927-1.069-2.535-.713-.607-1.71-.91-2.99-.91-1.782 0-3.247.693-4.395 2.079l1.088.99c.542-.594 1.07-1.017 1.585-1.268a3.885 3.885 0 0 1 1.762-.396c.779 0 1.372.185 1.782.555.409.356.614.89.614 1.604v.673l-2.614.178c-1.478.08-2.574.383-3.287.91-.7.516-1.05 1.275-1.05 2.278v.099c0 .91.311 1.617.931 2.119.634.501 1.505.752 2.614.752.779 0 1.465-.139 2.06-.416.593-.29 1.068-.7 1.425-1.227V19h1.544v-6.831zm-1.623 3.128c0 .502-.132.957-.396 1.366a2.61 2.61 0 0 1-1.11.95 3.617 3.617 0 0 1-1.563.338c-.713 0-1.268-.14-1.664-.416-.382-.277-.574-.674-.574-1.188v-.1c0-.633.211-1.095.634-1.385.422-.29 1.148-.462 2.178-.515l2.495-.119v1.07zM34.278 9.18c-.634-.199-1.168-.298-1.604-.298-.554 0-1.056.152-1.505.455-.435.29-.779.707-1.03 1.248V9h-1.564V19h1.703v-5.346c0-.977.211-1.756.634-2.336.435-.581.996-.872 1.683-.872.343 0 .785.08 1.326.238l.357-1.505zM44.662 19l-4.06-6.138L44.346 9h-2.06l-4.672 4.85v-8.91H35.91V19h1.703v-3.188l1.782-1.841L42.741 19h1.92zM45.826 6.288c0 .304.105.568.317.792.224.211.495.317.811.317.317 0 .581-.106.792-.317.212-.224.317-.488.317-.792a1.05 1.05 0 0 0-.317-.772 1.042 1.042 0 0 0-.792-.337c-.33 0-.6.106-.811.317a1.075 1.075 0 0 0-.317.792zm.277 2.713V19h1.703V9h-1.703zM52.18 12.96c0-.857.245-1.53.733-2.019.502-.488 1.182-.732 2.04-.732.792 0 1.386.191 1.782.574.409.383.614.944.614 1.683V19h1.722v-6.95c0-1.082-.317-1.907-.95-2.475-.62-.568-1.558-.851-2.812-.851-.752 0-1.412.138-1.98.415a2.793 2.793 0 0 0-1.267 1.169V9h-1.624V19h1.743v-6.04zM69.616 10.486c-.74-1.175-1.96-1.762-3.663-1.762-.924 0-1.75.204-2.475.613a4.273 4.273 0 0 0-1.683 1.802c-.396.766-.594 1.65-.594 2.654 0 1.069.184 1.953.554 2.653a4.432 4.432 0 0 0 1.683 1.801c.726.436 1.538.654 2.436.654 1.663 0 2.87-.568 3.623-1.703v1.525c0 .87-.277 1.544-.832 2.02-.54.475-1.306.712-2.297.712-.66 0-1.28-.092-1.86-.277-.568-.185-1.3-.521-2.198-1.01l-.812 1.287c.818.489 1.623.852 2.415 1.09.792.25 1.61.375 2.456.375.99 0 1.854-.171 2.593-.515.753-.316 1.314-.785 1.683-1.405.383-.608.575-1.347.575-2.218V9.001h-1.604v1.485zm-.06 3.306c0 1.096-.31 1.98-.93 2.654-.62.66-1.433.99-2.436.99a3.29 3.29 0 0 1-1.703-.456 3.204 3.204 0 0 1-1.187-1.287c-.29-.554-.436-1.188-.436-1.9 0-.7.132-1.327.396-1.881.277-.542.68-.964 1.208-1.268a3.58 3.58 0 0 1 1.782-.455c.99 0 1.788.33 2.395.99.608.647.911 1.518.911 2.614z", fill: color }))));
|
|
17
|
+
});
|
|
18
|
+
MarkirovkaEN.displayName = 'MarkirovkaEN';
|
|
19
|
+
var MarkirovkaENWithStaticFields = Object.assign(MarkirovkaEN, { __KONTUR_REACT_UI__: 'MarkirovkaEN' });
|
|
20
|
+
export { MarkirovkaENWithStaticFields as MarkirovkaEN };
|
package/src/Stream.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const StreamWithStaticFields: React.ForwardRefExoticComponent<{
|
|
3
|
+
color?: string | undefined;
|
|
4
|
+
size?: number | undefined;
|
|
5
|
+
} & React.RefAttributes<HTMLSpanElement>> & {
|
|
6
|
+
__KONTUR_REACT_UI__: string;
|
|
7
|
+
};
|
|
8
|
+
export { StreamWithStaticFields as Stream };
|
package/src/Stream.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
var Stream = forwardRef(function (_a, ref) {
|
|
3
|
+
var _b = _a.color, color = _b === void 0 ? '#2291FF' : _b, _c = _a.size, size = _c === void 0 ? 24 : _c;
|
|
4
|
+
return (React.createElement("span", { style: {
|
|
5
|
+
width: size * 4.166666666666667 + "px",
|
|
6
|
+
height: size,
|
|
7
|
+
lineHeight: size + "px",
|
|
8
|
+
display: 'inline-block',
|
|
9
|
+
}, ref: ref },
|
|
10
|
+
React.createElement("svg", { viewBox: "0 0 100 24", xmlns: "http://www.w3.org/2000/svg", focusable: false, style: {
|
|
11
|
+
marginBottom: "-" + size * 0.20833333333333337 + "px",
|
|
12
|
+
width: '100%',
|
|
13
|
+
height: '100%',
|
|
14
|
+
display: 'inline-block',
|
|
15
|
+
} },
|
|
16
|
+
React.createElement("path", { d: "M13.068 6.625c-.832-.713-1.65-1.221-2.455-1.525-.806-.303-1.71-.455-2.713-.455-2.178 0-3.92.693-5.227 2.079A6.637 6.637 0 0 0 1.227 9.06c-.33.885-.495 1.855-.495 2.911 0 1.4.297 2.653.891 3.762.594 1.135 1.42 2.013 2.475 2.633 1.056.62 2.284.931 3.683.931.74 0 1.413-.08 2.02-.238a6.335 6.335 0 0 0 1.742-.752c.555-.343 1.142-.825 1.762-1.445l-1.089-1.208c-.54.501-1.049.904-1.524 1.208a5.314 5.314 0 0 1-2.93.851c-1.03 0-1.928-.244-2.693-.733-.78-.475-1.386-1.148-1.822-2.02-.436-.884-.653-1.88-.653-2.989 0-1.135.217-2.138.653-3.01.436-.87 1.05-1.544 1.841-2.02.806-.474 1.736-.712 2.792-.712.74 0 1.426.125 2.06.376.633.251 1.32.68 2.059 1.287l1.069-1.267zM22.2 9.001H13.49v1.386h3.504V19h1.703v-8.613h3.505V9.001zM34.253 13.911c0-1.03-.205-1.927-.614-2.692a4.495 4.495 0 0 0-1.723-1.822c-.739-.436-1.57-.653-2.494-.653-1.822 0-3.122.673-3.9 2.02V9h-1.585v13.563h1.703v-5.01c.726 1.123 1.98 1.684 3.762 1.684.963 0 1.808-.218 2.534-.654a4.337 4.337 0 0 0 1.703-1.841c.41-.792.614-1.703.614-2.733v-.099zm-1.723.1c0 .739-.145 1.392-.435 1.96a3.33 3.33 0 0 1-1.228 1.366c-.515.317-1.102.475-1.762.475-1.07 0-1.927-.343-2.574-1.03-.647-.7-.97-1.623-.97-2.772v-.099c0-.752.151-1.412.455-1.98a3.214 3.214 0 0 1 1.267-1.287 3.646 3.646 0 0 1 1.842-.475c.646 0 1.24.159 1.782.475.515.317.91.76 1.188 1.327.29.554.435 1.201.435 1.94v.1zM40.138 13.654a66.755 66.755 0 0 0-2.238 3.524l.04-1.98c.013-.171.02-.712.02-1.623V9h-1.604V19h1.822l2.91-4.435 1.09-1.604a35.972 35.972 0 0 0 1.385-2.178c-.053.832-.08 2.244-.08 4.237V19h1.625V9.001h-1.842l-3.128 4.653zM53.45 17.08 50.322 9h-2.515V19h1.584v-8.474L52.678 19h1.545l3.286-8.494V19h1.584V9.001H56.56l-3.109 8.078z", fill: color }))));
|
|
17
|
+
});
|
|
18
|
+
Stream.displayName = 'Stream';
|
|
19
|
+
var StreamWithStaticFields = Object.assign(Stream, { __KONTUR_REACT_UI__: 'Stream' });
|
|
20
|
+
export { StreamWithStaticFields as Stream };
|