@terraware/web-components 4.2.12 → 4.2.14-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (304) hide show
  1. package/components/AntSwitch/index.js +8 -14
  2. package/components/Autocomplete/Autocomplete.js +67 -70
  3. package/components/Badge/index.js +16 -20
  4. package/components/BusySpinner/index.js +30 -35
  5. package/components/Button/Button.js +23 -27
  6. package/components/Button/button.test.js +8 -10
  7. package/components/Checkbox.js +10 -19
  8. package/components/Confirm/index.js +44 -51
  9. package/components/DatePicker/DatePicker.js +116 -117
  10. package/components/DialogBox/DialogBox.js +76 -66
  11. package/components/Divisor.js +15 -20
  12. package/components/Dropdown.js +54 -61
  13. package/components/EditableTable/index.js +129 -135
  14. package/components/ErrorBox/ErrorBox.js +37 -36
  15. package/components/FileChooser/index.js +73 -77
  16. package/components/FormBottomBar/index.js +63 -69
  17. package/components/Icon/Icon.js +14 -21
  18. package/components/Icon/icons/index.d.ts +1 -1
  19. package/components/Icon/icons/index.d.ts.map +1 -1
  20. package/components/Icon/icons/index.js +251 -255
  21. package/components/IconTooltip/index.js +29 -34
  22. package/components/Map/MapBox.js +199 -220
  23. package/components/Map/MapContainer.js +14 -18
  24. package/components/Map/MapDateSliderControl.js +44 -46
  25. package/components/Map/MapDrawer.js +32 -33
  26. package/components/Map/MapLegend.js +96 -95
  27. package/components/Map/MapViewStyleControl.js +38 -48
  28. package/components/Map/ReactMapboxWrapper.js +2 -9
  29. package/components/Map/index.js +47 -55
  30. package/components/Map/types.js +2 -8
  31. package/components/Map/useMaintainLayerOrder.js +4 -11
  32. package/components/Markdown/index.js +14 -21
  33. package/components/Message/Message.js +59 -51
  34. package/components/MultiSelect/MultiSelect.test.js +22 -24
  35. package/components/MultiSelect/index.js +73 -69
  36. package/components/Navbar/NavFooter.js +8 -13
  37. package/components/Navbar/NavItem.js +43 -37
  38. package/components/Navbar/NavSection.js +13 -17
  39. package/components/Navbar/Navbar.js +35 -38
  40. package/components/Navbar/SubNavbar.js +8 -13
  41. package/components/Note.js +14 -19
  42. package/components/OverlayModal/OverlayModal.js +36 -37
  43. package/components/PageForm/index.js +30 -35
  44. package/components/PhotoChooser/index.js +93 -98
  45. package/components/Pill/index.js +29 -31
  46. package/components/PillList/index.js +16 -22
  47. package/components/PlacementWrapper/index.js +20 -25
  48. package/components/PopoverMenu/Popover.js +33 -37
  49. package/components/PopoverMenu/index.js +41 -46
  50. package/components/PopoverMultiSelect/index.js +18 -21
  51. package/components/ProgressCircle/ProgressCircle.js +23 -26
  52. package/components/RadioButton.js +7 -14
  53. package/components/Select/Select.js +8 -13
  54. package/components/Select/SelectT.js +110 -108
  55. package/components/Separator/index.js +8 -14
  56. package/components/Size.js +1 -5
  57. package/components/Slider/index.js +7 -13
  58. package/components/SummaryBox.js +36 -39
  59. package/components/Tabs/index.js +75 -77
  60. package/components/TextTruncated/index.js +64 -65
  61. package/components/Textfield/Textfield.js +100 -95
  62. package/components/Textfield/TruncatedTextArea.js +44 -46
  63. package/components/TimelineSlider/TimelineMarker.js +24 -28
  64. package/components/TimelineSlider/TimelineRail.js +5 -11
  65. package/components/TimelineSlider/index.js +47 -51
  66. package/components/Tooltip/Tooltip.js +21 -26
  67. package/components/ViewPhotosDialog/index.js +58 -62
  68. package/components/VirtualWalkthrough/Annotation.d.ts +41 -0
  69. package/components/VirtualWalkthrough/Annotation.d.ts.map +1 -0
  70. package/components/VirtualWalkthrough/Annotation.js +197 -0
  71. package/components/VirtualWalkthrough/AnnotationEditPane.d.ts +20 -0
  72. package/components/VirtualWalkthrough/AnnotationEditPane.d.ts.map +1 -0
  73. package/components/VirtualWalkthrough/AnnotationEditPane.js +136 -0
  74. package/components/VirtualWalkthrough/AnnotationPanel.d.ts +13 -0
  75. package/components/VirtualWalkthrough/AnnotationPanel.d.ts.map +1 -0
  76. package/components/VirtualWalkthrough/AnnotationPanel.js +196 -0
  77. package/components/VirtualWalkthrough/Application.d.ts +9 -0
  78. package/components/VirtualWalkthrough/Application.d.ts.map +1 -0
  79. package/components/VirtualWalkthrough/Application.js +32 -0
  80. package/components/VirtualWalkthrough/AutoRotator.d.ts +109 -0
  81. package/components/VirtualWalkthrough/AutoRotator.d.ts.map +1 -0
  82. package/components/VirtualWalkthrough/AutoRotator.js +217 -0
  83. package/components/VirtualWalkthrough/BlockingSpinner.d.ts +3 -0
  84. package/components/VirtualWalkthrough/BlockingSpinner.d.ts.map +1 -0
  85. package/components/VirtualWalkthrough/BlockingSpinner.js +27 -0
  86. package/components/VirtualWalkthrough/BoundaryRing.d.ts +9 -0
  87. package/components/VirtualWalkthrough/BoundaryRing.d.ts.map +1 -0
  88. package/components/VirtualWalkthrough/BoundaryRing.js +33 -0
  89. package/components/VirtualWalkthrough/CameraInfo.d.ts +16 -0
  90. package/components/VirtualWalkthrough/CameraInfo.d.ts.map +1 -0
  91. package/components/VirtualWalkthrough/CameraInfo.js +88 -0
  92. package/components/VirtualWalkthrough/ControlsInfoPane.d.ts +37 -0
  93. package/components/VirtualWalkthrough/ControlsInfoPane.d.ts.map +1 -0
  94. package/components/VirtualWalkthrough/ControlsInfoPane.js +196 -0
  95. package/components/VirtualWalkthrough/GradientSky.d.ts +9 -0
  96. package/components/VirtualWalkthrough/GradientSky.d.ts.map +1 -0
  97. package/components/VirtualWalkthrough/GradientSky.js +73 -0
  98. package/components/VirtualWalkthrough/SplatControls.d.ts +50 -0
  99. package/components/VirtualWalkthrough/SplatControls.d.ts.map +1 -0
  100. package/components/VirtualWalkthrough/SplatControls.js +252 -0
  101. package/components/VirtualWalkthrough/SplatCrop.d.ts +8 -0
  102. package/components/VirtualWalkthrough/SplatCrop.d.ts.map +1 -0
  103. package/components/VirtualWalkthrough/SplatCrop.js +18 -0
  104. package/components/VirtualWalkthrough/SplatFadeCrop.d.ts +8 -0
  105. package/components/VirtualWalkthrough/SplatFadeCrop.d.ts.map +1 -0
  106. package/components/VirtualWalkthrough/SplatFadeCrop.js +18 -0
  107. package/components/VirtualWalkthrough/SplatModel.d.ts +15 -0
  108. package/components/VirtualWalkthrough/SplatModel.d.ts.map +1 -0
  109. package/components/VirtualWalkthrough/SplatModel.js +60 -0
  110. package/components/VirtualWalkthrough/SplatRevealRain.d.ts +18 -0
  111. package/components/VirtualWalkthrough/SplatRevealRain.d.ts.map +1 -0
  112. package/components/VirtualWalkthrough/SplatRevealRain.js +38 -0
  113. package/components/VirtualWalkthrough/TfAnnotationManager.d.ts +110 -0
  114. package/components/VirtualWalkthrough/TfAnnotationManager.d.ts.map +1 -0
  115. package/components/VirtualWalkthrough/TfAnnotationManager.js +368 -0
  116. package/components/VirtualWalkthrough/TfXrNavigation.d.ts +15 -0
  117. package/components/VirtualWalkthrough/TfXrNavigation.d.ts.map +1 -0
  118. package/components/VirtualWalkthrough/TfXrNavigation.js +24 -0
  119. package/components/VirtualWalkthrough/annotation-styles.css +5 -0
  120. package/components/VirtualWalkthrough/application-styles.css +4 -0
  121. package/components/VirtualWalkthrough/boundary-ring.d.ts +47 -0
  122. package/components/VirtualWalkthrough/boundary-ring.d.ts.map +1 -0
  123. package/components/VirtualWalkthrough/boundary-ring.js +125 -0
  124. package/components/VirtualWalkthrough/boundary-ring.test.js +109 -0
  125. package/components/VirtualWalkthrough/groundPlane.d.ts +14 -0
  126. package/components/VirtualWalkthrough/groundPlane.d.ts.map +1 -0
  127. package/components/VirtualWalkthrough/groundPlane.js +47 -0
  128. package/components/VirtualWalkthrough/groundPlane.test.js +45 -0
  129. package/components/VirtualWalkthrough/gsplat-fade-crop-effect.d.ts +19 -0
  130. package/components/VirtualWalkthrough/gsplat-fade-crop-effect.d.ts.map +1 -0
  131. package/components/VirtualWalkthrough/gsplat-fade-crop-effect.js +119 -0
  132. package/components/VirtualWalkthrough/walkthrough-camera.d.ts +77 -0
  133. package/components/VirtualWalkthrough/walkthrough-camera.d.ts.map +1 -0
  134. package/components/VirtualWalkthrough/walkthrough-camera.js +320 -0
  135. package/components/svg/BlobbyGrayIconImage.js +36 -41
  136. package/components/svg/BlobbyGrayIconImport.js +36 -41
  137. package/components/svg/BlobbyGrayIconUploadToTheCloud.js +36 -41
  138. package/components/svg/BlobbyIconCloudChecked.js +161 -158
  139. package/components/svg/BlobbyIconExportOrUploadPhoto.js +161 -158
  140. package/components/svg/BlobbyIconFolder.js +161 -158
  141. package/components/svg/BlobbyIconGraphReport.js +161 -158
  142. package/components/svg/BlobbyIconHappy.js +161 -158
  143. package/components/svg/BlobbyIconHeartMonitor.js +161 -158
  144. package/components/svg/BlobbyIconLeaf.js +161 -158
  145. package/components/svg/BlobbyIconLibrary.js +161 -158
  146. package/components/svg/BlobbyIconNursery.js +163 -160
  147. package/components/svg/BlobbyIconOrganization.js +161 -158
  148. package/components/svg/BlobbyIconParchment.js +161 -158
  149. package/components/svg/BlobbyIconPeople.js +161 -158
  150. package/components/svg/BlobbyIconSeedBank.js +161 -158
  151. package/components/svg/BlobbyIconSeedling.js +161 -158
  152. package/components/svg/BlobbyIconSeeds.js +161 -158
  153. package/components/svg/BlobbyIconSite.js +164 -161
  154. package/components/svg/BlobbyIconSparkles.js +161 -158
  155. package/components/svg/BlobbyIconWrench.js +161 -158
  156. package/components/svg/Bug.js +18 -27
  157. package/components/svg/Calendar.js +18 -27
  158. package/components/svg/CaretDown.js +18 -27
  159. package/components/svg/CaretLeft.js +18 -27
  160. package/components/svg/CaretRight.js +18 -27
  161. package/components/svg/CaretUp.js +18 -27
  162. package/components/svg/ChevronDown.js +18 -27
  163. package/components/svg/ChevronUp.js +18 -27
  164. package/components/svg/Close.js +18 -27
  165. package/components/svg/Critical.js +18 -27
  166. package/components/svg/Edit.js +161 -158
  167. package/components/svg/Error.js +18 -27
  168. package/components/svg/Filter.js +18 -27
  169. package/components/svg/Folder.js +18 -27
  170. package/components/svg/Help.js +18 -27
  171. package/components/svg/Home.js +18 -27
  172. package/components/svg/IconAdd.js +18 -27
  173. package/components/svg/IconArrowRight.js +19 -28
  174. package/components/svg/IconBusinessNetwork.js +18 -27
  175. package/components/svg/IconCalendar.d.ts +1 -1
  176. package/components/svg/IconCalendar.d.ts.map +1 -1
  177. package/components/svg/IconCalendar.js +18 -27
  178. package/components/svg/IconCancel.js +18 -27
  179. package/components/svg/IconChargingBattery.js +18 -27
  180. package/components/svg/IconChecklist.js +19 -28
  181. package/components/svg/IconCheckmark.js +18 -27
  182. package/components/svg/IconCoinInHand.js +18 -27
  183. package/components/svg/IconColumns.js +18 -27
  184. package/components/svg/IconComment.js +18 -27
  185. package/components/svg/IconDashboard.js +18 -27
  186. package/components/svg/IconDataMigration.js +18 -27
  187. package/components/svg/IconDocument.d.ts +8 -0
  188. package/components/svg/IconDocument.d.ts.map +1 -0
  189. package/components/svg/IconDocument.js +21 -0
  190. package/components/svg/IconDownloadFromTheCloud.js +19 -28
  191. package/components/svg/IconEdit.js +19 -28
  192. package/components/svg/IconExpand.js +19 -28
  193. package/components/svg/IconExport.js +18 -27
  194. package/components/svg/IconExternalLink.js +18 -27
  195. package/components/svg/IconEye.js +18 -27
  196. package/components/svg/IconEyeOff.js +18 -27
  197. package/components/svg/IconFile.js +18 -27
  198. package/components/svg/IconFolder.js +18 -27
  199. package/components/svg/IconFullScreen.js +18 -27
  200. package/components/svg/IconFutures.js +18 -27
  201. package/components/svg/IconGraphReport.js +18 -27
  202. package/components/svg/IconHeartMonitor.js +18 -27
  203. package/components/svg/IconHelp.js +19 -28
  204. package/components/svg/IconHistory.js +18 -27
  205. package/components/svg/IconImport.js +18 -27
  206. package/components/svg/IconIndex.js +18 -27
  207. package/components/svg/IconLayers.js +18 -27
  208. package/components/svg/IconLibrary.js +18 -27
  209. package/components/svg/IconList.js +18 -27
  210. package/components/svg/IconLivePlant.js +18 -27
  211. package/components/svg/IconLocations.js +18 -27
  212. package/components/svg/IconMail.js +18 -27
  213. package/components/svg/IconManager.js +18 -27
  214. package/components/svg/IconMarker.js +18 -27
  215. package/components/svg/IconMenu.js +18 -27
  216. package/components/svg/IconMenuHorizontal.js +18 -27
  217. package/components/svg/IconModule.js +18 -27
  218. package/components/svg/IconMyLocation.js +18 -27
  219. package/components/svg/IconNote.js +19 -28
  220. package/components/svg/IconNursery.js +18 -27
  221. package/components/svg/IconOrg.js +18 -27
  222. package/components/svg/IconParchment.js +18 -27
  223. package/components/svg/IconPhoto.js +18 -27
  224. package/components/svg/IconPlantsFilled.js +18 -27
  225. package/components/svg/IconRedo.js +18 -27
  226. package/components/svg/IconRestorationSite.js +18 -27
  227. package/components/svg/IconSeedBank.js +18 -27
  228. package/components/svg/IconSeedling.js +18 -27
  229. package/components/svg/IconSettings.js +18 -27
  230. package/components/svg/IconSlice.js +18 -27
  231. package/components/svg/IconSubmit.js +18 -27
  232. package/components/svg/IconSubtract.js +19 -28
  233. package/components/svg/IconSynced.js +18 -27
  234. package/components/svg/IconTrashCan.js +18 -27
  235. package/components/svg/IconTreasureMap.js +18 -27
  236. package/components/svg/IconUnavailable.js +18 -27
  237. package/components/svg/IconUndo.js +18 -27
  238. package/components/svg/IconVariable.js +18 -27
  239. package/components/svg/IconVideo.js +19 -28
  240. package/components/svg/IconWifi.js +18 -27
  241. package/components/svg/Info.js +18 -27
  242. package/components/svg/Key.js +18 -27
  243. package/components/svg/Leaf.js +18 -27
  244. package/components/svg/Lock.js +18 -27
  245. package/components/svg/Logo.js +40 -45
  246. package/components/svg/MenuVertical.js +18 -27
  247. package/components/svg/Notification.js +18 -27
  248. package/components/svg/Person.js +18 -27
  249. package/components/svg/Plus.js +18 -27
  250. package/components/svg/RestorationSite.js +18 -27
  251. package/components/svg/Search.js +18 -27
  252. package/components/svg/Seeds.js +18 -27
  253. package/components/svg/Site.js +18 -27
  254. package/components/svg/Sparkles.js +18 -27
  255. package/components/svg/Species.js +18 -27
  256. package/components/svg/Species2.js +161 -158
  257. package/components/svg/Spinner.js +27 -36
  258. package/components/svg/Star.js +18 -27
  259. package/components/svg/Success.js +18 -27
  260. package/components/svg/SuccessFilled.js +18 -27
  261. package/components/svg/TerrawareLogoDesktop.js +44 -49
  262. package/components/svg/TerrawareLogoMobile.js +20 -29
  263. package/components/svg/Touchscreen.js +18 -27
  264. package/components/svg/UploadCloud.js +161 -158
  265. package/components/svg/Warning.js +18 -27
  266. package/components/svg/WelcomeClipboard.js +130 -135
  267. package/components/svg/index.d.ts +1 -0
  268. package/components/svg/index.d.ts.map +1 -1
  269. package/components/svg/index.js +127 -888
  270. package/components/table/EnhancedTableToolbar.js +45 -47
  271. package/components/table/EnhancedTableToolbarV2.js +18 -26
  272. package/components/table/TableCellRenderer.js +137 -143
  273. package/components/table/TableHeader.js +45 -47
  274. package/components/table/TableHeaderItem.js +65 -64
  275. package/components/table/density.js +3 -11
  276. package/components/table/index.js +225 -218
  277. package/components/table/sort.js +8 -18
  278. package/components/table/sort.test.js +6 -8
  279. package/components/table/types.js +1 -5
  280. package/components/types/index.js +1 -5
  281. package/hooks/useBoolean.d.ts +4 -0
  282. package/hooks/useBoolean.d.ts.map +1 -0
  283. package/hooks/useBoolean.js +12 -0
  284. package/hooks/useCameraPosition.d.ts +8 -0
  285. package/hooks/useCameraPosition.d.ts.map +1 -0
  286. package/hooks/useCameraPosition.js +33 -0
  287. package/index.js +57 -398
  288. package/license-report.html +1 -1
  289. package/package.json +10 -3
  290. package/style-dictionary-dist/TerrawareTheme.js +1 -7
  291. package/theme.js +7 -14
  292. package/utils/color.d.ts +2 -0
  293. package/utils/color.d.ts.map +1 -0
  294. package/utils/color.js +14 -0
  295. package/utils/date.js +13 -24
  296. package/utils/date.test.js +40 -43
  297. package/utils/index.js +5 -53
  298. package/utils/preventDefaultEvent.js +1 -7
  299. package/utils/text.js +2 -9
  300. package/utils/text.test.js +9 -11
  301. package/utils/useDeviceInfo.js +10 -16
  302. package/virtualWalkthrough.d.ts +31 -0
  303. package/virtualWalkthrough.d.ts.map +1 -0
  304. package/virtualWalkthrough.js +28 -0
