mimir-ui-kit 1.43.9 → 1.43.11

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.
Files changed (162) hide show
  1. package/dist/Input-CGZoshMl.js +224 -0
  2. package/dist/assets/Accordion.css +1 -1
  3. package/dist/assets/AccordionItem.css +1 -1
  4. package/dist/assets/Avatar.css +1 -1
  5. package/dist/assets/Button.css +1 -1
  6. package/dist/assets/CarBodyButton.css +1 -0
  7. package/dist/assets/CheckboxMimir.css +1 -1
  8. package/dist/assets/Chip.css +1 -1
  9. package/dist/assets/Drawer.css +1 -1
  10. package/dist/assets/GosZnak.css +1 -1
  11. package/dist/assets/Input.css +1 -1
  12. package/dist/assets/InputPassword.css +1 -1
  13. package/dist/assets/InputRangeSlider.css +1 -1
  14. package/dist/assets/Link.css +1 -1
  15. package/dist/assets/ListFiles.css +1 -1
  16. package/dist/assets/ListPhotos.css +1 -1
  17. package/dist/assets/MessageShortReply.css +1 -1
  18. package/dist/assets/MiniButton.css +1 -0
  19. package/dist/assets/MultiSelectSearch.css +1 -1
  20. package/dist/assets/NotificationBadge.css +1 -1
  21. package/dist/assets/OtpInput.css +1 -1
  22. package/dist/assets/Pagination.css +1 -1
  23. package/dist/assets/RoundButton.css +1 -0
  24. package/dist/assets/ScrollWrapper.css +1 -0
  25. package/dist/assets/SelectSearch.css +1 -1
  26. package/dist/assets/hooks.css +1 -1
  27. package/dist/assets/index.css +1 -1
  28. package/dist/assets/styles.css +1 -1
  29. package/dist/components/Accordion/Accordion.d.ts +10 -3
  30. package/dist/components/Accordion/Accordion.js +286 -212
  31. package/dist/components/Accordion/AccordionItem/AccordionItem.js +3 -3
  32. package/dist/components/Accordion/constants.d.ts +0 -4
  33. package/dist/components/Accordion/constants.js +4 -5
  34. package/dist/components/AnchorLink/Link.js +21 -20
  35. package/dist/components/Avatar/Avatar.js +26 -26
  36. package/dist/components/Button/Button.js +110 -87
  37. package/dist/components/Button/constants.d.ts +8 -2
  38. package/dist/components/Button/constants.js +6 -5
  39. package/dist/components/CarBodyButton/CarBodyButton.d.ts +26 -0
  40. package/dist/components/CarBodyButton/CarBodyButton.js +40 -0
  41. package/dist/components/CarBodyButton/index.d.ts +1 -0
  42. package/dist/components/CarBodyButton/index.js +4 -0
  43. package/dist/components/CheckboxMimir/CheckboxMimir.d.ts +2 -0
  44. package/dist/components/CheckboxMimir/CheckboxMimir.js +37 -35
  45. package/dist/components/Chip/Chip.js +17 -17
  46. package/dist/components/DatePicker/DatePicker.d.ts +8 -0
  47. package/dist/components/DatePicker/DatePicker.js +182 -169
  48. package/dist/components/DatePicker/DatePickerModal.js +134 -98
  49. package/dist/components/DatePicker/MonthPickerModal.js +115 -95
  50. package/dist/components/DatePicker/YearPickerModal.js +109 -89
  51. package/dist/components/DatePicker/constants.d.ts +1 -0
  52. package/dist/components/DatePicker/constants.js +1 -1
  53. package/dist/components/DatePicker/hooks.d.ts +2 -1
  54. package/dist/components/DatePicker/hooks.js +12 -12
  55. package/dist/components/Drawer/Drawer.js +172 -138
  56. package/dist/components/Drawer/ScrollWrapper/ScrollWrapper.d.ts +11 -0
  57. package/dist/components/Drawer/ScrollWrapper/ScrollWrapper.js +27 -0
  58. package/dist/components/Dropdown/Dropdown.js +1 -1
  59. package/dist/components/Dropdown/hooks.js +1 -1
  60. package/dist/components/GosZnak/GosZnak.js +47 -38
  61. package/dist/components/GosZnak/utils.d.ts +6 -0
  62. package/dist/components/GosZnak/utils.js +15 -0
  63. package/dist/components/Input/Input.d.ts +4 -0
  64. package/dist/components/Input/Input.js +2 -2
  65. package/dist/components/Input/index.js +1 -1
  66. package/dist/components/InputPassword/InputPassword.js +38 -42
  67. package/dist/components/InputPhoneNumber/InputPhoneNumber.js +1 -1
  68. package/dist/components/InputRangeSlider/InputRangeSlider.js +159 -139
  69. package/dist/components/InputRangeSlider/constants.d.ts +5 -0
  70. package/dist/components/InputRangeSlider/constants.js +11 -6
  71. package/dist/components/ListFiles/ListFiles.js +41 -39
  72. package/dist/components/ListPhotos/ListPhotos.js +17 -18
  73. package/dist/components/MessageShortReply/MessageShortReply.js +34 -34
  74. package/dist/components/{InputClearButton/ClearButton.d.ts → MiniButton/MiniButton.d.ts} +17 -8
  75. package/dist/components/MiniButton/MiniButton.js +44 -0
  76. package/dist/components/MiniButton/constants.d.ts +9 -0
  77. package/dist/components/MiniButton/constants.js +5 -0
  78. package/dist/components/MiniButton/index.d.ts +4 -0
  79. package/dist/components/MiniButton/index.js +6 -0
  80. package/dist/components/MultiSelectSearch/MultiSelectSearch.js +153 -152
  81. package/dist/components/MultiSelectSearch/constants.d.ts +1 -0
  82. package/dist/components/MultiSelectSearch/constants.js +7 -7
  83. package/dist/components/MultiSelectSearch/utils.d.ts +1 -1
  84. package/dist/components/MultiSelectSearch/utils.js +18 -16
  85. package/dist/components/NotificationBadge/NotificationBadge.js +49 -33
  86. package/dist/components/NotificationBadge/constants.d.ts +9 -2
  87. package/dist/components/NotificationBadge/constants.js +3 -2
  88. package/dist/components/NotificationBadge/types.d.ts +11 -1
  89. package/dist/components/NotificationBadge/utils.d.ts +8 -0
  90. package/dist/components/NotificationBadge/utils.js +4 -0
  91. package/dist/components/OtpInput/OtpInput.js +44 -40
  92. package/dist/components/OtpInput/constants.d.ts +4 -0
  93. package/dist/components/OtpInput/constants.js +6 -4
  94. package/dist/components/OtpInput/index.d.ts +1 -0
  95. package/dist/components/OtpInput/index.js +2 -0
  96. package/dist/components/Pagination/Pagination.js +23 -23
  97. package/dist/components/RoundButton/RoundButton.d.ts +82 -0
  98. package/dist/components/RoundButton/RoundButton.js +69 -0
  99. package/dist/components/RoundButton/constants.d.ts +11 -0
  100. package/dist/components/RoundButton/constants.js +5 -0
  101. package/dist/components/RoundButton/index.d.ts +2 -0
  102. package/dist/components/RoundButton/index.js +7 -0
  103. package/dist/components/RoundButton/types.d.ts +20 -0
  104. package/dist/components/SelectSearch/SelectSearch.d.ts +2 -0
  105. package/dist/components/SelectSearch/SelectSearch.js +273 -236
  106. package/dist/components/SelectSearch/types.d.ts +9 -1
  107. package/dist/components/SelectSearch/utils.d.ts +1 -1
  108. package/dist/components/SelectSearch/utils.js +1 -1
  109. package/dist/components/Slider/Slider.d.ts +1 -5
  110. package/dist/components/Slider/Slider.js +34 -36
  111. package/dist/components/TextArea/TextArea.js +1 -1
  112. package/dist/components/index.d.ts +3 -1
  113. package/dist/components/index.js +55 -51
  114. package/dist/hooks-Cd4Ez6_j.js +117 -0
  115. package/dist/icons/Icon.js +1 -1
  116. package/dist/icons/components/16px/DropdownArrowDown16px.js +23 -0
  117. package/dist/icons/components/24px/EyeClosed24px.js +65 -0
  118. package/dist/icons/components/Avito.js +36 -13
  119. package/dist/icons/components/Site.js +13 -36
  120. package/dist/icons/components/index.js +564 -591
  121. package/dist/{index-C2dQUuc9.js → index-DrVFMaBi.js} +1184 -1346
  122. package/dist/index.js +73 -69
  123. package/dist/styles.module-BfkM1-KJ.js +32 -0
  124. package/package.json +1 -1
  125. package/dist/Input-BU_6U1CW.js +0 -227
  126. package/dist/assets/ClearButton.css +0 -1
  127. package/dist/components/InputClearButton/ClearButton.js +0 -41
  128. package/dist/components/InputClearButton/constants.d.ts +0 -8
  129. package/dist/components/InputClearButton/constants.js +0 -5
  130. package/dist/components/InputClearButton/index.d.ts +0 -4
  131. package/dist/components/InputClearButton/index.js +0 -6
  132. package/dist/hooks-HgN6Yauq.js +0 -117
  133. package/dist/icons/components/64px/AdvancePaymentDiscount64px.js +0 -59
  134. package/dist/icons/components/64px/AtsVendors64px.js +0 -37
  135. package/dist/icons/components/64px/ButtonOn64px.js +0 -31
  136. package/dist/icons/components/64px/BuyoutAuto64px.js +0 -45
  137. package/dist/icons/components/64px/CarAssistance64px.js +0 -44
  138. package/dist/icons/components/64px/CarDelivery64px.js +0 -37
  139. package/dist/icons/components/64px/CarSearchReturn64px.js +0 -45
  140. package/dist/icons/components/64px/CarService64px.js +0 -37
  141. package/dist/icons/components/64px/Case64px.js +0 -33
  142. package/dist/icons/components/64px/CoatOfArms64px.js +0 -149
  143. package/dist/icons/components/64px/CoffeeCup64px.js +0 -44
  144. package/dist/icons/components/64px/Cup64px.js +0 -38
  145. package/dist/icons/components/64px/ExpertAdvice64px.js +0 -40
  146. package/dist/icons/components/64px/Fines64px.js +0 -88
  147. package/dist/icons/components/64px/Fuel64px.js +0 -38
  148. package/dist/icons/components/64px/GazprombankIcon24px.js +0 -21
  149. package/dist/icons/components/64px/Kasko64px.js +0 -44
  150. package/dist/icons/components/64px/LegalSupport64px.js +0 -58
  151. package/dist/icons/components/64px/Microphone64px.js +0 -37
  152. package/dist/icons/components/64px/Money64px.js +0 -60
  153. package/dist/icons/components/64px/PaymentSchedule64px.js +0 -39
  154. package/dist/icons/components/64px/PersonalManager64px.js +0 -100
  155. package/dist/icons/components/64px/PreApproval64px.js +0 -44
  156. package/dist/icons/components/64px/Questions64px.js +0 -37
  157. package/dist/icons/components/64px/SupportGeography64px.js +0 -51
  158. package/dist/icons/components/64px/Timer64px.js +0 -45
  159. package/dist/icons/components/64px/Twogis64px.js +0 -51
  160. package/dist/icons/components/64px/Vehicles64px.js +0 -45
  161. package/dist/icons/components/64px/Workplace64px.js +0 -38
  162. package/dist/styles.module-Cuqm31CO.js +0 -28
