@widergy/energy-ui 3.84.0 → 3.85.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 CHANGED
@@ -1,3 +1,22 @@
1
+ # [3.85.0](https://github.com/widergy/energy-ui/compare/v3.84.1...v3.85.0) (2025-07-07)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * minimatch node 18 resolutions ([#640](https://github.com/widergy/energy-ui/issues/640)) ([84581bd](https://github.com/widergy/energy-ui/commit/84581bd114719d74fb8169915986ee17833e072b))
7
+
8
+
9
+ ### Features
10
+
11
+ * [SFPE-451] add ut icon to ut status ([#637](https://github.com/widergy/energy-ui/issues/637)) ([03c71c3](https://github.com/widergy/energy-ui/commit/03c71c3b02d71400cde10410bc3dbaf55ebd5f5b))
12
+
13
+ ## [3.84.1](https://github.com/widergy/energy-ui/compare/v3.84.0...v3.84.1) (2025-06-30)
14
+
15
+
16
+ ### Bug Fixes
17
+
18
+ * [OUG-8797] fix select ([#628](https://github.com/widergy/energy-ui/issues/628)) ([b3b5198](https://github.com/widergy/energy-ui/commit/b3b51988b1f9a547b919c5098f8e4327e2fb7559))
19
+
1
20
  # [3.84.0](https://github.com/widergy/energy-ui/compare/v3.83.1...v3.84.0) (2025-06-27)
2
21
 
3
22
 
@@ -1,3 +1,3 @@
1
1
  .hidden {
2
- opacity: 0;
2
+ display: none;
3
3
  }
@@ -13,7 +13,7 @@ const baseCheckBoxTheme = theme => ({
13
13
  alignItems: 'center !important',
14
14
  display: 'flex',
15
15
  flexWrap: 'wrap',
16
- rowGap: '12px'
16
+ gap: '0px'
17
17
  },
18
18
  iconContainer: {
19
19
  border: "2px solid ".concat(theme.Palette.gray['04']),
@@ -3,7 +3,8 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- exports.VARIANTS = exports.TYPES = exports.SIZES = exports.DEFAULT_PROPS = void 0;
6
+ exports.VARIANTS = exports.TYPES = exports.SIZES = exports.ICON_SIZE = exports.DEFAULT_PROPS = void 0;
7
+ const ICON_SIZE = exports.ICON_SIZE = 20;
7
8
  const SIZES = exports.SIZES = {
8
9
  large: 'body',
9
10
  medium: 'small'
@@ -4,14 +4,16 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.default = void 0;
7
- var _react = _interopRequireDefault(require("react"));
7
+ var _react = _interopRequireWildcard(require("react"));
8
8
  var _propTypes = require("prop-types");
9
9
  var _UTLabel = _interopRequireDefault(require("../UTLabel"));
10
10
  var _WithTheme = _interopRequireDefault(require("../WithTheme"));
11
11
  var _UTSkeleton = _interopRequireDefault(require("../UTSkeleton"));
12
12
  var _theme = require("./theme");
13
13
  var _constants = require("./constants");
14
+ var _utils = require("./utils");
14
15
  function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
16
+ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
15
17
  /* eslint-disable react/no-children-prop */
16
18
 
17
19
  const UTStatus = _ref => {
@@ -28,16 +30,23 @@ const UTStatus = _ref => {
28
30
  withoutIcon
29
31
  } = _ref;
30
32
  const StatusIcon = Icon !== null && Icon !== void 0 ? Icon : (0, _theme.defaultIconMapper)(variant);
33
+ const {
34
+ IconComponent,
35
+ ...iconProps
36
+ } = (0, _react.useMemo)(() => (0, _utils.getIconProps)((0, _theme.validateProps)({
37
+ className: classes.icon,
38
+ Icon: StatusIcon,
39
+ type,
40
+ variant
41
+ })), [StatusIcon, type, variant, classes.icon]);
31
42
  return /*#__PURE__*/_react.default.createElement(_UTSkeleton.default, null, /*#__PURE__*/_react.default.createElement("div", {
32
43
  className: "".concat(classes.root, " ").concat(className),
33
44
  title: title
34
- }, withoutIcon ? null : /*#__PURE__*/_react.default.createElement(StatusIcon, {
35
- className: classes.icon
36
- }), /*#__PURE__*/_react.default.createElement(_UTLabel.default, {
45
+ }, withoutIcon ? null : /*#__PURE__*/_react.default.createElement(IconComponent, iconProps), /*#__PURE__*/_react.default.createElement(_UTLabel.default, {
37
46
  className: classes.label,
38
47
  dataTestId: labelDataTestId,
39
48
  variant: _constants.SIZES[size] || _constants.SIZES[_constants.DEFAULT_PROPS.size],
40
- colorTheme: (0, _theme.getLabelTheme)((0, _theme.validateProps)({
49
+ colorTheme: (0, _theme.getColorTheme)((0, _theme.validateProps)({
41
50
  type,
42
51
  variant
43
52
  })),
@@ -49,6 +58,7 @@ UTStatus.propTypes = {
49
58
  classes: (0, _propTypes.objectOf)(_propTypes.string),
50
59
  className: _propTypes.string,
51
60
  Icon: _propTypes.elementType,
61
+ iconProps: _propTypes.object,
52
62
  labelDataTestId: _propTypes.string,
53
63
  size: _propTypes.string,
54
64
  title: _propTypes.string,
@@ -3,85 +3,9 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
- exports.validateProps = exports.retrieveStyle = exports.getLabelTheme = exports.defaultIconMapper = void 0;
7
- var _react = _interopRequireDefault(require("react"));
6
+ exports.validateProps = exports.retrieveStyle = exports.getColorTheme = exports.defaultIconMapper = void 0;
7
+ var _Palette = require("../../constants/Palette");
8
8
  var _constants = require("./constants");
9
- function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
10
- var ErrorIcon = function ErrorIcon(props) {
11
- return /*#__PURE__*/_react.default.createElement("svg", props, /*#__PURE__*/_react.default.createElement("path", {
12
- fillRule: "evenodd",
13
- clipRule: "evenodd",
14
- d: "M4.41 4.41a.833.833 0 0 1 1.18 0L10 8.823l4.41-4.411a.833.833 0 1 1 1.18 1.178L11.177 10l4.411 4.41a.833.833 0 0 1-1.178 1.18L10 11.178l-4.41 4.41a.833.833 0 1 1-1.18-1.178L8.823 10 4.41 5.588a.833.833 0 0 1 0-1.178Z",
15
- fill: "#091E42"
16
- }));
17
- };
18
- ErrorIcon.defaultProps = {
19
- width: "20",
20
- height: "20",
21
- viewBox: "0 0 20 20",
22
- fill: "none",
23
- xmlns: "http://www.w3.org/2000/svg"
24
- };
25
- var InfoIcon = function InfoIcon(props) {
26
- return /*#__PURE__*/_react.default.createElement("svg", props, /*#__PURE__*/_react.default.createElement("path", {
27
- fillRule: "evenodd",
28
- clipRule: "evenodd",
29
- d: "M10 3.333a6.667 6.667 0 1 0 0 13.334 6.667 6.667 0 0 0 0-13.334ZM1.667 10a8.333 8.333 0 1 1 16.666 0 8.333 8.333 0 0 1-16.666 0Zm7.5-3.333c0-.46.373-.834.833-.834h.008a.833.833 0 0 1 0 1.667H10a.833.833 0 0 1-.833-.833ZM8.333 10c0-.46.373-.833.834-.833H10c.46 0 .833.373.833.833v2.5a.833.833 0 0 1 0 1.667H10a.833.833 0 0 1-.833-.834v-2.5A.833.833 0 0 1 8.333 10Z",
30
- fill: "#091E42"
31
- }));
32
- };
33
- InfoIcon.defaultProps = {
34
- width: "20",
35
- height: "20",
36
- viewBox: "0 0 20 20",
37
- fill: "none",
38
- xmlns: "http://www.w3.org/2000/svg"
39
- };
40
- var SuccessIcon = function SuccessIcon(props) {
41
- return /*#__PURE__*/_react.default.createElement("svg", props, /*#__PURE__*/_react.default.createElement("path", {
42
- fillRule: "evenodd",
43
- clipRule: "evenodd",
44
- d: "M17.256 5.244a.833.833 0 0 1 0 1.179l-8.333 8.333a.833.833 0 0 1-1.179 0l-4.167-4.167a.833.833 0 0 1 1.179-1.178l3.577 3.577 7.744-7.744a.833.833 0 0 1 1.179 0Z",
45
- fill: "#091E42"
46
- }));
47
- };
48
- SuccessIcon.defaultProps = {
49
- width: "20",
50
- height: "20",
51
- viewBox: "0 0 20 20",
52
- fill: "none",
53
- xmlns: "http://www.w3.org/2000/svg"
54
- };
55
- var UnassignedIcon = function UnassignedIcon(props) {
56
- return /*#__PURE__*/_react.default.createElement("svg", props, /*#__PURE__*/_react.default.createElement("path", {
57
- fillRule: "evenodd",
58
- clipRule: "evenodd",
59
- d: "M4.167 4.167a.833.833 0 1 0 0 1.666h11.666a.833.833 0 0 0 0-1.666H4.167ZM1.667 5a2.5 2.5 0 0 1 2.5-2.5h11.666a2.5 2.5 0 0 1 .834 4.858V15a2.5 2.5 0 0 1-2.5 2.5H5.833a2.5 2.5 0 0 1-2.5-2.5V7.358A2.501 2.501 0 0 1 1.667 5ZM5 7.5V15a.833.833 0 0 0 .833.833h8.334A.833.833 0 0 0 15 15V7.5H5ZM7.5 10c0-.46.373-.833.833-.833h3.334a.833.833 0 0 1 0 1.666H8.333A.833.833 0 0 1 7.5 10Z",
60
- fill: "#091E42"
61
- }));
62
- };
63
- UnassignedIcon.defaultProps = {
64
- width: "20",
65
- height: "20",
66
- viewBox: "0 0 20 20",
67
- fill: "none",
68
- xmlns: "http://www.w3.org/2000/svg"
69
- };
70
- var WarningIcon = function WarningIcon(props) {
71
- return /*#__PURE__*/_react.default.createElement("svg", props, /*#__PURE__*/_react.default.createElement("path", {
72
- fillRule: "evenodd",
73
- clipRule: "evenodd",
74
- d: "M8.722 1.987a2.5 2.5 0 0 1 3.453.935l5.913 10.202c.02.034.037.069.051.105a2.5 2.5 0 0 1-2.3 3.438H4.167c-.016 0-.03 0-.046-.002a.855.855 0 0 1-.089 0 2.499 2.499 0 0 1-2.187-3.437.83.83 0 0 1 .05-.104L7.81 2.922a2.5 2.5 0 0 1 .913-.935ZM4.121 15 4.167 15H15.83a.833.833 0 0 0 .781-1.1L10.73 3.75l-.008-.014a.833.833 0 0 0-1.458 0l-.009.014-5.882 10.15a.833.833 0 0 0 .746 1.1h.003ZM10 6.667c.46 0 .833.373.833.833v1.667a.833.833 0 0 1-1.666 0V7.5c0-.46.373-.833.833-.833Zm0 5c.46 0 .833.373.833.833v.008a.833.833 0 0 1-1.666 0V12.5c0-.46.373-.833.833-.833Z",
75
- fill: "#091E42"
76
- }));
77
- };
78
- WarningIcon.defaultProps = {
79
- width: "20",
80
- height: "20",
81
- viewBox: "0 0 20 20",
82
- fill: "none",
83
- xmlns: "http://www.w3.org/2000/svg"
84
- };
85
9
  const getBackgroundColor = _ref => {
86
10
  let {
87
11
  theme,
@@ -103,21 +27,23 @@ const getIconFill = _ref2 => {
103
27
  }[type];
104
28
  };
105
29
  const defaultIconMapper = variant => ({
106
- [_constants.VARIANTS.error]: ErrorIcon,
107
- [_constants.VARIANTS.information]: InfoIcon,
108
- [_constants.VARIANTS.success]: SuccessIcon,
109
- [_constants.VARIANTS.unassigned]: UnassignedIcon,
110
- [_constants.VARIANTS.warning]: WarningIcon
30
+ [_constants.VARIANTS.error]: 'IconX',
31
+ [_constants.VARIANTS.information]: 'IconInfoCircle',
32
+ [_constants.VARIANTS.success]: 'IconCheck',
33
+ [_constants.VARIANTS.unassigned]: 'IconArchive',
34
+ [_constants.VARIANTS.warning]: 'IconAlertTriangle'
111
35
  })[variant];
112
36
  exports.defaultIconMapper = defaultIconMapper;
113
37
  const validateProps = _ref3 => {
114
38
  let {
115
39
  type,
116
- variant
40
+ variant,
41
+ ...props
117
42
  } = _ref3;
118
43
  return {
119
44
  type: _constants.TYPES[type] || _constants.TYPES[_constants.DEFAULT_PROPS.type],
120
- variant: _constants.VARIANTS[variant] || _constants.VARIANTS[_constants.DEFAULT_PROPS.variant]
45
+ variant: _constants.VARIANTS[variant] || _constants.VARIANTS[_constants.DEFAULT_PROPS.variant],
46
+ ...props
121
47
  };
122
48
  };
123
49
  exports.validateProps = validateProps;
@@ -170,15 +96,15 @@ const retrieveStyle = _ref4 => {
170
96
  };
171
97
  };
172
98
  exports.retrieveStyle = retrieveStyle;
173
- const getLabelTheme = _ref5 => {
99
+ const getColorTheme = _ref5 => {
174
100
  let {
175
101
  type,
176
102
  variant
177
103
  } = _ref5;
178
104
  return {
179
- [_constants.TYPES.default]: 'dark',
180
- [_constants.TYPES.light]: variant !== _constants.VARIANTS.unassigned ? variant : 'gray',
181
- [_constants.TYPES.negative]: 'light'
105
+ [_constants.TYPES.default]: _Palette.COLOR_THEMES.dark,
106
+ [_constants.TYPES.light]: variant !== _constants.VARIANTS.unassigned ? variant : _Palette.COLOR_THEMES.gray,
107
+ [_constants.TYPES.negative]: _Palette.COLOR_THEMES.light
182
108
  }[type];
183
109
  };
184
- exports.getLabelTheme = getLabelTheme;
110
+ exports.getColorTheme = getColorTheme;
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.getIconProps = void 0;
7
+ var _componentUtils = require("../../utils/componentUtils");
8
+ var _UTIcon = _interopRequireDefault(require("../UTIcon"));
9
+ var _constants = require("./constants");
10
+ var _theme = require("./theme");
11
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
12
+ const getIconProps = _ref => {
13
+ let {
14
+ className,
15
+ Icon,
16
+ type,
17
+ variant
18
+ } = _ref;
19
+ return {
20
+ IconComponent: (0, _componentUtils.isUTIcon)(Icon) ? _UTIcon.default : Icon,
21
+ ...((0, _componentUtils.isUTIcon)(Icon) ? {
22
+ colorTheme: (0, _theme.getColorTheme)({
23
+ type,
24
+ variant
25
+ }),
26
+ name: Icon,
27
+ size: _constants.ICON_SIZE
28
+ } : {
29
+ className
30
+ })
31
+ };
32
+ };
33
+ exports.getIconProps = getIconProps;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@widergy/energy-ui",
3
- "version": "3.84.0",
3
+ "version": "3.85.0",
4
4
  "description": "Widergy Web Components",
5
5
  "author": "widergy",
6
6
  "license": "MIT",
@@ -95,6 +95,7 @@
95
95
  "resolutions": {
96
96
  "@babel/preset-env": "^7.8.7",
97
97
  "caniuse-lite": "1.0.30001632",
98
+ "minimatch": "9.0.5",
98
99
  "react-error-overlay": "6.0.9"
99
100
  },
100
101
  "browserslist": [
@@ -1,3 +0,0 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M4.41076 4.41083C4.7362 4.08539 5.26384 4.08539 5.58928 4.41083L10 8.82157L14.4108 4.41083C14.7362 4.08539 15.2638 4.08539 15.5893 4.41083C15.9147 4.73626 15.9147 5.2639 15.5893 5.58934L11.1785 10.0001L15.5893 14.4108C15.9147 14.7363 15.9147 15.2639 15.5893 15.5893C15.2638 15.9148 14.7362 15.9148 14.4108 15.5893L10 11.1786L5.58928 15.5893C5.26384 15.9148 4.7362 15.9148 4.41076 15.5893C4.08533 15.2639 4.08533 14.7363 4.41076 14.4108L8.82151 10.0001L4.41076 5.58934C4.08533 5.2639 4.08533 4.73626 4.41076 4.41083Z" fill="#091E42"/>
3
- </svg>
@@ -1,3 +0,0 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M10 3.33341C6.31812 3.33341 3.33335 6.31818 3.33335 10.0001C3.33335 13.682 6.31812 16.6667 10 16.6667C13.6819 16.6667 16.6667 13.682 16.6667 10.0001C16.6667 6.31818 13.6819 3.33341 10 3.33341ZM1.66669 10.0001C1.66669 5.39771 5.39765 1.66675 10 1.66675C14.6024 1.66675 18.3334 5.39771 18.3334 10.0001C18.3334 14.6025 14.6024 18.3334 10 18.3334C5.39765 18.3334 1.66669 14.6025 1.66669 10.0001ZM9.16669 6.66675C9.16669 6.20651 9.53978 5.83342 10 5.83342H10.0084C10.4686 5.83342 10.8417 6.20651 10.8417 6.66675C10.8417 7.12699 10.4686 7.50008 10.0084 7.50008H10C9.53978 7.50008 9.16669 7.12699 9.16669 6.66675ZM8.33335 10.0001C8.33335 9.53984 8.70645 9.16675 9.16669 9.16675H10C10.4603 9.16675 10.8334 9.53984 10.8334 10.0001V12.5001C11.2936 12.5001 11.6667 12.8732 11.6667 13.3334C11.6667 13.7937 11.2936 14.1667 10.8334 14.1667H10C9.53978 14.1667 9.16669 13.7937 9.16669 13.3334V10.8334C8.70645 10.8334 8.33335 10.4603 8.33335 10.0001Z" fill="#091E42"/>
3
- </svg>
@@ -1,3 +0,0 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M17.2559 5.24408C17.5813 5.56951 17.5813 6.09715 17.2559 6.42259L8.92257 14.7559C8.59713 15.0814 8.06949 15.0814 7.74406 14.7559L3.57739 10.5893C3.25195 10.2638 3.25195 9.73618 3.57739 9.41074C3.90283 9.08531 4.43047 9.08531 4.7559 9.41074L8.33331 12.9882L16.0774 5.24408C16.4028 4.91864 16.9305 4.91864 17.2559 5.24408Z" fill="#091E42"/>
3
- </svg>
@@ -1,3 +0,0 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M4.16669 4.16667C3.70645 4.16667 3.33335 4.53976 3.33335 5C3.33335 5.46024 3.70645 5.83333 4.16669 5.83333H15.8334C16.2936 5.83333 16.6667 5.46024 16.6667 5C16.6667 4.53976 16.2936 4.16667 15.8334 4.16667H4.16669ZM1.66669 5C1.66669 3.61929 2.78598 2.5 4.16669 2.5H15.8334C17.2141 2.5 18.3334 3.61929 18.3334 5C18.3334 6.08852 17.6377 7.01455 16.6667 7.35775V15C16.6667 15.663 16.4033 16.2989 15.9345 16.7678C15.4656 17.2366 14.8297 17.5 14.1667 17.5H5.83335C5.17031 17.5 4.53443 17.2366 4.06559 16.7678C3.59675 16.2989 3.33335 15.663 3.33335 15V7.35775C2.36236 7.01455 1.66669 6.08852 1.66669 5ZM5.00002 7.5V15C5.00002 15.221 5.08782 15.433 5.2441 15.5893C5.40038 15.7455 5.61234 15.8333 5.83335 15.8333H14.1667C14.3877 15.8333 14.5997 15.7455 14.7559 15.5893C14.9122 15.433 15 15.221 15 15V7.5H5.00002ZM7.50002 10C7.50002 9.53976 7.87312 9.16667 8.33335 9.16667H11.6667C12.1269 9.16667 12.5 9.53976 12.5 10C12.5 10.4602 12.1269 10.8333 11.6667 10.8333H8.33335C7.87312 10.8333 7.50002 10.4602 7.50002 10Z" fill="#091E42"/>
3
- </svg>
@@ -1,3 +0,0 @@
1
- <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M8.72199 1.98656C9.10668 1.75976 9.54511 1.64014 9.99168 1.64014C10.4383 1.64014 10.8767 1.75976 11.2614 1.98656C11.6434 2.21182 11.9587 2.53463 12.1747 2.92183L18.0877 13.1237C18.1073 13.1576 18.1245 13.1928 18.1392 13.2291C18.2922 13.6072 18.3503 14.017 18.3085 14.4228C18.2667 14.8285 18.1263 15.2179 17.8995 15.5569C17.6726 15.8959 17.3663 16.1742 17.0072 16.3677C16.6481 16.5611 16.2471 16.6637 15.8392 16.6666L15.8333 16.6666H4.16668C4.15145 16.6666 4.13631 16.6662 4.12128 16.6654C4.0919 16.667 4.06215 16.667 4.03211 16.6655C3.63386 16.645 3.24629 16.5295 2.90177 16.3286C2.55725 16.1278 2.26577 15.8474 2.05167 15.511C1.83758 15.1746 1.70707 14.7918 1.67105 14.3946C1.63503 13.9975 1.69454 13.5975 1.84461 13.228C1.85919 13.1921 1.87626 13.1572 1.8957 13.1237L7.80862 2.92185C8.0247 2.53464 8.33992 2.21182 8.72199 1.98656ZM4.12064 15.0012C4.13589 15.0004 4.15123 14.9999 4.16668 14.9999H15.8299C15.9651 14.9986 16.0978 14.9644 16.2168 14.9003C16.3365 14.8358 16.4386 14.7431 16.5143 14.6301C16.5899 14.517 16.6367 14.3873 16.6506 14.252C16.6629 14.133 16.6493 14.0129 16.6111 13.8998L10.729 3.75114L10.7208 3.7367C10.6488 3.60645 10.5431 3.49788 10.4149 3.42228C10.2867 3.34668 10.1405 3.3068 9.99168 3.3068C9.84282 3.3068 9.69668 3.34668 9.56845 3.42228C9.44022 3.49788 9.33458 3.60645 9.26252 3.7367L9.25434 3.75114L3.3719 13.9004C3.33439 14.0107 3.32035 14.1277 3.3309 14.2441C3.34291 14.3765 3.38641 14.5041 3.45778 14.6162C3.52914 14.7284 3.6263 14.8218 3.74114 14.8887C3.85598 14.9557 3.98517 14.9942 4.11792 15.001C4.11883 15.0011 4.11974 15.0011 4.12064 15.0012ZM10 6.66659C10.4602 6.66659 10.8333 7.03968 10.8333 7.49992V9.16659C10.8333 9.62682 10.4602 9.99992 10 9.99992C9.53977 9.99992 9.16668 9.62682 9.16668 9.16659V7.49992C9.16668 7.03968 9.53977 6.66659 10 6.66659ZM10 11.6666C10.4602 11.6666 10.8333 12.0397 10.8333 12.4999V12.5083C10.8333 12.9685 10.4602 13.3416 10 13.3416C9.53977 13.3416 9.16668 12.9685 9.16668 12.5083V12.4999C9.16668 12.0397 9.53977 11.6666 10 11.6666Z" fill="#091E42"/>
3
- </svg>