@@ -1,28 +1,19 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
- var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
5
- Object.defineProperty(exports, "__esModule", {
6
- value: true
7
- });
8
- exports.default = void 0;
9
- var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
10
- var React = _interopRequireWildcard(require("react"));
11
- const _excluded = ["title", "titleId"];
12
- const SvgIconVariable = _ref => {
13
- let {
14
- title,
15
- titleId
16
- } = _ref,
17
- props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
18
- return /*#__PURE__*/React.createElement("svg", Object.assign({
19
- xmlns: "http://www.w3.org/2000/svg",
20
- viewBox: "0 0 24 24",
21
- "aria-labelledby": titleId
22
- }, props), title ? /*#__PURE__*/React.createElement("title", {
23
- id: titleId
24
- }, title) : null, /*#__PURE__*/React.createElement("path", {
1
+ import * as React from 'react';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ const SvgIconVariable = ({
4
+ title,
5
+ titleId,
6
+ ...props
7
+ }) => /*#__PURE__*/_jsxs("svg", {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ viewBox: "0 0 24 24",
10
+ "aria-labelledby": titleId,
11
+ ...props,
12
+ children: [title ? /*#__PURE__*/_jsx("title", {
13
+ id: titleId,
14
+ children: title
15
+ }) : null, /*#__PURE__*/_jsx("path", {
25
16
  d: "M11.979 1a.75.75 0 0 0-.32.082L2.91 5.538a.75.75 0 0 0-.409.668v10.395a.75.75 0 0 0 .343.63l8.75 5.649a.75.75 0 0 0 .814 0l8.75-5.649a.75.75 0 0 0 .343-.63V6.206a.75.75 0 0 0-.41-.668l-8.75-4.456A.75.75 0 0 0 11.98 1M12 2.592l7.208 3.67-2.518 1.524-4.35-2.215a.75.75 0 0 0-.68 0L7.31 7.786 4.793 6.263zm0 4.489 3.179 1.62L12 10.622 8.821 8.7zm-8 .456L6.5 9.05v5.373a.75.75 0 0 0 .343.63l4.407 2.844v2.976L4 16.193zm16 0v8.655l-7.25 4.681v-2.976l4.407-2.844a.75.75 0 0 0 .343-.63V9.05zM8 9.957l3.25 1.966v4.19L8 14.012zm8 0v4.057l-3.25 2.098v-4.19z"
26
- }));
27
- };
28
- var _default = exports.default = SvgIconVariable;
17
+ })]
18
+ });
19
+ export default SvgIconVariable;
@@ -1,38 +1,29 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
- var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
5
- Object.defineProperty(exports, "__esModule", {
6
- value: true
7
- });
8
- exports.default = void 0;
9
- var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
10
- var React = _interopRequireWildcard(require("react"));
11
- const _excluded = ["title", "titleId"];
12
- const SvgIconVideo = _ref => {
13
- let {
14
- title,
15
- titleId
16
- } = _ref,
17
- props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
18
- return /*#__PURE__*/React.createElement("svg", Object.assign({
19
- xmlns: "http://www.w3.org/2000/svg",
20
- viewBox: "0 0 16 16",
21
- "aria-labelledby": titleId
22
- }, props), title ? /*#__PURE__*/React.createElement("title", {
23
- id: titleId
24
- }, title) : null, /*#__PURE__*/React.createElement("path", {
1
+ import * as React from 'react';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ const SvgIconVideo = ({
4
+ title,
5
+ titleId,
6
+ ...props
7
+ }) => /*#__PURE__*/_jsxs("svg", {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ viewBox: "0 0 16 16",
10
+ "aria-labelledby": titleId,
11
+ ...props,
12
+ children: [title ? /*#__PURE__*/_jsx("title", {
13
+ id: titleId,
14
+ children: title
15
+ }) : null, /*#__PURE__*/_jsx("path", {
25
16
  stroke: "#fff",
26
17
  strokeMiterlimit: 10,
27
18
  strokeWidth: 0.797,
28
19
  d: "M9.167 12.5H3.5c-.92 0-1.667-.746-1.667-1.667V5.167c0-.92.747-1.667 1.667-1.667h5.667c.92 0 1.666.746 1.666 1.667v5.666c0 .92-.746 1.667-1.666 1.667Z"
29
- }), /*#__PURE__*/React.createElement("path", {
20
+ }), /*#__PURE__*/_jsx("path", {
30
21
  stroke: "#fff",
31
22
  strokeLinecap: "round",
32
23
  strokeLinejoin: "round",
33
24
  strokeMiterlimit: 10,
34
25
  strokeWidth: 0.797,
35
26
  d: "m10.833 9.5 3.334 2v-7l-3.334 2"
36
- }));
37
- };
38
- var _default = exports.default = SvgIconVideo;
27
+ })]
28
+ });
29
+ export default SvgIconVideo;
@@ -1,28 +1,19 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
- var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
5
- Object.defineProperty(exports, "__esModule", {
6
- value: true
7
- });
8
- exports.default = void 0;
9
- var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
10
- var React = _interopRequireWildcard(require("react"));
11
- const _excluded = ["title", "titleId"];
12
- const SvgIconWifi = _ref => {
13
- let {
14
- title,
15
- titleId
16
- } = _ref,
17
- props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
18
- return /*#__PURE__*/React.createElement("svg", Object.assign({
19
- xmlns: "http://www.w3.org/2000/svg",
20
- viewBox: "0 0 24 24",
21
- "aria-labelledby": titleId
22
- }, props), title ? /*#__PURE__*/React.createElement("title", {
23
- id: titleId
24
- }, title) : null, /*#__PURE__*/React.createElement("path", {
1
+ import * as React from 'react';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ const SvgIconWifi = ({
4
+ title,
5
+ titleId,
6
+ ...props
7
+ }) => /*#__PURE__*/_jsxs("svg", {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ viewBox: "0 0 24 24",
10
+ "aria-labelledby": titleId,
11
+ ...props,
12
+ children: [title ? /*#__PURE__*/_jsx("title", {
13
+ id: titleId,
14
+ children: title
15
+ }) : null, /*#__PURE__*/_jsx("path", {
25
16
  d: "M11.905 3.553A15.32 15.32 0 0 0 1.04 8.049a.75.75 0 1 0 1.06 1.06c5.422-5.421 14.19-5.421 19.61 0a.751.751 0 1 0 1.061-1.06 15.32 15.32 0 0 0-10.866-4.496m0 4.46a10.87 10.87 0 0 0-7.712 3.19.75.75 0 1 0 1.06 1.06 9.396 9.396 0 0 1 13.305 0 .75.75 0 1 0 1.06-1.06 10.87 10.87 0 0 0-7.713-3.19m0 4.459a6.43 6.43 0 0 0-4.56 1.883.75.75 0 1 0 1.062 1.061 4.937 4.937 0 0 1 6.997 0 .748.748 0 0 0 1.236-.236.75.75 0 0 0-.175-.825 6.43 6.43 0 0 0-4.56-1.883M12 17a2 2 0 1 0 0 4 2 2 0 0 0 0-4"
26
- }));
27
- };
28
- var _default = exports.default = SvgIconWifi;
17
+ })]
18
+ });
19
+ export default SvgIconWifi;
@@ -1,28 +1,19 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
- var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
5
- Object.defineProperty(exports, "__esModule", {
6
- value: true
7
- });
8
- exports.default = void 0;
9
- var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
10
- var React = _interopRequireWildcard(require("react"));
11
- const _excluded = ["title", "titleId"];
12
- const SvgInfo = _ref => {
13
- let {
14
- title,
15
- titleId
16
- } = _ref,
17
- props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
18
- return /*#__PURE__*/React.createElement("svg", Object.assign({
19
- xmlns: "http://www.w3.org/2000/svg",
20
- viewBox: "0 0 24 24",
21
- "aria-labelledby": titleId
22
- }, props), title ? /*#__PURE__*/React.createElement("title", {
23
- id: titleId
24
- }, title) : null, /*#__PURE__*/React.createElement("path", {
1
+ import * as React from 'react';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ const SvgInfo = ({
4
+ title,
5
+ titleId,
6
+ ...props
7
+ }) => /*#__PURE__*/_jsxs("svg", {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ viewBox: "0 0 24 24",
10
+ "aria-labelledby": titleId,
11
+ ...props,
12
+ children: [title ? /*#__PURE__*/_jsx("title", {
13
+ id: titleId,
14
+ children: title
15
+ }) : null, /*#__PURE__*/_jsx("path", {
25
16
  d: "M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2m0 1.5c4.703 0 8.5 3.797 8.5 8.5s-3.797 8.5-8.5 8.5A8.49 8.49 0 0 1 3.5 12c0-4.703 3.797-8.5 8.5-8.5M12 7a1 1 0 1 0 0 2 1 1 0 0 0 0-2m-.012 3.49a.75.75 0 0 0-.738.76v5.5a.751.751 0 1 0 1.5 0v-5.5a.75.75 0 0 0-.762-.76"
26
- }));
27
- };
28
- var _default = exports.default = SvgInfo;
17
+ })]
18
+ });
19
+ export default SvgInfo;
@@ -1,28 +1,19 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
- var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
5
- Object.defineProperty(exports, "__esModule", {
6
- value: true
7
- });
8
- exports.default = void 0;
9
- var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
10
- var React = _interopRequireWildcard(require("react"));
11
- const _excluded = ["title", "titleId"];
12
- const SvgKey = _ref => {
13
- let {
14
- title,
15
- titleId
16
- } = _ref,
17
- props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
18
- return /*#__PURE__*/React.createElement("svg", Object.assign({
19
- xmlns: "http://www.w3.org/2000/svg",
20
- viewBox: "0 0 24 24",
21
- "aria-labelledby": titleId
22
- }, props), title ? /*#__PURE__*/React.createElement("title", {
23
- id: titleId
24
- }, title) : null, /*#__PURE__*/React.createElement("path", {
1
+ import * as React from 'react';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ const SvgKey = ({
4
+ title,
5
+ titleId,
6
+ ...props
7
+ }) => /*#__PURE__*/_jsxs("svg", {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ viewBox: "0 0 24 24",
10
+ "aria-labelledby": titleId,
11
+ ...props,
12
+ children: [title ? /*#__PURE__*/_jsx("title", {
13
+ id: titleId,
14
+ children: title
15
+ }) : null, /*#__PURE__*/_jsx("path", {
25
16
  d: "M15 2.5c-3.58 0-6.5 2.92-6.5 6.5 0 .441.091.852.176 1.264L2.72 16.22a.75.75 0 0 0-.22.53v4a.75.75 0 0 0 .75.75h4a.75.75 0 0 0 .75-.75V19.5h1.75a.75.75 0 0 0 .75-.75V17h1.75a.75.75 0 0 0 .75-.75v-1.102c.636.207 1.298.352 2 .352 3.58 0 6.5-2.92 6.5-6.5S18.58 2.5 15 2.5M15 4c2.77 0 5 2.23 5 5s-2.23 5-5 5c-.869 0-1.68-.22-2.39-.607a.75.75 0 0 0-1.11.658V15.5H9.75a.75.75 0 0 0-.75.75V18H7.25a.75.75 0 0 0-.75.75V20H4v-2.94l5.994-5.994a.75.75 0 0 0 .193-.731A4.989 4.989 0 0 1 15 4m1 2.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3"
26
- }));
27
- };
28
- var _default = exports.default = SvgKey;
17
+ })]
18
+ });
19
+ export default SvgKey;
@@ -1,28 +1,19 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
- var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
5
- Object.defineProperty(exports, "__esModule", {
6
- value: true
7
- });
8
- exports.default = void 0;
9
- var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
10
- var React = _interopRequireWildcard(require("react"));
11
- const _excluded = ["title", "titleId"];
12
- const SvgLeaf = _ref => {
13
- let {
14
- title,
15
- titleId
16
- } = _ref,
17
- props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
18
- return /*#__PURE__*/React.createElement("svg", Object.assign({
19
- xmlns: "http://www.w3.org/2000/svg",
20
- viewBox: "0 0 16 16",
21
- "aria-labelledby": titleId
22
- }, props), title ? /*#__PURE__*/React.createElement("title", {
23
- id: titleId
24
- }, title) : null, /*#__PURE__*/React.createElement("path", {
1
+ import * as React from 'react';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ const SvgLeaf = ({
4
+ title,
5
+ titleId,
6
+ ...props
7
+ }) => /*#__PURE__*/_jsxs("svg", {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ viewBox: "0 0 16 16",
10
+ "aria-labelledby": titleId,
11
+ ...props,
12
+ children: [title ? /*#__PURE__*/_jsx("title", {
13
+ id: titleId,
14
+ children: title
15
+ }) : null, /*#__PURE__*/_jsx("path", {
25
16
  d: "M10.844 1.137a1.5 1.5 0 0 0-.451.06C8.76 1.677 4.575 3.058 2.66 5.91l-.008.011-.006.011c-.547.914-.625 1.78-.625 2.468 0 1.279.605 2.362 1.392 3.114.492.471 1.054.768 1.624.968a8.1 8.1 0 0 1-2.355 1.208.5.5 0 1 0 .303.953c3.883-1.235 6.295-4.887 7.091-8.653a.5.5 0 0 0-.978-.207c-.47 2.22-1.544 4.362-3.146 5.914-.52-.035-1.256-.34-1.848-.906-.628-.6-1.083-1.428-1.083-2.39 0-.62.054-1.23.479-1.945 1.613-2.387 5.623-3.843 7.175-4.3.203-.059.418.01.544.177 1.473 1.935 2.093 4.412 2.114 5.944.021 1.62-.39 2.826-1.026 3.628-.635.8-1.492 1.22-2.487 1.26-.498 0-1.099.012-1.85-.562a.5.5 0 1 0-.607.794c.99.756 1.97.77 2.47.77h.01l.01-.001a4.3 4.3 0 0 0 3.238-1.64c.808-1.02 1.265-2.466 1.241-4.262-.024-1.776-.681-4.388-2.317-6.537a1.5 1.5 0 0 0-1.171-.59"
26
- }));
27
- };
28
- var _default = exports.default = SvgLeaf;
17
+ })]
18
+ });
19
+ export default SvgLeaf;
@@ -1,28 +1,19 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
- var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
5
- Object.defineProperty(exports, "__esModule", {
6
- value: true
7
- });
8
- exports.default = void 0;
9
- var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
10
- var React = _interopRequireWildcard(require("react"));
11
- const _excluded = ["title", "titleId"];
12
- const SvgLock = _ref => {
13
- let {
14
- title,
15
- titleId
16
- } = _ref,
17
- props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
18
- return /*#__PURE__*/React.createElement("svg", Object.assign({
19
- xmlns: "http://www.w3.org/2000/svg",
20
- viewBox: "0 0 32 40",
21
- "aria-labelledby": titleId
22
- }, props), title ? /*#__PURE__*/React.createElement("title", {
23
- id: titleId
24
- }, title) : null, /*#__PURE__*/React.createElement("path", {
1
+ import * as React from 'react';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ const SvgLock = ({
4
+ title,
5
+ titleId,
6
+ ...props
7
+ }) => /*#__PURE__*/_jsxs("svg", {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ viewBox: "0 0 32 40",
10
+ "aria-labelledby": titleId,
11
+ ...props,
12
+ children: [title ? /*#__PURE__*/_jsx("title", {
13
+ id: titleId,
14
+ children: title
15
+ }) : null, /*#__PURE__*/_jsx("path", {
25
16
  d: "M16 0c-4.4 0-8 3.6-8 8v4H4.5C2.033 12 0 14.033 0 16.5v19C0 37.968 2.033 40 4.5 40h23c2.468 0 4.5-2.032 4.5-4.5v-19c0-2.467-2.032-4.5-4.5-4.5H24V8c0-4.4-3.6-8-8-8m0 3c2.78 0 5 2.22 5 5v4H11V8c0-2.78 2.22-5 5-5M4.5 15h23c.846 0 1.5.653 1.5 1.5v19c0 .846-.654 1.5-1.5 1.5h-23c-.846 0-1.5-.654-1.5-1.5v-19c0-.847.654-1.5 1.5-1.5M16 23a3 3 0 1 0 0 6 3 3 0 0 0 0-6"
26
- }));
27
- };
28
- var _default = exports.default = SvgLock;
17
+ })]
18
+ });
19
+ export default SvgLock;
@@ -1,46 +1,41 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
- var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
5
- Object.defineProperty(exports, "__esModule", {
6
- value: true
1
+ import * as React from 'react';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ const SvgLogo = ({
4
+ title,
5
+ titleId,
6
+ ...props
7
+ }) => /*#__PURE__*/_jsxs("svg", {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ viewBox: "0 0 137 16",
10
+ "aria-labelledby": titleId,
11
+ ...props,
12
+ children: [title ? /*#__PURE__*/_jsx("title", {
13
+ id: titleId,
14
+ children: title
15
+ }) : null, /*#__PURE__*/_jsxs("g", {
16
+ clipPath: "url(#logo_svg__a)",
17
+ children: [/*#__PURE__*/_jsx("path", {
18
+ d: "M30.222 11.128A28.1 28.1 0 0 0 19.16 6.979V3.095c0-1.054-.197-1.91-.658-2.37C18.172.262 17.514 0 16.724 0h-2.238v1.383h1.843c.922 0 1.251.658 1.251 1.777v3.622c-.79-.066-1.646-.132-2.436-.132-.658 0-1.251 0-1.91.066V0l-1.646.46v6.388C7.374 7.374 3.425 8.888 0 11.128a34.3 34.3 0 0 1 11.589-3.424v5.201c0 1.054.197 1.91.658 2.37.395.462.988.725 1.778.725h2.304v-1.383h-1.843c-.922 0-1.251-.658-1.251-1.778V7.572c.658-.066 1.25-.066 1.909-.066.437 0 .856.017 1.267.034.395.016.782.032 1.17.032V16l1.645-.46V7.77a32.9 32.9 0 0 1 10.996 3.358M53.86 9.942c0-1.25.33-1.975 1.383-1.975l.658-.066V6.387h-1.12c-.855 0-1.514.329-1.974.79-.527.593-.725 1.514-.725 2.7v3.95h1.778zM59.984 7.967c-1.054 0-1.383.724-1.383 1.975v3.885h-1.778v-3.95c0-1.186.198-2.107.724-2.7.461-.461 1.12-.79 1.976-.79h1.119V7.9zM88.626 7.967c-1.054 0-1.383.724-1.383 1.975v3.885h-1.778v-3.95c0-1.186.197-2.107.724-2.7.461-.461 1.12-.79 1.976-.79h1.119V7.9z"
19
+ }), /*#__PURE__*/_jsx("path", {
20
+ fillRule: "evenodd",
21
+ d: "M47.012 14.025c1.515 0 2.502-.461 3.292-1.58l-1.448-.857c-.46.527-.988.725-1.778.725-1.053 0-1.843-.593-2.04-1.646h5.793v-.395c0-2.24-1.514-3.885-3.819-3.885S43.26 8.23 43.26 10.206c0 2.107 1.449 3.819 3.753 3.819m0-6.058c.988 0 1.712.527 1.976 1.383h-3.885c.33-.922.987-1.383 1.91-1.383M67.029 13.103c-.659.592-1.317.922-2.239.922-1.844 0-3.424-1.58-3.424-3.82 0-2.238 1.515-3.818 3.424-3.818.856 0 1.646.329 2.239.987v-.79h1.778v7.243h-1.778zm-3.82-2.897c0 1.25.791 2.173 1.91 2.173 1.12 0 1.976-.856 1.976-2.173 0-1.251-.856-2.107-1.976-2.107-1.185 0-1.91.987-1.91 2.107M80.33 14.025c2.172 0 3.818-1.712 3.818-3.82 0-2.106-1.712-3.752-3.819-3.818-1.975 0-3.753 1.646-3.753 3.819s1.646 3.819 3.753 3.819m0-1.712c-1.12 0-1.91-.856-1.91-2.107 0-1.185.79-2.041 1.91-2.107 1.184 0 1.975.856 1.975 2.107 0 1.317-.856 2.107-1.976 2.107M108.313 13.103c-.659.592-1.317.922-2.239.922-1.844 0-3.424-1.58-3.424-3.82 0-2.238 1.515-3.818 3.424-3.818.856 0 1.646.329 2.239.987v-.79h1.778v7.243h-1.778zm-3.885-2.897c0 1.25.79 2.173 1.909 2.173 1.12 0 1.976-.856 1.976-2.173 0-1.251-.856-2.107-1.976-2.107-1.119 0-1.909.987-1.909 2.107",
22
+ clipRule: "evenodd"
23
+ }), /*#__PURE__*/_jsx("path", {
24
+ d: "M119.243 5.53a1.18 1.18 0 0 0 1.185-1.184 1.18 1.18 0 0 0-1.185-1.185c-.659 0-1.185.526-1.185 1.119 0 .658.526 1.25 1.185 1.25M120.165 6.65h-1.778v7.243h1.778zM45.103 1.91H35.029v1.777h4.082v10.14h1.844V3.687h4.148z"
25
+ }), /*#__PURE__*/_jsx("path", {
26
+ fillRule: "evenodd",
27
+ d: "M125.169 14.025c2.173 0 3.819-1.712 3.819-3.82 0-2.106-1.712-3.752-3.819-3.818-1.976 0-3.753 1.646-3.753 3.819s1.646 3.819 3.753 3.819m0-1.712c-1.12 0-1.91-.856-1.91-2.107 0-1.185.79-2.041 1.91-2.107 1.185 0 1.975.856 1.975 2.107 0 1.317-.856 2.107-1.975 2.107",
28
+ clipRule: "evenodd"
29
+ }), /*#__PURE__*/_jsx("path", {
30
+ d: "M117.07 8.165v-1.58h-2.041V3.16l-1.778.526V6.65h-1.909v1.58h1.909v3.688c0 1.185.198 2.107.724 2.7.461.46 1.12.79 1.976.79h1.119v-1.58h-.658c-1.054 0-1.383-.725-1.383-1.976V8.165zM75.852 2.173v1.514h-.659c-1.185 0-1.382.593-1.382 1.976v.921h2.04v1.58h-2.04v7.046l-1.778.527v-7.44h-1.91v-1.58h1.91V5.662c0-1.251.198-2.107.724-2.7.395-.527 1.12-.79 1.975-.79zM96.988 13.827H95.21v-3.49c0-1.382-.263-2.238-1.251-2.238-.922 0-1.58.724-1.58 2.239v3.49H90.6V6.452h1.778v.987a2.95 2.95 0 0 1 2.238-.987c.922 0 1.646.395 2.107 1.317.659-.856 1.317-1.317 2.436-1.317.79 0 1.515.329 1.91.856.461.592.527 1.382.527 2.37v4.148h-1.778v-3.95c0-1.186-.395-1.778-1.251-1.778-.922 0-1.58.724-1.58 2.173zM133.926 6.453c-.79 0-1.383.329-2.107.922v-.79h-1.778v7.242h1.778v-3.029l-.002-.271c-.007-.618-.014-1.186.331-1.704.329-.46.724-.724 1.251-.724 1.12 0 1.251.856 1.251 2.304v3.424h1.778V8.955c0-1.58-1.185-2.502-2.502-2.502"
31
+ })]
32
+ }), /*#__PURE__*/_jsx("defs", {
33
+ children: /*#__PURE__*/_jsx("clipPath", {
34
+ id: "logo_svg__a",
35
+ children: /*#__PURE__*/_jsx("path", {
36
+ d: "M0 0h136.428v16H0z"
37
+ })
38
+ })
39
+ })]
7
40
  });
8
- exports.default = void 0;
9
- var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
10
- var React = _interopRequireWildcard(require("react"));
11
- const _excluded = ["title", "titleId"];
12
- const SvgLogo = _ref => {
13
- let {
14
- title,
15
- titleId
16
- } = _ref,
17
- props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
18
- return /*#__PURE__*/React.createElement("svg", Object.assign({
19
- xmlns: "http://www.w3.org/2000/svg",
20
- viewBox: "0 0 137 16",
21
- "aria-labelledby": titleId
22
- }, props), title ? /*#__PURE__*/React.createElement("title", {
23
- id: titleId
24
- }, title) : null, /*#__PURE__*/React.createElement("g", {
25
- clipPath: "url(#logo_svg__a)"
26
- }, /*#__PURE__*/React.createElement("path", {
27
- d: "M30.222 11.128A28.1 28.1 0 0 0 19.16 6.979V3.095c0-1.054-.197-1.91-.658-2.37C18.172.262 17.514 0 16.724 0h-2.238v1.383h1.843c.922 0 1.251.658 1.251 1.777v3.622c-.79-.066-1.646-.132-2.436-.132-.658 0-1.251 0-1.91.066V0l-1.646.46v6.388C7.374 7.374 3.425 8.888 0 11.128a34.3 34.3 0 0 1 11.589-3.424v5.201c0 1.054.197 1.91.658 2.37.395.462.988.725 1.778.725h2.304v-1.383h-1.843c-.922 0-1.251-.658-1.251-1.778V7.572c.658-.066 1.25-.066 1.909-.066.437 0 .856.017 1.267.034.395.016.782.032 1.17.032V16l1.645-.46V7.77a32.9 32.9 0 0 1 10.996 3.358M53.86 9.942c0-1.25.33-1.975 1.383-1.975l.658-.066V6.387h-1.12c-.855 0-1.514.329-1.974.79-.527.593-.725 1.514-.725 2.7v3.95h1.778zM59.984 7.967c-1.054 0-1.383.724-1.383 1.975v3.885h-1.778v-3.95c0-1.186.198-2.107.724-2.7.461-.461 1.12-.79 1.976-.79h1.119V7.9zM88.626 7.967c-1.054 0-1.383.724-1.383 1.975v3.885h-1.778v-3.95c0-1.186.197-2.107.724-2.7.461-.461 1.12-.79 1.976-.79h1.119V7.9z"
28
- }), /*#__PURE__*/React.createElement("path", {
29
- fillRule: "evenodd",
30
- d: "M47.012 14.025c1.515 0 2.502-.461 3.292-1.58l-1.448-.857c-.46.527-.988.725-1.778.725-1.053 0-1.843-.593-2.04-1.646h5.793v-.395c0-2.24-1.514-3.885-3.819-3.885S43.26 8.23 43.26 10.206c0 2.107 1.449 3.819 3.753 3.819m0-6.058c.988 0 1.712.527 1.976 1.383h-3.885c.33-.922.987-1.383 1.91-1.383M67.029 13.103c-.659.592-1.317.922-2.239.922-1.844 0-3.424-1.58-3.424-3.82 0-2.238 1.515-3.818 3.424-3.818.856 0 1.646.329 2.239.987v-.79h1.778v7.243h-1.778zm-3.82-2.897c0 1.25.791 2.173 1.91 2.173 1.12 0 1.976-.856 1.976-2.173 0-1.251-.856-2.107-1.976-2.107-1.185 0-1.91.987-1.91 2.107M80.33 14.025c2.172 0 3.818-1.712 3.818-3.82 0-2.106-1.712-3.752-3.819-3.818-1.975 0-3.753 1.646-3.753 3.819s1.646 3.819 3.753 3.819m0-1.712c-1.12 0-1.91-.856-1.91-2.107 0-1.185.79-2.041 1.91-2.107 1.184 0 1.975.856 1.975 2.107 0 1.317-.856 2.107-1.976 2.107M108.313 13.103c-.659.592-1.317.922-2.239.922-1.844 0-3.424-1.58-3.424-3.82 0-2.238 1.515-3.818 3.424-3.818.856 0 1.646.329 2.239.987v-.79h1.778v7.243h-1.778zm-3.885-2.897c0 1.25.79 2.173 1.909 2.173 1.12 0 1.976-.856 1.976-2.173 0-1.251-.856-2.107-1.976-2.107-1.119 0-1.909.987-1.909 2.107",
31
- clipRule: "evenodd"
32
- }), /*#__PURE__*/React.createElement("path", {
33
- d: "M119.243 5.53a1.18 1.18 0 0 0 1.185-1.184 1.18 1.18 0 0 0-1.185-1.185c-.659 0-1.185.526-1.185 1.119 0 .658.526 1.25 1.185 1.25M120.165 6.65h-1.778v7.243h1.778zM45.103 1.91H35.029v1.777h4.082v10.14h1.844V3.687h4.148z"
34
- }), /*#__PURE__*/React.createElement("path", {
35
- fillRule: "evenodd",
36
- d: "M125.169 14.025c2.173 0 3.819-1.712 3.819-3.82 0-2.106-1.712-3.752-3.819-3.818-1.976 0-3.753 1.646-3.753 3.819s1.646 3.819 3.753 3.819m0-1.712c-1.12 0-1.91-.856-1.91-2.107 0-1.185.79-2.041 1.91-2.107 1.185 0 1.975.856 1.975 2.107 0 1.317-.856 2.107-1.975 2.107",
37
- clipRule: "evenodd"
38
- }), /*#__PURE__*/React.createElement("path", {
39
- d: "M117.07 8.165v-1.58h-2.041V3.16l-1.778.526V6.65h-1.909v1.58h1.909v3.688c0 1.185.198 2.107.724 2.7.461.46 1.12.79 1.976.79h1.119v-1.58h-.658c-1.054 0-1.383-.725-1.383-1.976V8.165zM75.852 2.173v1.514h-.659c-1.185 0-1.382.593-1.382 1.976v.921h2.04v1.58h-2.04v7.046l-1.778.527v-7.44h-1.91v-1.58h1.91V5.662c0-1.251.198-2.107.724-2.7.395-.527 1.12-.79 1.975-.79zM96.988 13.827H95.21v-3.49c0-1.382-.263-2.238-1.251-2.238-.922 0-1.58.724-1.58 2.239v3.49H90.6V6.452h1.778v.987a2.95 2.95 0 0 1 2.238-.987c.922 0 1.646.395 2.107 1.317.659-.856 1.317-1.317 2.436-1.317.79 0 1.515.329 1.91.856.461.592.527 1.382.527 2.37v4.148h-1.778v-3.95c0-1.186-.395-1.778-1.251-1.778-.922 0-1.58.724-1.58 2.173zM133.926 6.453c-.79 0-1.383.329-2.107.922v-.79h-1.778v7.242h1.778v-3.029l-.002-.271c-.007-.618-.014-1.186.331-1.704.329-.46.724-.724 1.251-.724 1.12 0 1.251.856 1.251 2.304v3.424h1.778V8.955c0-1.58-1.185-2.502-2.502-2.502"
40
- })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
41
- id: "logo_svg__a"
42
- }, /*#__PURE__*/React.createElement("path", {
43
- d: "M0 0h136.428v16H0z"
44
- }))));
45
- };
46
- var _default = exports.default = SvgLogo;
41
+ export default SvgLogo;
@@ -1,28 +1,19 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
- var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
5
- Object.defineProperty(exports, "__esModule", {
6
- value: true
7
- });
8
- exports.default = void 0;
9
- var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
10
- var React = _interopRequireWildcard(require("react"));
11
- const _excluded = ["title", "titleId"];
12
- const SvgMenuVertical = _ref => {
13
- let {
14
- title,
15
- titleId
16
- } = _ref,
17
- props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
18
- return /*#__PURE__*/React.createElement("svg", Object.assign({
19
- xmlns: "http://www.w3.org/2000/svg",
20
- viewBox: "0 0 24 24",
21
- "aria-labelledby": titleId
22
- }, props), title ? /*#__PURE__*/React.createElement("title", {
23
- id: titleId
24
- }, title) : null, /*#__PURE__*/React.createElement("path", {
1
+ import * as React from 'react';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ const SvgMenuVertical = ({
4
+ title,
5
+ titleId,
6
+ ...props
7
+ }) => /*#__PURE__*/_jsxs("svg", {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ viewBox: "0 0 24 24",
10
+ "aria-labelledby": titleId,
11
+ ...props,
12
+ children: [title ? /*#__PURE__*/_jsx("title", {
13
+ id: titleId,
14
+ children: title
15
+ }) : null, /*#__PURE__*/_jsx("path", {
25
16
  d: "M12 16.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3m0-6a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3m0-6a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3"
26
- }));
27
- };
28
- var _default = exports.default = SvgMenuVertical;
17
+ })]
18
+ });
19
+ export default SvgMenuVertical;
@@ -1,28 +1,19 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
- var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
5
- Object.defineProperty(exports, "__esModule", {
6
- value: true
7
- });
8
- exports.default = void 0;
9
- var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
10
- var React = _interopRequireWildcard(require("react"));
11
- const _excluded = ["title", "titleId"];
12
- const SvgNotification = _ref => {
13
- let {
14
- title,
15
- titleId
16
- } = _ref,
17
- props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
18
- return /*#__PURE__*/React.createElement("svg", Object.assign({
19
- xmlns: "http://www.w3.org/2000/svg",
20
- viewBox: "0 0 24 24",
21
- "aria-labelledby": titleId
22
- }, props), title ? /*#__PURE__*/React.createElement("title", {
23
- id: titleId
24
- }, title) : null, /*#__PURE__*/React.createElement("path", {
1
+ import * as React from 'react';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ const SvgNotification = ({
4
+ title,
5
+ titleId,
6
+ ...props
7
+ }) => /*#__PURE__*/_jsxs("svg", {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ viewBox: "0 0 24 24",
10
+ "aria-labelledby": titleId,
11
+ ...props,
12
+ children: [title ? /*#__PURE__*/_jsx("title", {
13
+ id: titleId,
14
+ children: title
15
+ }) : null, /*#__PURE__*/_jsx("path", {
25
16
  d: "M11.639 2.009C7.597 2.199 4.5 5.672 4.5 9.69v3.634L3.175 15.99l-.007.015c-.533 1.134.33 2.495 1.583 2.495H9c0 1.648 1.352 3 3 3s3-1.352 3-3h4.248c1.253 0 2.117-1.361 1.584-2.495l-.007-.015-1.325-2.666V9.5c0-4.253-3.568-7.693-7.861-7.491m.07 1.498A5.987 5.987 0 0 1 18 9.5v4q0 .176.078.334l1.397 2.81c.09.193-.015.356-.227.356H4.751c-.212 0-.316-.163-.226-.355v-.002l1.397-2.809A.75.75 0 0 0 6 13.5V9.69c0-3.25 2.49-6.032 5.709-6.183M10.5 18.5h3c0 .837-.663 1.5-1.5 1.5s-1.5-.663-1.5-1.5"
26
- }));
27
- };
28
- var _default = exports.default = SvgNotification;
17
+ })]
18
+ });
19
+ export default SvgNotification;
@@ -1,28 +1,19 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
4
- var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
5
- Object.defineProperty(exports, "__esModule", {
6
- value: true
7
- });
8
- exports.default = void 0;
9
- var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/esm/objectWithoutProperties"));
10
- var React = _interopRequireWildcard(require("react"));
11
- const _excluded = ["title", "titleId"];
12
- const SvgPerson = _ref => {
13
- let {
14
- title,
15
- titleId
16
- } = _ref,
17
- props = (0, _objectWithoutProperties2.default)(_ref, _excluded);
18
- return /*#__PURE__*/React.createElement("svg", Object.assign({
19
- xmlns: "http://www.w3.org/2000/svg",
20
- viewBox: "0 0 24 24",
21
- "aria-labelledby": titleId
22
- }, props), title ? /*#__PURE__*/React.createElement("title", {
23
- id: titleId
24
- }, title) : null, /*#__PURE__*/React.createElement("path", {
1
+ import * as React from 'react';
2
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
+ const SvgPerson = ({
4
+ title,
5
+ titleId,
6
+ ...props
7
+ }) => /*#__PURE__*/_jsxs("svg", {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ viewBox: "0 0 24 24",
10
+ "aria-labelledby": titleId,
11
+ ...props,
12
+ children: [title ? /*#__PURE__*/_jsx("title", {
13
+ id: titleId,
14
+ children: title
15
+ }) : null, /*#__PURE__*/_jsx("path", {
25
16
  d: "M12 2C9.247 2 7 4.247 7 7s2.247 5 5 5c2.752 0 5-2.247 5-5s-2.248-5-5-5m0 1.5c1.942 0 3.5 1.558 3.5 3.5s-1.558 3.5-3.5 3.5A3.49 3.49 0 0 1 8.5 7c0-1.942 1.558-3.5 3.5-3.5M5.99 14A2 2 0 0 0 4 15.99v.76c0 1.802 1.14 3.196 2.653 4.031S10.084 22 12 22s3.833-.384 5.347-1.219c1.29-.712 2.262-1.85 2.534-3.281H20v-1.51c0-1.09-.9-1.99-1.99-1.99zm0 1.5h12.02c.28 0 .491.21.491.49V16H18.5v.75c0 1.198-.673 2.054-1.878 2.719S13.71 20.5 12 20.5s-3.417-.366-4.622-1.031S5.5 17.948 5.5 16.75v-.76c0-.28.21-.49.49-.49"
26
- }));
27
- };
28
- var _default = exports.default = SvgPerson;
17
+ })]
18
+ });
19
+ export default SvgPerson;