@@ -1,117 +0,0 @@
1
- import { c as N } from "./index-DIxK0V-G.js";
2
- import { useState as C, useRef as O, useCallback as p, useEffect as P } from "react";
3
- import { EDropdownPlacement as e, EDropdownAlign as i } from "./components/Dropdown/constants.js";
4
- import './assets/hooks.css';const S = "_menu_179ng_2", $ = "_arrow_179ng_53", k = "_enter_179ng_200", M = "_leave_179ng_214", g = {
5
- menu: S,
6
- "menu-button": "_menu-button_179ng_5",
7
- "menu-items": "_menu-items_179ng_10",
8
- "menu-items--black": "_menu-items--black_179ng_20",
9
- "menu-items-with-arrow": "_menu-items-with-arrow_179ng_24",
10
- "position-bottom": "_position-bottom_179ng_29",
11
- "position-bottom-start": "_position-bottom-start_179ng_30",
12
- "position-bottom-end": "_position-bottom-end_179ng_31",
13
- "position-top": "_position-top_179ng_35",
14
- "position-top-start": "_position-top-start_179ng_36",
15
- "position-top-end": "_position-top-end_179ng_37",
16
- "position-left": "_position-left_179ng_41",
17
- "position-left-start": "_position-left-start_179ng_42",
18
- "position-left-end": "_position-left-end_179ng_43",
19
- "position-right": "_position-right_179ng_47",
20
- "position-right-start": "_position-right-start_179ng_48",
21
- "position-right-end": "_position-right-end_179ng_49",
22
- "arrow-position-bottom": "_arrow-position-bottom_179ng_53",
23
- "arrow-position-bottom-start": "_arrow-position-bottom-start_179ng_54",
24
- "arrow-position-bottom-end": "_arrow-position-bottom-end_179ng_55",
25
- "arrow-position-top": "_arrow-position-top_179ng_59",
26
- "arrow-position-top-start": "_arrow-position-top-start_179ng_60",
27
- "arrow-position-top-end": "_arrow-position-top-end_179ng_61",
28
- "arrow-position-left": "_arrow-position-left_179ng_65",
29
- "arrow-position-left-start": "_arrow-position-left-start_179ng_66",
30
- "arrow-position-left-end": "_arrow-position-left-end_179ng_67",
31
- "arrow-position-right": "_arrow-position-right_179ng_71",
32
- "arrow-position-right-start": "_arrow-position-right-start_179ng_72",
33
- "arrow-position-right-end": "_arrow-position-right-end_179ng_73",
34
- arrow: $,
35
- "arrow-bottom": "_arrow-bottom_179ng_83",
36
- "arrow-bottom-start": "_arrow-bottom-start_179ng_91",
37
- "arrow-bottom-end": "_arrow-bottom-end_179ng_98",
38
- "arrow-top": "_arrow-top_179ng_106",
39
- "arrow-top-start": "_arrow-top-start_179ng_114",
40
- "arrow-top-end": "_arrow-top-end_179ng_121",
41
- "arrow-left": "_arrow-left_179ng_129",
42
- "arrow-left-start": "_arrow-left-start_179ng_137",
43
- "arrow-left-end": "_arrow-left-end_179ng_144",
44
- "arrow-right": "_arrow-right_179ng_152",
45
- "arrow-right-start": "_arrow-right-start_179ng_160",
46
- "arrow-right-end": "_arrow-right-end_179ng_167",
47
- "arrow-black": "_arrow-black_179ng_175",
48
- "menu-items-container": "_menu-items-container_179ng_188",
49
- "close-button": "_close-button_179ng_194",
50
- enter: k,
51
- "enter-from": "_enter-from_179ng_204",
52
- "enter-to": "_enter-to_179ng_209",
53
- leave: M,
54
- "leave-from": "_leave-from_179ng_218",
55
- "leave-to": "_leave-to_179ng_223"
56
- }, R = 300, u = 5, d = 10, y = 10, x = ({
57
- buttonRef: l,
58
- panelRef: a,
59
- initialPosition: h,
60
- isOpen: A,
61
- arrow: c = !1,
62
- variant: T = "default"
63
- }) => {
64
- const [r, D] = C(
65
- typeof h == "string" ? h : `${e.BOTTOM} ${i.END}`
66
- ), w = O(null), m = p(() => {
67
- w.current && (clearTimeout(w.current), w.current = null);
68
- }, []), E = p(() => {
69
- if (!a.current || !l.current) return null;
70
- const t = l.current.getBoundingClientRect(), o = a.current.getBoundingClientRect();
71
- let n = null;
72
- if (o.bottom <= t.top + u ? n = e.TOP : o.top >= t.bottom - u ? n = e.BOTTOM : o.right <= t.left + u ? n = e.LEFT : o.left >= t.right - u && (n = e.RIGHT), !n) return null;
73
- let _;
74
- if (n === e.LEFT || n === e.RIGHT) {
75
- const f = Math.abs(o.top - t.top) < d, b = Math.abs(o.bottom - t.bottom) < d;
76
- _ = f ? i.START : b ? i.END : i.CENTER;
77
- } else {
78
- const f = Math.abs(o.left - t.left) < d, b = Math.abs(o.right - t.right) < d;
79
- _ = f ? i.START : b ? i.END : i.CENTER;
80
- }
81
- return _ ? `${n} ${_}`.trim() : n;
82
- }, [l, a]), s = p(() => {
83
- m(), w.current = setTimeout(() => {
84
- const t = E();
85
- t && t !== r && D(t);
86
- }, y);
87
- }, [E, r, m]);
88
- P(() => {
89
- if (!a.current || !l.current || window.getComputedStyle(a.current).display === "none") return;
90
- const o = setTimeout(s, R);
91
- return window.addEventListener("scroll", s, !0), window.addEventListener("resize", s), () => {
92
- clearTimeout(o), m(), window.removeEventListener("scroll", s, !0), window.removeEventListener("resize", s);
93
- };
94
- }, [A, s, m]);
95
- const v = p(() => {
96
- if (!c) return "";
97
- const t = typeof r == "string" ? r : "", [o, n] = t.split(" "), _ = n ? g[`arrow-${o}-${n}`] : g[`arrow-${o}`];
98
- return N(g.arrow, _, {
99
- [g["arrow-black"]]: T === "black"
100
- });
101
- }, [c, r, T]), L = p(() => {
102
- const t = typeof r == "string" ? r : "";
103
- return t ? g[`${c ? "arrow-position-" : "position-"}${t.replace(" ", "-")}`] : "";
104
- }, [r, c]);
105
- return {
106
- getArrowClasses: v,
107
- getPositionClass: L
108
- };
109
- };
110
- export {
111
- R as A,
112
- y as D,
113
- u as P,
114
- d as a,
115
- g as c,
116
- x as u
117
- };
@@ -1,59 +0,0 @@
1
- import { jsxs as d, jsx as l } from "react/jsx-runtime";
2
- const c = (e) => /* @__PURE__ */ d(
3
- "svg",
4
- {
5
- ...e,
6
- xmlns: "http://www.w3.org/2000/svg",
7
- width: 64,
8
- height: 64,
9
- fill: "none",
10
- children: [
11
- /* @__PURE__ */ l(
12
- "path",
13
- {
14
- fill: "#FF7900",
15
- d: "M35.555 41.474a.702.702 0 1 0 0-1.404.702.702 0 0 0 0 1.404"
16
- }
17
- ),
18
- /* @__PURE__ */ l(
19
- "path",
20
- {
21
- fill: "#FF7900",
22
- fillRule: "evenodd",
23
- d: "M38.152 14.098a3.373 3.373 0 1 0 0 6.746 3.373 3.373 0 0 0 0-6.746m-4.348 3.373a4.348 4.348 0 1 1 8.696 0 4.348 4.348 0 0 1-8.696 0M29.66 10.666c.27 0 .488.218.488.488v7.299a.488.488 0 1 1-.975 0v-7.3c0-.269.219-.487.488-.487M25.661 10.666c.27 0 .488.218.488.488v4.351a.488.488 0 1 1-.975 0v-4.351c0-.27.218-.488.487-.488",
24
- clipRule: "evenodd"
25
- }
26
- ),
27
- /* @__PURE__ */ l(
28
- "path",
29
- {
30
- fill: "#4D4D4D",
31
- fillRule: "evenodd",
32
- d: "M18.009 29.33a2.807 2.807 0 0 0-2.812 2.812v17.406a2.807 2.807 0 0 0 2.812 2.811h28.215a2.807 2.807 0 0 0 2.81-2.81V32.141a2.807 2.807 0 0 0-2.81-2.811zm-3.787 2.812a3.78 3.78 0 0 1 3.787-3.787h28.215a3.78 3.78 0 0 1 3.786 3.787v17.406a3.78 3.78 0 0 1-3.786 3.786H18.009a3.78 3.78 0 0 1-3.787-3.786z",
33
- clipRule: "evenodd"
34
- }
35
- ),
36
- /* @__PURE__ */ l(
37
- "path",
38
- {
39
- fill: "#4D4D4D",
40
- fillRule: "evenodd",
41
- d: "M17.87 29.33c-1.416 0-2.601 1.186-2.601 2.601V49.76c0 1.415 1.185 2.6 2.6 2.6h24.566c1.408 0 2.6-1.178 2.6-2.67V31.93c0-1.415-1.185-2.6-2.6-2.6zm-3.576 2.601c0-1.954 1.622-3.576 3.575-3.576h24.566c1.953 0 3.575 1.622 3.575 3.576v17.757c0 2.017-1.614 3.646-3.575 3.646H17.869c-1.953 0-3.575-1.622-3.575-3.575z",
42
- clipRule: "evenodd"
43
- }
44
- ),
45
- /* @__PURE__ */ l(
46
- "path",
47
- {
48
- fill: "#4D4D4D",
49
- fillRule: "evenodd",
50
- d: "M35.556 37.753c-1.633 0-3.022 1.332-3.022 3.021 0 1.632 1.332 3.022 3.022 3.022h13.479v-6.044zm-3.997 3.021c0-2.24 1.838-3.997 3.997-3.997H50.01v7.994H35.556c-2.241 0-3.997-1.839-3.997-3.997M25.517 21.399a3.373 3.373 0 1 0 0 6.745 3.373 3.373 0 0 0 0-6.745m-4.348 3.373a4.348 4.348 0 1 1 8.696 0 4.348 4.348 0 0 1-8.696 0",
51
- clipRule: "evenodd"
52
- }
53
- )
54
- ]
55
- }
56
- );
57
- export {
58
- c as default
59
- };
@@ -1,37 +0,0 @@
1
- import { jsxs as h, jsx as l } from "react/jsx-runtime";
2
- const t = (a) => /* @__PURE__ */ h(
3
- "svg",
4
- {
5
- ...a,
6
- xmlns: "http://www.w3.org/2000/svg",
7
- width: 64,
8
- height: 64,
9
- fill: "none",
10
- children: [
11
- /* @__PURE__ */ l(
12
- "path",
13
- {
14
- fill: "#4D4D4D",
15
- d: "M62 42.873h-8.214v-.945h7.26l-.092-8.34-1.69-8.733c-.359-1.865-2.484-3.78-3.738-3.789h-11.97l.067 12.79-40.678.033.025 7.989 2.209.041-.017.946-3.137-.059L2 32.944l40.67-.033-.068-12.79h12.924c1.84.017 4.24 2.35 4.667 4.55L61.9 33.53l.1 9.335z"
16
- }
17
- ),
18
- /* @__PURE__ */ l(
19
- "path",
20
- {
21
- fill: "#4D4D4D",
22
- d: "M61.422 34.014H54.28a2.635 2.635 0 0 1-2.635-2.635v-4.232a2.635 2.635 0 0 1 2.635-2.635h5.478v.945H54.28a1.69 1.69 0 0 0-1.69 1.69v4.232c0 .937.761 1.69 1.69 1.69h7.143zM42.77 41.92H25.959v.945H42.77zM48.61 45.458a4.091 4.091 0 1 1 .002-8.182 4.091 4.091 0 0 1-.001 8.182m0-7.235a3.15 3.15 0 0 0-3.145 3.145 3.15 3.15 0 0 0 3.146 3.145 3.15 3.15 0 0 0 3.145-3.145 3.15 3.15 0 0 0-3.145-3.145M20.228 45.458a4.091 4.091 0 1 1 .001-8.182 4.091 4.091 0 0 1-.001 8.182m0-7.235a3.15 3.15 0 0 0-3.145 3.145 3.15 3.15 0 0 0 3.145 3.145 3.15 3.15 0 0 0 3.145-3.145 3.15 3.15 0 0 0-3.145-3.145M10.76 45.458a4.091 4.091 0 1 1 0-8.182 4.091 4.091 0 0 1 0 8.182m0-7.235a3.15 3.15 0 0 0-3.146 3.145 3.15 3.15 0 0 0 3.145 3.145 3.15 3.15 0 0 0 3.145-3.145 3.15 3.15 0 0 0-3.145-3.145M26.658 30.878h-11.05v-.945h11.05zm9.126-.092-.05-.945.635-.034c.41-.016.72-.15.92-.393.268-.31.377-.82.31-1.439-.218-2.024-1.221-2.442-3.296-2.877-1.02-.21-1.823-.343-2.51-.46-2.25-.377-3.278-.552-5.905-2.384-1.94-1.355-3.471-2.309-5.52-2.309h-4.626c-2.384 0-3.756 1.104-5.839 2.769l-.284.226c-.318.26-.678.552-1.196.619l-4.283.577a.907.907 0 0 0-.795.912v3.546c0 .61.11.661.87.77l2.292.318-.134.937-2.292-.318c-.71-.1-1.69-.234-1.69-1.707v-3.546c0-.945.678-1.723 1.615-1.849l4.283-.577c.25-.034.46-.2.728-.418l.284-.226C11.451 20.246 13.007 19 15.725 19h4.626c2.317 0 4.048 1.079 6.056 2.484 2.46 1.715 3.287 1.857 5.52 2.234.695.117 1.514.25 2.543.468 2.117.435 3.756.987 4.049 3.697.092.887-.084 1.631-.527 2.15-.377.435-.928.686-1.59.72l-.635.033z"
23
- }
24
- ),
25
- /* @__PURE__ */ l(
26
- "path",
27
- {
28
- fill: "#FF7900",
29
- d: "M31.264 32.878a3.266 3.266 0 0 1-3.262-3.262 3.266 3.266 0 0 1 3.262-3.262 3.266 3.266 0 0 1 3.262 3.262 3.266 3.266 0 0 1-3.262 3.262m0-5.57a2.317 2.317 0 1 0 0 4.633 2.317 2.317 0 0 0 0-4.634M10.947 32.878a3.266 3.266 0 0 1-3.262-3.262 3.266 3.266 0 0 1 3.262-3.262 3.266 3.266 0 0 1 3.262 3.262 3.266 3.266 0 0 1-3.262 3.262m0-5.57a2.317 2.317 0 1 0 0 4.633 2.317 2.317 0 0 0 0-4.634"
30
- }
31
- )
32
- ]
33
- }
34
- );
35
- export {
36
- t as default
37
- };
@@ -1,31 +0,0 @@
1
- import { jsxs as s, jsx as l } from "react/jsx-runtime";
2
- const c = (t) => /* @__PURE__ */ s(
3
- "svg",
4
- {
5
- ...t,
6
- xmlns: "http://www.w3.org/2000/svg",
7
- width: 65,
8
- height: 64,
9
- fill: "none",
10
- children: [
11
- /* @__PURE__ */ l("path", { fill: "#FF7900", d: "M33.135 20.16h-.944v11.974h.944z" }),
12
- /* @__PURE__ */ l(
13
- "path",
14
- {
15
- fill: "#FF7900",
16
- d: "M32.667 42.913c-6.017 0-10.922-4.896-10.922-10.913 0-5.164 3.669-9.66 8.716-10.696l.192.928c-4.613.944-7.963 5.055-7.963 9.768 0 5.498 4.47 9.977 9.968 9.977s9.97-4.47 9.97-9.977c0-4.738-3.368-8.85-8.006-9.777l.184-.927c5.08 1.02 8.766 5.515 8.766 10.704 0 6.017-4.897 10.913-10.922 10.913z"
17
- }
18
- ),
19
- /* @__PURE__ */ l(
20
- "path",
21
- {
22
- fill: "#4D4D4D",
23
- d: "M32.667 53.333C20.9 53.333 11.333 43.766 11.333 32s9.568-21.333 21.334-21.333S54 20.235 54 32c0 11.766-9.568 21.333-21.333 21.333m0-41.722c-11.24 0-20.39 9.15-20.39 20.389s9.142 20.389 20.39 20.389c11.247 0 20.389-9.15 20.389-20.389 0-11.24-9.15-20.39-20.39-20.39"
24
- }
25
- )
26
- ]
27
- }
28
- );
29
- export {
30
- c as default
31
- };
@@ -1,45 +0,0 @@
1
- import { jsxs as a, jsx as l } from "react/jsx-runtime";
2
- const t = (h) => /* @__PURE__ */ a(
3
- "svg",
4
- {
5
- ...h,
6
- xmlns: "http://www.w3.org/2000/svg",
7
- width: 65,
8
- height: 64,
9
- fill: "none",
10
- children: [
11
- /* @__PURE__ */ l(
12
- "path",
13
- {
14
- fill: "#4D4D4D",
15
- d: "M40.012 42.916H26.855v-.757h13.157zm10.859-.107-.04-.758.757-.04c.536-.027.95-.2 1.226-.529.348-.409.495-1.065.408-1.849-.281-2.613-1.728-3.095-4.066-3.584a81 81 0 0 0-2.995-.55c-2.652-.441-3.865-.649-6.96-2.813-.71-.495-1.474-1.018-2.23-1.46l.375-.657c.783.456 1.56.985 2.284 1.494 2.954 2.064 4.04 2.251 6.652 2.687.844.14 1.795.301 3.021.556 2.526.522 4.335 1.132 4.67 4.24.107.992-.101 1.856-.59 2.418-.415.49-1.012.757-1.762.79l-.757.041zm-34.955-.201-2.734-.382c-.824-.114-1.849-.255-1.849-1.85v-4.22a2.02 2.02 0 0 1 1.762-2.016l5.098-.683c.355-.047.616-.262.951-.536l.342-.275c2.057-1.648 3.678-2.954 5.929-3.363l.134.744c-2.064.375-3.544 1.567-5.594 3.209l-.335.268c-.375.308-.764.623-1.326.696l-5.098.684a1.26 1.26 0 0 0-1.106 1.266v4.22c0 .891.288.971 1.2 1.099l2.733.381-.107.75z"
16
- }
17
- ),
18
- /* @__PURE__ */ l(
19
- "path",
20
- {
21
- fill: "#FF7900",
22
- d: "M45.505 45.3a3.7 3.7 0 0 1-3.698-3.691 3.7 3.7 0 0 1 3.698-3.698 3.69 3.69 0 0 1 3.691 3.698 3.69 3.69 0 0 1-3.691 3.691m0-6.632a2.945 2.945 0 0 0-2.941 2.941 2.938 2.938 0 0 0 5.875 0c0-1.614-1.32-2.94-2.934-2.94M21.315 45.3a3.7 3.7 0 0 1-3.698-3.691 3.697 3.697 0 1 1 7.396 0 3.69 3.69 0 0 1-3.698 3.691m0-6.632a2.945 2.945 0 0 0-2.941 2.941 2.94 2.94 0 0 0 2.94 2.934c1.622 0 2.942-1.32 2.942-2.934a2.95 2.95 0 0 0-2.941-2.94"
23
- }
24
- ),
25
- /* @__PURE__ */ l(
26
- "path",
27
- {
28
- fill: "#4D4D4D",
29
- d: "M31.973 33.082c-4.81 0-8.722-3.912-8.722-8.722s3.919-8.715 8.722-8.715 8.722 3.912 8.722 8.722-3.912 8.722-8.722 8.722zm0-16.68c-4.388 0-7.965 3.57-7.965 7.965s3.57 7.965 7.965 7.965 7.965-3.57 7.965-7.965-3.57-7.966-7.965-7.966"
30
- }
31
- ),
32
- /* @__PURE__ */ l(
33
- "path",
34
- {
35
- fill: "#4D4D4D",
36
- d: "M29.943 29.03h-.757v-4.221h-1.5v-.757h1.5v-4.334h4.562a2.496 2.496 0 0 1 2.492 2.492v.1a2.496 2.496 0 0 1-2.492 2.492h-3.805v4.227m0-4.978h3.805c.958 0 1.735-.777 1.735-1.735v-.1c0-.958-.777-1.735-1.735-1.735h-3.805v3.577z"
37
- }
38
- ),
39
- /* @__PURE__ */ l("path", { fill: "#FF7900", d: "M31.805 25.62h-4.12v.756h4.12z" })
40
- ]
41
- }
42
- );
43
- export {
44
- t as default
45
- };
@@ -1,44 +0,0 @@
1
- import { jsxs as h, jsx as l } from "react/jsx-runtime";
2
- const t = (c) => /* @__PURE__ */ h(
3
- "svg",
4
- {
5
- ...c,
6
- xmlns: "http://www.w3.org/2000/svg",
7
- width: 64,
8
- height: 64,
9
- fill: "none",
10
- children: [
11
- /* @__PURE__ */ l(
12
- "path",
13
- {
14
- fill: "#FF7900",
15
- d: "M46.474 47.932H17.046l3.651-6.461.675.386-2.99 5.297h26.776l-2.101-3.865.682-.372zM39.846 37.408 31.973 22.97l-7.977 13.598-.668-.4 8.673-14.775 8.527 15.643z"
16
- }
17
- ),
18
- /* @__PURE__ */ l(
19
- "path",
20
- {
21
- fill: "#4D4D4D",
22
- d: "M36.863 42.208h-8.052v-.778h8.052zm6.648-.062-.042-.778.462-.021c.29-.014.496-.103.64-.269.187-.213.262-.578.214-1.012-.158-1.447-.84-1.736-2.363-2.053a48 48 0 0 0-1.825-.337c-1.646-.276-2.397-.4-4.32-1.75-1.404-.978-2.513-1.674-3.988-1.674h-3.368c-1.722 0-2.714.799-4.222 2.005l-.207.165c-.234.193-.503.406-.889.461l-3.12.42a.62.62 0 0 0-.537.62v2.584c0 .179.027.31.075.365.076.082.296.117.517.151l1.674.234-.11.772-1.674-.234c-.393-.055-.744-.124-.992-.4-.186-.206-.276-.496-.276-.888v-2.584c0-.709.51-1.294 1.213-1.391l3.12-.42c.165-.02.29-.117.503-.29l.207-.165c1.577-1.267 2.714-2.176 4.711-2.176h3.369c1.701 0 2.962.785 4.436 1.818 1.777 1.247 2.383 1.343 4.002 1.619.51.082 1.102.186 1.853.344 1.557.324 2.769.73 2.983 2.735.069.661-.07 1.212-.4 1.598-.282.33-.696.517-1.192.537l-.461.02z"
23
- }
24
- ),
25
- /* @__PURE__ */ l(
26
- "path",
27
- {
28
- fill: "#FF7900",
29
- d: "M40.218 43.668A2.417 2.417 0 0 1 37.8 41.25a2.417 2.417 0 0 1 2.418-2.418 2.417 2.417 0 0 1 2.418 2.418 2.417 2.417 0 0 1-2.418 2.418m0-4.058c-.902 0-1.64.737-1.64 1.64s.738 1.64 1.64 1.64c.903 0 1.64-.738 1.64-1.64 0-.903-.737-1.64-1.64-1.64M25.422 43.668a2.417 2.417 0 0 1-2.418-2.418 2.417 2.417 0 0 1 2.418-2.418 2.417 2.417 0 0 1 2.418 2.418 2.417 2.417 0 0 1-2.418 2.418m0-4.058c-.902 0-1.64.737-1.64 1.64s.738 1.64 1.64 1.64 1.64-.738 1.64-1.64c0-.903-.738-1.64-1.64-1.64"
30
- }
31
- ),
32
- /* @__PURE__ */ l(
33
- "path",
34
- {
35
- fill: "#4D4D4D",
36
- d: "M55.697 53.333H7.822l24.316-42.667L55.69 53.333zm-46.538-.779h45.215L32.131 12.257z"
37
- }
38
- )
39
- ]
40
- }
41
- );
42
- export {
43
- t as default
44
- };
@@ -1,37 +0,0 @@
1
- import { jsxs as a, jsx as l } from "react/jsx-runtime";
2
- const v = (h) => /* @__PURE__ */ a(
3
- "svg",
4
- {
5
- ...h,
6
- xmlns: "http://www.w3.org/2000/svg",
7
- width: 65,
8
- height: 64,
9
- fill: "none",
10
- children: [
11
- /* @__PURE__ */ l(
12
- "path",
13
- {
14
- fill: "#4D4D4D",
15
- d: "M53.667 39.732h-5.842v-.672h5.164l-.066-5.93-1.201-6.21c-.256-1.327-1.767-2.69-2.66-2.695h-8.511l.047 9.095-28.926.023.018 5.681 1.57.03-.012.672-2.23-.042L11 32.671l28.92-.023-.047-9.095h9.19c1.308.012 3.015 1.671 3.319 3.235l1.213 6.3.072 6.638z"
16
- }
17
- ),
18
- /* @__PURE__ */ l(
19
- "path",
20
- {
21
- fill: "#4D4D4D",
22
- d: "M53.256 33.433h-5.08a1.873 1.873 0 0 1-1.874-1.874v-3.01c0-1.035.839-1.873 1.874-1.873h3.896v.672h-3.896c-.666 0-1.202.54-1.202 1.201v3.01c0 .666.542 1.201 1.202 1.201h5.08zM39.993 39.054H28.037v.672h11.956zM44.145 41.57a2.91 2.91 0 1 1 .002-5.819 2.91 2.91 0 0 1-.002 5.819m0-5.145a2.24 2.24 0 0 0-2.236 2.236 2.24 2.24 0 0 0 2.236 2.237 2.24 2.24 0 0 0 2.237-2.237 2.24 2.24 0 0 0-2.237-2.236M23.962 41.57a2.91 2.91 0 1 1 .001-5.819 2.91 2.91 0 0 1-.001 5.819m0-5.145a2.24 2.24 0 0 0-2.236 2.236 2.24 2.24 0 0 0 2.236 2.237 2.24 2.24 0 0 0 2.237-2.237 2.24 2.24 0 0 0-2.237-2.236M17.229 41.57a2.91 2.91 0 1 1 0-5.819 2.91 2.91 0 0 1 0 5.819m0-5.145a2.24 2.24 0 0 0-2.237 2.236 2.24 2.24 0 0 0 2.237 2.237 2.24 2.24 0 0 0 2.236-2.237 2.24 2.24 0 0 0-2.236-2.236M28.534 31.202h-7.857v-.672h7.857zm6.49-.065-.036-.672.452-.024q.44-.02.655-.28c.19-.22.267-.583.22-1.023-.155-1.44-.869-1.737-2.344-2.046-.726-.149-1.297-.244-1.784-.327-1.6-.268-2.332-.393-4.2-1.696-1.38-.963-2.468-1.641-3.926-1.641h-3.289c-1.695 0-2.67.785-4.152 1.969l-.202.16c-.226.185-.482.393-.85.44l-3.046.41a.645.645 0 0 0-.565.65v2.521c0 .434.077.47.618.547l1.63.226-.095.667-1.63-.226c-.505-.072-1.201-.167-1.201-1.214v-2.522c0-.672.481-1.225 1.148-1.314l3.045-.41c.179-.025.327-.144.518-.298l.202-.16c1.529-1.232 2.635-2.118 4.568-2.118h3.29c1.647 0 2.878.767 4.306 1.766 1.749 1.22 2.338 1.32 3.926 1.588.494.084 1.077.179 1.808.334 1.505.309 2.67.701 2.879 2.629.066.63-.06 1.16-.375 1.528-.267.31-.66.488-1.13.512l-.452.024z"
23
- }
24
- ),
25
- /* @__PURE__ */ l(
26
- "path",
27
- {
28
- fill: "#FF7900",
29
- d: "M31.81 32.624a2.323 2.323 0 0 1-2.32-2.32c0-1.279 1.041-2.32 2.32-2.32s2.32 1.041 2.32 2.32-1.041 2.32-2.32 2.32m0-3.962a1.648 1.648 0 1 0 0 3.295 1.648 1.648 0 0 0 0-3.295M17.362 32.624a2.323 2.323 0 0 1-2.32-2.32 2.323 2.323 0 0 1 2.32-2.32c1.28 0 2.32 1.041 2.32 2.32s-1.04 2.32-2.32 2.32m0-3.962a1.647 1.647 0 1 0 0 3.295 1.647 1.647 0 0 0 0-3.295"
30
- }
31
- )
32
- ]
33
- }
34
- );
35
- export {
36
- v as default
37
- };
@@ -1,45 +0,0 @@
1
- import { jsxs as a, jsx as l } from "react/jsx-runtime";
2
- const t = (c) => /* @__PURE__ */ a(
3
- "svg",
4
- {
5
- ...c,
6
- xmlns: "http://www.w3.org/2000/svg",
7
- width: 65,
8
- height: 64,
9
- fill: "none",
10
- children: [
11
- /* @__PURE__ */ l(
12
- "path",
13
- {
14
- fill: "#4D4D4D",
15
- d: "M40.794 49.566H25.527v-1.248h15.267zm12.619-.121-.067-1.248.872-.044c.563-.033.994-.21 1.28-.552.387-.453.542-1.192.454-2.087-.31-2.892-1.7-3.488-4.582-4.106-1.402-.298-2.528-.486-3.466-.652-3.113-.53-4.527-.772-8.159-3.378-2.682-1.92-4.802-3.278-7.628-3.278h-6.392c-3.3 0-5.2 1.556-8.07 3.919l-.386.32c-.43.364-.927.773-1.645.872l-5.917.806c-.651.088-1.126.651-1.126 1.325v5.011c0 .928.21.983 1.236 1.138l3.169.452-.177 1.237-3.168-.453c-.972-.143-2.308-.331-2.308-2.362v-5.012c0-1.314.928-2.396 2.208-2.562l5.918-.805c.353-.045.64-.287 1.015-.597l.398-.33c2.97-2.44 5.11-4.207 8.864-4.207h6.392c3.202 0 5.575 1.524 8.357 3.51 3.4 2.43 4.548 2.628 7.64 3.158.96.166 2.097.364 3.521.662 2.904.619 5.167 1.391 5.564 5.189.133 1.236-.132 2.318-.74 3.025-.507.596-1.258.938-2.163.982l-.873.044z"
16
- }
17
- ),
18
- /* @__PURE__ */ l(
19
- "path",
20
- {
21
- fill: "#FF7900",
22
- d: "M47.164 52.392c-2.462 0-4.471-2.042-4.471-4.56 0-2.516 2.01-4.559 4.47-4.559 2.463 0 4.472 2.043 4.472 4.56s-2.01 4.559-4.471 4.559m0-7.882c-1.778 0-3.224 1.49-3.224 3.312s1.447 3.311 3.224 3.311 3.223-1.49 3.223-3.311c0-1.822-1.446-3.312-3.223-3.312M19.079 52.392c-2.462 0-4.471-2.042-4.471-4.56 0-2.516 2.01-4.559 4.47-4.559 2.463 0 4.472 2.043 4.472 4.56s-2.01 4.559-4.471 4.559m0-7.882c-1.777 0-3.224 1.49-3.224 3.312s1.447 3.311 3.224 3.311 3.223-1.49 3.223-3.311c0-1.822-1.446-3.312-3.223-3.312"
23
- }
24
- ),
25
- /* @__PURE__ */ l("path", { fill: "#4D4D4D", d: "m39.965 25.043-.574 1.107 2.891 1.5.574-1.108z" }),
26
- /* @__PURE__ */ l(
27
- "path",
28
- {
29
- fill: "#FF7900",
30
- d: "M31.907 26.814c-1.6 0-3.146-.552-4.404-1.58a6.93 6.93 0 0 1-2.529-4.702l1.237-.122a5.72 5.72 0 0 0 2.075 3.864 5.68 5.68 0 0 0 4.206 1.259l.122 1.236a8 8 0 0 1-.718.033z"
31
- }
32
- ),
33
- /* @__PURE__ */ l(
34
- "path",
35
- {
36
- fill: "#4D4D4D",
37
- d: "M53.29 34.729c-.308 0-.606-.078-.882-.221l-9.494-5.067a1.89 1.89 0 0 1-.773-2.561l.077-.144c.232-.441.63-.773 1.115-.916.486-.144.994-.1 1.435.143l9.494 5.067a1.903 1.903 0 0 1 .784 2.562l-.077.143c-.232.442-.63.773-1.115.916a2 2 0 0 1-.552.089zm-9.416-7.739c-.066 0-.132 0-.188.033a.66.66 0 0 0-.375.31l-.077.143a.65.65 0 0 0 .265.872l9.494 5.067c.154.077.32.1.485.044a.66.66 0 0 0 .376-.309l.077-.143a.65.65 0 0 0-.265-.872l-9.494-5.068a.7.7 0 0 0-.298-.077M31.753 30.125c-4.847 0-9.009-3.676-9.506-8.6a9.55 9.55 0 0 1 2.11-7.01 9.5 9.5 0 0 1 6.446-3.466c5.222-.53 9.936 3.3 10.466 8.545.53 5.243-3.301 9.935-8.545 10.465-.32.033-.651.044-.971.044zm-.828-17.829a8.23 8.23 0 0 0-5.597 3.014 8.29 8.29 0 0 0-1.833 6.094c.464 4.56 4.548 7.904 9.108 7.43 4.559-.464 7.893-4.549 7.43-9.108s-4.538-7.893-9.108-7.43"
38
- }
39
- )
40
- ]
41
- }
42
- );
43
- export {
44
- t as default
45
- };
@@ -1,37 +0,0 @@
1
- import { jsxs as a, jsx as c } from "react/jsx-runtime";
2
- const s = (l) => /* @__PURE__ */ a(
3
- "svg",
4
- {
5
- ...l,
6
- xmlns: "http://www.w3.org/2000/svg",
7
- width: 64,
8
- height: 64,
9
- fill: "none",
10
- children: [
11
- /* @__PURE__ */ c(
12
- "path",
13
- {
14
- fill: "#4D4D4D",
15
- d: "M30.131 53.827h-.439c-.525 0-.846-.133-1.05-.462-.172-.196-.274-.502-.352-.932-.047-.29-.11-.58-.173-.87-.117-.549-.243-1.113-.282-1.685a.7.7 0 0 0-.047-.243c-.047-.063-.133-.102-.305-.14-1.262-.338-2.383-.675-3.354-1.325-.643-.439-1.152-.447-1.873.015-.11.071-.212.15-.321.22l-.016.015c-.588.408-1.168.784-1.685 1.129-.493.329-1.01.274-1.426-.149l-1.316-1.316a88 88 0 0 1-2.39-2.43c-.611-.65-.627-.877-.102-1.645q.433-.636.877-1.262c.236-.337.478-.674.714-1.018.219-.314.219-.431.133-.604a19.6 19.6 0 0 1-1.716-4.153c-.07-.25-.173-.329-.541-.392a47 47 0 0 0-1.787-.29c-.336-.047-.666-.102-.995-.156-.681-.11-1.089-.525-1.097-1.113 0-1.771-.015-3.542 0-5.32 0-.753.275-1.082 1.019-1.247l.117-.023c.933-.204 1.897-.415 2.86-.549.212-.031.275-.07.353-.368.345-1.261.69-2.382 1.348-3.346.517-.76.478-1.23-.18-2.022-1.795-2.162-1.716-2.366-1.638-2.601l.086-.235.079-.024c.094-.164.274-.344.517-.572l3.424-3.424c.729-.721.972-.744 1.857-.149.463.306.917.611 1.372.925l.995.674c.297.195.423.125.485.086 1.16-.706 2.492-1.277 4.067-1.74.196-.055.251-.14.275-.274l.102-.62c.117-.712.227-1.441.4-2.162l.054-.235c.188-.878.384-1.105 1.481-1.128h4.74c.91.008 1.184.047 1.396.87l.07.266c.267.932.431 1.747.494 2.5.047.524.235.728.8.87 1.26.328 2.522.861 3.737 1.582.22.133.29.094.384.024.51-.369 1.026-.729 1.544-1.09l.87-.61c.775-.55 1.206-.51 1.872.148l3.526 3.526c.643.643.666.964.15 1.724l-.26.369a53 53 0 0 1-1.355 1.912c-.212.282-.227.454-.07.72.658 1.105 1.19 2.383 1.684 4.012.07.244.11.251.274.275.674.102 1.348.227 2.022.352.314.055.627.118.94.173.283.047 1.129.204 1.137 1.207.015 1.802.008 3.612 0 5.414 0 .862-.604 1.074-.956 1.12-.298.04-.596.103-.886.165-.376.079-.76.157-1.152.204-.862.094-1.222.282-1.606 1.23-.33 1.12-.729 2.053-1.38 3.205-.117.212-.132.345.08.643a81 81 0 0 1 1.762 2.562c.33.494.275 1.011-.14 1.426q-.66.662-1.317 1.332c-.776.8-1.583 1.615-2.406 2.398-.642.62-.87.627-1.645.11-.423-.282-.847-.58-1.27-.87-.337-.235-.682-.47-1.019-.705-.32-.212-.43-.22-.603-.125a19.7 19.7 0 0 1-3.48 1.535s-.124.047-.265.087l-.4.117c-.18.055-.274.126-.337.306q-.115.542-.196 1.097c-.047.305-.094.619-.133.925-.047.336-.094.666-.15 1.002-.1.682-.516 1.098-1.104 1.098-1.622.015-3.252.03-4.874.03zm2.523-1.003h1.873c.141 0 .517 0 .596-.031-.016-.008.023-.18.055-.337l.062-.306c.102-.454.18-.924.251-1.386l.024-.15q.069-.444.148-.877c.016-.078.032-.188.071-.314.008-.039.016-.086.031-.125.079-.345.259-.572.557-.705.039-.016.047-.024.744-.212h.016a19.6 19.6 0 0 0 3.557-1.551c.705-.392 1.285 0 1.528.164.345.236.69.47 1.035.713.415.29.83.58 1.246.862.11.07.235.157.313.196.055-.047.141-.125.22-.203.822-.784 1.621-1.607 2.397-2.398l1.317-1.34c.117-.118.117-.173.031-.314a84 84 0 0 0-1.747-2.53c-.251-.345-.533-.886-.134-1.6.627-1.104.996-1.95 1.301-3.024v-.023c.54-1.372 1.27-1.709 2.351-1.818.353-.04.697-.11 1.066-.188.313-.063.634-.134.948-.18.157-.024.196-.032.196-.251q.012-2.704 0-5.407c0-.188 0-.267-.4-.345-.313-.055-.635-.118-.948-.172a58 58 0 0 0-1.983-.345c-.666-.094-.885-.533-.995-.901-.47-1.56-.971-2.767-1.598-3.809-.345-.58-.306-1.136.117-1.708.463-.611.894-1.246 1.332-1.88l.259-.377a3 3 0 0 0 .212-.344 6 6 0 0 1-.251-.243l-3.526-3.527q-.337-.336-.737-.047l-.87.612c-.517.36-1.026.713-1.536 1.081-.415.298-.87.306-1.355.016a13.5 13.5 0 0 0-3.51-1.49c-.628-.164-1.356-.5-1.458-1.653-.063-.697-.212-1.457-.463-2.327l-.078-.29c-.016-.07-.04-.14-.055-.196a7 7 0 0 0-.486-.015c-.971-.008-1.927-.008-2.891 0h-1.85c-.383 0-.493.023-.524.039-.016.031-.055.22-.095.384l-.054.243a33 33 0 0 0-.384 2.1l-.102.619c-.079.486-.4.83-.894.98-1.504.438-2.758.979-3.855 1.645-.305.188-.807.321-1.442-.102l-1.003-.674-1.363-.917c-.172-.117-.392-.258-.455-.274 0 .024-.156.18-.29.313l-3.4 3.401-.4.463c.22.344.768 1.057 1.38 1.802.665.8 1.151 1.732.226 3.087-.626.925-.963 2.116-1.222 3.08-.118.415-.345.909-1.09 1.01-.932.134-1.88.338-2.797.541l-.117.024c-.235.055-.29.086-.298.094 0 0-.024.063-.031.29-.016 1.77-.008 3.534 0 5.305 0 .055 0 .18.352.243q.495.08.988.149c.61.094 1.214.18 1.818.297.297.055.995.188 1.23 1.027a19 19 0 0 0 1.638 3.965c.391.705 0 1.285-.173 1.528-.235.345-.478.682-.72 1.026-.29.416-.588.823-.87 1.246-.071.11-.157.235-.204.314.047.055.125.14.196.22.783.83 1.598 1.637 2.382 2.42.446.44.885.878 1.324 1.325.118.117.172.117.313.031.518-.337 1.09-.72 1.677-1.12.11-.087.228-.165.345-.243.173-.126.345-.243.517-.369.345-.25.886-.532 1.599-.117a15 15 0 0 0 3.652 1.512c.203.055.736.196 1.01.729.086.141.15.313.18.525.134.932.345 1.88.557 2.79l.023.117c.016.07.032.125.04.165.078.047.211.047.446.047h2.868z"
16
- }
17
- ),
18
- /* @__PURE__ */ c(
19
- "path",
20
- {
21
- fill: "#FF7900",
22
- d: "M37.912 44.244a91 91 0 0 0-1.724-1.7c-1.285-1.239-2.664-1.787-4.208-1.67a9.8 9.8 0 0 1-2.14-.07c-1.778-.25-3.384-1.003-4.787-2.233-1.708-1.497-2.805-3.519-3.268-6.003-.188-1.026-.164-2.719.549-4.114l.266-.532 1.622 1.559s.345.329.831.8l2.508 2.397c.195.196.376.368.532.525.392.376.784.54 1.192.556.517-.008.932-.337 1.198-.603l.134-.133c.728-.76 1.465-1.513 2.186-2.28.188-.196.353-.384.43-.604.267-.736.134-1.3-.422-1.834a46 46 0 0 0-2.46-2.405l-3.002-2.578.29-.337s.447-.51 1.207-.862c1.089-.502 3.126-.486 4.153-.133 2.053.4 4.38 2.006 5.869 4.074 1.215 1.685 1.794 3.503 1.716 5.407-.078 1.834.462 3.237 1.7 4.42l2.093 1.998-.611.642-2.093-1.998c-1.41-1.355-2.06-3.024-1.967-5.093.07-1.7-.446-3.33-1.551-4.85-1.364-1.897-3.48-3.362-5.383-3.738-.902-.306-2.68-.314-3.55.086a3.3 3.3 0 0 0-.572.345l.11.094.078-.087.682.627 1.598 1.481c.737.69 1.497 1.41 2.327 2.288.792.76 1.011 1.693.627 2.759-.14.384-.376.65-.627.916-.728.768-1.457 1.52-2.194 2.28l-.125.134c-.54.564-1.168.862-1.818.878-.603.023-1.262-.267-1.818-.807-.266-.26-.595-.58-.948-.91l-3.597-3.369.04-.047-.087-.086c-.4 1.144-.345 2.374-.227 2.985.43 2.312 1.41 4.114 2.985 5.501 1.27 1.113 2.72 1.795 4.326 2.022a8.6 8.6 0 0 0 1.951.063c1.802-.141 3.44.509 4.89 1.912.619.603 1.19 1.167 1.731 1.716l-.626.627z"
23
- }
24
- ),
25
- /* @__PURE__ */ c(
26
- "path",
27
- {
28
- fill: "#4D4D4D",
29
- d: "M32.082 45.913c-7.538 0-13.666-6.128-13.666-13.666s6.128-13.666 13.666-13.666 13.666 6.128 13.666 13.666-6.127 13.666-13.666 13.666m0-26.454c-7.052 0-12.78 5.736-12.78 12.78 0 7.045 5.736 12.78 12.78 12.78 7.045 0 12.78-5.735 12.78-12.78s-5.735-12.78-12.78-12.78"
30
- }
31
- )
32
- ]
33
- }
34
- );
35
- export {
36
- s as default
37
- };
@@ -1,33 +0,0 @@
1
- import { jsxs as t, jsx as h } from "react/jsx-runtime";
2
- const i = (l) => /* @__PURE__ */ t(
3
- "svg",
4
- {
5
- ...l,
6
- xmlns: "http://www.w3.org/2000/svg",
7
- width: 64,
8
- height: 64,
9
- fill: "none",
10
- children: [
11
- /* @__PURE__ */ h(
12
- "path",
13
- {
14
- fill: "#4D4D4D",
15
- d: "m45.814 53.998-30.88-.097V13.3h30.88zM15.88 52.952l28.99.089V14.249h-28.99z"
16
- }
17
- ),
18
- /* @__PURE__ */ h(
19
- "path",
20
- {
21
- fill: "#4D4D4D",
22
- d: "M48.349 51.335h-3.007V50.4h2.09V11.587H17.955c-.044 0-2.09.215-2.09 2.196h-.917c0-2.263 1.944-3.027 2.97-3.116h30.438v40.668z"
23
- }
24
- ),
25
- /* @__PURE__ */ h("path", { fill: "#4D4D4D", d: "M40.355 33.175H20.711v.95h19.644z" }),
26
- /* @__PURE__ */ h("path", { fill: "#FF7900", d: "M40.355 28.041H20.711v.95h19.644z" }),
27
- /* @__PURE__ */ h("path", { fill: "#4D4D4D", d: "M40.355 38.315H20.711v.95h19.644z" })
28
- ]
29
- }
30
- );
31
- export {
32
- i as default
33
- };