@skbkontur/logos 2.1.0 → 2.2.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 +11 -0
- package/cjs/index.d.ts +5 -0
- package/cjs/index.js +10 -0
- package/cjs/src/AktSverki.d.ts +8 -0
- package/cjs/src/AktSverki.js +26 -0
- package/cjs/src/DiadocEdoetp.d.ts +8 -0
- package/cjs/src/DiadocEdoetp.js +26 -0
- package/cjs/src/DiadocLogistics.d.ts +8 -0
- package/cjs/src/DiadocLogistics.js +26 -0
- package/cjs/src/Finance.d.ts +8 -0
- package/cjs/src/Finance.js +24 -0
- package/cjs/src/RealEstate.d.ts +8 -0
- package/cjs/src/RealEstate.js +24 -0
- package/index.d.ts +5 -0
- package/index.js +5 -0
- package/package.json +1 -1
- package/src/AktSverki.d.ts +8 -0
- package/src/AktSverki.js +22 -0
- package/src/DiadocEdoetp.d.ts +8 -0
- package/src/DiadocEdoetp.js +22 -0
- package/src/DiadocLogistics.d.ts +8 -0
- package/src/DiadocLogistics.js +22 -0
- package/src/Finance.d.ts +8 -0
- package/src/Finance.js +20 -0
- package/src/RealEstate.d.ts +8 -0
- package/src/RealEstate.js +20 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.2.0](https://git.skbkontur.ru/ui/ui-parking/compare/@skbkontur/logos@2.1.0...@skbkontur/logos@2.2.0) (2023-02-28)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **logos:** add new logos ([0a57cd6](https://git.skbkontur.ru/ui/ui-parking/commits/0a57cd61e617c3e0f2a963b0e285bbee3266f3ea))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [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
18
|
|
|
8
19
|
|
package/cjs/index.d.ts
CHANGED
|
@@ -166,3 +166,8 @@ export { Career } from './src/Career';
|
|
|
166
166
|
export { ENigma } from './src/ENigma';
|
|
167
167
|
export { Kedo } from './src/Kedo';
|
|
168
168
|
export { Stream } from './src/Stream';
|
|
169
|
+
export { AktSverki } from './src/AktSverki';
|
|
170
|
+
export { DiadocEdoetp } from './src/DiadocEdoetp';
|
|
171
|
+
export { DiadocLogistics } from './src/DiadocLogistics';
|
|
172
|
+
export { Finance } from './src/Finance';
|
|
173
|
+
export { RealEstate } from './src/RealEstate';
|
package/cjs/index.js
CHANGED
|
@@ -336,3 +336,13 @@ var Kedo_1 = require("./src/Kedo");
|
|
|
336
336
|
Object.defineProperty(exports, "Kedo", { enumerable: true, get: function () { return Kedo_1.Kedo; } });
|
|
337
337
|
var Stream_1 = require("./src/Stream");
|
|
338
338
|
Object.defineProperty(exports, "Stream", { enumerable: true, get: function () { return Stream_1.Stream; } });
|
|
339
|
+
var AktSverki_1 = require("./src/AktSverki");
|
|
340
|
+
Object.defineProperty(exports, "AktSverki", { enumerable: true, get: function () { return AktSverki_1.AktSverki; } });
|
|
341
|
+
var DiadocEdoetp_1 = require("./src/DiadocEdoetp");
|
|
342
|
+
Object.defineProperty(exports, "DiadocEdoetp", { enumerable: true, get: function () { return DiadocEdoetp_1.DiadocEdoetp; } });
|
|
343
|
+
var DiadocLogistics_1 = require("./src/DiadocLogistics");
|
|
344
|
+
Object.defineProperty(exports, "DiadocLogistics", { enumerable: true, get: function () { return DiadocLogistics_1.DiadocLogistics; } });
|
|
345
|
+
var Finance_1 = require("./src/Finance");
|
|
346
|
+
Object.defineProperty(exports, "Finance", { enumerable: true, get: function () { return Finance_1.Finance; } });
|
|
347
|
+
var RealEstate_1 = require("./src/RealEstate");
|
|
348
|
+
Object.defineProperty(exports, "RealEstate", { enumerable: true, get: function () { return RealEstate_1.RealEstate; } });
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const AktSverkiWithStaticFields: React.ForwardRefExoticComponent<{
|
|
3
|
+
color?: string | undefined;
|
|
4
|
+
size?: number | undefined;
|
|
5
|
+
} & React.RefAttributes<HTMLSpanElement>> & {
|
|
6
|
+
__KONTUR_REACT_UI__: string;
|
|
7
|
+
};
|
|
8
|
+
export { AktSverkiWithStaticFields as AktSverki };
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AktSverki = void 0;
|
|
4
|
+
var tslib_1 = require("tslib");
|
|
5
|
+
var react_1 = tslib_1.__importStar(require("react"));
|
|
6
|
+
var AktSverki = 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 * 9.75 + "px",
|
|
10
|
+
height: size,
|
|
11
|
+
lineHeight: size + "px",
|
|
12
|
+
display: 'inline-block',
|
|
13
|
+
}, ref: ref },
|
|
14
|
+
react_1.default.createElement("svg", { viewBox: "0 0 234 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: "M3.188 10.17a49.501 49.501 0 0 1-.139 2.732c-.198 1.953-.706 3.478-1.524 4.573H.356v4.455h1.782V19h10.574v2.93h1.762v-4.455H12.79V4.942H3.227l-.04 5.227zm.218 7.305c.475-.726.831-1.663 1.069-2.811.25-1.149.383-2.594.396-4.336l.04-3.861h6.058v11.008H3.406zM20.329 13.654a66.755 66.755 0 0 0-2.238 3.524l.04-1.98c.013-.171.02-.712.02-1.623V9h-1.604V19h1.821l2.911-4.435 1.089-1.604a35.972 35.972 0 0 0 1.386-2.178c-.053.832-.08 2.244-.08 4.237V19h1.624V9.001h-1.841l-3.128 4.653zM36.077 12.169c0-1.082-.357-1.927-1.07-2.534-.712-.608-1.709-.911-2.99-.911-1.781 0-3.247.693-4.395 2.079l1.09.99c.54-.594 1.068-1.017 1.583-1.267a3.885 3.885 0 0 1 1.762-.396c.78 0 1.373.184 1.782.554.41.356.614.891.614 1.604v.673l-2.614.178c-1.478.08-2.573.383-3.286.911-.7.515-1.05 1.274-1.05 2.277v.099c0 .91.31 1.617.93 2.119.634.501 1.506.752 2.614.752.78 0 1.466-.139 2.06-.416.594-.29 1.069-.7 1.425-1.227V19h1.545v-6.831zm-1.624 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-.574-.673-.574-1.188v-.1c0-.633.21-1.095.633-1.385.423-.29 1.149-.462 2.178-.515l2.495-.119v1.07zM39.197 21.475V19h7.86v2.475h1.644v-3.861h-1.465V9.001h-7.524l-.04 3.703c-.026 1.32-.138 2.369-.336 3.148-.185.779-.462 1.366-.832 1.762h-.93v3.861h1.623zm1.03-3.861c.317-.396.554-.983.713-1.762.158-.779.244-1.795.257-3.05l.04-2.415h4.296v7.227h-5.306zM59.967 13.931c0-1.016-.218-1.92-.653-2.712a4.711 4.711 0 0 0-1.861-1.842c-.793-.435-1.697-.653-2.713-.653-1.03 0-1.94.218-2.733.653a4.849 4.849 0 0 0-1.86 1.861c-.436.78-.654 1.677-.654 2.693v.08c0 1.055.224 1.973.673 2.752a4.711 4.711 0 0 0 1.842 1.86c.791.436 1.702.654 2.732.654 1.03 0 1.934-.224 2.712-.673a4.58 4.58 0 0 0 1.842-1.841c.449-.806.673-1.723.673-2.753v-.079zm-8.732 0c0-.739.152-1.399.456-1.98.303-.58.72-1.023 1.247-1.326.528-.317 1.129-.476 1.802-.476.686 0 1.293.159 1.822.476.54.316.95.759 1.227 1.326.29.568.436 1.228.436 1.98v.08c0 .752-.139 1.418-.416 2-.29.593-.7 1.049-1.228 1.365-.528.317-1.142.476-1.841.476-.687 0-1.3-.159-1.842-.476a3.197 3.197 0 0 1-1.227-1.346c-.29-.594-.436-1.267-.436-2.02v-.079zM70.837 19l-4.06-5.188 3.743-4.811h-1.822l-3.287 4.198H63.67V9h-1.703V19h1.703v-4.415h1.723L68.896 19h1.94z", fill: color }),
|
|
21
|
+
react_1.default.createElement("circle", { cx: "77.5", cy: "13.5", r: "1.5" }),
|
|
22
|
+
react_1.default.createElement("path", { d: "M96.335 15.06c0-.871-.237-1.61-.712-2.218-.462-.607-1.11-1.03-1.94-1.267.686-.238 1.214-.62 1.583-1.148.383-.542.575-1.182.575-1.921 0-.74-.172-1.38-.515-1.92A3.238 3.238 0 0 0 93.9 5.357c-.607-.277-1.327-.416-2.158-.416h-6.217V19h6.494c1.307 0 2.35-.35 3.128-1.05.792-.712 1.188-1.676 1.188-2.89zm-4.99-8.673c.859 0 1.519.192 1.98.575.476.37.714.91.714 1.623 0 .726-.245 1.294-.733 1.703-.475.41-1.129.614-1.96.614h-4V6.387h4zm3.15 8.594c0 .805-.272 1.438-.813 1.9-.528.45-1.28.674-2.257.674h-4.079v-5.208h4.04c.95 0 1.702.244 2.257.733.567.475.851 1.109.851 1.9zM106.121 16.129c0-1.148-.634-1.92-1.901-2.317 1.095-.382 1.643-1.141 1.643-2.277 0-.897-.383-1.603-1.148-2.118-.739-.462-1.644-.693-2.713-.693-.779 0-1.498.119-2.158.356-.647.225-1.28.594-1.9 1.109l.85 1.129c.516-.436 1.024-.746 1.525-.931a4.442 4.442 0 0 1 1.644-.297c.712 0 1.26.139 1.643.416.383.264.574.653.574 1.168 0 .502-.165.891-.495 1.168-.33.264-.818.396-1.465.396h-1.822v1.287h1.842c.726 0 1.274.132 1.643.396.383.264.574.654.574 1.168 0 .555-.211.997-.633 1.327-.423.317-1.003.475-1.743.475-1.267 0-2.448-.468-3.544-1.406l-.97 1.09c.647.593 1.32 1.029 2.02 1.306.712.264 1.524.396 2.435.396.845 0 1.571-.138 2.178-.416.62-.264 1.096-.627 1.426-1.089a2.81 2.81 0 0 0 .495-1.643zM116.403 12.169c0-1.082-.356-1.927-1.069-2.534-.713-.608-1.71-.911-2.99-.911-1.782 0-3.247.693-4.396 2.079l1.089.99c.542-.594 1.07-1.017 1.584-1.267a3.888 3.888 0 0 1 1.763-.396c.778 0 1.372.184 1.782.554.409.356.613.891.613 1.604v.673l-2.613.178c-1.479.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.059-.416.594-.29 1.069-.7 1.426-1.227V19h1.544v-6.831zm-1.624 3.128c0 .502-.132.957-.396 1.367a2.61 2.61 0 0 1-1.108.95 3.621 3.621 0 0 1-1.565.337c-.712 0-1.267-.139-1.663-.416-.383-.277-.574-.673-.574-1.188v-.1c0-.633.211-1.095.634-1.385.422-.29 1.148-.462 2.178-.515l2.494-.119v1.07zM122.804 13.654a66.545 66.545 0 0 0-2.238 3.524l.04-1.98c.013-.171.02-.712.02-1.623V9h-1.604V19h1.822l2.91-4.435 1.089-1.604a36.173 36.173 0 0 0 1.386-2.178c-.053.832-.079 2.244-.079 4.237V19h1.624V9.001h-1.842l-3.128 4.653zM136.116 17.08 132.988 9h-2.515V19h1.584v-8.474L135.344 19h1.545l3.286-8.494V19h1.584V9.001h-2.534l-3.109 8.078zM154.239 13.931c0-1.016-.218-1.92-.653-2.712a4.712 4.712 0 0 0-1.861-1.842c-.792-.435-1.697-.653-2.713-.653-1.03 0-1.94.218-2.732.653a4.852 4.852 0 0 0-1.862 1.861c-.435.78-.653 1.677-.653 2.693v.08c0 1.055.224 1.973.673 2.752a4.715 4.715 0 0 0 1.842 1.86c.792.436 1.702.654 2.732.654 1.03 0 1.934-.224 2.713-.673a4.58 4.58 0 0 0 1.841-1.841c.449-.806.673-1.723.673-2.753v-.079zm-8.732 0c0-.739.152-1.399.456-1.98a3.188 3.188 0 0 1 1.247-1.326c.528-.317 1.129-.476 1.802-.476.686 0 1.294.159 1.822.476.541.316.95.759 1.227 1.326.291.568.436 1.228.436 1.98v.08c0 .752-.139 1.418-.416 2-.29.593-.7 1.049-1.228 1.365-.528.317-1.141.476-1.841.476-.686 0-1.3-.159-1.841-.476a3.195 3.195 0 0 1-1.228-1.346c-.29-.594-.436-1.267-.436-2.02v-.079zM166.534 13.911c0-1.03-.204-1.927-.614-2.692a4.493 4.493 0 0 0-1.722-1.822c-.739-.436-1.571-.653-2.495-.653-1.822 0-3.122.673-3.901 2.02V9h-1.584v13.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.96-.29.58-.7 1.036-1.228 1.366-.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.213 3.213 0 0 1 1.268-1.287 3.644 3.644 0 0 1 1.841-.475c.647 0 1.241.159 1.782.475.515.317.911.76 1.188 1.327.29.554.436 1.201.436 1.94v.1zM176.716 12.169c0-1.082-.357-1.927-1.07-2.534-.712-.608-1.709-.911-2.989-.911-1.782 0-3.248.693-4.396 2.079l1.089.99c.541-.594 1.069-1.017 1.584-1.267a3.883 3.883 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.286.911-.7.515-1.05 1.274-1.05 2.277v.099c0 .91.31 1.617.931 2.119.633.501 1.505.752 2.613.752.779 0 1.466-.139 2.06-.416.594-.29 1.069-.7 1.425-1.227V19h1.545v-6.831zm-1.624 3.128c0 .502-.132.957-.396 1.367-.264.409-.634.726-1.109.95a3.614 3.614 0 0 1-1.564.337c-.713 0-1.267-.139-1.663-.416-.383-.277-.574-.673-.574-1.188v-.1c0-.633.211-1.095.633-1.385.423-.29 1.149-.462 2.178-.515l2.495-.119v1.07zM183.948 19.277c.95 0 1.762-.165 2.435-.495.687-.33 1.32-.871 1.901-1.623l-1.109-.931c-.343.396-.686.72-1.029.97-.621.423-1.353.634-2.198.634-.713 0-1.333-.165-1.861-.495a3.479 3.479 0 0 1-1.208-1.307 4.062 4.062 0 0 1-.416-1.841v-.238c0-.686.139-1.327.416-1.92.581-1.255 1.591-1.882 3.029-1.882.687 0 1.274.113 1.763.337.488.211.963.587 1.425 1.129l1.069-1.05c-.541-.66-1.148-1.128-1.821-1.406-.66-.29-1.465-.435-2.416-.435-1.003 0-1.901.218-2.693.653a4.55 4.55 0 0 0-1.861 1.842c-.435.792-.653 1.702-.653 2.732v.238c0 .99.218 1.874.653 2.653a4.655 4.655 0 0 0 1.842 1.802c.805.422 1.716.633 2.732.633zM195.912 13.575c-.726.317-1.564.475-2.514.475-.766 0-1.32-.158-1.664-.475-.33-.317-.495-.825-.495-1.525V9.001h-1.702v3.03c0 1.187.29 2.059.871 2.613.581.541 1.505.812 2.772.812 1.016 0 1.927-.159 2.732-.475V19h1.683V9.001h-1.683v4.574zM201.69 6.269c0 .303.106.56.317.772.211.211.469.317.772.317.291 0 .542-.106.753-.317.224-.225.336-.482.336-.772a1 1 0 0 0-.336-.753 1.028 1.028 0 0 0-.753-.317c-.303 0-.561.106-.772.317a1.029 1.029 0 0 0-.317.753zm3.525 0c0 .29.105.547.317.772.211.211.468.317.772.317.303 0 .561-.106.772-.317.211-.211.317-.469.317-.772 0-.29-.106-.542-.317-.753a1.051 1.051 0 0 0-.772-.317c-.291 0-.548.106-.772.317a1.025 1.025 0 0 0-.317.753zm3.247 9.94c-.554.593-1.102 1.016-1.643 1.266-.528.251-1.136.377-1.822.377-.713 0-1.333-.152-1.861-.456-.99-.594-1.558-1.63-1.703-3.108h7.96l.039-.733c0-1.505-.409-2.686-1.227-3.544-.806-.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.802 1.9c-.435.806-.653 1.71-.653 2.713 0 1.056.218 1.98.653 2.772a4.584 4.584 0 0 0 1.822 1.862c.792.422 1.716.633 2.772.633.937 0 1.755-.152 2.455-.455.7-.317 1.399-.838 2.099-1.564l-1.01-1.05zm-6.97-3.169c.132-.91.495-1.63 1.089-2.158.594-.541 1.334-.812 2.218-.812.898 0 1.61.27 2.138.812.542.528.832 1.247.872 2.158h-6.317zM218.956 9.001h-8.712v1.386h3.505V19h1.703v-8.613h3.504V9.001zM225.049 19c1.148 0 2.066-.304 2.752-.91.687-.608 1.03-1.42 1.03-2.436 0-1.03-.343-1.848-1.03-2.455-.686-.608-1.604-.911-2.752-.911h-2.633V9h-1.703V19h4.336zm-2.633-5.306h2.356c1.544 0 2.316.653 2.316 1.96s-.772 1.96-2.316 1.96h-2.356v-3.92zM230.237 9V19h1.683V9.001h-1.683z", fill: color }))));
|
|
23
|
+
});
|
|
24
|
+
AktSverki.displayName = 'AktSverki';
|
|
25
|
+
var AktSverkiWithStaticFields = Object.assign(AktSverki, { __KONTUR_REACT_UI__: 'AktSverki' });
|
|
26
|
+
exports.AktSverki = AktSverkiWithStaticFields;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const DiadocEdoetpWithStaticFields: React.ForwardRefExoticComponent<{
|
|
3
|
+
color?: string | undefined;
|
|
4
|
+
size?: number | undefined;
|
|
5
|
+
} & React.RefAttributes<HTMLSpanElement>> & {
|
|
6
|
+
__KONTUR_REACT_UI__: string;
|
|
7
|
+
};
|
|
8
|
+
export { DiadocEdoetpWithStaticFields as DiadocEdoetp };
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DiadocEdoetp = void 0;
|
|
4
|
+
var tslib_1 = require("tslib");
|
|
5
|
+
var react_1 = tslib_1.__importStar(require("react"));
|
|
6
|
+
var DiadocEdoetp = 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 * 7.791666666666667 + "px",
|
|
10
|
+
height: size,
|
|
11
|
+
lineHeight: size + "px",
|
|
12
|
+
display: 'inline-block',
|
|
13
|
+
}, ref: ref },
|
|
14
|
+
react_1.default.createElement("svg", { viewBox: "0 0 187 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: "M3.188 10.17a49.501 49.501 0 0 1-.139 2.732c-.198 1.953-.706 3.478-1.524 4.573H.356v4.455h1.782V19h10.574v2.93h1.762v-4.455H12.79V4.942H3.227l-.04 5.227zm.218 7.305c.475-.726.831-1.663 1.069-2.811.25-1.149.383-2.594.396-4.336l.04-3.861h6.058v11.008H3.406zM20.329 13.654a66.755 66.755 0 0 0-2.238 3.524l.04-1.98c.013-.171.02-.712.02-1.623V9h-1.604V19h1.821l2.911-4.435 1.089-1.604a35.972 35.972 0 0 0 1.386-2.178c-.053.832-.08 2.244-.08 4.237V19h1.624V9.001h-1.841l-3.128 4.653zM36.077 12.169c0-1.082-.357-1.927-1.07-2.534-.712-.608-1.709-.911-2.99-.911-1.781 0-3.247.693-4.395 2.079l1.09.99c.54-.594 1.068-1.017 1.583-1.267a3.885 3.885 0 0 1 1.762-.396c.78 0 1.373.184 1.782.554.41.356.614.891.614 1.604v.673l-2.614.178c-1.478.08-2.573.383-3.286.911-.7.515-1.05 1.274-1.05 2.277v.099c0 .91.31 1.617.93 2.119.634.501 1.506.752 2.614.752.78 0 1.466-.139 2.06-.416.594-.29 1.069-.7 1.425-1.227V19h1.545v-6.831zm-1.624 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-.574-.673-.574-1.188v-.1c0-.633.21-1.095.633-1.385.423-.29 1.149-.462 2.178-.515l2.495-.119v1.07zM39.197 21.475V19h7.86v2.475h1.644v-3.861h-1.465V9.001h-7.524l-.04 3.703c-.026 1.32-.138 2.369-.336 3.148-.185.779-.462 1.366-.832 1.762h-.93v3.861h1.623zm1.03-3.861c.317-.396.554-.983.713-1.762.158-.779.244-1.795.257-3.05l.04-2.415h4.296v7.227h-5.306zM59.967 13.931c0-1.016-.218-1.92-.653-2.712a4.711 4.711 0 0 0-1.861-1.842c-.793-.435-1.697-.653-2.713-.653-1.03 0-1.94.218-2.733.653a4.849 4.849 0 0 0-1.86 1.861c-.436.78-.654 1.677-.654 2.693v.08c0 1.055.224 1.973.673 2.752a4.711 4.711 0 0 0 1.842 1.86c.791.436 1.702.654 2.732.654 1.03 0 1.934-.224 2.712-.673a4.58 4.58 0 0 0 1.842-1.841c.449-.806.673-1.723.673-2.753v-.079zm-8.732 0c0-.739.152-1.399.456-1.98.303-.58.72-1.023 1.247-1.326.528-.317 1.129-.476 1.802-.476.686 0 1.293.159 1.822.476.54.316.95.759 1.227 1.326.29.568.436 1.228.436 1.98v.08c0 .752-.139 1.418-.416 2-.29.593-.7 1.049-1.228 1.365-.528.317-1.142.476-1.841.476-.687 0-1.3-.159-1.842-.476a3.197 3.197 0 0 1-1.227-1.346c-.29-.594-.436-1.267-.436-2.02v-.079zM70.837 19l-4.06-5.188 3.743-4.811h-1.822l-3.287 4.198H63.67V9h-1.703V19h1.703v-4.415h1.723L68.896 19h1.94z", fill: color }),
|
|
21
|
+
react_1.default.createElement("circle", { cx: "77.5", cy: "13.5", r: "1.5" }),
|
|
22
|
+
react_1.default.createElement("path", { d: "M85.307 8.247c.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-.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 88 17.85c-.885-.25-1.855-.864-2.911-1.841L84 17.217c.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.337C93.332 5.693 91.583 5 89.405 5c-.99 0-1.894.158-2.712.475-.819.304-1.637.805-2.455 1.505l1.069 1.267zM100.682 10.524a49.082 49.082 0 0 1-.139 2.733c-.198 1.953-.706 3.478-1.524 4.573H97.85v4.455h1.782v-2.93h10.573v2.93h1.762V17.83h-1.683V5.297h-9.563l-.04 5.227zm.218 7.306c.475-.726.831-1.663 1.069-2.811.251-1.149.383-2.594.396-4.336l.04-3.861h6.058V17.83H100.9zM127.906 12.267c0-1.03-.172-1.987-.515-2.871a6.543 6.543 0 0 0-1.465-2.317 6.491 6.491 0 0 0-2.317-1.544c-.898-.357-1.894-.535-2.99-.535-1.069 0-2.052.178-2.95.535a6.491 6.491 0 0 0-2.317 1.544 7.487 7.487 0 0 0-1.504 2.356 7.74 7.74 0 0 0-.515 2.832v.079c0 1.03.171 1.993.515 2.89a6.765 6.765 0 0 0 1.485 2.317 6.513 6.513 0 0 0 2.296 1.564c.898.357 1.895.535 2.99.535 1.083 0 2.073-.178 2.97-.535a6.491 6.491 0 0 0 2.317-1.544 6.976 6.976 0 0 0 1.485-2.336 8.03 8.03 0 0 0 .515-2.891v-.08zm-12.712 0c0-1.083.231-2.066.693-2.95.475-.872 1.115-1.545 1.921-2.02.818-.475 1.755-.713 2.811-.713 1.069 0 2.02.238 2.851.713a4.87 4.87 0 0 1 1.901 2c.449.858.673 1.848.673 2.97v.079c0 1.148-.224 2.145-.673 2.99a4.842 4.842 0 0 1-1.901 2.02c-.818.474-1.768.712-2.851.712-1.056 0-1.993-.238-2.811-.713a4.97 4.97 0 0 1-1.921-2.02c-.462-.884-.693-1.88-.693-2.99v-.078zM138.058 19.632c.95 0 1.762-.165 2.435-.495.686-.33 1.32-.871 1.901-1.623l-1.109-.931c-.343.396-.686.72-1.03.97-.62.423-1.353.634-2.197.634-.713 0-1.334-.165-1.862-.495a3.484 3.484 0 0 1-1.207-1.307 4.05 4.05 0 0 1-.416-1.841v-.238c0-.686.138-1.327.416-1.92.58-1.255 1.59-1.882 3.029-1.882.686 0 1.274.113 1.762.337.489.211.964.587 1.426 1.129l1.069-1.05c-.541-.66-1.148-1.128-1.822-1.406-.66-.29-1.465-.435-2.415-.435-1.003 0-1.901.218-2.693.653a4.545 4.545 0 0 0-1.861 1.842c-.436.792-.654 1.702-.654 2.732v.238c0 .99.218 1.874.654 2.653a4.646 4.646 0 0 0 1.841 1.802c.805.422 1.716.633 2.733.633zM147.886 8.247c.687-.594 1.353-1.016 2-1.267a5.65 5.65 0 0 1 2.119-.396c.963 0 1.821.198 2.574.594.752.41 1.353.983 1.802 1.723.462.726.739 1.557.831 2.494h-6.989v1.545h7.009c-.066 1.016-.317 1.9-.752 2.653a4.837 4.837 0 0 1-1.802 1.841c-.753.423-1.604.634-2.554.634a5.963 5.963 0 0 1-1.545-.218c-.884-.25-1.854-.864-2.91-1.841l-1.089 1.208c.633.633 1.221 1.115 1.762 1.445 1.056.66 2.31.99 3.762.99 1.412 0 2.653-.317 3.722-.95a6.245 6.245 0 0 0 2.436-2.594c.58-1.109.871-2.37.871-3.782 0-1.056-.165-2.026-.495-2.91a6.557 6.557 0 0 0-1.406-2.337C155.912 5.693 154.163 5 151.985 5c-.99 0-1.894.158-2.713.475-.818.304-1.636.805-2.455 1.505l1.069 1.267zM160.608 5.297v1.564h4.455v12.494h1.822V6.861h4.475V5.297h-10.752zM184.501 5.297h-10.91v14.058h1.822V6.822h7.266v12.533h1.822V5.297z", fill: color }))));
|
|
23
|
+
});
|
|
24
|
+
DiadocEdoetp.displayName = 'DiadocEdoetp';
|
|
25
|
+
var DiadocEdoetpWithStaticFields = Object.assign(DiadocEdoetp, { __KONTUR_REACT_UI__: 'DiadocEdoetp' });
|
|
26
|
+
exports.DiadocEdoetp = DiadocEdoetpWithStaticFields;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const DiadocLogisticsWithStaticFields: React.ForwardRefExoticComponent<{
|
|
3
|
+
color?: string | undefined;
|
|
4
|
+
size?: number | undefined;
|
|
5
|
+
} & React.RefAttributes<HTMLSpanElement>> & {
|
|
6
|
+
__KONTUR_REACT_UI__: string;
|
|
7
|
+
};
|
|
8
|
+
export { DiadocLogisticsWithStaticFields as DiadocLogistics };
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.DiadocLogistics = void 0;
|
|
4
|
+
var tslib_1 = require("tslib");
|
|
5
|
+
var react_1 = tslib_1.__importStar(require("react"));
|
|
6
|
+
var DiadocLogistics = 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 * 7.625 + "px",
|
|
10
|
+
height: size,
|
|
11
|
+
lineHeight: size + "px",
|
|
12
|
+
display: 'inline-block',
|
|
13
|
+
}, ref: ref },
|
|
14
|
+
react_1.default.createElement("svg", { viewBox: "0 0 183 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: "M3.188 10.17a49.501 49.501 0 0 1-.139 2.732c-.198 1.953-.706 3.478-1.524 4.573H.356v4.455h1.782V19h10.574v2.93h1.762v-4.455H12.79V4.942H3.227l-.04 5.227zm.218 7.305c.475-.726.831-1.663 1.069-2.811.25-1.149.383-2.594.396-4.336l.04-3.861h6.058v11.008H3.406zM20.329 13.654a66.755 66.755 0 0 0-2.238 3.524l.04-1.98c.013-.171.02-.712.02-1.623V9h-1.604V19h1.821l2.911-4.435 1.089-1.604a35.972 35.972 0 0 0 1.386-2.178c-.053.832-.08 2.244-.08 4.237V19h1.624V9.001h-1.841l-3.128 4.653zM36.077 12.169c0-1.082-.357-1.927-1.07-2.534-.712-.608-1.709-.911-2.99-.911-1.781 0-3.247.693-4.395 2.079l1.09.99c.54-.594 1.068-1.017 1.583-1.267a3.885 3.885 0 0 1 1.762-.396c.78 0 1.373.184 1.782.554.41.356.614.891.614 1.604v.673l-2.614.178c-1.478.08-2.573.383-3.286.911-.7.515-1.05 1.274-1.05 2.277v.099c0 .91.31 1.617.93 2.119.634.501 1.506.752 2.614.752.78 0 1.466-.139 2.06-.416.594-.29 1.069-.7 1.425-1.227V19h1.545v-6.831zm-1.624 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-.574-.673-.574-1.188v-.1c0-.633.21-1.095.633-1.385.423-.29 1.149-.462 2.178-.515l2.495-.119v1.07zM39.197 21.475V19h7.86v2.475h1.644v-3.861h-1.465V9.001h-7.524l-.04 3.703c-.026 1.32-.138 2.369-.336 3.148-.185.779-.462 1.366-.832 1.762h-.93v3.861h1.623zm1.03-3.861c.317-.396.554-.983.713-1.762.158-.779.244-1.795.257-3.05l.04-2.415h4.296v7.227h-5.306zM59.967 13.931c0-1.016-.218-1.92-.653-2.712a4.711 4.711 0 0 0-1.861-1.842c-.793-.435-1.697-.653-2.713-.653-1.03 0-1.94.218-2.733.653a4.849 4.849 0 0 0-1.86 1.861c-.436.78-.654 1.677-.654 2.693v.08c0 1.055.224 1.973.673 2.752a4.711 4.711 0 0 0 1.842 1.86c.791.436 1.702.654 2.732.654 1.03 0 1.934-.224 2.712-.673a4.58 4.58 0 0 0 1.842-1.841c.449-.806.673-1.723.673-2.753v-.079zm-8.732 0c0-.739.152-1.399.456-1.98.303-.58.72-1.023 1.247-1.326.528-.317 1.129-.476 1.802-.476.686 0 1.293.159 1.822.476.54.316.95.759 1.227 1.326.29.568.436 1.228.436 1.98v.08c0 .752-.139 1.418-.416 2-.29.593-.7 1.049-1.228 1.365-.528.317-1.142.476-1.841.476-.687 0-1.3-.159-1.842-.476a3.197 3.197 0 0 1-1.227-1.346c-.29-.594-.436-1.267-.436-2.02v-.079zM70.837 19l-4.06-5.188 3.743-4.811h-1.822l-3.287 4.198H63.67V9h-1.703V19h1.703v-4.415h1.723L68.896 19h1.94z", fill: color }),
|
|
21
|
+
react_1.default.createElement("circle", { cx: "77.5", cy: "13.5", r: "1.5" }),
|
|
22
|
+
react_1.default.createElement("path", { d: "M84.614 18.92c.396.146.818.219 1.267.219 1.228 0 2.046-.495 2.455-1.485.396-.977.6-2.654.614-5.03l.139-6.157h5.94V19h1.821V4.942h-9.425l-.178 7.504c-.013.964-.06 1.98-.138 3.05-.08.739-.231 1.26-.456 1.564-.224.303-.574.455-1.05.455-.21 0-.54-.053-.99-.158v1.564zM109.574 13.931c0-1.016-.218-1.92-.654-2.712a4.706 4.706 0 0 0-1.861-1.842c-.792-.435-1.696-.653-2.712-.653-1.03 0-1.941.218-2.733.653a4.85 4.85 0 0 0-1.861 1.861c-.436.78-.653 1.677-.653 2.693v.08c0 1.055.224 1.973.673 2.752a4.708 4.708 0 0 0 1.841 1.86c.792.436 1.703.654 2.733.654 1.029 0 1.933-.224 2.712-.673a4.583 4.583 0 0 0 1.842-1.841c.448-.806.673-1.723.673-2.753v-.079zm-8.732 0c0-.739.152-1.399.455-1.98.304-.58.72-1.023 1.248-1.326.528-.317 1.128-.476 1.802-.476.686 0 1.293.159 1.821.476a3.06 3.06 0 0 1 1.228 1.326c.29.568.435 1.228.435 1.98v.08c0 .752-.138 1.418-.415 2-.291.593-.7 1.049-1.228 1.365-.528.317-1.142.476-1.841.476-.687 0-1.301-.159-1.842-.476a3.193 3.193 0 0 1-1.227-1.346c-.291-.594-.436-1.267-.436-2.02v-.079zM118.582 9.001h-7.009V19h1.703v-8.593h5.306V9zM124.118 13.654a67.114 67.114 0 0 0-2.237 3.524l.04-1.98c.013-.171.019-.712.019-1.623V9h-1.603V19h1.821l2.911-4.435 1.089-1.604a36.173 36.173 0 0 0 1.386-2.178c-.053.832-.079 2.244-.079 4.237V19h1.623V9.001h-1.841l-3.129 4.653zM136.402 19.277c.95 0 1.762-.165 2.435-.495.686-.33 1.32-.871 1.901-1.623l-1.109-.931c-.343.396-.686.72-1.03.97-.62.423-1.353.634-2.197.634-.713 0-1.334-.165-1.862-.495a3.484 3.484 0 0 1-1.207-1.307 4.05 4.05 0 0 1-.416-1.841v-.238c0-.686.138-1.327.416-1.92.58-1.255 1.59-1.882 3.029-1.882.686 0 1.274.113 1.762.337.489.211.964.587 1.426 1.129l1.069-1.05c-.541-.66-1.148-1.128-1.822-1.406-.66-.29-1.465-.435-2.415-.435-1.003 0-1.901.218-2.693.653a4.545 4.545 0 0 0-1.861 1.842c-.436.792-.654 1.702-.654 2.732v.238c0 .99.218 1.874.654 2.653a4.646 4.646 0 0 0 1.841 1.802c.805.422 1.716.633 2.733.633zM150.267 9.001h-8.712v1.386h3.504V19h1.703v-8.613h3.505V9.001zM155.805 13.654a66.545 66.545 0 0 0-2.238 3.524l.04-1.98c.013-.171.02-.712.02-1.623V9h-1.604V19h1.821l2.911-4.435 1.089-1.604a36.173 36.173 0 0 0 1.386-2.178c-.053.832-.079 2.244-.079 4.237V19h1.623V9.001h-1.841l-3.128 4.653zM172.345 19l-4.059-5.188 3.742-4.811h-1.822l-3.286 4.198h-1.743V9h-1.703V19h1.703v-4.415h1.723L170.404 19h1.941zM181.786 12.169c0-1.082-.356-1.927-1.069-2.534-.713-.608-1.709-.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.883 3.883 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-.699.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.059-.416.594-.29 1.069-.7 1.426-1.227V19h1.544v-6.831zm-1.623 3.128c0 .502-.132.957-.396 1.367-.264.409-.634.726-1.109.95a3.617 3.617 0 0 1-1.564.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.07z", fill: color }))));
|
|
23
|
+
});
|
|
24
|
+
DiadocLogistics.displayName = 'DiadocLogistics';
|
|
25
|
+
var DiadocLogisticsWithStaticFields = Object.assign(DiadocLogistics, { __KONTUR_REACT_UI__: 'DiadocLogistics' });
|
|
26
|
+
exports.DiadocLogistics = DiadocLogisticsWithStaticFields;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const FinanceWithStaticFields: React.ForwardRefExoticComponent<{
|
|
3
|
+
color?: string | undefined;
|
|
4
|
+
size?: number | undefined;
|
|
5
|
+
} & React.RefAttributes<HTMLSpanElement>> & {
|
|
6
|
+
__KONTUR_REACT_UI__: string;
|
|
7
|
+
};
|
|
8
|
+
export { FinanceWithStaticFields as Finance };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.Finance = void 0;
|
|
4
|
+
var tslib_1 = require("tslib");
|
|
5
|
+
var react_1 = tslib_1.__importStar(require("react"));
|
|
6
|
+
var Finance = 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.625 + "px",
|
|
10
|
+
height: size,
|
|
11
|
+
lineHeight: size + "px",
|
|
12
|
+
display: 'inline-block',
|
|
13
|
+
}, ref: ref },
|
|
14
|
+
react_1.default.createElement("svg", { viewBox: "0 0 87 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: "M16.592 11.813c0-1.188-.277-2.238-.831-3.149-.568-.91-1.38-1.617-2.436-2.118-1.056-.502-2.29-.753-3.702-.753h-.08V4.25H7.782v1.544h-.059c-1.412 0-2.653.251-3.722.753-1.056.501-1.868 1.208-2.436 2.118-.554.898-.831 1.947-.831 3.149v.059c0 1.214.277 2.277.831 3.188.555.924 1.36 1.637 2.416 2.138 1.069.502 2.316.753 3.742.753h.06v1.742h1.762v-1.742h.079c1.412 0 2.653-.251 3.722-.753 1.043-.501 1.842-1.208 2.396-2.118.568-.924.851-1.994.851-3.208v-.06zm-8.87 4.633c-1.056 0-1.98-.192-2.772-.574a4.06 4.06 0 0 1-1.742-1.584c-.41-.7-.614-1.505-.614-2.416v-.06c0-.91.204-1.709.614-2.395.409-.687.99-1.208 1.742-1.564.752-.37 1.676-.555 2.772-.555h.099v9.148h-.099zm7.029-4.574c0 .898-.198 1.696-.594 2.396-.41.7-1.003 1.24-1.782 1.623-.766.37-1.683.555-2.752.555h-.1V7.298h.1c1.095 0 2.033.178 2.811.535.753.37 1.327.897 1.723 1.584.396.686.594 1.485.594 2.396v.059zm7.84 1.782a66.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-.052.832-.079 2.244-.079 4.237V19h1.624V9.001h-1.842l-3.128 4.653zm16.085-4.653h-1.703v4.178h-5.01V9h-1.702V19h1.702v-4.435h5.01V19h1.703V9.001zm10.767 3.168c0-1.082-.357-1.927-1.07-2.534-.712-.608-1.71-.911-2.99-.911-1.782 0-3.247.693-4.395 2.079l1.089.99c.541-.594 1.07-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.286.911-.7.515-1.05 1.274-1.05 2.277v.099c0 .91.31 1.617.93 2.119.634.501 1.505.752 2.614.752.78 0 1.466-.139 2.06-.416.593-.29 1.069-.7 1.425-1.227V19h1.544v-6.831zm-1.624 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.07zm12.657-6.296h-1.702v4.178h-5.01V9h-1.703V19h1.703v-4.435h5.01V19h1.703V9.001zm7.302 10.276c.95 0 1.762-.165 2.436-.495.686-.33 1.32-.871 1.9-1.623l-1.108-.931c-.344.396-.687.72-1.03.97-.62.423-1.353.634-2.198.634-.713 0-1.333-.165-1.86-.495a3.483 3.483 0 0 1-1.209-1.307 4.06 4.06 0 0 1-.416-1.841v-.238c0-.686.14-1.327.416-1.92.581-1.255 1.59-1.882 3.03-1.882.686 0 1.273.113 1.762.337.488.211.963.587 1.425 1.129l1.07-1.05c-.541-.66-1.149-1.128-1.822-1.406-.66-.29-1.465-.435-2.416-.435-1.003 0-1.9.218-2.692.653a4.548 4.548 0 0 0-1.861 1.842c-.436.792-.654 1.702-.654 2.732v.238c0 .99.218 1.874.654 2.653a4.651 4.651 0 0 0 1.84 1.802c.806.422 1.717.633 2.733.633zM78.218 19c1.148 0 2.066-.304 2.752-.91.686-.608 1.03-1.42 1.03-2.436 0-1.03-.344-1.848-1.03-2.455-.686-.608-1.604-.911-2.752-.911h-2.633V9h-1.703V19h4.336zm-2.633-5.306h2.356c1.544 0 2.316.653 2.316 1.96s-.772 1.96-2.316 1.96h-2.356v-3.92zM83.405 9V19h1.683V9.001h-1.682z", fill: color }))));
|
|
21
|
+
});
|
|
22
|
+
Finance.displayName = 'Finance';
|
|
23
|
+
var FinanceWithStaticFields = Object.assign(Finance, { __KONTUR_REACT_UI__: 'Finance' });
|
|
24
|
+
exports.Finance = FinanceWithStaticFields;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const RealEstateWithStaticFields: React.ForwardRefExoticComponent<{
|
|
3
|
+
color?: string | undefined;
|
|
4
|
+
size?: number | undefined;
|
|
5
|
+
} & React.RefAttributes<HTMLSpanElement>> & {
|
|
6
|
+
__KONTUR_REACT_UI__: string;
|
|
7
|
+
};
|
|
8
|
+
export { RealEstateWithStaticFields as RealEstate };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.RealEstate = void 0;
|
|
4
|
+
var tslib_1 = require("tslib");
|
|
5
|
+
var react_1 = tslib_1.__importStar(require("react"));
|
|
6
|
+
var RealEstate = 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 * 5.958333333333333 + "px",
|
|
10
|
+
height: size,
|
|
11
|
+
lineHeight: size + "px",
|
|
12
|
+
display: 'inline-block',
|
|
13
|
+
}, ref: ref },
|
|
14
|
+
react_1.default.createElement("svg", { viewBox: "0 0 143 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: "M10.89 4.942v6.098H3.346V4.942H1.525V19h1.821v-6.415h7.544V19h1.841V4.942h-1.84zM23.854 16.208c-.554.594-1.102 1.017-1.643 1.267-.528.251-1.135.377-1.822.377-.713 0-1.333-.152-1.861-.456-.99-.594-1.558-1.63-1.703-3.108h7.96l.04-.733c0-1.505-.41-2.686-1.228-3.544-.806-.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.802 1.9c-.435.806-.653 1.71-.653 2.713 0 1.056.218 1.98.653 2.772a4.582 4.582 0 0 0 1.822 1.862c.792.422 1.716.633 2.772.633.937 0 1.756-.152 2.455-.455.7-.317 1.4-.838 2.099-1.564l-1.01-1.05zm-6.97-3.168c.133-.91.495-1.63 1.09-2.158.593-.541 1.333-.812 2.217-.812.898 0 1.61.27 2.139.812.54.528.831 1.247.87 2.158h-6.316zM27.146 21.475V19h7.86v2.475h1.644v-3.861h-1.465V9.001h-7.524l-.04 3.703c-.026 1.32-.138 2.369-.336 3.148-.185.779-.462 1.366-.832 1.762h-.93v3.861h1.623zm1.03-3.861c.317-.396.554-.983.713-1.762.158-.779.244-1.795.257-3.05l.04-2.415h4.296v7.227h-5.306zM47.036 16.208c0-.607-.178-1.115-.535-1.524-.356-.423-.845-.707-1.465-.852.528-.158.937-.429 1.227-.812.304-.382.456-.864.456-1.445 0-.779-.304-1.4-.91-1.861C45.213 9.239 44.434 9 43.471 9h-4.95V19h5.187c1.03 0 1.842-.25 2.436-.752.594-.515.89-1.195.89-2.04zm-3.822-5.88c.594 0 1.043.125 1.347.376.316.25.475.607.475 1.069 0 .475-.159.845-.475 1.109-.304.25-.753.376-1.347.376h-3.01v-2.93h3.01zm2.1 5.742c0 .514-.172.91-.516 1.188-.343.264-.851.396-1.524.396h-3.07v-3.129h3.07c.66 0 1.161.139 1.505.416.356.264.534.64.534 1.129zM53.04 13.654a66.755 66.755 0 0 0-2.238 3.524l.04-1.98c.013-.171.02-.712.02-1.623V9h-1.604V19h1.821l2.911-4.435 1.089-1.604a35.972 35.972 0 0 0 1.386-2.178c-.053.832-.08 2.244-.08 4.237V19h1.624V9.001h-1.841l-3.128 4.653zM74.252 19l-3.623-5.188 3.307-4.811h-1.842l-2.85 4.198h-1.486V9h-1.623v4.198h-1.486L61.8 9h-1.862l3.366 4.851L59.66 19h1.88l3.13-4.415h1.465V19h1.623v-4.415h1.465L72.332 19h1.92zM79.694 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-.079 2.244-.079 4.237V19h1.624V9.001h-1.842l-3.128 4.653zM93.007 17.08 89.877 9h-2.514V19h1.584v-8.474L92.234 19h1.545l3.287-8.494V19h1.584V9.001h-2.535l-3.108 8.078zM111.129 13.931c0-1.016-.218-1.92-.653-2.712a4.712 4.712 0 0 0-1.861-1.842c-.792-.435-1.697-.653-2.713-.653-1.03 0-1.94.218-2.732.653a4.852 4.852 0 0 0-1.862 1.861c-.435.78-.653 1.677-.653 2.693v.08c0 1.055.224 1.973.673 2.752a4.715 4.715 0 0 0 1.842 1.86c.792.436 1.702.654 2.732.654 1.03 0 1.934-.224 2.713-.673a4.58 4.58 0 0 0 1.841-1.841c.449-.806.673-1.723.673-2.753v-.079zm-8.732 0c0-.739.152-1.399.456-1.98a3.188 3.188 0 0 1 1.247-1.326c.528-.317 1.129-.476 1.802-.476.686 0 1.294.159 1.822.476.541.316.95.759 1.227 1.326.291.568.436 1.228.436 1.98v.08c0 .752-.139 1.418-.416 2-.29.593-.7 1.049-1.228 1.365-.528.317-1.141.476-1.841.476-.686 0-1.3-.159-1.841-.476a3.195 3.195 0 0 1-1.228-1.346c-.29-.594-.436-1.267-.436-2.02v-.079zM117.742 19.277c.95 0 1.762-.165 2.435-.495.686-.33 1.32-.871 1.901-1.623l-1.109-.931c-.343.396-.686.72-1.03.97-.62.423-1.353.634-2.197.634-.713 0-1.334-.165-1.862-.495a3.484 3.484 0 0 1-1.207-1.307 4.05 4.05 0 0 1-.416-1.841v-.238c0-.686.138-1.327.416-1.92.58-1.255 1.59-1.882 3.029-1.882.686 0 1.274.113 1.762.337.489.211.964.587 1.426 1.129l1.069-1.05c-.541-.66-1.148-1.128-1.822-1.406-.66-.29-1.465-.435-2.415-.435-1.003 0-1.901.218-2.693.653a4.545 4.545 0 0 0-1.861 1.842c-.436.792-.654 1.702-.654 2.732v.238c0 .99.218 1.874.654 2.653a4.646 4.646 0 0 0 1.841 1.802c.805.422 1.716.633 2.733.633zM131.607 9.001h-8.712v1.386h3.504V19h1.703v-8.613h3.505V9.001zM137.699 19c1.149 0 2.066-.304 2.752-.91.687-.608 1.03-1.42 1.03-2.436 0-1.03-.343-1.848-1.03-2.455-.686-.608-1.603-.911-2.752-.911h-2.633V9h-1.703V19h4.336zm-2.633-5.306h2.356c1.544 0 2.317.653 2.317 1.96s-.773 1.96-2.317 1.96h-2.356v-3.92z", fill: color }))));
|
|
21
|
+
});
|
|
22
|
+
RealEstate.displayName = 'RealEstate';
|
|
23
|
+
var RealEstateWithStaticFields = Object.assign(RealEstate, { __KONTUR_REACT_UI__: 'RealEstate' });
|
|
24
|
+
exports.RealEstate = RealEstateWithStaticFields;
|
package/index.d.ts
CHANGED
|
@@ -166,3 +166,8 @@ export { Career } from './src/Career';
|
|
|
166
166
|
export { ENigma } from './src/ENigma';
|
|
167
167
|
export { Kedo } from './src/Kedo';
|
|
168
168
|
export { Stream } from './src/Stream';
|
|
169
|
+
export { AktSverki } from './src/AktSverki';
|
|
170
|
+
export { DiadocEdoetp } from './src/DiadocEdoetp';
|
|
171
|
+
export { DiadocLogistics } from './src/DiadocLogistics';
|
|
172
|
+
export { Finance } from './src/Finance';
|
|
173
|
+
export { RealEstate } from './src/RealEstate';
|
package/index.js
CHANGED
|
@@ -166,3 +166,8 @@ export { Career } from './src/Career';
|
|
|
166
166
|
export { ENigma } from './src/ENigma';
|
|
167
167
|
export { Kedo } from './src/Kedo';
|
|
168
168
|
export { Stream } from './src/Stream';
|
|
169
|
+
export { AktSverki } from './src/AktSverki';
|
|
170
|
+
export { DiadocEdoetp } from './src/DiadocEdoetp';
|
|
171
|
+
export { DiadocLogistics } from './src/DiadocLogistics';
|
|
172
|
+
export { Finance } from './src/Finance';
|
|
173
|
+
export { RealEstate } from './src/RealEstate';
|
package/package.json
CHANGED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const AktSverkiWithStaticFields: React.ForwardRefExoticComponent<{
|
|
3
|
+
color?: string | undefined;
|
|
4
|
+
size?: number | undefined;
|
|
5
|
+
} & React.RefAttributes<HTMLSpanElement>> & {
|
|
6
|
+
__KONTUR_REACT_UI__: string;
|
|
7
|
+
};
|
|
8
|
+
export { AktSverkiWithStaticFields as AktSverki };
|
package/src/AktSverki.js
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
var AktSverki = 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 * 9.75 + "px",
|
|
6
|
+
height: size,
|
|
7
|
+
lineHeight: size + "px",
|
|
8
|
+
display: 'inline-block',
|
|
9
|
+
}, ref: ref },
|
|
10
|
+
React.createElement("svg", { viewBox: "0 0 234 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: "M3.188 10.17a49.501 49.501 0 0 1-.139 2.732c-.198 1.953-.706 3.478-1.524 4.573H.356v4.455h1.782V19h10.574v2.93h1.762v-4.455H12.79V4.942H3.227l-.04 5.227zm.218 7.305c.475-.726.831-1.663 1.069-2.811.25-1.149.383-2.594.396-4.336l.04-3.861h6.058v11.008H3.406zM20.329 13.654a66.755 66.755 0 0 0-2.238 3.524l.04-1.98c.013-.171.02-.712.02-1.623V9h-1.604V19h1.821l2.911-4.435 1.089-1.604a35.972 35.972 0 0 0 1.386-2.178c-.053.832-.08 2.244-.08 4.237V19h1.624V9.001h-1.841l-3.128 4.653zM36.077 12.169c0-1.082-.357-1.927-1.07-2.534-.712-.608-1.709-.911-2.99-.911-1.781 0-3.247.693-4.395 2.079l1.09.99c.54-.594 1.068-1.017 1.583-1.267a3.885 3.885 0 0 1 1.762-.396c.78 0 1.373.184 1.782.554.41.356.614.891.614 1.604v.673l-2.614.178c-1.478.08-2.573.383-3.286.911-.7.515-1.05 1.274-1.05 2.277v.099c0 .91.31 1.617.93 2.119.634.501 1.506.752 2.614.752.78 0 1.466-.139 2.06-.416.594-.29 1.069-.7 1.425-1.227V19h1.545v-6.831zm-1.624 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-.574-.673-.574-1.188v-.1c0-.633.21-1.095.633-1.385.423-.29 1.149-.462 2.178-.515l2.495-.119v1.07zM39.197 21.475V19h7.86v2.475h1.644v-3.861h-1.465V9.001h-7.524l-.04 3.703c-.026 1.32-.138 2.369-.336 3.148-.185.779-.462 1.366-.832 1.762h-.93v3.861h1.623zm1.03-3.861c.317-.396.554-.983.713-1.762.158-.779.244-1.795.257-3.05l.04-2.415h4.296v7.227h-5.306zM59.967 13.931c0-1.016-.218-1.92-.653-2.712a4.711 4.711 0 0 0-1.861-1.842c-.793-.435-1.697-.653-2.713-.653-1.03 0-1.94.218-2.733.653a4.849 4.849 0 0 0-1.86 1.861c-.436.78-.654 1.677-.654 2.693v.08c0 1.055.224 1.973.673 2.752a4.711 4.711 0 0 0 1.842 1.86c.791.436 1.702.654 2.732.654 1.03 0 1.934-.224 2.712-.673a4.58 4.58 0 0 0 1.842-1.841c.449-.806.673-1.723.673-2.753v-.079zm-8.732 0c0-.739.152-1.399.456-1.98.303-.58.72-1.023 1.247-1.326.528-.317 1.129-.476 1.802-.476.686 0 1.293.159 1.822.476.54.316.95.759 1.227 1.326.29.568.436 1.228.436 1.98v.08c0 .752-.139 1.418-.416 2-.29.593-.7 1.049-1.228 1.365-.528.317-1.142.476-1.841.476-.687 0-1.3-.159-1.842-.476a3.197 3.197 0 0 1-1.227-1.346c-.29-.594-.436-1.267-.436-2.02v-.079zM70.837 19l-4.06-5.188 3.743-4.811h-1.822l-3.287 4.198H63.67V9h-1.703V19h1.703v-4.415h1.723L68.896 19h1.94z", fill: color }),
|
|
17
|
+
React.createElement("circle", { cx: "77.5", cy: "13.5", r: "1.5" }),
|
|
18
|
+
React.createElement("path", { d: "M96.335 15.06c0-.871-.237-1.61-.712-2.218-.462-.607-1.11-1.03-1.94-1.267.686-.238 1.214-.62 1.583-1.148.383-.542.575-1.182.575-1.921 0-.74-.172-1.38-.515-1.92A3.238 3.238 0 0 0 93.9 5.357c-.607-.277-1.327-.416-2.158-.416h-6.217V19h6.494c1.307 0 2.35-.35 3.128-1.05.792-.712 1.188-1.676 1.188-2.89zm-4.99-8.673c.859 0 1.519.192 1.98.575.476.37.714.91.714 1.623 0 .726-.245 1.294-.733 1.703-.475.41-1.129.614-1.96.614h-4V6.387h4zm3.15 8.594c0 .805-.272 1.438-.813 1.9-.528.45-1.28.674-2.257.674h-4.079v-5.208h4.04c.95 0 1.702.244 2.257.733.567.475.851 1.109.851 1.9zM106.121 16.129c0-1.148-.634-1.92-1.901-2.317 1.095-.382 1.643-1.141 1.643-2.277 0-.897-.383-1.603-1.148-2.118-.739-.462-1.644-.693-2.713-.693-.779 0-1.498.119-2.158.356-.647.225-1.28.594-1.9 1.109l.85 1.129c.516-.436 1.024-.746 1.525-.931a4.442 4.442 0 0 1 1.644-.297c.712 0 1.26.139 1.643.416.383.264.574.653.574 1.168 0 .502-.165.891-.495 1.168-.33.264-.818.396-1.465.396h-1.822v1.287h1.842c.726 0 1.274.132 1.643.396.383.264.574.654.574 1.168 0 .555-.211.997-.633 1.327-.423.317-1.003.475-1.743.475-1.267 0-2.448-.468-3.544-1.406l-.97 1.09c.647.593 1.32 1.029 2.02 1.306.712.264 1.524.396 2.435.396.845 0 1.571-.138 2.178-.416.62-.264 1.096-.627 1.426-1.089a2.81 2.81 0 0 0 .495-1.643zM116.403 12.169c0-1.082-.356-1.927-1.069-2.534-.713-.608-1.71-.911-2.99-.911-1.782 0-3.247.693-4.396 2.079l1.089.99c.542-.594 1.07-1.017 1.584-1.267a3.888 3.888 0 0 1 1.763-.396c.778 0 1.372.184 1.782.554.409.356.613.891.613 1.604v.673l-2.613.178c-1.479.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.059-.416.594-.29 1.069-.7 1.426-1.227V19h1.544v-6.831zm-1.624 3.128c0 .502-.132.957-.396 1.367a2.61 2.61 0 0 1-1.108.95 3.621 3.621 0 0 1-1.565.337c-.712 0-1.267-.139-1.663-.416-.383-.277-.574-.673-.574-1.188v-.1c0-.633.211-1.095.634-1.385.422-.29 1.148-.462 2.178-.515l2.494-.119v1.07zM122.804 13.654a66.545 66.545 0 0 0-2.238 3.524l.04-1.98c.013-.171.02-.712.02-1.623V9h-1.604V19h1.822l2.91-4.435 1.089-1.604a36.173 36.173 0 0 0 1.386-2.178c-.053.832-.079 2.244-.079 4.237V19h1.624V9.001h-1.842l-3.128 4.653zM136.116 17.08 132.988 9h-2.515V19h1.584v-8.474L135.344 19h1.545l3.286-8.494V19h1.584V9.001h-2.534l-3.109 8.078zM154.239 13.931c0-1.016-.218-1.92-.653-2.712a4.712 4.712 0 0 0-1.861-1.842c-.792-.435-1.697-.653-2.713-.653-1.03 0-1.94.218-2.732.653a4.852 4.852 0 0 0-1.862 1.861c-.435.78-.653 1.677-.653 2.693v.08c0 1.055.224 1.973.673 2.752a4.715 4.715 0 0 0 1.842 1.86c.792.436 1.702.654 2.732.654 1.03 0 1.934-.224 2.713-.673a4.58 4.58 0 0 0 1.841-1.841c.449-.806.673-1.723.673-2.753v-.079zm-8.732 0c0-.739.152-1.399.456-1.98a3.188 3.188 0 0 1 1.247-1.326c.528-.317 1.129-.476 1.802-.476.686 0 1.294.159 1.822.476.541.316.95.759 1.227 1.326.291.568.436 1.228.436 1.98v.08c0 .752-.139 1.418-.416 2-.29.593-.7 1.049-1.228 1.365-.528.317-1.141.476-1.841.476-.686 0-1.3-.159-1.841-.476a3.195 3.195 0 0 1-1.228-1.346c-.29-.594-.436-1.267-.436-2.02v-.079zM166.534 13.911c0-1.03-.204-1.927-.614-2.692a4.493 4.493 0 0 0-1.722-1.822c-.739-.436-1.571-.653-2.495-.653-1.822 0-3.122.673-3.901 2.02V9h-1.584v13.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.96-.29.58-.7 1.036-1.228 1.366-.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.213 3.213 0 0 1 1.268-1.287 3.644 3.644 0 0 1 1.841-.475c.647 0 1.241.159 1.782.475.515.317.911.76 1.188 1.327.29.554.436 1.201.436 1.94v.1zM176.716 12.169c0-1.082-.357-1.927-1.07-2.534-.712-.608-1.709-.911-2.989-.911-1.782 0-3.248.693-4.396 2.079l1.089.99c.541-.594 1.069-1.017 1.584-1.267a3.883 3.883 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.286.911-.7.515-1.05 1.274-1.05 2.277v.099c0 .91.31 1.617.931 2.119.633.501 1.505.752 2.613.752.779 0 1.466-.139 2.06-.416.594-.29 1.069-.7 1.425-1.227V19h1.545v-6.831zm-1.624 3.128c0 .502-.132.957-.396 1.367-.264.409-.634.726-1.109.95a3.614 3.614 0 0 1-1.564.337c-.713 0-1.267-.139-1.663-.416-.383-.277-.574-.673-.574-1.188v-.1c0-.633.211-1.095.633-1.385.423-.29 1.149-.462 2.178-.515l2.495-.119v1.07zM183.948 19.277c.95 0 1.762-.165 2.435-.495.687-.33 1.32-.871 1.901-1.623l-1.109-.931c-.343.396-.686.72-1.029.97-.621.423-1.353.634-2.198.634-.713 0-1.333-.165-1.861-.495a3.479 3.479 0 0 1-1.208-1.307 4.062 4.062 0 0 1-.416-1.841v-.238c0-.686.139-1.327.416-1.92.581-1.255 1.591-1.882 3.029-1.882.687 0 1.274.113 1.763.337.488.211.963.587 1.425 1.129l1.069-1.05c-.541-.66-1.148-1.128-1.821-1.406-.66-.29-1.465-.435-2.416-.435-1.003 0-1.901.218-2.693.653a4.55 4.55 0 0 0-1.861 1.842c-.435.792-.653 1.702-.653 2.732v.238c0 .99.218 1.874.653 2.653a4.655 4.655 0 0 0 1.842 1.802c.805.422 1.716.633 2.732.633zM195.912 13.575c-.726.317-1.564.475-2.514.475-.766 0-1.32-.158-1.664-.475-.33-.317-.495-.825-.495-1.525V9.001h-1.702v3.03c0 1.187.29 2.059.871 2.613.581.541 1.505.812 2.772.812 1.016 0 1.927-.159 2.732-.475V19h1.683V9.001h-1.683v4.574zM201.69 6.269c0 .303.106.56.317.772.211.211.469.317.772.317.291 0 .542-.106.753-.317.224-.225.336-.482.336-.772a1 1 0 0 0-.336-.753 1.028 1.028 0 0 0-.753-.317c-.303 0-.561.106-.772.317a1.029 1.029 0 0 0-.317.753zm3.525 0c0 .29.105.547.317.772.211.211.468.317.772.317.303 0 .561-.106.772-.317.211-.211.317-.469.317-.772 0-.29-.106-.542-.317-.753a1.051 1.051 0 0 0-.772-.317c-.291 0-.548.106-.772.317a1.025 1.025 0 0 0-.317.753zm3.247 9.94c-.554.593-1.102 1.016-1.643 1.266-.528.251-1.136.377-1.822.377-.713 0-1.333-.152-1.861-.456-.99-.594-1.558-1.63-1.703-3.108h7.96l.039-.733c0-1.505-.409-2.686-1.227-3.544-.806-.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.802 1.9c-.435.806-.653 1.71-.653 2.713 0 1.056.218 1.98.653 2.772a4.584 4.584 0 0 0 1.822 1.862c.792.422 1.716.633 2.772.633.937 0 1.755-.152 2.455-.455.7-.317 1.399-.838 2.099-1.564l-1.01-1.05zm-6.97-3.169c.132-.91.495-1.63 1.089-2.158.594-.541 1.334-.812 2.218-.812.898 0 1.61.27 2.138.812.542.528.832 1.247.872 2.158h-6.317zM218.956 9.001h-8.712v1.386h3.505V19h1.703v-8.613h3.504V9.001zM225.049 19c1.148 0 2.066-.304 2.752-.91.687-.608 1.03-1.42 1.03-2.436 0-1.03-.343-1.848-1.03-2.455-.686-.608-1.604-.911-2.752-.911h-2.633V9h-1.703V19h4.336zm-2.633-5.306h2.356c1.544 0 2.316.653 2.316 1.96s-.772 1.96-2.316 1.96h-2.356v-3.92zM230.237 9V19h1.683V9.001h-1.683z", fill: color }))));
|
|
19
|
+
});
|
|
20
|
+
AktSverki.displayName = 'AktSverki';
|
|
21
|
+
var AktSverkiWithStaticFields = Object.assign(AktSverki, { __KONTUR_REACT_UI__: 'AktSverki' });
|
|
22
|
+
export { AktSverkiWithStaticFields as AktSverki };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const DiadocEdoetpWithStaticFields: React.ForwardRefExoticComponent<{
|
|
3
|
+
color?: string | undefined;
|
|
4
|
+
size?: number | undefined;
|
|
5
|
+
} & React.RefAttributes<HTMLSpanElement>> & {
|
|
6
|
+
__KONTUR_REACT_UI__: string;
|
|
7
|
+
};
|
|
8
|
+
export { DiadocEdoetpWithStaticFields as DiadocEdoetp };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
var DiadocEdoetp = 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 * 7.791666666666667 + "px",
|
|
6
|
+
height: size,
|
|
7
|
+
lineHeight: size + "px",
|
|
8
|
+
display: 'inline-block',
|
|
9
|
+
}, ref: ref },
|
|
10
|
+
React.createElement("svg", { viewBox: "0 0 187 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: "M3.188 10.17a49.501 49.501 0 0 1-.139 2.732c-.198 1.953-.706 3.478-1.524 4.573H.356v4.455h1.782V19h10.574v2.93h1.762v-4.455H12.79V4.942H3.227l-.04 5.227zm.218 7.305c.475-.726.831-1.663 1.069-2.811.25-1.149.383-2.594.396-4.336l.04-3.861h6.058v11.008H3.406zM20.329 13.654a66.755 66.755 0 0 0-2.238 3.524l.04-1.98c.013-.171.02-.712.02-1.623V9h-1.604V19h1.821l2.911-4.435 1.089-1.604a35.972 35.972 0 0 0 1.386-2.178c-.053.832-.08 2.244-.08 4.237V19h1.624V9.001h-1.841l-3.128 4.653zM36.077 12.169c0-1.082-.357-1.927-1.07-2.534-.712-.608-1.709-.911-2.99-.911-1.781 0-3.247.693-4.395 2.079l1.09.99c.54-.594 1.068-1.017 1.583-1.267a3.885 3.885 0 0 1 1.762-.396c.78 0 1.373.184 1.782.554.41.356.614.891.614 1.604v.673l-2.614.178c-1.478.08-2.573.383-3.286.911-.7.515-1.05 1.274-1.05 2.277v.099c0 .91.31 1.617.93 2.119.634.501 1.506.752 2.614.752.78 0 1.466-.139 2.06-.416.594-.29 1.069-.7 1.425-1.227V19h1.545v-6.831zm-1.624 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-.574-.673-.574-1.188v-.1c0-.633.21-1.095.633-1.385.423-.29 1.149-.462 2.178-.515l2.495-.119v1.07zM39.197 21.475V19h7.86v2.475h1.644v-3.861h-1.465V9.001h-7.524l-.04 3.703c-.026 1.32-.138 2.369-.336 3.148-.185.779-.462 1.366-.832 1.762h-.93v3.861h1.623zm1.03-3.861c.317-.396.554-.983.713-1.762.158-.779.244-1.795.257-3.05l.04-2.415h4.296v7.227h-5.306zM59.967 13.931c0-1.016-.218-1.92-.653-2.712a4.711 4.711 0 0 0-1.861-1.842c-.793-.435-1.697-.653-2.713-.653-1.03 0-1.94.218-2.733.653a4.849 4.849 0 0 0-1.86 1.861c-.436.78-.654 1.677-.654 2.693v.08c0 1.055.224 1.973.673 2.752a4.711 4.711 0 0 0 1.842 1.86c.791.436 1.702.654 2.732.654 1.03 0 1.934-.224 2.712-.673a4.58 4.58 0 0 0 1.842-1.841c.449-.806.673-1.723.673-2.753v-.079zm-8.732 0c0-.739.152-1.399.456-1.98.303-.58.72-1.023 1.247-1.326.528-.317 1.129-.476 1.802-.476.686 0 1.293.159 1.822.476.54.316.95.759 1.227 1.326.29.568.436 1.228.436 1.98v.08c0 .752-.139 1.418-.416 2-.29.593-.7 1.049-1.228 1.365-.528.317-1.142.476-1.841.476-.687 0-1.3-.159-1.842-.476a3.197 3.197 0 0 1-1.227-1.346c-.29-.594-.436-1.267-.436-2.02v-.079zM70.837 19l-4.06-5.188 3.743-4.811h-1.822l-3.287 4.198H63.67V9h-1.703V19h1.703v-4.415h1.723L68.896 19h1.94z", fill: color }),
|
|
17
|
+
React.createElement("circle", { cx: "77.5", cy: "13.5", r: "1.5" }),
|
|
18
|
+
React.createElement("path", { d: "M85.307 8.247c.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-.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 88 17.85c-.885-.25-1.855-.864-2.911-1.841L84 17.217c.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.337C93.332 5.693 91.583 5 89.405 5c-.99 0-1.894.158-2.712.475-.819.304-1.637.805-2.455 1.505l1.069 1.267zM100.682 10.524a49.082 49.082 0 0 1-.139 2.733c-.198 1.953-.706 3.478-1.524 4.573H97.85v4.455h1.782v-2.93h10.573v2.93h1.762V17.83h-1.683V5.297h-9.563l-.04 5.227zm.218 7.306c.475-.726.831-1.663 1.069-2.811.251-1.149.383-2.594.396-4.336l.04-3.861h6.058V17.83H100.9zM127.906 12.267c0-1.03-.172-1.987-.515-2.871a6.543 6.543 0 0 0-1.465-2.317 6.491 6.491 0 0 0-2.317-1.544c-.898-.357-1.894-.535-2.99-.535-1.069 0-2.052.178-2.95.535a6.491 6.491 0 0 0-2.317 1.544 7.487 7.487 0 0 0-1.504 2.356 7.74 7.74 0 0 0-.515 2.832v.079c0 1.03.171 1.993.515 2.89a6.765 6.765 0 0 0 1.485 2.317 6.513 6.513 0 0 0 2.296 1.564c.898.357 1.895.535 2.99.535 1.083 0 2.073-.178 2.97-.535a6.491 6.491 0 0 0 2.317-1.544 6.976 6.976 0 0 0 1.485-2.336 8.03 8.03 0 0 0 .515-2.891v-.08zm-12.712 0c0-1.083.231-2.066.693-2.95.475-.872 1.115-1.545 1.921-2.02.818-.475 1.755-.713 2.811-.713 1.069 0 2.02.238 2.851.713a4.87 4.87 0 0 1 1.901 2c.449.858.673 1.848.673 2.97v.079c0 1.148-.224 2.145-.673 2.99a4.842 4.842 0 0 1-1.901 2.02c-.818.474-1.768.712-2.851.712-1.056 0-1.993-.238-2.811-.713a4.97 4.97 0 0 1-1.921-2.02c-.462-.884-.693-1.88-.693-2.99v-.078zM138.058 19.632c.95 0 1.762-.165 2.435-.495.686-.33 1.32-.871 1.901-1.623l-1.109-.931c-.343.396-.686.72-1.03.97-.62.423-1.353.634-2.197.634-.713 0-1.334-.165-1.862-.495a3.484 3.484 0 0 1-1.207-1.307 4.05 4.05 0 0 1-.416-1.841v-.238c0-.686.138-1.327.416-1.92.58-1.255 1.59-1.882 3.029-1.882.686 0 1.274.113 1.762.337.489.211.964.587 1.426 1.129l1.069-1.05c-.541-.66-1.148-1.128-1.822-1.406-.66-.29-1.465-.435-2.415-.435-1.003 0-1.901.218-2.693.653a4.545 4.545 0 0 0-1.861 1.842c-.436.792-.654 1.702-.654 2.732v.238c0 .99.218 1.874.654 2.653a4.646 4.646 0 0 0 1.841 1.802c.805.422 1.716.633 2.733.633zM147.886 8.247c.687-.594 1.353-1.016 2-1.267a5.65 5.65 0 0 1 2.119-.396c.963 0 1.821.198 2.574.594.752.41 1.353.983 1.802 1.723.462.726.739 1.557.831 2.494h-6.989v1.545h7.009c-.066 1.016-.317 1.9-.752 2.653a4.837 4.837 0 0 1-1.802 1.841c-.753.423-1.604.634-2.554.634a5.963 5.963 0 0 1-1.545-.218c-.884-.25-1.854-.864-2.91-1.841l-1.089 1.208c.633.633 1.221 1.115 1.762 1.445 1.056.66 2.31.99 3.762.99 1.412 0 2.653-.317 3.722-.95a6.245 6.245 0 0 0 2.436-2.594c.58-1.109.871-2.37.871-3.782 0-1.056-.165-2.026-.495-2.91a6.557 6.557 0 0 0-1.406-2.337C155.912 5.693 154.163 5 151.985 5c-.99 0-1.894.158-2.713.475-.818.304-1.636.805-2.455 1.505l1.069 1.267zM160.608 5.297v1.564h4.455v12.494h1.822V6.861h4.475V5.297h-10.752zM184.501 5.297h-10.91v14.058h1.822V6.822h7.266v12.533h1.822V5.297z", fill: color }))));
|
|
19
|
+
});
|
|
20
|
+
DiadocEdoetp.displayName = 'DiadocEdoetp';
|
|
21
|
+
var DiadocEdoetpWithStaticFields = Object.assign(DiadocEdoetp, { __KONTUR_REACT_UI__: 'DiadocEdoetp' });
|
|
22
|
+
export { DiadocEdoetpWithStaticFields as DiadocEdoetp };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const DiadocLogisticsWithStaticFields: React.ForwardRefExoticComponent<{
|
|
3
|
+
color?: string | undefined;
|
|
4
|
+
size?: number | undefined;
|
|
5
|
+
} & React.RefAttributes<HTMLSpanElement>> & {
|
|
6
|
+
__KONTUR_REACT_UI__: string;
|
|
7
|
+
};
|
|
8
|
+
export { DiadocLogisticsWithStaticFields as DiadocLogistics };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
var DiadocLogistics = 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 * 7.625 + "px",
|
|
6
|
+
height: size,
|
|
7
|
+
lineHeight: size + "px",
|
|
8
|
+
display: 'inline-block',
|
|
9
|
+
}, ref: ref },
|
|
10
|
+
React.createElement("svg", { viewBox: "0 0 183 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: "M3.188 10.17a49.501 49.501 0 0 1-.139 2.732c-.198 1.953-.706 3.478-1.524 4.573H.356v4.455h1.782V19h10.574v2.93h1.762v-4.455H12.79V4.942H3.227l-.04 5.227zm.218 7.305c.475-.726.831-1.663 1.069-2.811.25-1.149.383-2.594.396-4.336l.04-3.861h6.058v11.008H3.406zM20.329 13.654a66.755 66.755 0 0 0-2.238 3.524l.04-1.98c.013-.171.02-.712.02-1.623V9h-1.604V19h1.821l2.911-4.435 1.089-1.604a35.972 35.972 0 0 0 1.386-2.178c-.053.832-.08 2.244-.08 4.237V19h1.624V9.001h-1.841l-3.128 4.653zM36.077 12.169c0-1.082-.357-1.927-1.07-2.534-.712-.608-1.709-.911-2.99-.911-1.781 0-3.247.693-4.395 2.079l1.09.99c.54-.594 1.068-1.017 1.583-1.267a3.885 3.885 0 0 1 1.762-.396c.78 0 1.373.184 1.782.554.41.356.614.891.614 1.604v.673l-2.614.178c-1.478.08-2.573.383-3.286.911-.7.515-1.05 1.274-1.05 2.277v.099c0 .91.31 1.617.93 2.119.634.501 1.506.752 2.614.752.78 0 1.466-.139 2.06-.416.594-.29 1.069-.7 1.425-1.227V19h1.545v-6.831zm-1.624 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-.574-.673-.574-1.188v-.1c0-.633.21-1.095.633-1.385.423-.29 1.149-.462 2.178-.515l2.495-.119v1.07zM39.197 21.475V19h7.86v2.475h1.644v-3.861h-1.465V9.001h-7.524l-.04 3.703c-.026 1.32-.138 2.369-.336 3.148-.185.779-.462 1.366-.832 1.762h-.93v3.861h1.623zm1.03-3.861c.317-.396.554-.983.713-1.762.158-.779.244-1.795.257-3.05l.04-2.415h4.296v7.227h-5.306zM59.967 13.931c0-1.016-.218-1.92-.653-2.712a4.711 4.711 0 0 0-1.861-1.842c-.793-.435-1.697-.653-2.713-.653-1.03 0-1.94.218-2.733.653a4.849 4.849 0 0 0-1.86 1.861c-.436.78-.654 1.677-.654 2.693v.08c0 1.055.224 1.973.673 2.752a4.711 4.711 0 0 0 1.842 1.86c.791.436 1.702.654 2.732.654 1.03 0 1.934-.224 2.712-.673a4.58 4.58 0 0 0 1.842-1.841c.449-.806.673-1.723.673-2.753v-.079zm-8.732 0c0-.739.152-1.399.456-1.98.303-.58.72-1.023 1.247-1.326.528-.317 1.129-.476 1.802-.476.686 0 1.293.159 1.822.476.54.316.95.759 1.227 1.326.29.568.436 1.228.436 1.98v.08c0 .752-.139 1.418-.416 2-.29.593-.7 1.049-1.228 1.365-.528.317-1.142.476-1.841.476-.687 0-1.3-.159-1.842-.476a3.197 3.197 0 0 1-1.227-1.346c-.29-.594-.436-1.267-.436-2.02v-.079zM70.837 19l-4.06-5.188 3.743-4.811h-1.822l-3.287 4.198H63.67V9h-1.703V19h1.703v-4.415h1.723L68.896 19h1.94z", fill: color }),
|
|
17
|
+
React.createElement("circle", { cx: "77.5", cy: "13.5", r: "1.5" }),
|
|
18
|
+
React.createElement("path", { d: "M84.614 18.92c.396.146.818.219 1.267.219 1.228 0 2.046-.495 2.455-1.485.396-.977.6-2.654.614-5.03l.139-6.157h5.94V19h1.821V4.942h-9.425l-.178 7.504c-.013.964-.06 1.98-.138 3.05-.08.739-.231 1.26-.456 1.564-.224.303-.574.455-1.05.455-.21 0-.54-.053-.99-.158v1.564zM109.574 13.931c0-1.016-.218-1.92-.654-2.712a4.706 4.706 0 0 0-1.861-1.842c-.792-.435-1.696-.653-2.712-.653-1.03 0-1.941.218-2.733.653a4.85 4.85 0 0 0-1.861 1.861c-.436.78-.653 1.677-.653 2.693v.08c0 1.055.224 1.973.673 2.752a4.708 4.708 0 0 0 1.841 1.86c.792.436 1.703.654 2.733.654 1.029 0 1.933-.224 2.712-.673a4.583 4.583 0 0 0 1.842-1.841c.448-.806.673-1.723.673-2.753v-.079zm-8.732 0c0-.739.152-1.399.455-1.98.304-.58.72-1.023 1.248-1.326.528-.317 1.128-.476 1.802-.476.686 0 1.293.159 1.821.476a3.06 3.06 0 0 1 1.228 1.326c.29.568.435 1.228.435 1.98v.08c0 .752-.138 1.418-.415 2-.291.593-.7 1.049-1.228 1.365-.528.317-1.142.476-1.841.476-.687 0-1.301-.159-1.842-.476a3.193 3.193 0 0 1-1.227-1.346c-.291-.594-.436-1.267-.436-2.02v-.079zM118.582 9.001h-7.009V19h1.703v-8.593h5.306V9zM124.118 13.654a67.114 67.114 0 0 0-2.237 3.524l.04-1.98c.013-.171.019-.712.019-1.623V9h-1.603V19h1.821l2.911-4.435 1.089-1.604a36.173 36.173 0 0 0 1.386-2.178c-.053.832-.079 2.244-.079 4.237V19h1.623V9.001h-1.841l-3.129 4.653zM136.402 19.277c.95 0 1.762-.165 2.435-.495.686-.33 1.32-.871 1.901-1.623l-1.109-.931c-.343.396-.686.72-1.03.97-.62.423-1.353.634-2.197.634-.713 0-1.334-.165-1.862-.495a3.484 3.484 0 0 1-1.207-1.307 4.05 4.05 0 0 1-.416-1.841v-.238c0-.686.138-1.327.416-1.92.58-1.255 1.59-1.882 3.029-1.882.686 0 1.274.113 1.762.337.489.211.964.587 1.426 1.129l1.069-1.05c-.541-.66-1.148-1.128-1.822-1.406-.66-.29-1.465-.435-2.415-.435-1.003 0-1.901.218-2.693.653a4.545 4.545 0 0 0-1.861 1.842c-.436.792-.654 1.702-.654 2.732v.238c0 .99.218 1.874.654 2.653a4.646 4.646 0 0 0 1.841 1.802c.805.422 1.716.633 2.733.633zM150.267 9.001h-8.712v1.386h3.504V19h1.703v-8.613h3.505V9.001zM155.805 13.654a66.545 66.545 0 0 0-2.238 3.524l.04-1.98c.013-.171.02-.712.02-1.623V9h-1.604V19h1.821l2.911-4.435 1.089-1.604a36.173 36.173 0 0 0 1.386-2.178c-.053.832-.079 2.244-.079 4.237V19h1.623V9.001h-1.841l-3.128 4.653zM172.345 19l-4.059-5.188 3.742-4.811h-1.822l-3.286 4.198h-1.743V9h-1.703V19h1.703v-4.415h1.723L170.404 19h1.941zM181.786 12.169c0-1.082-.356-1.927-1.069-2.534-.713-.608-1.709-.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.883 3.883 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-.699.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.059-.416.594-.29 1.069-.7 1.426-1.227V19h1.544v-6.831zm-1.623 3.128c0 .502-.132.957-.396 1.367-.264.409-.634.726-1.109.95a3.617 3.617 0 0 1-1.564.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.07z", fill: color }))));
|
|
19
|
+
});
|
|
20
|
+
DiadocLogistics.displayName = 'DiadocLogistics';
|
|
21
|
+
var DiadocLogisticsWithStaticFields = Object.assign(DiadocLogistics, { __KONTUR_REACT_UI__: 'DiadocLogistics' });
|
|
22
|
+
export { DiadocLogisticsWithStaticFields as DiadocLogistics };
|
package/src/Finance.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const FinanceWithStaticFields: React.ForwardRefExoticComponent<{
|
|
3
|
+
color?: string | undefined;
|
|
4
|
+
size?: number | undefined;
|
|
5
|
+
} & React.RefAttributes<HTMLSpanElement>> & {
|
|
6
|
+
__KONTUR_REACT_UI__: string;
|
|
7
|
+
};
|
|
8
|
+
export { FinanceWithStaticFields as Finance };
|
package/src/Finance.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
var Finance = 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.625 + "px",
|
|
6
|
+
height: size,
|
|
7
|
+
lineHeight: size + "px",
|
|
8
|
+
display: 'inline-block',
|
|
9
|
+
}, ref: ref },
|
|
10
|
+
React.createElement("svg", { viewBox: "0 0 87 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: "M16.592 11.813c0-1.188-.277-2.238-.831-3.149-.568-.91-1.38-1.617-2.436-2.118-1.056-.502-2.29-.753-3.702-.753h-.08V4.25H7.782v1.544h-.059c-1.412 0-2.653.251-3.722.753-1.056.501-1.868 1.208-2.436 2.118-.554.898-.831 1.947-.831 3.149v.059c0 1.214.277 2.277.831 3.188.555.924 1.36 1.637 2.416 2.138 1.069.502 2.316.753 3.742.753h.06v1.742h1.762v-1.742h.079c1.412 0 2.653-.251 3.722-.753 1.043-.501 1.842-1.208 2.396-2.118.568-.924.851-1.994.851-3.208v-.06zm-8.87 4.633c-1.056 0-1.98-.192-2.772-.574a4.06 4.06 0 0 1-1.742-1.584c-.41-.7-.614-1.505-.614-2.416v-.06c0-.91.204-1.709.614-2.395.409-.687.99-1.208 1.742-1.564.752-.37 1.676-.555 2.772-.555h.099v9.148h-.099zm7.029-4.574c0 .898-.198 1.696-.594 2.396-.41.7-1.003 1.24-1.782 1.623-.766.37-1.683.555-2.752.555h-.1V7.298h.1c1.095 0 2.033.178 2.811.535.753.37 1.327.897 1.723 1.584.396.686.594 1.485.594 2.396v.059zm7.84 1.782a66.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-.052.832-.079 2.244-.079 4.237V19h1.624V9.001h-1.842l-3.128 4.653zm16.085-4.653h-1.703v4.178h-5.01V9h-1.702V19h1.702v-4.435h5.01V19h1.703V9.001zm10.767 3.168c0-1.082-.357-1.927-1.07-2.534-.712-.608-1.71-.911-2.99-.911-1.782 0-3.247.693-4.395 2.079l1.089.99c.541-.594 1.07-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.286.911-.7.515-1.05 1.274-1.05 2.277v.099c0 .91.31 1.617.93 2.119.634.501 1.505.752 2.614.752.78 0 1.466-.139 2.06-.416.593-.29 1.069-.7 1.425-1.227V19h1.544v-6.831zm-1.624 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.07zm12.657-6.296h-1.702v4.178h-5.01V9h-1.703V19h1.703v-4.435h5.01V19h1.703V9.001zm7.302 10.276c.95 0 1.762-.165 2.436-.495.686-.33 1.32-.871 1.9-1.623l-1.108-.931c-.344.396-.687.72-1.03.97-.62.423-1.353.634-2.198.634-.713 0-1.333-.165-1.86-.495a3.483 3.483 0 0 1-1.209-1.307 4.06 4.06 0 0 1-.416-1.841v-.238c0-.686.14-1.327.416-1.92.581-1.255 1.59-1.882 3.03-1.882.686 0 1.273.113 1.762.337.488.211.963.587 1.425 1.129l1.07-1.05c-.541-.66-1.149-1.128-1.822-1.406-.66-.29-1.465-.435-2.416-.435-1.003 0-1.9.218-2.692.653a4.548 4.548 0 0 0-1.861 1.842c-.436.792-.654 1.702-.654 2.732v.238c0 .99.218 1.874.654 2.653a4.651 4.651 0 0 0 1.84 1.802c.806.422 1.717.633 2.733.633zM78.218 19c1.148 0 2.066-.304 2.752-.91.686-.608 1.03-1.42 1.03-2.436 0-1.03-.344-1.848-1.03-2.455-.686-.608-1.604-.911-2.752-.911h-2.633V9h-1.703V19h4.336zm-2.633-5.306h2.356c1.544 0 2.316.653 2.316 1.96s-.772 1.96-2.316 1.96h-2.356v-3.92zM83.405 9V19h1.683V9.001h-1.682z", fill: color }))));
|
|
17
|
+
});
|
|
18
|
+
Finance.displayName = 'Finance';
|
|
19
|
+
var FinanceWithStaticFields = Object.assign(Finance, { __KONTUR_REACT_UI__: 'Finance' });
|
|
20
|
+
export { FinanceWithStaticFields as Finance };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const RealEstateWithStaticFields: React.ForwardRefExoticComponent<{
|
|
3
|
+
color?: string | undefined;
|
|
4
|
+
size?: number | undefined;
|
|
5
|
+
} & React.RefAttributes<HTMLSpanElement>> & {
|
|
6
|
+
__KONTUR_REACT_UI__: string;
|
|
7
|
+
};
|
|
8
|
+
export { RealEstateWithStaticFields as RealEstate };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React, { forwardRef } from 'react';
|
|
2
|
+
var RealEstate = 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 * 5.958333333333333 + "px",
|
|
6
|
+
height: size,
|
|
7
|
+
lineHeight: size + "px",
|
|
8
|
+
display: 'inline-block',
|
|
9
|
+
}, ref: ref },
|
|
10
|
+
React.createElement("svg", { viewBox: "0 0 143 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: "M10.89 4.942v6.098H3.346V4.942H1.525V19h1.821v-6.415h7.544V19h1.841V4.942h-1.84zM23.854 16.208c-.554.594-1.102 1.017-1.643 1.267-.528.251-1.135.377-1.822.377-.713 0-1.333-.152-1.861-.456-.99-.594-1.558-1.63-1.703-3.108h7.96l.04-.733c0-1.505-.41-2.686-1.228-3.544-.806-.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.802 1.9c-.435.806-.653 1.71-.653 2.713 0 1.056.218 1.98.653 2.772a4.582 4.582 0 0 0 1.822 1.862c.792.422 1.716.633 2.772.633.937 0 1.756-.152 2.455-.455.7-.317 1.4-.838 2.099-1.564l-1.01-1.05zm-6.97-3.168c.133-.91.495-1.63 1.09-2.158.593-.541 1.333-.812 2.217-.812.898 0 1.61.27 2.139.812.54.528.831 1.247.87 2.158h-6.316zM27.146 21.475V19h7.86v2.475h1.644v-3.861h-1.465V9.001h-7.524l-.04 3.703c-.026 1.32-.138 2.369-.336 3.148-.185.779-.462 1.366-.832 1.762h-.93v3.861h1.623zm1.03-3.861c.317-.396.554-.983.713-1.762.158-.779.244-1.795.257-3.05l.04-2.415h4.296v7.227h-5.306zM47.036 16.208c0-.607-.178-1.115-.535-1.524-.356-.423-.845-.707-1.465-.852.528-.158.937-.429 1.227-.812.304-.382.456-.864.456-1.445 0-.779-.304-1.4-.91-1.861C45.213 9.239 44.434 9 43.471 9h-4.95V19h5.187c1.03 0 1.842-.25 2.436-.752.594-.515.89-1.195.89-2.04zm-3.822-5.88c.594 0 1.043.125 1.347.376.316.25.475.607.475 1.069 0 .475-.159.845-.475 1.109-.304.25-.753.376-1.347.376h-3.01v-2.93h3.01zm2.1 5.742c0 .514-.172.91-.516 1.188-.343.264-.851.396-1.524.396h-3.07v-3.129h3.07c.66 0 1.161.139 1.505.416.356.264.534.64.534 1.129zM53.04 13.654a66.755 66.755 0 0 0-2.238 3.524l.04-1.98c.013-.171.02-.712.02-1.623V9h-1.604V19h1.821l2.911-4.435 1.089-1.604a35.972 35.972 0 0 0 1.386-2.178c-.053.832-.08 2.244-.08 4.237V19h1.624V9.001h-1.841l-3.128 4.653zM74.252 19l-3.623-5.188 3.307-4.811h-1.842l-2.85 4.198h-1.486V9h-1.623v4.198h-1.486L61.8 9h-1.862l3.366 4.851L59.66 19h1.88l3.13-4.415h1.465V19h1.623v-4.415h1.465L72.332 19h1.92zM79.694 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-.079 2.244-.079 4.237V19h1.624V9.001h-1.842l-3.128 4.653zM93.007 17.08 89.877 9h-2.514V19h1.584v-8.474L92.234 19h1.545l3.287-8.494V19h1.584V9.001h-2.535l-3.108 8.078zM111.129 13.931c0-1.016-.218-1.92-.653-2.712a4.712 4.712 0 0 0-1.861-1.842c-.792-.435-1.697-.653-2.713-.653-1.03 0-1.94.218-2.732.653a4.852 4.852 0 0 0-1.862 1.861c-.435.78-.653 1.677-.653 2.693v.08c0 1.055.224 1.973.673 2.752a4.715 4.715 0 0 0 1.842 1.86c.792.436 1.702.654 2.732.654 1.03 0 1.934-.224 2.713-.673a4.58 4.58 0 0 0 1.841-1.841c.449-.806.673-1.723.673-2.753v-.079zm-8.732 0c0-.739.152-1.399.456-1.98a3.188 3.188 0 0 1 1.247-1.326c.528-.317 1.129-.476 1.802-.476.686 0 1.294.159 1.822.476.541.316.95.759 1.227 1.326.291.568.436 1.228.436 1.98v.08c0 .752-.139 1.418-.416 2-.29.593-.7 1.049-1.228 1.365-.528.317-1.141.476-1.841.476-.686 0-1.3-.159-1.841-.476a3.195 3.195 0 0 1-1.228-1.346c-.29-.594-.436-1.267-.436-2.02v-.079zM117.742 19.277c.95 0 1.762-.165 2.435-.495.686-.33 1.32-.871 1.901-1.623l-1.109-.931c-.343.396-.686.72-1.03.97-.62.423-1.353.634-2.197.634-.713 0-1.334-.165-1.862-.495a3.484 3.484 0 0 1-1.207-1.307 4.05 4.05 0 0 1-.416-1.841v-.238c0-.686.138-1.327.416-1.92.58-1.255 1.59-1.882 3.029-1.882.686 0 1.274.113 1.762.337.489.211.964.587 1.426 1.129l1.069-1.05c-.541-.66-1.148-1.128-1.822-1.406-.66-.29-1.465-.435-2.415-.435-1.003 0-1.901.218-2.693.653a4.545 4.545 0 0 0-1.861 1.842c-.436.792-.654 1.702-.654 2.732v.238c0 .99.218 1.874.654 2.653a4.646 4.646 0 0 0 1.841 1.802c.805.422 1.716.633 2.733.633zM131.607 9.001h-8.712v1.386h3.504V19h1.703v-8.613h3.505V9.001zM137.699 19c1.149 0 2.066-.304 2.752-.91.687-.608 1.03-1.42 1.03-2.436 0-1.03-.343-1.848-1.03-2.455-.686-.608-1.603-.911-2.752-.911h-2.633V9h-1.703V19h4.336zm-2.633-5.306h2.356c1.544 0 2.317.653 2.317 1.96s-.773 1.96-2.317 1.96h-2.356v-3.92z", fill: color }))));
|
|
17
|
+
});
|
|
18
|
+
RealEstate.displayName = 'RealEstate';
|
|
19
|
+
var RealEstateWithStaticFields = Object.assign(RealEstate, { __KONTUR_REACT_UI__: 'RealEstate' });
|
|
20
|
+
export { RealEstateWithStaticFields as RealEstate };
|