@luminati-io/uikit 3.0.19 → 3.0.21
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.
@@ -23168,14 +23168,18 @@ var withPopover = function withPopover(Comp, PopoverComp) {
|
|
23168
23168
|
strategy: 'fixed'
|
23169
23169
|
}),
|
23170
23170
|
styles = _usePopper.styles,
|
23171
|
-
attributes = _usePopper.attributes
|
23171
|
+
attributes = _usePopper.attributes,
|
23172
|
+
update = _usePopper.update,
|
23173
|
+
forceUpdate = _usePopper.forceUpdate;
|
23172
23174
|
var popoverApi = (0,react__WEBPACK_IMPORTED_MODULE_0__.useMemo)(function () {
|
23173
23175
|
return {
|
23174
23176
|
show: showPopover,
|
23175
23177
|
hide: hidePopover,
|
23176
|
-
toggle: togglePopover
|
23178
|
+
toggle: togglePopover,
|
23179
|
+
update: update,
|
23180
|
+
forceUpdate: forceUpdate
|
23177
23181
|
};
|
23178
|
-
}, [showPopover, hidePopover, togglePopover]);
|
23182
|
+
}, [showPopover, hidePopover, togglePopover, update, forceUpdate]);
|
23179
23183
|
var hideAndStopEvt = (0,react__WEBPACK_IMPORTED_MODULE_0__.useCallback)(function (evt) {
|
23180
23184
|
if (!popoverVisible) return;
|
23181
23185
|
evt.stopPropagation();
|
@@ -26540,20 +26544,23 @@ __webpack_require__.r(__webpack_exports__);
|
|
26540
26544
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
26541
26545
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
26542
26546
|
/* harmony export */ });
|
26543
|
-
/* harmony import */ var
|
26544
|
-
/* harmony import */ var
|
26545
|
-
/* harmony import */ var
|
26546
|
-
/* harmony import */ var
|
26547
|
-
/* harmony import */ var
|
26548
|
-
/* harmony import */ var
|
26549
|
-
/* harmony import */ var
|
26550
|
-
/* harmony import */ var
|
26551
|
-
/* harmony import */ var
|
26552
|
-
/* harmony import */ var
|
26547
|
+
/* harmony import */ var lodash_omit__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! lodash/omit */ "./node_modules/lodash/omit.js");
|
26548
|
+
/* harmony import */ var lodash_omit__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(lodash_omit__WEBPACK_IMPORTED_MODULE_0__);
|
26549
|
+
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! prop-types */ "prop-types");
|
26550
|
+
/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(prop_types__WEBPACK_IMPORTED_MODULE_1__);
|
26551
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! react */ "react");
|
26552
|
+
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_2__);
|
26553
|
+
/* harmony import */ var styled_components__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! styled-components */ "styled-components");
|
26554
|
+
/* harmony import */ var styled_components__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(styled_components__WEBPACK_IMPORTED_MODULE_3__);
|
26555
|
+
/* harmony import */ var _icon__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../icon */ "./src/icon.js");
|
26556
|
+
/* harmony import */ var _theme__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../theme */ "./src/theme.js");
|
26557
|
+
/* harmony import */ var _typography__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../typography */ "./src/typography/index.js");
|
26558
|
+
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../utils */ "./src/utils.js");
|
26553
26559
|
// LICENSE_CODE ZON
|
26554
26560
|
|
26555
26561
|
|
26556
26562
|
/*jslint react:true*/
|
26563
|
+
|
26557
26564
|
var _excluded = ["text", "variant", "size", "icon"],
|
26558
26565
|
_excluded2 = ["isLeft", "isRight"];
|
26559
26566
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
@@ -26566,18 +26573,18 @@ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) r
|
|
26566
26573
|
|
26567
26574
|
|
26568
26575
|
|
26569
|
-
var Link = /*#__PURE__*/
|
26576
|
+
var Link = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_2___default().forwardRef(function (props, ref) {
|
26570
26577
|
var text = props.text,
|
26571
26578
|
variant = props.variant,
|
26572
26579
|
size = props.size,
|
26573
26580
|
icon = props.icon,
|
26574
26581
|
rest = _objectWithoutProperties(props, _excluded);
|
26575
26582
|
if (variant == 'inline') {
|
26576
|
-
return /*#__PURE__*/
|
26583
|
+
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_2___default().createElement(InlineLink, _extends({
|
26577
26584
|
ref: ref
|
26578
|
-
}, rest, (0,
|
26585
|
+
}, rest, (0,_utils__WEBPACK_IMPORTED_MODULE_7__.getLinkProps)(props)), text);
|
26579
26586
|
}
|
26580
|
-
var _getIconProps = (0,
|
26587
|
+
var _getIconProps = (0,_utils__WEBPACK_IMPORTED_MODULE_7__.getIconProps)('Link', props),
|
26581
26588
|
isLeft = _getIconProps.isLeft,
|
26582
26589
|
isRight = _getIconProps.isRight,
|
26583
26590
|
iconProps = _objectWithoutProperties(_getIconProps, _excluded2);
|
@@ -26585,17 +26592,17 @@ var Link = /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_1___default().forwardRef(
|
|
26585
26592
|
lg: 'lg',
|
26586
26593
|
sm: 'xs'
|
26587
26594
|
}[size] || 'base';
|
26588
|
-
return /*#__PURE__*/
|
26595
|
+
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_2___default().createElement(StyledLink, _extends({
|
26589
26596
|
ref: ref
|
26590
|
-
}, rest, (0,
|
26591
|
-
variant: variant,
|
26592
|
-
size: size,
|
26593
|
-
noIcon: !icon
|
26594
|
-
}), isLeft && /*#__PURE__*/
|
26597
|
+
}, lodash_omit__WEBPACK_IMPORTED_MODULE_0___default()(rest, 'iconPlacement', 'newTab'), (0,_utils__WEBPACK_IMPORTED_MODULE_7__.getLinkProps)(props), {
|
26598
|
+
$variant: variant,
|
26599
|
+
$size: size,
|
26600
|
+
$noIcon: !icon
|
26601
|
+
}), isLeft && /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_2___default().createElement(_icon__WEBPACK_IMPORTED_MODULE_4__["default"], iconProps), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_2___default().createElement(_typography__WEBPACK_IMPORTED_MODULE_6__.Label, {
|
26595
26602
|
variant: labelVariant,
|
26596
26603
|
no_wrap: true,
|
26597
26604
|
"data-label": true
|
26598
|
-
}, text), isRight && /*#__PURE__*/
|
26605
|
+
}, text), isRight && /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_2___default().createElement(_icon__WEBPACK_IMPORTED_MODULE_4__["default"], iconProps));
|
26599
26606
|
});
|
26600
26607
|
Link.displayName = 'Link';
|
26601
26608
|
Link.defaultProps = {
|
@@ -26604,33 +26611,33 @@ Link.defaultProps = {
|
|
26604
26611
|
iconPlacement: 'left'
|
26605
26612
|
};
|
26606
26613
|
Link.propTypes = {
|
26607
|
-
text: (
|
26608
|
-
variant:
|
26609
|
-
size:
|
26610
|
-
icon:
|
26611
|
-
iconPlacement:
|
26612
|
-
href: (
|
26613
|
-
newTab: (
|
26614
|
+
text: (prop_types__WEBPACK_IMPORTED_MODULE_1___default().string).isRequired,
|
26615
|
+
variant: prop_types__WEBPACK_IMPORTED_MODULE_1___default().oneOf(['primary', 'secondary', 'inline']),
|
26616
|
+
size: prop_types__WEBPACK_IMPORTED_MODULE_1___default().oneOf(['sm', 'md', 'lg']),
|
26617
|
+
icon: prop_types__WEBPACK_IMPORTED_MODULE_1___default().oneOf(_utils__WEBPACK_IMPORTED_MODULE_7__.iconNames),
|
26618
|
+
iconPlacement: prop_types__WEBPACK_IMPORTED_MODULE_1___default().oneOf(['left', 'right']),
|
26619
|
+
href: (prop_types__WEBPACK_IMPORTED_MODULE_1___default().string),
|
26620
|
+
newTab: (prop_types__WEBPACK_IMPORTED_MODULE_1___default().bool)
|
26614
26621
|
};
|
26615
|
-
var InlineLink =
|
26622
|
+
var InlineLink = styled_components__WEBPACK_IMPORTED_MODULE_3___default().a.withConfig({
|
26616
26623
|
displayName: "InlineLink",
|
26617
26624
|
componentId: "sc-1ilmd36-0"
|
26618
26625
|
})(["justify-content:center;text-decoration:underline;background:0 none;border:0 none;padding:0;cursor:pointer;&:disabled{cursor:not-allowed;}&:hover,:visited,:focus{text-decoration:underline;}"]);
|
26619
26626
|
InlineLink.displayName = 'InlineLink';
|
26620
|
-
var StyledLink =
|
26627
|
+
var StyledLink = styled_components__WEBPACK_IMPORTED_MODULE_3___default().a.withConfig({
|
26621
26628
|
displayName: "StyledLink",
|
26622
26629
|
componentId: "sc-1ilmd36-1"
|
26623
26630
|
})(["display:inline-flex;align-items:center;justify-content:center;text-decoration:none;background:0 none;border:0 none;padding:0;gap:", ";[data-label]{color:", ";text-decoration:", ";}[data-icon]{color:", ";}cursor:pointer;&:disabled{cursor:not-allowed;}&:hover:not(:disabled){[data-label]{color:", ";text-decoration:", ";}[data-icon]{color:", ";}}&:hover,:visited,:focus{text-decoration:none;}"], function (props) {
|
26624
|
-
return (0,
|
26631
|
+
return (0,_utils__WEBPACK_IMPORTED_MODULE_7__.toPixel)(props.$size == 'lg' ? 8 : 4);
|
26625
26632
|
}, function (props) {
|
26626
|
-
return props
|
26633
|
+
return props.$variant == 'primary' ? _theme__WEBPACK_IMPORTED_MODULE_5__["default"].color.blue_11 : _theme__WEBPACK_IMPORTED_MODULE_5__["default"].color.gray_11_50;
|
26627
26634
|
}, function (props) {
|
26628
|
-
return props
|
26635
|
+
return props.$variant == 'secondary' && props.$noIcon ? 'underline' : 'none';
|
26629
26636
|
}, function (props) {
|
26630
|
-
return props
|
26631
|
-
},
|
26632
|
-
return props
|
26633
|
-
},
|
26637
|
+
return props.$variant == 'primary' ? _theme__WEBPACK_IMPORTED_MODULE_5__["default"].color.blue_11 : _theme__WEBPACK_IMPORTED_MODULE_5__["default"].color.gray_11;
|
26638
|
+
}, _theme__WEBPACK_IMPORTED_MODULE_5__["default"].color.blue_11, function (props) {
|
26639
|
+
return props.$variant == 'secondary' && props.$noIcon ? 'underline' : 'none';
|
26640
|
+
}, _theme__WEBPACK_IMPORTED_MODULE_5__["default"].color.blue_11);
|
26634
26641
|
StyledLink.displayName = 'StyledLink';
|
26635
26642
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (Link);
|
26636
26643
|
|
@@ -65805,7 +65812,7 @@ var symbol = new (_node_modules_svg_baker_runtime_browser_symbol_js__WEBPACK_IMP
|
|
65805
65812
|
"id": "ai_uikit_icon",
|
65806
65813
|
"use": "ai_uikit_icon-usage",
|
65807
65814
|
"viewBox": "0 0 21 21",
|
65808
|
-
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 21 21\" id=\"ai_uikit_icon\"><path fill=\"
|
65815
|
+
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 21 21\" id=\"ai_uikit_icon\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M12.395.985a7.76 7.76 0 0 1 3.663 13.922l-.203.253.394 4.32-1.66.152-.424-4.656a.834.834 0 0 1 .18-.597l.481-.6a.835.835 0 0 1 .163-.155 6.094 6.094 0 1 0-9.452-6.52v.002c-.13.48-.2.974-.206 1.47a.833.833 0 0 1-.173.5l-1.174 1.519.794.215c.392.107.65.48.612.884l-.075.78-.068 2.072 2.277.032a.833.833 0 0 1 .822.833l-.001 5.235H6.678v-4.413l-1.5-.02-.76.03a.833.833 0 0 1-.867-.86l.1-2.99a.83.83 0 0 1 .003-.052l.01-.106-1.32-.359a.833.833 0 0 1-.44-1.313l1.77-2.293A7.76 7.76 0 0 1 12.395.985Z\" clip-rule=\"evenodd\" /><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M11.288 4.367a.625.625 0 1 0 0 1.25.625.625 0 0 0 0-1.25Zm-1.875.625a1.875 1.875 0 1 1 3.75 0 1.875 1.875 0 0 1-3.75 0Zm5.207 1.875a.625.625 0 1 0 0 1.25.625.625 0 0 0 0-1.25Zm-1.874.625a1.875 1.875 0 1 1 3.75 0 1.875 1.875 0 0 1-3.75 0Zm-4.792-.625a.625.625 0 1 0 0 1.25.625.625 0 0 0 0-1.25Zm-1.875.625a1.875 1.875 0 1 1 3.75 0 1.875 1.875 0 0 1-3.75 0Z\" clip-rule=\"evenodd\" /><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M10.663 11.659V5.825h1.25v5.834h-1.25Z\" clip-rule=\"evenodd\" /><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M7.746 10.409h7.083v1.25H7.746v-1.25Z\" clip-rule=\"evenodd\" /><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M13.996 11.659V8.325h1.25v3.334h-1.25Zm-6.666 0V8.325h1.25v3.334H7.33Z\" clip-rule=\"evenodd\" /></symbol>"
|
65809
65816
|
});
|
65810
65817
|
var result = _node_modules_svg_sprite_loader_runtime_browser_sprite_build_js__WEBPACK_IMPORTED_MODULE_1___default().add(symbol);
|
65811
65818
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (symbol);
|
@@ -66309,7 +66316,7 @@ var symbol = new (_node_modules_svg_baker_runtime_browser_symbol_js__WEBPACK_IMP
|
|
66309
66316
|
"id": "aws_uikit_icon",
|
66310
66317
|
"use": "aws_uikit_icon-usage",
|
66311
66318
|
"viewBox": "0 0 40 40",
|
66312
|
-
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 40 40\" id=\"aws_uikit_icon\"><mask id=\"aws_uikit_icon_a\" fill=\"
|
66319
|
+
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 40 40\" id=\"aws_uikit_icon\"><mask id=\"aws_uikit_icon_a\" fill=\"currentColor\"><path d=\"M11.149 16.092c0 .487.053.882.145 1.171.105.29.236.605.42.947a.575.575 0 0 1 .093.303c0 .132-.08.263-.25.395l-.83.552a.631.631 0 0 1-.341.119c-.132 0-.263-.066-.395-.184a4.073 4.073 0 0 1-.474-.619A10.176 10.176 0 0 1 9.11 18c-1.026 1.21-2.315 1.816-3.868 1.816-1.105 0-1.987-.316-2.632-.948-.644-.631-.973-1.473-.973-2.526 0-1.118.394-2.026 1.197-2.71.803-.685 1.869-1.027 3.224-1.027.447 0 .908.04 1.395.105.486.066.986.171 1.513.29v-.96c0-1-.21-1.698-.619-2.106-.42-.408-1.131-.605-2.144-.605-.461 0-.935.053-1.422.17-.486.12-.96.264-1.42.448a3.77 3.77 0 0 1-.461.171.807.807 0 0 1-.21.04c-.185 0-.277-.132-.277-.408v-.645c0-.21.026-.368.092-.46.066-.092.184-.185.369-.277a7.576 7.576 0 0 1 1.657-.592 7.977 7.977 0 0 1 2.053-.25c1.566 0 2.71.356 3.447 1.066.724.71 1.093 1.79 1.093 3.237v4.263h.026Zm-5.342 2c.434 0 .881-.079 1.355-.237a2.932 2.932 0 0 0 1.25-.842c.21-.25.368-.526.447-.842a4.67 4.67 0 0 0 .132-1.145v-.552c-.382-.092-.79-.171-1.21-.224a9.92 9.92 0 0 0-1.237-.079c-.882 0-1.527.171-1.96.526-.435.356-.646.856-.646 1.514 0 .618.158 1.078.487 1.394.316.33.777.487 1.382.487Zm10.566 1.421c-.237 0-.395-.04-.5-.132-.106-.078-.198-.263-.277-.513l-3.092-10.17c-.079-.264-.118-.435-.118-.527 0-.21.105-.329.316-.329h1.289c.25 0 .421.04.513.132.105.079.184.263.263.513l2.21 8.71 2.053-8.71c.066-.263.145-.434.25-.513.106-.08.29-.132.527-.132h1.052c.25 0 .421.04.527.132.105.079.197.263.25.513l2.079 8.816 2.276-8.816c.079-.263.171-.434.263-.513.105-.08.276-.132.513-.132h1.224c.21 0 .329.105.329.329 0 .066-.013.132-.026.21a1.86 1.86 0 0 1-.093.33l-3.17 10.17c-.08.264-.172.435-.277.514-.105.079-.276.131-.5.131h-1.131c-.25 0-.422-.04-.527-.131-.105-.092-.197-.264-.25-.527l-2.04-8.486-2.026 8.473c-.065.263-.144.434-.25.526-.105.093-.289.132-.526.132h-1.131Zm16.908.355a8.707 8.707 0 0 1-2.027-.236c-.658-.158-1.17-.33-1.513-.527-.21-.118-.355-.25-.408-.368a.93.93 0 0 1-.079-.369v-.67c0-.277.105-.409.303-.409.079 0 .158.014.237.04.079.026.197.079.329.131.447.198.934.356 1.447.461.526.105 1.04.158 1.566.158.829 0 1.473-.145 1.92-.434.448-.29.685-.71.685-1.25 0-.369-.118-.671-.355-.921s-.684-.474-1.33-.685l-1.907-.592c-.96-.302-1.671-.75-2.105-1.342-.435-.579-.658-1.223-.658-1.908 0-.552.118-1.04.355-1.46.237-.421.553-.79.947-1.08a4.176 4.176 0 0 1 1.369-.683 5.735 5.735 0 0 1 1.658-.224c.29 0 .592.013.881.053.303.039.58.092.856.144.263.066.513.132.75.21.236.08.42.159.552.238.184.105.316.21.395.329.079.105.118.25.118.434v.618c0 .277-.105.421-.302.421-.106 0-.277-.052-.5-.158-.75-.342-1.592-.513-2.527-.513-.75 0-1.342.119-1.75.369-.408.25-.618.631-.618 1.17 0 .37.131.685.395.935.263.25.75.5 1.447.724l1.869.592c.947.302 1.631.723 2.039 1.263.408.54.605 1.158.605 1.842 0 .566-.118 1.079-.342 1.526a3.538 3.538 0 0 1-.96 1.158c-.408.33-.895.566-1.46.737a6.254 6.254 0 0 1-1.882.276Z\" /></mask><path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"3\" d=\"M11.149 16.092c0 .487.053.882.145 1.171.105.29.236.605.42.947a.575.575 0 0 1 .093.303c0 .132-.08.263-.25.395l-.83.552a.631.631 0 0 1-.341.119c-.132 0-.263-.066-.395-.184a4.073 4.073 0 0 1-.474-.619A10.176 10.176 0 0 1 9.11 18c-1.026 1.21-2.315 1.816-3.868 1.816-1.105 0-1.987-.316-2.632-.948-.644-.631-.973-1.473-.973-2.526 0-1.118.394-2.026 1.197-2.71.803-.685 1.869-1.027 3.224-1.027.447 0 .908.04 1.395.105.486.066.986.171 1.513.29v-.96c0-1-.21-1.698-.619-2.106-.42-.408-1.131-.605-2.144-.605-.461 0-.935.053-1.422.17-.486.12-.96.264-1.42.448a3.77 3.77 0 0 1-.461.171.807.807 0 0 1-.21.04c-.185 0-.277-.132-.277-.408v-.645c0-.21.026-.368.092-.46.066-.092.184-.185.369-.277a7.576 7.576 0 0 1 1.657-.592 7.977 7.977 0 0 1 2.053-.25c1.566 0 2.71.356 3.447 1.066.724.71 1.093 1.79 1.093 3.237v4.263h.026Zm-5.342 2c.434 0 .881-.079 1.355-.237a2.932 2.932 0 0 0 1.25-.842c.21-.25.368-.526.447-.842a4.67 4.67 0 0 0 .132-1.145v-.552c-.382-.092-.79-.171-1.21-.224a9.92 9.92 0 0 0-1.237-.079c-.882 0-1.527.171-1.96.526-.435.356-.646.856-.646 1.514 0 .618.158 1.078.487 1.394.316.33.777.487 1.382.487Zm10.566 1.421c-.237 0-.395-.04-.5-.132-.106-.078-.198-.263-.277-.513l-3.092-10.17c-.079-.264-.118-.435-.118-.527 0-.21.105-.329.316-.329h1.289c.25 0 .421.04.513.132.105.079.184.263.263.513l2.21 8.71 2.053-8.71c.066-.263.145-.434.25-.513.106-.08.29-.132.527-.132h1.052c.25 0 .421.04.527.132.105.079.197.263.25.513l2.079 8.816 2.276-8.816c.079-.263.171-.434.263-.513.105-.08.276-.132.513-.132h1.224c.21 0 .329.105.329.329 0 .066-.013.132-.026.21a1.86 1.86 0 0 1-.093.33l-3.17 10.17c-.08.264-.172.435-.277.514-.105.079-.276.131-.5.131h-1.131c-.25 0-.422-.04-.527-.131-.105-.092-.197-.264-.25-.527l-2.04-8.486-2.026 8.473c-.065.263-.144.434-.25.526-.105.093-.289.132-.526.132h-1.131Zm16.908.355a8.707 8.707 0 0 1-2.027-.236c-.658-.158-1.17-.33-1.513-.527-.21-.118-.355-.25-.408-.368a.93.93 0 0 1-.079-.369v-.67c0-.277.105-.409.303-.409.079 0 .158.014.237.04.079.026.197.079.329.131.447.198.934.356 1.447.461.526.105 1.04.158 1.566.158.829 0 1.473-.145 1.92-.434.448-.29.685-.71.685-1.25 0-.369-.118-.671-.355-.921s-.684-.474-1.33-.685l-1.907-.592c-.96-.302-1.671-.75-2.105-1.342-.435-.579-.658-1.223-.658-1.908 0-.552.118-1.04.355-1.46.237-.421.553-.79.947-1.08a4.176 4.176 0 0 1 1.369-.683 5.735 5.735 0 0 1 1.658-.224c.29 0 .592.013.881.053.303.039.58.092.856.144.263.066.513.132.75.21.236.08.42.159.552.238.184.105.316.21.395.329.079.105.118.25.118.434v.618c0 .277-.105.421-.302.421-.106 0-.277-.052-.5-.158-.75-.342-1.592-.513-2.527-.513-.75 0-1.342.119-1.75.369-.408.25-.618.631-.618 1.17 0 .37.131.685.395.935.263.25.75.5 1.447.724l1.869.592c.947.302 1.631.723 2.039 1.263.408.54.605 1.158.605 1.842 0 .566-.118 1.079-.342 1.526a3.538 3.538 0 0 1-.96 1.158c-.408.33-.895.566-1.46.737a6.254 6.254 0 0 1-1.882.276Z\" mask=\"url(#aws_uikit_icon_a)\" /><path fill=\"currentColor\" stroke=\"currentColor\" stroke-width=\"1.5\" d=\"M19.741 30.408c-5.953 0-11.426-1.773-15.955-4.833a40.544 40.544 0 0 0 16.416 3.49c4.469 0 9.333-.847 13.909-2.583-4.094 2.556-9.579 3.926-14.37 3.926Zm15.617-4.78h-.001Zm-2.959-2.181.038.054.002.004.352.5a135.2 135.2 0 0 0-.287.034c-.42.053-.487-.315-.105-.592Zm0 0 .038.052.002.004.363.5.064-.007a.47.47 0 0 0 .023-.26.555.555 0 0 0-.314-.407 5.212 5.212 0 0 0-.145.097l-.002.001a2.93 2.93 0 0 0-.029.02Zm6.394-.172.003.001c.015.11.022.27.01.482-.023.43-.115.998-.293 1.62a9.29 9.29 0 0 1-.24.723c.08-.323.141-.64.171-.932.024-.23.03-.47 0-.698a1.47 1.47 0 0 0-.284-.724 1.5 1.5 0 0 0-.624-.449 3.077 3.077 0 0 0-.674-.179 7.072 7.072 0 0 0-.964-.076c.26-.026.517-.04.768-.043a7.81 7.81 0 0 1 1.646.138c.214.044.375.093.481.137Z\" /></symbol>"
|
66313
66320
|
});
|
66314
66321
|
var result = _node_modules_svg_sprite_loader_runtime_browser_sprite_build_js__WEBPACK_IMPORTED_MODULE_1___default().add(symbol);
|
66315
66322
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (symbol);
|
@@ -67457,7 +67464,7 @@ var symbol = new (_node_modules_svg_baker_runtime_browser_symbol_js__WEBPACK_IMP
|
|
67457
67464
|
"id": "curly_brackets_uikit_icon",
|
67458
67465
|
"use": "curly_brackets_uikit_icon-usage",
|
67459
67466
|
"viewBox": "0 0 20 20",
|
67460
|
-
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"curly_brackets_uikit_icon\"><path fill=\"currentColor\" d=\"M11.874 16.666v-1.25h2.5c.292 0 .538-.1.74-.302.201-.201.302-.448.302-.74v-2.083c0-.514.156-.972.469-1.375a2.39 2.39 0 0 1 1.198-.833v-.167a2.25 2.25 0 0 1-1.198-.823 2.226 2.226 0 0 1-.469-1.385V5.625c0-.292-.1-.539-.302-.74a1.006 1.006 0 0 0-.74-.302h-2.5v-1.25h2.5c.64 0 1.18.222 1.625.667.445.444.667.986.667 1.625v2.083c0 .292.1.538.302.74.201.201.448.302.74.302h.625v2.5h-.625c-.292 0-.538.1-.74.302a1.006 1.006 0 0 0-.302.74v2.
|
67467
|
+
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"curly_brackets_uikit_icon\"><path fill=\"currentColor\" d=\"M11.874 16.666v-1.25h2.5c.292 0 .538-.1.74-.302.201-.201.302-.448.302-.74v-2.083c0-.514.156-.972.469-1.375a2.39 2.39 0 0 1 1.198-.833v-.167a2.25 2.25 0 0 1-1.198-.823 2.226 2.226 0 0 1-.469-1.385V5.625c0-.292-.1-.539-.302-.74a1.006 1.006 0 0 0-.74-.302h-2.5v-1.25h2.5c.64 0 1.18.222 1.625.667.445.444.667.986.667 1.625v2.083c0 .292.1.538.302.74.201.201.448.302.74.302h.625v2.5h-.625c-.292 0-.538.1-.74.302a1.006 1.006 0 0 0-.302.74v2.083A2.21 2.21 0 0 1 15.999 16a2.211 2.211 0 0 1-1.625.666h-2.5Zm-6.25 0c-.639 0-1.18-.222-1.625-.666a2.211 2.211 0 0 1-.666-1.625V12.29a1.01 1.01 0 0 0-.302-.74 1.006 1.006 0 0 0-.74-.301h-.625v-2.5h.625c.292 0 .538-.101.74-.302.201-.202.302-.448.302-.74V5.625c0-.64.222-1.18.666-1.625a2.211 2.211 0 0 1 1.625-.667h2.5v1.25h-2.5c-.291 0-.538.1-.74.302a1.006 1.006 0 0 0-.301.74v2.083c0 .514-.157.976-.47 1.385a2.25 2.25 0 0 1-1.197.823v.167c.486.153.885.43 1.198.833.312.403.469.861.469 1.375v2.084c0 .291.1.538.302.74.201.2.448.301.74.301h2.5v1.25h-2.5Z\" /></symbol>"
|
67461
67468
|
});
|
67462
67469
|
var result = _node_modules_svg_sprite_loader_runtime_browser_sprite_build_js__WEBPACK_IMPORTED_MODULE_1___default().add(symbol);
|
67463
67470
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (symbol);
|
@@ -68633,7 +68640,7 @@ var symbol = new (_node_modules_svg_baker_runtime_browser_symbol_js__WEBPACK_IMP
|
|
68633
68640
|
"id": "fintech_uikit_icon",
|
68634
68641
|
"use": "fintech_uikit_icon-usage",
|
68635
68642
|
"viewBox": "0 0 20 20",
|
68636
|
-
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"fintech_uikit_icon\"><path fill=\"
|
68643
|
+
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"fintech_uikit_icon\"><path fill=\"currentColor\" d=\"M10.833 5.833H9.167v.834h-.834A.833.833 0 0 0 7.5 7.5V10a.833.833 0 0 0 .833.833h2.5v.834H7.5v1.666h1.667v.834h1.666v-.834h.834a.833.833 0 0 0 .833-.833V10a.833.833 0 0 0-.833-.833h-2.5v-.834H12.5V6.667h-1.667v-.834Z\" /><path fill=\"currentColor\" d=\"M18.333.833h-1.666v2.155l-1.545 1.544a7.465 7.465 0 0 0-4.289-1.983V.833H9.166V2.55a7.463 7.463 0 0 0-4.289 1.983L3.333 2.988V.833H1.666v2.845l2.12 2.12a7.5 7.5 0 0 0 0 8.404l-2.12 2.12v2.845h1.667v-2.155l1.544-1.545a7.462 7.462 0 0 0 4.29 1.984v1.716h1.666V17.45a7.465 7.465 0 0 0 4.29-1.984l1.543 1.545v2.155h1.667v-2.845l-2.12-2.12a7.5 7.5 0 0 0 0-8.404l2.12-2.12V.833Zm-8.333 15A5.834 5.834 0 1 1 15.833 10 5.84 5.84 0 0 1 10 15.833Z\" /></symbol>"
|
68637
68644
|
});
|
68638
68645
|
var result = _node_modules_svg_sprite_loader_runtime_browser_sprite_build_js__WEBPACK_IMPORTED_MODULE_1___default().add(symbol);
|
68639
68646
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (symbol);
|
@@ -70593,7 +70600,7 @@ var symbol = new (_node_modules_svg_baker_runtime_browser_symbol_js__WEBPACK_IMP
|
|
70593
70600
|
"id": "res_uikit_icon",
|
70594
70601
|
"use": "res_uikit_icon-usage",
|
70595
70602
|
"viewBox": "0 0 20 20",
|
70596
|
-
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"res_uikit_icon\"><path fill=\"
|
70603
|
+
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"res_uikit_icon\"><path fill=\"currentColor\" d=\"m17.96 6.79-7.5-4.987a.833.833 0 0 0-.917 0l-7.5 4.987a.89.89 0 0 0 .199 1.556l1.097.366v7.111a.833.833 0 0 0 .609.834l5.833 1.666a.68.68 0 0 0 .225 0 .785.785 0 0 0 .117.01.87.87 0 0 0 .114 0l5.833-1.667a.834.834 0 0 0 .6-.834V8.666l1.097-.362a.857.857 0 0 0 .19-1.513l.002-.001Zm-7.952-3.266 5.599 3.726L10 9.122 4.405 7.257l5.603-3.733Zm0 13.136-5-1.455v-5.98h.018L10 10.878l5.008-1.666v6.029l-5 1.418Z\" /></symbol>"
|
70597
70604
|
});
|
70598
70605
|
var result = _node_modules_svg_sprite_loader_runtime_browser_sprite_build_js__WEBPACK_IMPORTED_MODULE_1___default().add(symbol);
|
70599
70606
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (symbol);
|
@@ -70705,7 +70712,7 @@ var symbol = new (_node_modules_svg_baker_runtime_browser_symbol_js__WEBPACK_IMP
|
|
70705
70712
|
"id": "retail_research_uikit_icon",
|
70706
70713
|
"use": "retail_research_uikit_icon-usage",
|
70707
70714
|
"viewBox": "0 0 20 20",
|
70708
|
-
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"retail_research_uikit_icon\"><path fill=\"
|
70715
|
+
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"retail_research_uikit_icon\"><path fill=\"currentColor\" d=\"M17.42 7.739a3.888 3.888 0 0 0-.222-.271 4.584 4.584 0 0 0-5.02-1.314 4.324 4.324 0 0 0-.994.5 4.215 4.215 0 0 0-.415.309v.004a4.53 4.53 0 0 0-1.567 2.736 4.737 4.737 0 0 0-.064.769 4.592 4.592 0 0 0 5.456 4.506 4.529 4.529 0 0 0 1.507-.573 4.92 4.92 0 0 0 .286-.192 4.588 4.588 0 0 0 1.033-6.474Zm-3.689 5.791a3.056 3.056 0 0 1-2.005-5.368 3.059 3.059 0 0 1 4.171.15 3.08 3.08 0 0 1 .852 1.647 3.064 3.064 0 0 1-2.155 3.444c-.28.087-.57.13-.863.127Zm-2.004-5.37h-.814a2.256 2.256 0 0 1-.007-.166l-.136-1.029.132 1.022a1.763 1.763 0 0 1-1.7 1.715 4.737 4.737 0 0 0-.063.768c-.001.25.019.497.06.742a3.268 3.268 0 0 0 1.492-.391 3.057 3.057 0 0 1 1.036-2.66Z\" /><path fill=\"currentColor\" d=\"m16.567 12.225-1.082 1.082 3.284 3.285 1.082-1.082-3.284-3.285ZM4.105 11.213A3.276 3.276 0 0 1 .833 7.942v-.12l2.091-6.406h5.31l-.858 6.578a3.276 3.276 0 0 1-3.271 3.219ZM2.344 8.05a1.764 1.764 0 0 0 3.525-.11l.006-.096.643-4.921h-2.5L2.344 8.05Z\" /><path fill=\"currentColor\" d=\"m7.548 6.654-.147 1.145.151-1.145h-.004Zm1.654 3.048a.345.345 0 0 1-.064.004 1.77 1.77 0 0 1-1.75-1.545h-.022a3.232 3.232 0 0 1-.746 1.869 3.27 3.27 0 0 0 2.517 1.183h.06a4.384 4.384 0 0 1-.06-.742c0-.258.023-.515.065-.769Zm3.045-3.048-.068-.5-.417-3.23-.195-1.507h-4.85l-.196 1.508-.49 3.73-.154 1.19-.008.099a3.272 3.272 0 0 0 3.27 3.27H9.2a3.267 3.267 0 0 0 1.492-.391 3.057 3.057 0 0 1 1.036-2.66c.198-.176.418-.323.656-.438l-.137-1.071ZM9.202 9.702a.345.345 0 0 1-.064.004 1.77 1.77 0 0 1-1.76-1.719l.014-.12L7.4 7.8l.15-1.145.487-3.73h2.204l.486 3.73.042.309v.004l.131 1.02c0 .059-.003.117-.01.174a1.762 1.762 0 0 1-1.688 1.541Z\" /><path fill=\"currentColor\" d=\"M12.413 7.943c0 .071-.004.147-.008.218h.023a1.38 1.38 0 0 1-.015-.218Zm-1.345 1.024c.171-.304.394-.577.66-.806h-.814c.018.274.07.545.153.806ZM17.42 7.74l-2.065-6.323h-5.31l.196 1.507.486 3.73h.004l.038.31v.004l.135 1.028c0 .057.004.11.008.167.018.274.07.545.154.806a3.02 3.02 0 0 1 .66-.806 2.88 2.88 0 0 1 .655-.437l-.136-1.07-.068-.5-.416-3.23h2.5l1.059 3.241.158.49.456 1.398-.011.11a.976.976 0 0 1-.027.15c.447.448.744 1.023.852 1.647a3.244 3.244 0 0 0 .697-2.016v-.12l-.025-.086Zm-5.016.422h.023a1.38 1.38 0 0 1-.015-.218c0 .071-.004.147-.008.218Zm3.698 4.238v6.338H1.968v-8.693a.75.75 0 0 1 .754-.754c.145 0 .288.043.41.12l.03.023a.75.75 0 0 1 .313.61v7.186h11.12v-3.828a3.022 3.022 0 0 0 1.507-1.002Z\" /><path fill=\"currentColor\" d=\"M12.413 7.942c-.001.074.004.147.015.22h-.023c.004-.072.008-.148.008-.22Z\" /><path fill=\"currentColor\" d=\"M17.202 7.407c0 .02 0 .04-.004.06a.752.752 0 0 1-.75.694h-.712a3.059 3.059 0 0 0-4.009 0H2.465a.754.754 0 1 1 0-1.508H16.45a.75.75 0 0 1 .753.754Z\" /></symbol>"
|
70709
70716
|
});
|
70710
70717
|
var result = _node_modules_svg_sprite_loader_runtime_browser_sprite_build_js__WEBPACK_IMPORTED_MODULE_1___default().add(symbol);
|
70711
70718
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (symbol);
|
@@ -70789,7 +70796,7 @@ var symbol = new (_node_modules_svg_baker_runtime_browser_symbol_js__WEBPACK_IMP
|
|
70789
70796
|
"id": "safe_uikit_icon",
|
70790
70797
|
"use": "safe_uikit_icon-usage",
|
70791
70798
|
"viewBox": "0 0 20 20",
|
70792
|
-
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"safe_uikit_icon\"><path fill=\"
|
70799
|
+
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"safe_uikit_icon\"><path fill=\"currentColor\" d=\"M14.167 20H8.708A3.364 3.364 0 0 1 6.3 18.975L.217 12.633l1.725-1.525a1.667 1.667 0 0 1 1.883-.225l2.008 1.067V3.992A2.083 2.083 0 0 1 8.342 1.95 2.079 2.079 0 0 1 12.133.917c.25-.101.515-.152.784-.15A2.083 2.083 0 0 1 15 2.85v.233a2.083 2.083 0 0 1 2.5 2.042v11.542A3.333 3.333 0 0 1 14.167 20Zm-11.55-7.267L7.5 17.817a1.683 1.683 0 0 0 1.2.516h5.467a1.672 1.672 0 0 0 1.667-1.666V5.125a.416.416 0 1 0-.834 0V10h-1.666V2.85a.416.416 0 1 0-.834 0V10h-1.666V2.092a.416.416 0 1 0-.834 0V10H8.333V3.992a.417.417 0 0 0-.833 0v10.725l-4.458-2.359-.425.375Z\" /><path fill=\"currentColor\" d=\"m11.66 16.244-.363-.327c-.327-.297-.57-.517-.726-.662a10.875 10.875 0 0 1-.561-.568 4.595 4.595 0 0 1-.474-.573 2.687 2.687 0 0 1-.259-.51 1.542 1.542 0 0 1-.11-.568 1.36 1.36 0 0 1 1.35-1.37h.02c.452 0 .827.483 1.124.833.297-.35.672-.833 1.126-.833a1.332 1.332 0 0 1 .983.399 1.318 1.318 0 0 1 .398.971 1.496 1.496 0 0 1-.117.569 3.2 3.2 0 0 1-.258.509 4.01 4.01 0 0 1-.474.573c-.222.235-.41.424-.562.568-.152.144-.396.369-.731.674l-.365.315Z\" /></symbol>"
|
70793
70800
|
});
|
70794
70801
|
var result = _node_modules_svg_sprite_loader_runtime_browser_sprite_build_js__WEBPACK_IMPORTED_MODULE_1___default().add(symbol);
|
70795
70802
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (symbol);
|
@@ -71237,7 +71244,7 @@ var symbol = new (_node_modules_svg_baker_runtime_browser_symbol_js__WEBPACK_IMP
|
|
71237
71244
|
"id": "speed_uikit_icon",
|
71238
71245
|
"use": "speed_uikit_icon-usage",
|
71239
71246
|
"viewBox": "0 0 19 17",
|
71240
|
-
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 19 17\" id=\"speed_uikit_icon\"><path fill=\"
|
71247
|
+
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 19 17\" id=\"speed_uikit_icon\"><path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M14.307 5.085a6.875 6.875 0 0 0-9.723 9.722L3.111 16.28a8.958 8.958 0 0 1 12.67-12.669l-.644.644.643-.644a8.958 8.958 0 0 1 0 12.67l-1.473-1.474a6.875 6.875 0 0 0 0-9.722Z\" clip-rule=\"evenodd\" /><path fill=\"currentColor\" d=\"M10.314 10.324a1.047 1.047 0 0 1-.66.421.982.982 0 0 1-.748-.162.982.982 0 0 1-.354-.679 1.04 1.04 0 0 1 .233-.747c.355-.466 3.978-3.627 3.978-3.627s-2.094 4.329-2.45 4.794Z\" /><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-width=\"2\" d=\"M14.392 9.946h2.916m-15.833 0H4.39m5.002-4.883V2.029\" /></symbol>"
|
71241
71248
|
});
|
71242
71249
|
var result = _node_modules_svg_sprite_loader_runtime_browser_sprite_build_js__WEBPACK_IMPORTED_MODULE_1___default().add(symbol);
|
71243
71250
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (symbol);
|
@@ -71629,7 +71636,7 @@ var symbol = new (_node_modules_svg_baker_runtime_browser_symbol_js__WEBPACK_IMP
|
|
71629
71636
|
"id": "target_uikit_icon",
|
71630
71637
|
"use": "target_uikit_icon-usage",
|
71631
71638
|
"viewBox": "0 0 20 20",
|
71632
|
-
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"target_uikit_icon\"><g fill=\"
|
71639
|
+
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"target_uikit_icon\"><g fill=\"currentColor\" fill-rule=\"evenodd\" clip-path=\"url(#target_uikit_icon_a)\" clip-rule=\"evenodd\"><path d=\"M9.98 11.303a2.292 2.292 0 1 1-1.942-2.567l1.59-1.195a3.958 3.958 0 1 0 1.938 2.57L9.98 11.303Z\" /><path d=\"M13.316 8.75a6.042 6.042 0 1 1-1.954-2.558l1.373-1.032a7.708 7.708 0 1 0 1.95 2.561l-1.37 1.03Z\" /><path d=\"m7.15 10.33 7.642-5.747.998 1.335-7.642 5.748-.998-1.335Z\" /><path d=\"M17.635 1.22v2.997a.823.823 0 0 1-.335.666l-2.75 2.011a.825.825 0 0 1-.867.065.845.845 0 0 1-.457-.75V3.214l1.66.019v1.344l1.09-.798V1.201l1.66.019Z\" /><path d=\"m19.904 4.321-2.856-.907a.823.823 0 0 0-.736.118l-2.75 2.012a.825.825 0 0 0-.324.807c.053.31.276.567.576.662l2.856.908.485-1.588-1.281-.407 1.09-.797 2.456.78.484-1.588Z\" /></g><defs><clipPath id=\"target_uikit_icon_a\"><path fill=\"#fff\" d=\"M0 0h20v20H0z\" /></clipPath></defs></symbol>"
|
71633
71640
|
});
|
71634
71641
|
var result = _node_modules_svg_sprite_loader_runtime_browser_sprite_build_js__WEBPACK_IMPORTED_MODULE_1___default().add(symbol);
|
71635
71642
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (symbol);
|
@@ -71685,7 +71692,7 @@ var symbol = new (_node_modules_svg_baker_runtime_browser_symbol_js__WEBPACK_IMP
|
|
71685
71692
|
"id": "testing_uikit_icon",
|
71686
71693
|
"use": "testing_uikit_icon-usage",
|
71687
71694
|
"viewBox": "0 0 19 20",
|
71688
|
-
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 19 20\" id=\"testing_uikit_icon\"><path fill=\"
|
71695
|
+
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 19 20\" id=\"testing_uikit_icon\"><path fill=\"currentColor\" d=\"M.792 18.333V1.666H18.21v16.667H.792Zm1.583-1.667h14.25v-10H2.375v10ZM16.625 5V3.333H2.375V5h14.25ZM5.773 11.422l1.12-1.177 1.816 1.91 3.398-3.578 1.119 1.179-4.517 4.756-2.936-3.09Z\" /></symbol>"
|
71689
71696
|
});
|
71690
71697
|
var result = _node_modules_svg_sprite_loader_runtime_browser_sprite_build_js__WEBPACK_IMPORTED_MODULE_1___default().add(symbol);
|
71691
71698
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (symbol);
|
@@ -71825,7 +71832,7 @@ var symbol = new (_node_modules_svg_baker_runtime_browser_symbol_js__WEBPACK_IMP
|
|
71825
71832
|
"id": "top1_uikit_icon",
|
71826
71833
|
"use": "top1_uikit_icon-usage",
|
71827
71834
|
"viewBox": "0 0 21 20",
|
71828
|
-
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 21 20\" id=\"top1_uikit_icon\"><path fill=\"
|
71835
|
+
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 21 20\" id=\"top1_uikit_icon\"><path fill=\"currentColor\" d=\"M10.722 11.06v-.649h-.574l.23-1.244H9.69l-.23 1.244H8.8l.23-1.244h-.688l-.23 1.244H7.38v.65h.619l-.143.789h-.689v.655h.574l-.23 1.245H8.2l.229-1.245h.66l-.23 1.245h.688l.23-1.245h.728v-.655H9.89l.144-.79h.688Zm-1.377 0-.143.79h-.66l.144-.79h.66Zm4.071 2.641V9.514h-1.909v.91h.66v3.278h1.25Z\" /><path fill=\"currentColor\" d=\"M1.333 18.333V1.667h18.334v16.666H1.333ZM3 16.667h15v-10H3v10ZM18 5V3.333H3V5h15Z\" /></symbol>"
|
71829
71836
|
});
|
71830
71837
|
var result = _node_modules_svg_sprite_loader_runtime_browser_sprite_build_js__WEBPACK_IMPORTED_MODULE_1___default().add(symbol);
|
71831
71838
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (symbol);
|
@@ -71853,7 +71860,7 @@ var symbol = new (_node_modules_svg_baker_runtime_browser_symbol_js__WEBPACK_IMP
|
|
71853
71860
|
"id": "transparency_uikit_icon",
|
71854
71861
|
"use": "transparency_uikit_icon-usage",
|
71855
71862
|
"viewBox": "0 0 21 20",
|
71856
|
-
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 21 20\" id=\"transparency_uikit_icon\"><path fill=\"
|
71863
|
+
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 21 20\" id=\"transparency_uikit_icon\"><path fill=\"currentColor\" d=\"M9.667 17.5a8.333 8.333 0 1 1 0-16.667 8.333 8.333 0 0 1 0 16.667Zm0-15a6.667 6.667 0 1 0 0 13.333 6.667 6.667 0 0 0 0-13.333Z\" /><path fill=\"currentColor\" d=\"m15.256 13.577-1.178 1.179 4.41 4.41 1.179-1.178-4.41-4.41Zm-5.589-.244c-3.433 0-5.625-3.583-5.715-3.737a.83.83 0 0 1 0-.858C4.043 8.583 6.234 5 9.667 5c3.432 0 5.622 3.583 5.714 3.738a.834.834 0 0 1 0 .858c-.092.154-2.283 3.737-5.714 3.737ZM5.678 9.167c.608.814 2.095 2.5 3.989 2.5 1.893 0 3.38-1.685 3.988-2.5-.608-.815-2.096-2.5-3.988-2.5-1.893 0-3.381 1.685-3.989 2.5Z\" /><path fill=\"currentColor\" d=\"M9.667 10.833a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5Zm0-3.333a.833.833 0 1 0 0 1.667.833.833 0 0 0 0-1.667Z\" /></symbol>"
|
71857
71864
|
});
|
71858
71865
|
var result = _node_modules_svg_sprite_loader_runtime_browser_sprite_build_js__WEBPACK_IMPORTED_MODULE_1___default().add(symbol);
|
71859
71866
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (symbol);
|
@@ -71909,7 +71916,7 @@ var symbol = new (_node_modules_svg_baker_runtime_browser_symbol_js__WEBPACK_IMP
|
|
71909
71916
|
"id": "unblock_uikit_icon",
|
71910
71917
|
"use": "unblock_uikit_icon-usage",
|
71911
71918
|
"viewBox": "0 0 20 20",
|
71912
|
-
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"unblock_uikit_icon\"><g fill=\"
|
71919
|
+
"content": "<symbol xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 20 20\" id=\"unblock_uikit_icon\"><g fill=\"currentColor\" clip-path=\"url(#unblock_uikit_icon_a)\"><path fill-rule=\"evenodd\" d=\"M14.856 10.275H5v5.065c0 .92.746 1.667 1.667 1.667h6.522c.92 0 1.667-.747 1.667-1.667v-5.065ZM3.333 8.608v6.732a3.333 3.333 0 0 0 3.334 3.333h6.522a3.333 3.333 0 0 0 3.333-3.333V8.608H3.334Z\" clip-rule=\"evenodd\" /><path fill-rule=\"evenodd\" d=\"M9.658 2.5a3.628 3.628 0 0 0-2.887 1.41.833.833 0 1 1-1.322-1.015A5.294 5.294 0 0 1 9.66.833c2.891 0 5.267 2.299 5.267 5.172v2.603a.833.833 0 0 1-1.666 0V6.005c0-1.919-1.595-3.505-3.602-3.505Z\" clip-rule=\"evenodd\" /><circle cx=\"9.973\" cy=\"12.298\" r=\"1.378\" /><rect width=\"1.838\" height=\"3.216\" x=\"9.054\" y=\"12.298\" rx=\".919\" /></g><defs><clipPath id=\"unblock_uikit_icon_a\"><path fill=\"currentColor\" d=\"M0 0h20v20H0z\" /></clipPath></defs></symbol>"
|
71913
71920
|
});
|
71914
71921
|
var result = _node_modules_svg_sprite_loader_runtime_browser_sprite_build_js__WEBPACK_IMPORTED_MODULE_1___default().add(symbol);
|
71915
71922
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (symbol);
|