@homecode/ui 4.11.1

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 (267) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +29 -0
  3. package/dist/esm/index.js +78 -0
  4. package/dist/esm/node_modules/style-inject/dist/style-inject.es.js +28 -0
  5. package/dist/esm/src/components/AssistiveText/AssistiveText.js +10 -0
  6. package/dist/esm/src/components/AssistiveText/AssistiveText.styl.js +7 -0
  7. package/dist/esm/src/components/Button/Button.helpers.js +12 -0
  8. package/dist/esm/src/components/Button/Button.js +38 -0
  9. package/dist/esm/src/components/Button/Button.styl.js +7 -0
  10. package/dist/esm/src/components/ButtonGroup/ButtonGroup.js +10 -0
  11. package/dist/esm/src/components/ButtonGroup/ButtonGroup.styl.js +7 -0
  12. package/dist/esm/src/components/Checkbox/Checkbox.js +48 -0
  13. package/dist/esm/src/components/Checkbox/Checkbox.styl.js +7 -0
  14. package/dist/esm/src/components/Container/Container.js +12 -0
  15. package/dist/esm/src/components/Container/Container.styl.js +7 -0
  16. package/dist/esm/src/components/DateTime/DateTime.js +17 -0
  17. package/dist/esm/src/components/Draggable/Draggable.js +136 -0
  18. package/dist/esm/src/components/Draggable/Draggable.styl.js +7 -0
  19. package/dist/esm/src/components/Expand/Expand.js +24 -0
  20. package/dist/esm/src/components/Expand/Expand.styl.js +7 -0
  21. package/dist/esm/src/components/Form/Form.helpers.js +42 -0
  22. package/dist/esm/src/components/Form/Form.js +286 -0
  23. package/dist/esm/src/components/Form/Form.styl.js +7 -0
  24. package/dist/esm/src/components/Form/Form.types.js +1 -0
  25. package/dist/esm/src/components/Form/SubmitButtons/SubmitButtons.js +8 -0
  26. package/dist/esm/src/components/Form/SubmitButtons/SubmitButtons.styl.js +7 -0
  27. package/dist/esm/src/components/Form/Validator.js +36 -0
  28. package/dist/esm/src/components/Gallery/Dots/Dots.js +9 -0
  29. package/dist/esm/src/components/Gallery/Dots/Dots.styl.js +7 -0
  30. package/dist/esm/src/components/Gallery/Gallery.js +180 -0
  31. package/dist/esm/src/components/Gallery/Gallery.styl.js +7 -0
  32. package/dist/esm/src/components/Heading/Heading.js +37 -0
  33. package/dist/esm/src/components/Heading/Heading.styl.js +7 -0
  34. package/dist/esm/src/components/Icon/Icon.js +27 -0
  35. package/dist/esm/src/components/Icon/Icon.styl.js +7 -0
  36. package/dist/esm/src/components/Icon/icons/avatar.svg.js +15 -0
  37. package/dist/esm/src/components/Icon/icons/brokenImage.svg.js +15 -0
  38. package/dist/esm/src/components/Icon/icons/check.svg.js +19 -0
  39. package/dist/esm/src/components/Icon/icons/chevronDown.svg.js +20 -0
  40. package/dist/esm/src/components/Icon/icons/chevronLeft.svg.js +20 -0
  41. package/dist/esm/src/components/Icon/icons/chevronRight.svg.js +20 -0
  42. package/dist/esm/src/components/Icon/icons/chevronUp.svg.js +20 -0
  43. package/dist/esm/src/components/Icon/icons/close.svg.js +15 -0
  44. package/dist/esm/src/components/Icon/icons/colors.svg.js +60 -0
  45. package/dist/esm/src/components/Icon/icons/copy.svg.js +15 -0
  46. package/dist/esm/src/components/Icon/icons/delete.svg.js +15 -0
  47. package/dist/esm/src/components/Icon/icons/draft.svg.js +15 -0
  48. package/dist/esm/src/components/Icon/icons/edit.svg.js +15 -0
  49. package/dist/esm/src/components/Icon/icons/externalLink.svg.js +15 -0
  50. package/dist/esm/src/components/Icon/icons/fullscreen.svg.js +15 -0
  51. package/dist/esm/src/components/Icon/icons/fullscreenExit.svg.js +15 -0
  52. package/dist/esm/src/components/Icon/icons/gear.svg.js +20 -0
  53. package/dist/esm/src/components/Icon/icons/history.svg.js +17 -0
  54. package/dist/esm/src/components/Icon/icons/home.svg.js +19 -0
  55. package/dist/esm/src/components/Icon/icons/index.js +41 -0
  56. package/dist/esm/src/components/Icon/icons/loader.svg.js +45 -0
  57. package/dist/esm/src/components/Icon/icons/menu.svg.js +18 -0
  58. package/dist/esm/src/components/Icon/icons/mic.svg.js +15 -0
  59. package/dist/esm/src/components/Icon/icons/minus.svg.js +15 -0
  60. package/dist/esm/src/components/Icon/icons/moreHorizontal.svg.js +15 -0
  61. package/dist/esm/src/components/Icon/icons/moreVertical.svg.js +15 -0
  62. package/dist/esm/src/components/Icon/icons/plus.svg.js +15 -0
  63. package/dist/esm/src/components/Icon/icons/redo.svg.js +15 -0
  64. package/dist/esm/src/components/Icon/icons/requiredStar.svg.js +15 -0
  65. package/dist/esm/src/components/Icon/icons/save.svg.js +17 -0
  66. package/dist/esm/src/components/Icon/icons/send.svg.js +16 -0
  67. package/dist/esm/src/components/Icon/icons/settings.svg.js +52 -0
  68. package/dist/esm/src/components/Icon/icons/shoppingBag.svg.js +17 -0
  69. package/dist/esm/src/components/Icon/icons/social_email.svg.js +15 -0
  70. package/dist/esm/src/components/Icon/icons/social_instagram.svg.js +15 -0
  71. package/dist/esm/src/components/Icon/icons/social_telegram.svg.js +19 -0
  72. package/dist/esm/src/components/Icon/icons/undo.svg.js +15 -0
  73. package/dist/esm/src/components/Input/Input.js +331 -0
  74. package/dist/esm/src/components/Input/Input.styl.js +7 -0
  75. package/dist/esm/src/components/InputFile/InputFile.js +292 -0
  76. package/dist/esm/src/components/InputFile/InputFile.styl.js +7 -0
  77. package/dist/esm/src/components/InputFile/InputFile.types.js +1 -0
  78. package/dist/esm/src/components/InputFile/Item/Item.js +18 -0
  79. package/dist/esm/src/components/InputFile/Item/Item.styl.js +7 -0
  80. package/dist/esm/src/components/Label/Label.constants.json.js +8 -0
  81. package/dist/esm/src/components/Label/Label.helpers.js +35 -0
  82. package/dist/esm/src/components/Label/Label.js +58 -0
  83. package/dist/esm/src/components/Label/Label.styl.js +7 -0
  84. package/dist/esm/src/components/Lazy/Lazy.js +65 -0
  85. package/dist/esm/src/components/LightBox/LightBox.js +28 -0
  86. package/dist/esm/src/components/LightBox/LightBox.styl.js +7 -0
  87. package/dist/esm/src/components/Notifications/Notifications.constants.json.js +6 -0
  88. package/dist/esm/src/components/Notifications/Notifications.js +67 -0
  89. package/dist/esm/src/components/Notifications/Notifications.styl.js +7 -0
  90. package/dist/esm/src/components/Notifications/store.js +62 -0
  91. package/dist/esm/src/components/Paranja/Paranja.js +14 -0
  92. package/dist/esm/src/components/Paranja/Paranja.styl.js +7 -0
  93. package/dist/esm/src/components/Popup/Popup.helpers.js +31 -0
  94. package/dist/esm/src/components/Popup/Popup.js +396 -0
  95. package/dist/esm/src/components/Popup/Popup.styl.js +7 -0
  96. package/dist/esm/src/components/PopupMenu/PopupMenu.js +15 -0
  97. package/dist/esm/src/components/PopupMenu/PopupMenu.styl.js +7 -0
  98. package/dist/esm/src/components/Portal/Portal.js +19 -0
  99. package/dist/esm/src/components/RequiredStar/RequiredStar.js +12 -0
  100. package/dist/esm/src/components/RequiredStar/RequiredStar.styl.js +7 -0
  101. package/dist/esm/src/components/Router/Link/Link.js +61 -0
  102. package/dist/esm/src/components/Router/Link/Link.styl.js +7 -0
  103. package/dist/esm/src/components/Router/Redirect.js +12 -0
  104. package/dist/esm/src/components/Router/Route.js +4 -0
  105. package/dist/esm/src/components/Router/Router.helpers.js +33 -0
  106. package/dist/esm/src/components/Router/Router.js +68 -0
  107. package/dist/esm/src/components/Router/context.js +5 -0
  108. package/dist/esm/src/components/Router/store.js +55 -0
  109. package/dist/esm/src/components/Scroll/Scroll.js +274 -0
  110. package/dist/esm/src/components/Scroll/Scroll.styl.js +7 -0
  111. package/dist/esm/src/components/Select/Select.helpers.js +37 -0
  112. package/dist/esm/src/components/Select/Select.js +583 -0
  113. package/dist/esm/src/components/Select/Select.styl.js +7 -0
  114. package/dist/esm/src/components/Spinner/Spinner.js +11 -0
  115. package/dist/esm/src/components/Spinner/Spinner.styl.js +7 -0
  116. package/dist/esm/src/components/Spinner/spinner.svg.js +24 -0
  117. package/dist/esm/src/components/Table/Table.js +24 -0
  118. package/dist/esm/src/components/Table/Table.styl.js +7 -0
  119. package/dist/esm/src/components/Tabs/Tabs.js +43 -0
  120. package/dist/esm/src/components/Tabs/Tabs.styl.js +7 -0
  121. package/dist/esm/src/components/Text/Text.js +44 -0
  122. package/dist/esm/src/components/Text/Text.styl.js +7 -0
  123. package/dist/esm/src/components/Theme/Theme.defaults.js +50 -0
  124. package/dist/esm/src/components/Theme/Theme.helpers.js +67 -0
  125. package/dist/esm/src/components/Theme/Theme.js +13 -0
  126. package/dist/esm/src/components/VH/VH.js +33 -0
  127. package/dist/esm/src/components/Virtualized/List/List.js +124 -0
  128. package/dist/esm/src/components/Virtualized/List/List.styl.js +7 -0
  129. package/dist/esm/src/components/Virtualized/List/ListScroll.js +21 -0
  130. package/dist/esm/src/components/Virtualized/List/ListScroll.styl.js +7 -0
  131. package/dist/esm/src/components/Virtualized/Virtualized.helpers.js +14 -0
  132. package/dist/esm/src/components/Virtualized/Virtualized.js +200 -0
  133. package/dist/esm/src/components/Virtualized/Virtualized.styl.js +7 -0
  134. package/dist/esm/src/components/Virtualized/Virtualized.types.js +1 -0
  135. package/dist/esm/src/services/i18n.js +68 -0
  136. package/dist/esm/src/tools/array.js +60 -0
  137. package/dist/esm/src/tools/config.js +9 -0
  138. package/dist/esm/src/tools/debounce.js +11 -0
  139. package/dist/esm/src/tools/dom.js +46 -0
  140. package/dist/esm/src/tools/env.js +3 -0
  141. package/dist/esm/src/tools/file.js +11 -0
  142. package/dist/esm/src/tools/localStorage.js +31 -0
  143. package/dist/esm/src/tools/number.js +27 -0
  144. package/dist/esm/src/tools/object.js +5 -0
  145. package/dist/esm/src/tools/queryParams.js +20 -0
  146. package/dist/esm/src/tools/rangeMap.js +3 -0
  147. package/dist/esm/src/tools/resizeObserver.js +64 -0
  148. package/dist/esm/src/tools/scroll.js +41 -0
  149. package/dist/esm/src/tools/string.js +7 -0
  150. package/dist/esm/src/tools/throttle.js +30 -0
  151. package/dist/esm/src/tools/uid.js +7 -0
  152. package/dist/esm/types/index.d.ts +1 -0
  153. package/dist/esm/types/src/components/AssistiveText/AssistiveText.d.ts +3 -0
  154. package/dist/esm/types/src/components/AssistiveText/AssistiveText.types.d.ts +7 -0
  155. package/dist/esm/types/src/components/Button/Button.d.ts +4 -0
  156. package/dist/esm/types/src/components/Button/Button.helpers.d.ts +1 -0
  157. package/dist/esm/types/src/components/Button/Button.types.d.ts +14 -0
  158. package/dist/esm/types/src/components/ButtonGroup/ButtonGroup.d.ts +3 -0
  159. package/dist/esm/types/src/components/ButtonGroup/ButtonGroup.types.d.ts +5 -0
  160. package/dist/esm/types/src/components/Checkbox/Checkbox.d.ts +18 -0
  161. package/dist/esm/types/src/components/Checkbox/Checkbox.types.d.ts +10 -0
  162. package/dist/esm/types/src/components/Container/Container.d.ts +3 -0
  163. package/dist/esm/types/src/components/Container/Container.types.d.ts +13 -0
  164. package/dist/esm/types/src/components/DateTime/DateTime.d.ts +8 -0
  165. package/dist/esm/types/src/components/DateTime/DateTime.types.d.ts +6 -0
  166. package/dist/esm/types/src/components/Draggable/Draggable.d.ts +24 -0
  167. package/dist/esm/types/src/components/Draggable/Draggable.types.d.ts +11 -0
  168. package/dist/esm/types/src/components/Expand/Expand.d.ts +3 -0
  169. package/dist/esm/types/src/components/Expand/Expand.types.d.ts +16 -0
  170. package/dist/esm/types/src/components/Form/Form.d.ts +32 -0
  171. package/dist/esm/types/src/components/Form/Form.helpers.d.ts +6 -0
  172. package/dist/esm/types/src/components/Form/Form.types.d.ts +71 -0
  173. package/dist/esm/types/src/components/Form/SubmitButtons/SubmitButtons.d.ts +13 -0
  174. package/dist/esm/types/src/components/Form/Validator.d.ts +2 -0
  175. package/dist/esm/types/src/components/Form/index.d.ts +2 -0
  176. package/dist/esm/types/src/components/Gallery/Dots/Dots.d.ts +5 -0
  177. package/dist/esm/types/src/components/Gallery/Gallery.d.ts +36 -0
  178. package/dist/esm/types/src/components/Gallery/Gallery.types.d.ts +12 -0
  179. package/dist/esm/types/src/components/Heading/Heading.d.ts +3 -0
  180. package/dist/esm/types/src/components/Heading/Heading.types.d.ts +5 -0
  181. package/dist/esm/types/src/components/Icon/Icon.d.ts +45 -0
  182. package/dist/esm/types/src/components/Icon/Icon.example.d.ts +3 -0
  183. package/dist/esm/types/src/components/Icon/Icon.helpers.d.ts +1 -0
  184. package/dist/esm/types/src/components/Icon/Icon.types.d.ts +8 -0
  185. package/dist/esm/types/src/components/Icon/icons/index.d.ts +39 -0
  186. package/dist/esm/types/src/components/Input/Input.d.ts +42 -0
  187. package/dist/esm/types/src/components/Input/Input.types.d.ts +21 -0
  188. package/dist/esm/types/src/components/InputFile/InputFile.d.ts +48 -0
  189. package/dist/esm/types/src/components/InputFile/InputFile.types.d.ts +22 -0
  190. package/dist/esm/types/src/components/InputFile/Item/Item.d.ts +16 -0
  191. package/dist/esm/types/src/components/Label/Label.d.ts +19 -0
  192. package/dist/esm/types/src/components/Label/Label.helpers.d.ts +1 -0
  193. package/dist/esm/types/src/components/Label/Label.types.d.ts +8 -0
  194. package/dist/esm/types/src/components/Lazy/Lazy.d.ts +18 -0
  195. package/dist/esm/types/src/components/Lazy/Lazy.types.d.ts +15 -0
  196. package/dist/esm/types/src/components/LightBox/LightBox.d.ts +3 -0
  197. package/dist/esm/types/src/components/LightBox/LightBox.types.d.ts +7 -0
  198. package/dist/esm/types/src/components/Notifications/Notifications.d.ts +2 -0
  199. package/dist/esm/types/src/components/Notifications/Notifications.types.d.ts +19 -0
  200. package/dist/esm/types/src/components/Notifications/store.d.ts +2 -0
  201. package/dist/esm/types/src/components/Paranja/Paranja.d.ts +3 -0
  202. package/dist/esm/types/src/components/Paranja/Paranja.types.d.ts +8 -0
  203. package/dist/esm/types/src/components/Popup/Popup.d.ts +73 -0
  204. package/dist/esm/types/src/components/Popup/Popup.helpers.d.ts +8 -0
  205. package/dist/esm/types/src/components/Popup/Popup.types.d.ts +34 -0
  206. package/dist/esm/types/src/components/PopupMenu/PopupMenu.d.ts +3 -0
  207. package/dist/esm/types/src/components/PopupMenu/PopupMenu.types.d.ts +13 -0
  208. package/dist/esm/types/src/components/Portal/Portal.d.ts +7 -0
  209. package/dist/esm/types/src/components/RequiredStar/RequiredStar.d.ts +3 -0
  210. package/dist/esm/types/src/components/RequiredStar/RequiredStar.types.d.ts +6 -0
  211. package/dist/esm/types/src/components/Router/Link/Link.d.ts +1 -0
  212. package/dist/esm/types/src/components/Router/Link/Link.types.d.ts +12 -0
  213. package/dist/esm/types/src/components/Router/Redirect.d.ts +5 -0
  214. package/dist/esm/types/src/components/Router/Route.d.ts +5 -0
  215. package/dist/esm/types/src/components/Router/Router.d.ts +7 -0
  216. package/dist/esm/types/src/components/Router/Router.helpers.d.ts +2 -0
  217. package/dist/esm/types/src/components/Router/Router.types.d.ts +18 -0
  218. package/dist/esm/types/src/components/Router/context.d.ts +6 -0
  219. package/dist/esm/types/src/components/Router/store.d.ts +2 -0
  220. package/dist/esm/types/src/components/Scroll/Scroll.d.ts +67 -0
  221. package/dist/esm/types/src/components/Scroll/Scroll.types.d.ts +27 -0
  222. package/dist/esm/types/src/components/Select/Select.d.ts +94 -0
  223. package/dist/esm/types/src/components/Select/Select.helpers.d.ts +14 -0
  224. package/dist/esm/types/src/components/Select/Select.types.d.ts +74 -0
  225. package/dist/esm/types/src/components/Spinner/Spinner.d.ts +3 -0
  226. package/dist/esm/types/src/components/Spinner/Spinner.types.d.ts +4 -0
  227. package/dist/esm/types/src/components/Table/Table.d.ts +8 -0
  228. package/dist/esm/types/src/components/Table/Table.types.d.ts +19 -0
  229. package/dist/esm/types/src/components/Tabs/Tabs.d.ts +3 -0
  230. package/dist/esm/types/src/components/Tabs/Tabs.types.d.ts +27 -0
  231. package/dist/esm/types/src/components/Text/Text.d.ts +7 -0
  232. package/dist/esm/types/src/components/Theme/Theme.d.ts +5 -0
  233. package/dist/esm/types/src/components/Theme/Theme.defaults.d.ts +32 -0
  234. package/dist/esm/types/src/components/Theme/Theme.helpers.d.ts +15 -0
  235. package/dist/esm/types/src/components/Theme/Theme.types.d.ts +6 -0
  236. package/dist/esm/types/src/components/VH/VH.d.ts +12 -0
  237. package/dist/esm/types/src/components/Virtualized/Cards/Cards.d.ts +26 -0
  238. package/dist/esm/types/src/components/Virtualized/List/List.d.ts +44 -0
  239. package/dist/esm/types/src/components/Virtualized/List/ListScroll.d.ts +8 -0
  240. package/dist/esm/types/src/components/Virtualized/Table/Table.d.ts +26 -0
  241. package/dist/esm/types/src/components/Virtualized/Virtualized.d.ts +34 -0
  242. package/dist/esm/types/src/components/Virtualized/Virtualized.helpers.d.ts +18 -0
  243. package/dist/esm/types/src/components/Virtualized/Virtualized.types.d.ts +53 -0
  244. package/dist/esm/types/src/components/Virtualized/index.d.ts +4 -0
  245. package/dist/esm/types/src/components/index.d.ts +33 -0
  246. package/dist/esm/types/src/index.d.ts +3 -0
  247. package/dist/esm/types/src/services/i18n.d.ts +16 -0
  248. package/dist/esm/types/src/services/index.d.ts +1 -0
  249. package/dist/esm/types/src/tools/array.d.ts +8 -0
  250. package/dist/esm/types/src/tools/config.d.ts +10 -0
  251. package/dist/esm/types/src/tools/debounce.d.ts +1 -0
  252. package/dist/esm/types/src/tools/dom.d.ts +12 -0
  253. package/dist/esm/types/src/tools/env.d.ts +1 -0
  254. package/dist/esm/types/src/tools/file.d.ts +1 -0
  255. package/dist/esm/types/src/tools/index.d.ts +16 -0
  256. package/dist/esm/types/src/tools/localStorage.d.ts +12 -0
  257. package/dist/esm/types/src/tools/number.d.ts +5 -0
  258. package/dist/esm/types/src/tools/object.d.ts +1 -0
  259. package/dist/esm/types/src/tools/queryParams.d.ts +3 -0
  260. package/dist/esm/types/src/tools/rangeMap.d.ts +2 -0
  261. package/dist/esm/types/src/tools/resizeObserver.d.ts +2 -0
  262. package/dist/esm/types/src/tools/scroll.d.ts +5 -0
  263. package/dist/esm/types/src/tools/string.d.ts +1 -0
  264. package/dist/esm/types/src/tools/throttle.d.ts +6 -0
  265. package/dist/esm/types/src/tools/uid.d.ts +1 -0
  266. package/dist/esm/types/src/types.d.ts +15 -0
  267. package/package.json +117 -0
@@ -0,0 +1,15 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ 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); }
5
+ var SvgBrokenImage = function SvgBrokenImage(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ viewBox: "0 0 24 24",
9
+ fill: "currentColor"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5v-4.58l.99.99 4-4 4 4 4-3.99L19 12.43V19zm0-9.41-1.01-1.01-4 4.01-4-4-4 4-.99-1V5h14v4.59z"
12
+ })));
13
+ };
14
+
15
+ export { SvgBrokenImage as default };
@@ -0,0 +1,19 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ 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); }
5
+ var SvgCheck = function SvgCheck(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ viewBox: "0 0 20 20",
8
+ stroke: "currentColor",
9
+ fill: "none",
10
+ xmlns: "http://www.w3.org/2000/svg"
11
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
12
+ d: "m1.695 7.106 7.384 8.35 9.32-11.099",
13
+ strokeWidth: 2.8,
14
+ strokeLinecap: "round",
15
+ strokeLinejoin: "round"
16
+ })));
17
+ };
18
+
19
+ export { SvgCheck as default };
@@ -0,0 +1,20 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ 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); }
5
+ var SvgChevronDown = function SvgChevronDown(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ viewBox: "0 0 24 24",
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ stroke: "currentColor",
10
+ fill: "none"
11
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
12
+ d: "m2.833 7.9 8.895 8.771 8.942-8.74v0",
13
+ strokeWidth: 3,
14
+ strokeLinecap: "round",
15
+ strokeLinejoin: "round",
16
+ paintOrder: "markers fill stroke"
17
+ })));
18
+ };
19
+
20
+ export { SvgChevronDown as default };
@@ -0,0 +1,20 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ 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); }
5
+ var SvgChevronLeft = function SvgChevronLeft(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ viewBox: "0 0 24 24",
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ stroke: "currentColor",
10
+ fill: "none"
11
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
12
+ d: "m15.906 3.058-8.77 8.896 8.74 8.94v0",
13
+ strokeWidth: 3,
14
+ strokeLinecap: "round",
15
+ strokeLinejoin: "round",
16
+ paintOrder: "markers fill stroke"
17
+ })));
18
+ };
19
+
20
+ export { SvgChevronLeft as default };
@@ -0,0 +1,20 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ 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); }
5
+ var SvgChevronRight = function SvgChevronRight(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ viewBox: "0 0 24 24",
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ stroke: "currentColor",
10
+ fill: "none"
11
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
12
+ d: "m7.675 20.974 8.77-8.895-8.74-8.942v0",
13
+ strokeWidth: 3,
14
+ strokeLinecap: "round",
15
+ strokeLinejoin: "round",
16
+ paintOrder: "markers fill stroke"
17
+ })));
18
+ };
19
+
20
+ export { SvgChevronRight as default };
@@ -0,0 +1,20 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ 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); }
5
+ var SvgChevronUp = function SvgChevronUp(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ viewBox: "0 0 24 24",
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ stroke: "currentColor",
10
+ fill: "none"
11
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
12
+ d: "m20.75 16.132-8.897-8.77-8.941 8.74v0",
13
+ strokeWidth: 3,
14
+ strokeLinecap: "round",
15
+ strokeLinejoin: "round",
16
+ paintOrder: "markers fill stroke"
17
+ })));
18
+ };
19
+
20
+ export { SvgChevronUp as default };
@@ -0,0 +1,15 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ 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); }
5
+ var SvgClose = function SvgClose(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ viewBox: "0 0 24 24",
8
+ fill: "currentColor",
9
+ xmlns: "http://www.w3.org/2000/svg"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ d: "m20.03 1.809-6.95 6.948c-.617.618-1.543.618-2.16 0L3.97 1.81C2.452.629.542 2.855 1.81 3.97l6.948 6.95c.618.617.618 1.543 0 2.16L1.81 20.03c-1.459 1.472.728 3.699 2.161 2.161l6.95-6.948c.617-.618 1.543-.618 2.16 0l6.95 6.948c1.437 1.48 3.806-.471 2.161-2.161l-6.948-6.95c-.618-.617-.618-1.543 0-2.16l6.948-6.95C23.44 2.56 21.38.627 20.03 1.81z"
12
+ })));
13
+ };
14
+
15
+ export { SvgClose as default };
@@ -0,0 +1,60 @@
1
+ import * as React from 'react';
2
+
3
+ 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); }
4
+ var SvgColors = function SvgColors(props) {
5
+ return /*#__PURE__*/React.createElement("svg", _extends({
6
+ viewBox: "0 0 24 24",
7
+ xmlns: "http://www.w3.org/2000/svg"
8
+ }, props), /*#__PURE__*/React.createElement("path", {
9
+ style: {
10
+ mixBlendMode: "normal"
11
+ },
12
+ d: "M16.034 14.886a7.488 7.488 0 0 1-3.97 1.156 7.488 7.488 0 0 1-3.56-.906 7.488 7.488 0 0 0 3.802 6.27 7.488 7.488 0 0 0 3.732-6.461 7.488 7.488 0 0 0-.004-.059z",
13
+ fill: "#983ec4",
14
+ fillOpacity: 0.7
15
+ }), /*#__PURE__*/React.createElement("path", {
16
+ style: {
17
+ mixBlendMode: "normal"
18
+ },
19
+ d: "M8.56 7.465a7.488 7.488 0 0 0-3.971 1.144 7.488 7.488 0 0 0 3.922 6.514 7.488 7.488 0 0 1-.014-.217 7.488 7.488 0 0 1 3.729-6.46 7.488 7.488 0 0 0-3.666-.981z",
20
+ fill: "#969b00",
21
+ fillOpacity: 0.7
22
+ }), /*#__PURE__*/React.createElement("path", {
23
+ style: {
24
+ mixBlendMode: "normal"
25
+ },
26
+ d: "M15.972 7.42a7.488 7.488 0 0 0-3.736 1.018 7.488 7.488 0 0 1 3.798 6.466 7.488 7.488 0 0 0 3.512-6.343 7.488 7.488 0 0 0-.006-.237 7.488 7.488 0 0 0-3.568-.904z",
27
+ fill: "#007dad",
28
+ fillOpacity: 0.7
29
+ }), /*#__PURE__*/React.createElement("path", {
30
+ style: {
31
+ mixBlendMode: "normal"
32
+ },
33
+ d: "M8.5 15.125a7.488 7.488 0 0 0 3.559.922A7.488 7.488 0 0 0 16.03 14.9a7.488 7.488 0 0 0-3.796-6.463 7.488 7.488 0 0 0-3.75 6.469 7.488 7.488 0 0 0 .015.22z",
34
+ fill: "#cacaca",
35
+ fillOpacity: 0.7
36
+ }), /*#__PURE__*/React.createElement("path", {
37
+ style: {
38
+ mixBlendMode: "normal"
39
+ },
40
+ d: "M12.3 21.41a7.488 7.488 0 0 1-3.8-6.285A7.488 7.488 0 0 1 4.574 8.61a7.488 7.488 0 0 0-3.517 6.341 7.488 7.488 0 0 0 7.488 7.489 7.488 7.488 0 0 0 3.756-1.03z",
41
+ fill: "#c80000",
42
+ fillOpacity: 0.7
43
+ }), /*#__PURE__*/React.createElement("path", {
44
+ style: {
45
+ mixBlendMode: "normal"
46
+ },
47
+ d: "M19.541 8.322a7.488 7.488 0 0 1 .006.237 7.488 7.488 0 0 1-3.516 6.34 7.488 7.488 0 0 1 .002.052 7.488 7.488 0 0 1-3.732 6.46 7.488 7.488 0 0 0 3.672.982 7.488 7.488 0 0 0 7.488-7.488 7.488 7.488 0 0 0-3.92-6.583z",
48
+ fill: "#004198",
49
+ fillOpacity: 0.7
50
+ }), /*#__PURE__*/React.createElement("path", {
51
+ style: {
52
+ mixBlendMode: "normal"
53
+ },
54
+ d: "M12.059 1.07A7.488 7.488 0 0 0 4.57 8.56a7.488 7.488 0 0 0 .004.05 7.488 7.488 0 0 1 3.971-1.146 7.488 7.488 0 0 1 3.69.973 7.488 7.488 0 0 1 3.738-1.02 7.488 7.488 0 0 1 3.568.906 7.488 7.488 0 0 0-7.482-7.251z",
55
+ fill: "#019000",
56
+ fillOpacity: 0.7
57
+ }));
58
+ };
59
+
60
+ export { SvgColors as default };
@@ -0,0 +1,15 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ 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); }
5
+ var SvgCopy = function SvgCopy(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ viewBox: "0 0 96 96",
8
+ fill: "currentColor",
9
+ xmlns: "http://www.w3.org/2000/svg"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ d: "m95.484 84.751.074-53.95c-.02-6.211-5.641-13.265-13.03-13.137l-6.192-.243-.005-4.807C76.192 5.97 71.58 1.454 64.228 1.386l-25.7-.005-26.108-.083C6.576 1.238.772 7.393.714 13.155c.367 23.662.19 30.647.045 54.309-.175 9.232 7.249 11.532 11.898 11.543l6.301.833-.107 4.646c.29 5.913 5.32 9.62 10.28 10.389l22.44.089 30.23-.066c8.023.322 13.664-7.806 13.683-11.732zM33.719 24.774l45.685.3c5.47.036 8.792 3.2 8.74 9.472l-.356 42.844c-.057 6.793-2.574 10.092-9.991 10.09l-44.794-.016c-3.964-.059-6.786-3.097-6.857-6.145.031-50.037-.02 50.152-.021-47.175-.037-7.086 1.81-9.366 7.594-9.37zM62.837 9.12c2.234.074 5.108.247 5.054 5.261a646.478 646.478 0 0 1-.036 2.977l-37.295.031c-7.166.157-12.2 5.307-11.765 11.946.015 18.234-.073 23.979-.154 42.214l-4.325-.054c-3.682-.043-6.032-1.861-5.91-6.002 0 0-.189-26.785-.2-44.392-.337-4.754 3-12.535 11.554-12.221z"
12
+ })));
13
+ };
14
+
15
+ export { SvgCopy as default };
@@ -0,0 +1,15 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ 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); }
5
+ var SvgDelete = function SvgDelete(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ viewBox: "0 0 24 24",
8
+ fill: "currentColor",
9
+ xmlns: "http://www.w3.org/2000/svg"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ d: "M16.85 8.363v12.123h-9.7V8.363h9.7M15.03 1.09H8.97L7.756 2.302H3.514v2.424h16.972V2.302h-4.243zm4.244 4.85H4.726v14.547a2.432 2.432 0 0 0 2.425 2.425h9.698a2.432 2.432 0 0 0 2.425-2.425z"
12
+ })));
13
+ };
14
+
15
+ export { SvgDelete as default };
@@ -0,0 +1,15 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ 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); }
5
+ var SvgDraft = function SvgDraft(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ viewBox: "0 0 48 48",
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ fill: "currentColor"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ d: "M9.884 46.24q-1.33 0-2.326-.997-.997-.997-.997-2.326V5.258q0-1.329.997-2.326.997-.997 2.326-.997h19.992l12.128 12.129v28.853q0 1.329-.997 2.326-.996.996-2.326.996zm18.33-30.681v-10.3H9.885v37.658H38.68V15.559zm-18.33-10.3v10.3-10.3 37.658z"
12
+ })));
13
+ };
14
+
15
+ export { SvgDraft as default };
@@ -0,0 +1,15 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ 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); }
5
+ var SvgEdit = function SvgEdit(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ viewBox: "0 0 64 64",
8
+ fill: "currentColor",
9
+ xmlns: "http://www.w3.org/2000/svg"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ d: "M26.202 20.764 5.45 43.424l-.609 7.604c-.446 3.339-1.337 6.9-2.006 8.012-1.56 2.337-.334 3.895 1.672 2.226.78-.668 4.568-1.558 8.357-1.892l12.145-2.327 18.917-18.93c20.057-20.142 18.301-22.475 18.301-26.48 0-5.676-3.901-9.699-9.694-9.57-6.245.137-6.05-1.555-26.33 18.697zM55.378 8.188c2.728 3.377 1.783 6.294.622 8.735l-2.13 2.614s-2.387-3.66-3.907-5.21c-1.601-1.634-5.408-4.223-5.408-4.223l2.518-2.251c1.839-1.147 4.627-2.447 8.305.335zm-5.97 14.831c-1.838 2.679-3.688 4.99-13.478 14.767L23.959 50.388c-2.647-3.98-7.04-5.255-10.887-7.798L26.51 28.796c8.35-8.573 12.535-13.13 14.06-14.054 3.54 1.31 7.109 5.492 8.838 8.277zM18.454 53.667 15 54.752c-5.46 1.558-6.405 1.951-6.405-.72.206-2.467.019-7.637 2.375-6.342 3.356 2.133 5.017 2.887 7.485 5.977z"
12
+ })));
13
+ };
14
+
15
+ export { SvgEdit as default };
@@ -0,0 +1,15 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ 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); }
5
+ var SvgExternalLink = function SvgExternalLink(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ viewBox: "0 0 24 24",
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ fill: "currentColor"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ d: "M18 19H6c-.6 0-1-.4-1-1V6c0-.6.4-1 1-1h6V3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2v-7h-2v6c0 .6-.4 1-1 1zM14 3v2h3.6l-6.1 6.1c-.4.4-.4 1 0 1.4.4.4 1 .4 1.4 0L19 6.4V10h2V4c0-.6-.4-1-1-1z"
12
+ })));
13
+ };
14
+
15
+ export { SvgExternalLink as default };
@@ -0,0 +1,15 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ 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); }
5
+ var SvgFullscreen = function SvgFullscreen(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ viewBox: "0 0 24 24",
9
+ fill: "currentColor"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ d: "M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z"
12
+ })));
13
+ };
14
+
15
+ export { SvgFullscreen as default };
@@ -0,0 +1,15 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ 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); }
5
+ var SvgFullscreenExit = function SvgFullscreenExit(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ viewBox: "0 0 24 24",
9
+ fill: "currentColor"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ d: "M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z"
12
+ })));
13
+ };
14
+
15
+ export { SvgFullscreenExit as default };
@@ -0,0 +1,20 @@
1
+ import * as React from 'react';
2
+
3
+ var _style, _path, _path2;
4
+ 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); }
5
+ var SvgGear = function SvgGear(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ stroke: "currentColor",
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ viewBox: "0 0 16 16",
10
+ id: "gear_svg__gear-svg"
11
+ }, props), _style || (_style = /*#__PURE__*/React.createElement("style", null)), _path || (_path = /*#__PURE__*/React.createElement("path", {
12
+ className: "gear_svg__st0",
13
+ d: "M7 1.6c.5.5 1.3.6 1.8.1l.1-.1.6-.7c.5-.5 1.3-.6 1.8-.1.3.3.4.6.4 1v.9c0 .7.5 1.3 1.2 1.4h1c.7 0 1.3.5 1.4 1.2 0 .4-.1.8-.4 1l-.5.7c-.5.5-.6 1.3-.1 1.8l.1.1.7.6c.5.5.6 1.3.1 1.8-.3.3-.6.4-1 .4h-.9c-.7 0-1.3.5-1.4 1.2v1c0 .7-.5 1.3-1.2 1.4-.4 0-.8-.1-1-.4l-.7-.5c-.5-.5-1.3-.6-1.8-.1l-.1.1-.6.7c-.5.5-1.3.6-1.8.1-.3-.3-.4-.6-.4-1v-.9c0-.7-.5-1.3-1.2-1.4h-1c-.7 0-1.3-.5-1.4-1.2 0-.4.1-.8.4-1l.5-.7c.5-.5.6-1.3.1-1.8l-.1-.1-.7-.7C.4 5.9.4 5.1.8 4.6c.3-.3.6-.4 1-.4h.9c.7 0 1.3-.5 1.4-1.2V2c0-.7.5-1.3 1.2-1.4.4 0 .8.1 1 .4l.7.6z"
14
+ })), _path2 || (_path2 = /*#__PURE__*/React.createElement("path", {
15
+ className: "gear_svg__st0",
16
+ d: "M8 11c1.7 0 3-1.3 3-3S9.7 5 8 5 5 6.3 5 8s1.3 3 3 3z"
17
+ })));
18
+ };
19
+
20
+ export { SvgGear as default };
@@ -0,0 +1,17 @@
1
+ import * as React from 'react';
2
+
3
+ var _path, _path2;
4
+ 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); }
5
+ var SvgHistory = function SvgHistory(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ viewBox: "0 0 96 96",
9
+ fill: "currentColor"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ d: "M38.7 9c-4.9 1.3-11.3 4.5-16 8.3l-3.8 3-4.4-4.3c-2.4-2.3-4.8-3.9-5.4-3.6-1.6 1-1.5 20.8.1 22.4 1.6 1.6 21.4 1.7 22.4.1.3-.6-1.1-2.8-3.1-4.9l-3.8-3.9 2.4-2.1c1.3-1.2 4.9-3.3 7.9-4.8 4.6-2.3 6.8-2.7 13.5-2.6 9.5 0 15.7 2.5 22 8.9C77 32 79.4 38 79.4 48c.1 7.8-.2 9-3.3 14.8-5.3 9.8-14.4 15.8-25.6 16.9-15 1.4-28.5-7.9-33-22.8-2.2-7.3-2.9-8.3-5.3-8.7-7.9-1.2-1.9 19.3 8.5 28.9 2.4 2.2 7.4 5.5 11.1 7.2 6.1 2.9 7.6 3.2 16.2 3.2s10.1-.3 16.2-3.2c9.3-4.4 15.1-10 19.6-19.1 3.4-7.1 3.7-8.2 3.7-16.6 0-6.5-.5-10.6-1.9-14.3C81.8 24 72.3 14.4 62.3 10.6 56.7 8.5 44.1 7.7 38.7 9z"
12
+ })), _path2 || (_path2 = /*#__PURE__*/React.createElement("path", {
13
+ d: "M45.2 25.2C44.4 26 44 30.3 44 38v11.6l5.8 5.7c5.8 5.8 7.8 6.7 10 4.5 2.1-2.1 1.3-4.3-3.3-8.8L52 46.6V36.5c0-10.3-.7-12.5-4-12.5-.9 0-2.1.5-2.8 1.2z"
14
+ })));
15
+ };
16
+
17
+ export { SvgHistory as default };
@@ -0,0 +1,19 @@
1
+ import * as React from 'react';
2
+
3
+ var _path, _path2;
4
+ 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); }
5
+ var SvgHome = function SvgHome(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ fill: "currentColor",
9
+ viewBox: "0 0 16 16"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ fillRule: "evenodd",
12
+ d: "m8 3.293 6 6V13.5a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 13.5V9.293l6-6zm5-.793V6l-2-2V2.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5z"
13
+ })), _path2 || (_path2 = /*#__PURE__*/React.createElement("path", {
14
+ fillRule: "evenodd",
15
+ d: "M7.293 1.5a1 1 0 0 1 1.414 0l6.647 6.646a.5.5 0 0 1-.708.708L8 2.207 1.354 8.854a.5.5 0 1 1-.708-.708L7.293 1.5z"
16
+ })));
17
+ };
18
+
19
+ export { SvgHome as default };
@@ -0,0 +1,41 @@
1
+ var ICONS = {
2
+ avatar: () => import('./avatar.svg.js'),
3
+ brokenImage: () => import('./brokenImage.svg.js'),
4
+ check: () => import('./check.svg.js'),
5
+ close: () => import('./close.svg.js'),
6
+ colors: () => import('./colors.svg.js'),
7
+ copy: () => import('./copy.svg.js'),
8
+ chevronUp: () => import('./chevronUp.svg.js'),
9
+ chevronDown: () => import('./chevronDown.svg.js'),
10
+ chevronRight: () => import('./chevronRight.svg.js'),
11
+ chevronLeft: () => import('./chevronLeft.svg.js'),
12
+ delete: () => import('./delete.svg.js'),
13
+ draft: () => import('./draft.svg.js'),
14
+ edit: () => import('./edit.svg.js'),
15
+ // draft: () => import('./draft.svg'),
16
+ externalLink: () => import('./externalLink.svg.js'),
17
+ fullscreen: () => import('./fullscreen.svg.js'),
18
+ fullscreenExit: () => import('./fullscreenExit.svg.js'),
19
+ gear: () => import('./gear.svg.js'),
20
+ history: () => import('./history.svg.js'),
21
+ home: () => import('./home.svg.js'),
22
+ loader: () => import('./loader.svg.js'),
23
+ menu: () => import('./menu.svg.js'),
24
+ mic: () => import('./mic.svg.js'),
25
+ minus: () => import('./minus.svg.js'),
26
+ moreVertical: () => import('./moreVertical.svg.js'),
27
+ moreHorizontal: () => import('./moreHorizontal.svg.js'),
28
+ plus: () => import('./plus.svg.js'),
29
+ redo: () => import('./redo.svg.js'),
30
+ undo: () => import('./undo.svg.js'),
31
+ requiredStar: () => import('./requiredStar.svg.js'),
32
+ save: () => import('./save.svg.js'),
33
+ send: () => import('./send.svg.js'),
34
+ settings: () => import('./settings.svg.js'),
35
+ shoppingBag: () => import('./shoppingBag.svg.js'),
36
+ social_instagram: () => import('./social_instagram.svg.js'),
37
+ social_telegram: () => import('./social_telegram.svg.js'),
38
+ social_email: () => import('./social_email.svg.js'),
39
+ };
40
+
41
+ export { ICONS as default };
@@ -0,0 +1,45 @@
1
+ import * as React from 'react';
2
+
3
+ var _circle, _circle2, _circle3;
4
+ 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); }
5
+ var SvgLoader = function SvgLoader(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ fill: "currentColor",
8
+ viewBox: "0 0 20 20",
9
+ xmlns: "http://www.w3.org/2000/svg"
10
+ }, props), _circle || (_circle = /*#__PURE__*/React.createElement("circle", {
11
+ cx: 3,
12
+ cy: 13,
13
+ r: 2
14
+ }, /*#__PURE__*/React.createElement("animate", {
15
+ attributeName: "cy",
16
+ dur: ".7s",
17
+ repeatCount: "indefinite",
18
+ values: "13; 17; 15; 13; 13",
19
+ keyTimes: "0; .2; .3; .8; 1"
20
+ }))), _circle2 || (_circle2 = /*#__PURE__*/React.createElement("circle", {
21
+ cx: 10,
22
+ cy: 13,
23
+ r: 2
24
+ }, /*#__PURE__*/React.createElement("animate", {
25
+ attributeName: "cy",
26
+ dur: ".7s",
27
+ begin: ".1s",
28
+ repeatCount: "indefinite",
29
+ values: "13; 17; 15; 13; 13",
30
+ keyTimes: "0; .2; .3; .8; 1"
31
+ }))), _circle3 || (_circle3 = /*#__PURE__*/React.createElement("circle", {
32
+ cx: 17,
33
+ cy: 13,
34
+ r: 2
35
+ }, /*#__PURE__*/React.createElement("animate", {
36
+ attributeName: "cy",
37
+ dur: ".7s",
38
+ begin: ".2s",
39
+ repeatCount: "indefinite",
40
+ values: "13; 17; 15; 13; 13",
41
+ keyTimes: "0; .2; .3; .8; 1"
42
+ }))));
43
+ };
44
+
45
+ export { SvgLoader as default };
@@ -0,0 +1,18 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ 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); }
5
+ var SvgMenu = function SvgMenu(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ viewBox: "0 0 24 24",
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ stroke: "currentColor"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ d: "M4.017 6.703h16.389v0M4.07 17.507h16.388v0M4.01 12.071H20.4v0",
12
+ strokeWidth: 2.576,
13
+ strokeLinecap: "round",
14
+ strokeLinejoin: "round"
15
+ })));
16
+ };
17
+
18
+ export { SvgMenu as default };
@@ -0,0 +1,15 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ 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); }
5
+ var SvgMic = function SvgMic(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ viewBox: "0 0 48 48",
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ fill: "currentColor"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ d: "M24.05 28.785c-1.674 0-3.075-.601-4.203-1.805-1.13-1.203-1.693-2.664-1.693-4.383V7.944c0-1.621.572-3 1.718-4.135 1.146-1.135 2.537-1.703 4.174-1.703 1.637 0 3.03.568 4.178 1.703 1.148 1.135 1.722 2.514 1.722 4.135v14.653c0 1.72-.564 3.18-1.693 4.383-1.129 1.204-2.53 1.805-4.203 1.805zm-1.752 17.689v-7.94c-4.125-.428-7.589-2.16-10.39-5.195-2.803-3.036-4.204-8.68-4.204-10.742 0-2.063 3.503-1.77 3.503 0s1.25 6.519 3.753 8.932c2.502 2.413 5.528 3.62 9.077 3.62 3.55 0 6.58-1.207 9.09-3.62 2.51-2.413 3.766-7.161 3.766-8.932 0-1.77 3.503-2.063 3.503 0s-1.401 7.706-4.204 10.742c-2.802 3.035-6.265 4.767-10.39 5.195v7.94z"
12
+ })));
13
+ };
14
+
15
+ export { SvgMic as default };
@@ -0,0 +1,15 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ 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); }
5
+ var SvgMinus = function SvgMinus(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ viewBox: "0 0 24 24",
8
+ fill: "currentColor",
9
+ xmlns: "http://www.w3.org/2000/svg"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ d: "M22.8 11.915c.072-.637-.645-1.2-1.13-1.132l-19.287.071c-.636.07-1.131.566-1.131 1.131a1.04 1.04 0 0 0 1.131 1.132c.057-.125 19.217 0 19.217 0a1.354 1.354 0 0 0 1.202-1.202z"
12
+ })));
13
+ };
14
+
15
+ export { SvgMinus as default };
@@ -0,0 +1,15 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ 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); }
5
+ var SvgMoreHorizontal = function SvgMoreHorizontal(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ viewBox: "0 0 24 24",
9
+ fill: "currentColor"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ d: "M16 12.005a2.006 2.006 0 0 0 1.998 2.002A2.006 2.006 0 0 0 20 12.009a2.006 2.006 0 0 0-1.998-2.002A2.006 2.006 0 0 0 16 12.005zm-2-.003A2.006 2.006 0 0 0 12.002 10 2.006 2.006 0 0 0 10 11.998 2.006 2.006 0 0 0 11.998 14 2.006 2.006 0 0 0 14 12.002zm-6-.007a2.006 2.006 0 0 0-1.998-2.002A2.006 2.006 0 0 0 4 11.991a2.006 2.006 0 0 0 1.998 2.002A2.006 2.006 0 0 0 8 11.995z"
12
+ })));
13
+ };
14
+
15
+ export { SvgMoreHorizontal as default };
@@ -0,0 +1,15 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ 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); }
5
+ var SvgMoreVertical = function SvgMoreVertical(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ viewBox: "0 0 24 24",
9
+ fill: "currentColor"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ d: "M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"
12
+ })));
13
+ };
14
+
15
+ export { SvgMoreVertical as default };
@@ -0,0 +1,15 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ 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); }
5
+ var SvgPlus = function SvgPlus(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ xmlns: "http://www.w3.org/2000/svg",
8
+ viewBox: "0 0 24 24",
9
+ fill: "currentColor"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ d: "M22.8 11.915c.072-.637-.645-1.2-1.13-1.132l-7.301.071a1.04 1.04 0 0 1-1.132-1.131l-.07-7.513a1.04 1.04 0 0 0-1.132-1.131c-.636-.07-1.131.424-1.202 1.06l-.07 7.513c-.071.636-.566 1.131-1.132 1.131l-7.248.071c-.636.07-1.131.566-1.131 1.131a1.04 1.04 0 0 0 1.131 1.132h7.319a1.04 1.04 0 0 1 1.131 1.131v7.46a1.04 1.04 0 0 0 1.132 1.132c.636-.07 1.131-.566 1.131-1.131v-7.46c.07-.637.566-1.132 1.131-1.132H21.6a1.354 1.354 0 0 0 1.202-1.202z"
12
+ })));
13
+ };
14
+
15
+ export { SvgPlus as default };
@@ -0,0 +1,15 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ 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); }
5
+ var SvgRedo = function SvgRedo(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ viewBox: "0 96 960 960",
8
+ fill: "currentColor",
9
+ xmlns: "http://www.w3.org/2000/svg"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ d: "M365.235 957.243q-123.893 0-213.227-83.465T62.674 667.723q0-122.59 89.334-206.055t213.227-83.465h383.419L599.98 229.531l54.774-54.774 242.571 242.57-242.57 242.571-54.775-54.774 148.673-148.672H363.93q-91.29 0-157.15 60.643-65.859 60.642-65.859 150.628 0 89.986 65.86 150.63 65.859 60.642 157.15 60.642h376.897v78.248z"
12
+ })));
13
+ };
14
+
15
+ export { SvgRedo as default };
@@ -0,0 +1,15 @@
1
+ import * as React from 'react';
2
+
3
+ var _path;
4
+ 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); }
5
+ var SvgRequiredStar = function SvgRequiredStar(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ viewBox: "0 0 8 8",
8
+ xmlns: "http://www.w3.org/2000/svg"
9
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
10
+ d: "M3.296.749C3.283.548 3.277.447 3.3.366a.5.5 0 0 1 .318-.338C3.697 0 3.798 0 3.999 0s.302 0 .382.028a.5.5 0 0 1 .318.338c.023.081.016.182.004.383l-.019.299c-.053.85-.08 1.276.175 1.433l.026.015c.264.142.619-.094 1.329-.565l.25-.166c.168-.111.252-.167.333-.188a.5.5 0 0 1 .452.106c.063.055.114.143.214.317.101.174.151.262.167.344a.499.499 0 0 1-.134.444c-.059.06-.149.105-.33.195l-.268.134c-.763.379-1.145.568-1.154.868v.03c.009.299.391.489 1.154.868l.269.133c.18.09.271.134.33.195a.502.502 0 0 1 .133.445c-.016.082-.066.17-.167.344-.1.174-.151.262-.215.317a.499.499 0 0 1-.451.106c-.082-.021-.166-.077-.334-.188l-.25-.166c-.71-.471-1.065-.707-1.329-.565a.6.6 0 0 0-.026.015c-.254.157-.227.583-.174 1.433l.019.299c.013.201.019.301-.004.383a.498.498 0 0 1-.318.338C4.301 8 4.201 8 3.999 8s-.302 0-.382-.028a.497.497 0 0 1-.317-.338c-.023-.081-.017-.182-.004-.383l.019-.299c.053-.85.08-1.276-.175-1.433l-.026-.015c-.264-.142-.619.094-1.329.565l-.25.166c-.168.111-.252.167-.333.188a.5.5 0 0 1-.452-.106C.686 6.262.636 6.174.535 6s-.151-.262-.167-.344a.5.5 0 0 1 .134-.445c.059-.06.149-.105.33-.195l.268-.133c.763-.379 1.145-.569 1.154-.868v-.03c-.009-.3-.391-.489-1.154-.868l-.268-.134c-.18-.09-.271-.134-.33-.195a.499.499 0 0 1-.134-.444c.016-.082.066-.17.167-.344s.151-.262.215-.317a.5.5 0 0 1 .452-.106c.082.021.166.077.333.188l.25.166c.71.471 1.065.707 1.329.565a.6.6 0 0 0 .026-.015c.255-.158.228-.583.175-1.433z",
11
+ fill: "currentColor"
12
+ })));
13
+ };
14
+
15
+ export { SvgRequiredStar as default };
@@ -0,0 +1,17 @@
1
+ import * as React from 'react';
2
+
3
+ var _path, _path2;
4
+ 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); }
5
+ var SvgSave = function SvgSave(props) {
6
+ return /*#__PURE__*/React.createElement("svg", _extends({
7
+ viewBox: "0 0 100 100",
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ fill: "currentColor"
10
+ }, props), _path || (_path = /*#__PURE__*/React.createElement("path", {
11
+ d: "M4.663 6.288C2.485 8.365 2.37 9.895 2.37 50c0 40.105.114 41.635 2.292 43.712 2.177 2.076 3.781 2.185 45.837 2.185 42.056 0 43.66-.11 45.837-2.185 2.178-2.077 2.292-3.607 2.292-36.39V23.227L88.545 13.61l-9.97-9.507H42.708c-34.264 0-35.868.11-38.045 2.185zM75.71 22.462c0 9.398-.459 14.425-1.376 15.299-1.948 1.858-50.306 1.858-52.254 0-.917-.874-1.375-5.901-1.375-15.3V8.475H75.71zm3.208 33.22c.917.875 1.375 6.557 1.375 18.578v17.266H20.706V74.26c0-12.02.458-17.703 1.375-18.578 1.948-1.857 54.89-1.857 56.838 0zM13.83 87.155c0 1.42-.802 2.185-2.292 2.185-1.49 0-2.292-.765-2.292-2.185s.802-2.186 2.292-2.186c1.49 0 2.292.765 2.292 2.186zm77.924 0c0 1.42-.802 2.185-2.292 2.185-1.49 0-2.292-.765-2.292-2.185s.802-2.186 2.292-2.186c1.49 0 2.292.765 2.292 2.186z"
12
+ })), _path2 || (_path2 = /*#__PURE__*/React.createElement("path", {
13
+ d: "M57.376 23.773v8.742h9.167V15.031h-9.167z"
14
+ })));
15
+ };
16
+
17
+ export { SvgSave as default };