@terraware/web-components 4.2.13 → 4.2.14-rc.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 (302) 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.js +251 -257
  19. package/components/IconTooltip/index.js +29 -34
  20. package/components/Map/MapBox.js +199 -220
  21. package/components/Map/MapContainer.js +14 -18
  22. package/components/Map/MapDateSliderControl.js +44 -46
  23. package/components/Map/MapDrawer.js +32 -33
  24. package/components/Map/MapLegend.js +96 -95
  25. package/components/Map/MapViewStyleControl.js +38 -48
  26. package/components/Map/ReactMapboxWrapper.js +2 -9
  27. package/components/Map/index.js +47 -55
  28. package/components/Map/types.js +2 -8
  29. package/components/Map/useMaintainLayerOrder.js +4 -11
  30. package/components/Markdown/index.js +14 -21
  31. package/components/Message/Message.js +59 -51
  32. package/components/MultiSelect/MultiSelect.test.js +22 -24
  33. package/components/MultiSelect/index.js +73 -69
  34. package/components/Navbar/NavFooter.js +8 -13
  35. package/components/Navbar/NavItem.js +43 -37
  36. package/components/Navbar/NavSection.js +13 -17
  37. package/components/Navbar/Navbar.js +35 -38
  38. package/components/Navbar/SubNavbar.js +8 -13
  39. package/components/Note.js +14 -19
  40. package/components/OverlayModal/OverlayModal.js +36 -37
  41. package/components/PageForm/index.js +30 -35
  42. package/components/PhotoChooser/index.js +93 -98
  43. package/components/Pill/index.js +29 -31
  44. package/components/PillList/index.js +16 -22
  45. package/components/PlacementWrapper/index.js +20 -25
  46. package/components/PopoverMenu/Popover.js +33 -37
  47. package/components/PopoverMenu/index.js +41 -46
  48. package/components/PopoverMultiSelect/index.js +18 -21
  49. package/components/ProgressCircle/ProgressCircle.js +23 -26
  50. package/components/RadioButton.js +7 -14
  51. package/components/Select/Select.js +8 -13
  52. package/components/Select/SelectT.js +110 -108
  53. package/components/Separator/index.js +8 -14
  54. package/components/Size.js +1 -5
  55. package/components/Slider/index.js +7 -13
  56. package/components/SummaryBox.js +36 -39
  57. package/components/Tabs/index.js +75 -77
  58. package/components/TextTruncated/index.js +64 -65
  59. package/components/Textfield/Textfield.js +100 -95
  60. package/components/Textfield/TruncatedTextArea.js +44 -46
  61. package/components/TimelineSlider/TimelineMarker.js +24 -28
  62. package/components/TimelineSlider/TimelineRail.js +5 -11
  63. package/components/TimelineSlider/index.js +47 -51
  64. package/components/Tooltip/Tooltip.js +21 -26
  65. package/components/ViewPhotosDialog/index.js +58 -62
  66. package/components/VirtualWalkthrough/Annotation.d.ts +41 -0
  67. package/components/VirtualWalkthrough/Annotation.d.ts.map +1 -0
  68. package/components/VirtualWalkthrough/Annotation.js +197 -0
  69. package/components/VirtualWalkthrough/AnnotationEditPane.d.ts +20 -0
  70. package/components/VirtualWalkthrough/AnnotationEditPane.d.ts.map +1 -0
  71. package/components/VirtualWalkthrough/AnnotationEditPane.js +136 -0
  72. package/components/VirtualWalkthrough/AnnotationPanel.d.ts +13 -0
  73. package/components/VirtualWalkthrough/AnnotationPanel.d.ts.map +1 -0
  74. package/components/VirtualWalkthrough/AnnotationPanel.js +196 -0
  75. package/components/VirtualWalkthrough/Application.d.ts +9 -0
  76. package/components/VirtualWalkthrough/Application.d.ts.map +1 -0
  77. package/components/VirtualWalkthrough/Application.js +32 -0
  78. package/components/VirtualWalkthrough/AutoRotator.d.ts +109 -0
  79. package/components/VirtualWalkthrough/AutoRotator.d.ts.map +1 -0
  80. package/components/VirtualWalkthrough/AutoRotator.js +217 -0
  81. package/components/VirtualWalkthrough/BlockingSpinner.d.ts +3 -0
  82. package/components/VirtualWalkthrough/BlockingSpinner.d.ts.map +1 -0
  83. package/components/VirtualWalkthrough/BlockingSpinner.js +27 -0
  84. package/components/VirtualWalkthrough/BoundaryRing.d.ts +9 -0
  85. package/components/VirtualWalkthrough/BoundaryRing.d.ts.map +1 -0
  86. package/components/VirtualWalkthrough/BoundaryRing.js +33 -0
  87. package/components/VirtualWalkthrough/CameraInfo.d.ts +16 -0
  88. package/components/VirtualWalkthrough/CameraInfo.d.ts.map +1 -0
  89. package/components/VirtualWalkthrough/CameraInfo.js +88 -0
  90. package/components/VirtualWalkthrough/ControlsInfoPane.d.ts +37 -0
  91. package/components/VirtualWalkthrough/ControlsInfoPane.d.ts.map +1 -0
  92. package/components/VirtualWalkthrough/ControlsInfoPane.js +196 -0
  93. package/components/VirtualWalkthrough/GradientSky.d.ts +9 -0
  94. package/components/VirtualWalkthrough/GradientSky.d.ts.map +1 -0
  95. package/components/VirtualWalkthrough/GradientSky.js +73 -0
  96. package/components/VirtualWalkthrough/SplatControls.d.ts +50 -0
  97. package/components/VirtualWalkthrough/SplatControls.d.ts.map +1 -0
  98. package/components/VirtualWalkthrough/SplatControls.js +252 -0
  99. package/components/VirtualWalkthrough/SplatCrop.d.ts +8 -0
  100. package/components/VirtualWalkthrough/SplatCrop.d.ts.map +1 -0
  101. package/components/VirtualWalkthrough/SplatCrop.js +18 -0
  102. package/components/VirtualWalkthrough/SplatFadeCrop.d.ts +8 -0
  103. package/components/VirtualWalkthrough/SplatFadeCrop.d.ts.map +1 -0
  104. package/components/VirtualWalkthrough/SplatFadeCrop.js +18 -0
  105. package/components/VirtualWalkthrough/SplatModel.d.ts +15 -0
  106. package/components/VirtualWalkthrough/SplatModel.d.ts.map +1 -0
  107. package/components/VirtualWalkthrough/SplatModel.js +60 -0
  108. package/components/VirtualWalkthrough/SplatRevealRain.d.ts +18 -0
  109. package/components/VirtualWalkthrough/SplatRevealRain.d.ts.map +1 -0
  110. package/components/VirtualWalkthrough/SplatRevealRain.js +38 -0
  111. package/components/VirtualWalkthrough/TfAnnotationManager.d.ts +110 -0
  112. package/components/VirtualWalkthrough/TfAnnotationManager.d.ts.map +1 -0
  113. package/components/VirtualWalkthrough/TfAnnotationManager.js +368 -0
  114. package/components/VirtualWalkthrough/TfXrNavigation.d.ts +15 -0
  115. package/components/VirtualWalkthrough/TfXrNavigation.d.ts.map +1 -0
  116. package/components/VirtualWalkthrough/TfXrNavigation.js +24 -0
  117. package/components/VirtualWalkthrough/VirtualWalkthroughViewer.d.ts +27 -0
  118. package/components/VirtualWalkthrough/VirtualWalkthroughViewer.d.ts.map +1 -0
  119. package/components/VirtualWalkthrough/VirtualWalkthroughViewer.js +282 -0
  120. package/components/VirtualWalkthrough/annotation-styles.css +5 -0
  121. package/components/VirtualWalkthrough/application-styles.css +4 -0
  122. package/components/VirtualWalkthrough/boundary-ring.d.ts +47 -0
  123. package/components/VirtualWalkthrough/boundary-ring.d.ts.map +1 -0
  124. package/components/VirtualWalkthrough/boundary-ring.js +125 -0
  125. package/components/VirtualWalkthrough/boundary-ring.test.js +109 -0
  126. package/components/VirtualWalkthrough/groundPlane.d.ts +14 -0
  127. package/components/VirtualWalkthrough/groundPlane.d.ts.map +1 -0
  128. package/components/VirtualWalkthrough/groundPlane.js +47 -0
  129. package/components/VirtualWalkthrough/groundPlane.test.js +45 -0
  130. package/components/VirtualWalkthrough/gsplat-fade-crop-effect.d.ts +19 -0
  131. package/components/VirtualWalkthrough/gsplat-fade-crop-effect.d.ts.map +1 -0
  132. package/components/VirtualWalkthrough/gsplat-fade-crop-effect.js +119 -0
  133. package/components/VirtualWalkthrough/walkthrough-camera.d.ts +77 -0
  134. package/components/VirtualWalkthrough/walkthrough-camera.d.ts.map +1 -0
  135. package/components/VirtualWalkthrough/walkthrough-camera.js +320 -0
  136. package/components/svg/BlobbyGrayIconImage.js +36 -41
  137. package/components/svg/BlobbyGrayIconImport.js +36 -41
  138. package/components/svg/BlobbyGrayIconUploadToTheCloud.js +36 -41
  139. package/components/svg/BlobbyIconCloudChecked.js +161 -158
  140. package/components/svg/BlobbyIconExportOrUploadPhoto.js +161 -158
  141. package/components/svg/BlobbyIconFolder.js +161 -158
  142. package/components/svg/BlobbyIconGraphReport.js +161 -158
  143. package/components/svg/BlobbyIconHappy.js +161 -158
  144. package/components/svg/BlobbyIconHeartMonitor.js +161 -158
  145. package/components/svg/BlobbyIconLeaf.js +161 -158
  146. package/components/svg/BlobbyIconLibrary.js +161 -158
  147. package/components/svg/BlobbyIconNursery.js +163 -160
  148. package/components/svg/BlobbyIconOrganization.js +161 -158
  149. package/components/svg/BlobbyIconParchment.js +161 -158
  150. package/components/svg/BlobbyIconPeople.js +161 -158
  151. package/components/svg/BlobbyIconSeedBank.js +161 -158
  152. package/components/svg/BlobbyIconSeedling.js +161 -158
  153. package/components/svg/BlobbyIconSeeds.js +161 -158
  154. package/components/svg/BlobbyIconSite.js +164 -161
  155. package/components/svg/BlobbyIconSparkles.js +161 -158
  156. package/components/svg/BlobbyIconWrench.js +161 -158
  157. package/components/svg/Bug.js +18 -27
  158. package/components/svg/Calendar.js +18 -27
  159. package/components/svg/CaretDown.js +18 -27
  160. package/components/svg/CaretLeft.js +18 -27
  161. package/components/svg/CaretRight.js +18 -27
  162. package/components/svg/CaretUp.js +18 -27
  163. package/components/svg/ChevronDown.js +18 -27
  164. package/components/svg/ChevronUp.js +18 -27
  165. package/components/svg/Close.js +18 -27
  166. package/components/svg/Critical.js +18 -27
  167. package/components/svg/Edit.js +161 -158
  168. package/components/svg/Error.js +18 -27
  169. package/components/svg/Filter.js +18 -27
  170. package/components/svg/Folder.js +18 -27
  171. package/components/svg/Help.js +18 -27
  172. package/components/svg/Home.js +18 -27
  173. package/components/svg/IconAdd.js +18 -27
  174. package/components/svg/IconArrowRight.js +19 -28
  175. package/components/svg/IconBusinessNetwork.js +18 -27
  176. package/components/svg/IconCalendar.js +18 -27
  177. package/components/svg/IconCancel.js +18 -27
  178. package/components/svg/IconChargingBattery.js +18 -27
  179. package/components/svg/IconChecklist.js +19 -28
  180. package/components/svg/IconCheckmark.js +18 -27
  181. package/components/svg/IconCoinInHand.js +18 -27
  182. package/components/svg/IconColumns.js +18 -27
  183. package/components/svg/IconComment.js +18 -27
  184. package/components/svg/IconDashboard.js +18 -27
  185. package/components/svg/IconDataMigration.js +18 -27
  186. package/components/svg/IconDocument.js +19 -28
  187. package/components/svg/IconDownloadFromTheCloud.js +19 -28
  188. package/components/svg/IconEdit.js +19 -28
  189. package/components/svg/IconExpand.js +19 -28
  190. package/components/svg/IconExport.js +18 -27
  191. package/components/svg/IconExternalLink.js +18 -27
  192. package/components/svg/IconEye.js +18 -27
  193. package/components/svg/IconEyeOff.js +18 -27
  194. package/components/svg/IconFile.js +18 -27
  195. package/components/svg/IconFolder.js +18 -27
  196. package/components/svg/IconFullScreen.js +18 -27
  197. package/components/svg/IconFutures.js +18 -27
  198. package/components/svg/IconGraphReport.js +18 -27
  199. package/components/svg/IconHeartMonitor.js +18 -27
  200. package/components/svg/IconHelp.js +19 -28
  201. package/components/svg/IconHistory.js +18 -27
  202. package/components/svg/IconImport.js +18 -27
  203. package/components/svg/IconIndex.js +18 -27
  204. package/components/svg/IconLayers.js +18 -27
  205. package/components/svg/IconLibrary.js +18 -27
  206. package/components/svg/IconList.js +18 -27
  207. package/components/svg/IconLivePlant.js +18 -27
  208. package/components/svg/IconLocations.js +18 -27
  209. package/components/svg/IconMail.js +18 -27
  210. package/components/svg/IconManager.js +18 -27
  211. package/components/svg/IconMarker.js +18 -27
  212. package/components/svg/IconMenu.js +18 -27
  213. package/components/svg/IconMenuHorizontal.js +18 -27
  214. package/components/svg/IconModule.js +18 -27
  215. package/components/svg/IconMyLocation.js +18 -27
  216. package/components/svg/IconNote.js +19 -28
  217. package/components/svg/IconNursery.js +18 -27
  218. package/components/svg/IconOrg.js +18 -27
  219. package/components/svg/IconParchment.js +18 -27
  220. package/components/svg/IconPhoto.js +18 -27
  221. package/components/svg/IconPlantsFilled.js +18 -27
  222. package/components/svg/IconRedo.js +18 -27
  223. package/components/svg/IconRestorationSite.js +18 -27
  224. package/components/svg/IconSeedBank.js +18 -27
  225. package/components/svg/IconSeedling.js +18 -27
  226. package/components/svg/IconSettings.js +18 -27
  227. package/components/svg/IconSlice.js +18 -27
  228. package/components/svg/IconSubmit.js +18 -27
  229. package/components/svg/IconSubtract.js +19 -28
  230. package/components/svg/IconSynced.js +18 -27
  231. package/components/svg/IconTrashCan.js +18 -27
  232. package/components/svg/IconTreasureMap.js +18 -27
  233. package/components/svg/IconUnavailable.js +18 -27
  234. package/components/svg/IconUndo.js +18 -27
  235. package/components/svg/IconVariable.js +18 -27
  236. package/components/svg/IconVideo.js +19 -28
  237. package/components/svg/IconWifi.js +18 -27
  238. package/components/svg/Info.js +18 -27
  239. package/components/svg/Key.js +18 -27
  240. package/components/svg/Leaf.js +18 -27
  241. package/components/svg/Lock.js +18 -27
  242. package/components/svg/Logo.js +40 -45
  243. package/components/svg/MenuVertical.js +18 -27
  244. package/components/svg/Notification.js +18 -27
  245. package/components/svg/Person.js +18 -27
  246. package/components/svg/Plus.js +18 -27
  247. package/components/svg/RestorationSite.js +18 -27
  248. package/components/svg/Search.js +18 -27
  249. package/components/svg/Seeds.js +18 -27
  250. package/components/svg/Site.js +18 -27
  251. package/components/svg/Sparkles.js +18 -27
  252. package/components/svg/Species.js +18 -27
  253. package/components/svg/Species2.js +161 -158
  254. package/components/svg/Spinner.js +27 -36
  255. package/components/svg/Star.js +18 -27
  256. package/components/svg/Success.js +18 -27
  257. package/components/svg/SuccessFilled.js +18 -27
  258. package/components/svg/TerrawareLogoDesktop.js +44 -49
  259. package/components/svg/TerrawareLogoMobile.js +20 -29
  260. package/components/svg/Touchscreen.js +18 -27
  261. package/components/svg/UploadCloud.js +161 -158
  262. package/components/svg/Warning.js +18 -27
  263. package/components/svg/WelcomeClipboard.js +130 -135
  264. package/components/svg/index.js +127 -895
  265. package/components/table/EnhancedTableToolbar.js +45 -47
  266. package/components/table/EnhancedTableToolbarV2.js +18 -26
  267. package/components/table/TableCellRenderer.js +137 -143
  268. package/components/table/TableHeader.js +45 -47
  269. package/components/table/TableHeaderItem.js +65 -64
  270. package/components/table/density.js +3 -11
  271. package/components/table/index.js +225 -218
  272. package/components/table/sort.js +8 -18
  273. package/components/table/sort.test.js +6 -8
  274. package/components/table/types.js +1 -5
  275. package/components/types/index.js +1 -5
  276. package/hooks/useBoolean.d.ts +4 -0
  277. package/hooks/useBoolean.d.ts.map +1 -0
  278. package/hooks/useBoolean.js +12 -0
  279. package/hooks/useCameraPosition.d.ts +8 -0
  280. package/hooks/useCameraPosition.d.ts.map +1 -0
  281. package/hooks/useCameraPosition.js +33 -0
  282. package/hooks/useDevicePerformance.d.ts +9 -0
  283. package/hooks/useDevicePerformance.d.ts.map +1 -0
  284. package/hooks/useDevicePerformance.js +16 -0
  285. package/index.js +57 -398
  286. package/license-report.html +1 -1
  287. package/package.json +10 -3
  288. package/style-dictionary-dist/TerrawareTheme.js +1 -7
  289. package/theme.js +7 -14
  290. package/utils/color.d.ts +2 -0
  291. package/utils/color.d.ts.map +1 -0
  292. package/utils/color.js +14 -0
  293. package/utils/date.js +13 -24
  294. package/utils/date.test.js +40 -43
  295. package/utils/index.js +5 -53
  296. package/utils/preventDefaultEvent.js +1 -7
  297. package/utils/text.js +2 -9
  298. package/utils/text.test.js +9 -11
  299. package/utils/useDeviceInfo.js +10 -16
  300. package/virtualWalkthrough.d.ts +34 -0
  301. package/virtualWalkthrough.d.ts.map +1 -0
  302. package/virtualWalkthrough.js +30 -0
@@ -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;
@@ -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 SvgPlus = _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 SvgPlus = ({
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.988 2.49a.75.75 0 0 0-.738.76v8h-8a.751.751 0 1 0 0 1.5h8v8a.751.751 0 1 0 1.5 0v-8h8a.75.75 0 1 0 0-1.5h-8v-8a.75.75 0 0 0-.762-.76"
26
- }));
27
- };
28
- var _default = exports.default = SvgPlus;
17
+ })]
18
+ });
19
+ export default SvgPlus;
@@ -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 SvgRestorationSite = _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 SvgRestorationSite = ({
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 1.5c-.775 0-1.495.247-1.999.751a2.44 2.44 0 0 0-.54.86c-.226-.069-.453-.139-.679-.134a2.47 2.47 0 0 0-1.596.653c-.597.537-.94 1.374-.897 2.264-.848.058-1.617.463-2.065 1.12-.476.698-.55 1.655-.162 2.54-.35.19-.648.453-.876.752a3.38 3.38 0 0 0-.686 2.047c0 .94.404 1.88 1.185 2.512.614.498 1.493.68 2.459.633.144.748.429 1.445.966 1.953.718.678 1.734 1.049 2.89 1.049v.75c0 .366-.122 1.021-.404 1.485s-.618.765-1.346.765a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5c-.728 0-1.064-.3-1.346-.765-.282-.464-.404-1.119-.404-1.485v-.75c1.156 0 2.172-.37 2.89-1.049.537-.508.822-1.205.966-1.953.966.047 1.845-.135 2.46-.633a3.23 3.23 0 0 0 1.184-2.513c0-.722-.23-1.45-.686-2.046a2.8 2.8 0 0 0-.876-.752c.388-.885.314-1.842-.162-2.54-.448-.657-1.217-1.062-2.065-1.12.043-.89-.3-1.727-.896-2.264a2.47 2.47 0 0 0-1.597-.653c-.226-.005-.453.066-.679.133a2.44 2.44 0 0 0-.54-.859C13.495 1.747 12.775 1.5 12 1.5M12 3c.475 0 .755.128.938.312.183.183.312.463.312.938a.75.75 0 0 0 1.28.53c.25-.25.454-.307.659-.303a.98.98 0 0 1 .621.268c.39.35.624.96.27 1.67a.75.75 0 0 0 .934 1.037c.701-.263 1.244 0 1.522.408s.357.937-.316 1.61a.75.75 0 0 0 .53 1.28c.376 0 .641.163.873.467.232.303.377.751.377 1.135 0 .51-.22 1.018-.628 1.348-.407.33-1.012.528-1.959.318a.75.75 0 0 0-.913.732c0 .696-.233 1.227-.64 1.611-.407.385-1.016.639-1.86.639v-.75a.751.751 0 1 0-1.5 0v3c0 .63.146 1.468.616 2.25h-2.232c.47-.782.616-1.62.616-2.25v-3a.75.75 0 1 0-1.5 0V17c-.844 0-1.453-.254-1.86-.639-.407-.384-.64-.915-.64-1.611a.75.75 0 0 0-.913-.732c-.947.21-1.552.012-1.96-.318A1.74 1.74 0 0 1 4 12.352c0-.384.145-.832.377-1.135s.497-.467.873-.467a.75.75 0 0 0 .53-1.28c-.673-.673-.594-1.202-.316-1.61.278-.407.82-.671 1.522-.408a.75.75 0 0 0 .935-1.037c-.355-.71-.12-1.32.268-1.67a.98.98 0 0 1 .623-.268c.204-.004.408.053.658.303a.75.75 0 0 0 1.28-.53c0-.475.129-.755.312-.938.183-.184.463-.312.938-.312"
26
- }));
27
- };
28
- var _default = exports.default = SvgRestorationSite;
17
+ })]
18
+ });
19
+ export default SvgRestorationSite;
@@ -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 SvgSearch = _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 SvgSearch = ({
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: "M10.25 3C6.255 3 3 6.255 3 10.25s3.255 7.25 7.25 7.25c1.728 0 3.317-.61 4.565-1.625l4.905 4.905a.75.75 0 1 0 1.06-1.06l-4.905-4.905A7.2 7.2 0 0 0 17.5 10.25C17.5 6.255 14.245 3 10.25 3m0 1.5A5.74 5.74 0 0 1 16 10.25a5.73 5.73 0 0 1-1.604 3.985.8.8 0 0 0-.16.16A5.73 5.73 0 0 1 10.25 16a5.74 5.74 0 0 1-5.75-5.75 5.74 5.74 0 0 1 5.75-5.75"
26
- }));
27
- };
28
- var _default = exports.default = SvgSearch;
17
+ })]
18
+ });
19
+ export default SvgSearch;
@@ -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 SvgSeeds = _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 SvgSeeds = ({
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: "M6 4C3.862 4 2 5.502 2 7.5S3.862 11 6 11s4-1.502 4-3.5S8.138 4 6 4m0 1.5c1.452 0 2.5.96 2.5 2s-1.048 2-2.5 2-2.5-.96-2.5-2 1.048-2 2.5-2m11.427.74c-.835.014-1.637.314-2.255.932-1.413 1.413-1.158 3.79.353 5.303 1.512 1.511 3.89 1.766 5.303.353s1.158-3.79-.353-5.303c-.85-.85-1.975-1.303-3.048-1.285m.287 1.508c.575.052 1.187.325 1.7.838 1.027 1.027 1.089 2.446.354 3.182-.736.735-2.155.673-3.182-.354s-1.089-2.446-.354-3.182c.368-.367.907-.536 1.482-.484m-9.649 4.163c-1.372.014-2.643.688-3.21 1.94-.823 1.82.254 3.956 2.202 4.838a4.4 4.4 0 0 0 2.363.363C10.09 20.244 11.46 21 13 21c2.138 0 4-1.502 4-3.5S15.138 14 13 14c-.363 0-.713.047-1.05.127a4.37 4.37 0 0 0-2.008-1.817 4.5 4.5 0 0 0-1.877-.399m-.191 1.504c.454-.04.954.038 1.45.263 1.323.598 1.882 1.905 1.453 2.852-.428.948-1.778 1.39-3.101.791s-1.883-1.905-1.454-2.852c.268-.592.896-.987 1.652-1.054M13 15.5c1.452 0 2.5.96 2.5 2s-1.048 2-2.5 2c-.918 0-1.683-.406-2.113-.95a3.15 3.15 0 0 0 1.258-1.402c.233-.516.309-1.057.26-1.588q.285-.059.595-.06"
26
- }));
27
- };
28
- var _default = exports.default = SvgSeeds;
17
+ })]
18
+ });
19
+ export default SvgSeeds;
@@ -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 SvgSite = _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 SvgSite = ({
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: "M9.271 4a.75.75 0 0 0-.462.144l-5.5 4A.75.75 0 0 0 3 8.75v10.5a.75.75 0 0 0 1.191.606l5.059-3.678 5.059 3.678a.75.75 0 0 0 .882 0l5.5-4A.75.75 0 0 0 21 15.25V4.75a.75.75 0 0 0-1.191-.606L14.75 7.822 9.691 4.144A.75.75 0 0 0 9.271 4M9.25 5.678l5.059 3.678a.75.75 0 0 0 .882 0L19.5 6.223v8.645l-4.75 3.454-5.059-3.678a.75.75 0 0 0-.882 0L4.5 17.777V9.132zm-.507 3.311a.75.75 0 0 0-.523.23l-.47.47-.47-.47a.75.75 0 1 0-1.06 1.061l.47.47-.47.47a.75.75 0 1 0 1.06 1.06l.47-.47.47.47a.751.751 0 0 0 1.23-.817.8.8 0 0 0-.17-.243l-.47-.47.47-.47a.75.75 0 0 0-.537-1.29m9.007.511a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m-6.5.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m2 1.25a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m3 0a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m-1.5 2a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5"
26
- }));
27
- };
28
- var _default = exports.default = SvgSite;
17
+ })]
18
+ });
19
+ export default SvgSite;
@@ -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 SvgSparkles = _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 SvgSparkles = ({
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: "M5.962 1.501a.75.75 0 0 0-.674.512l-.943 2.832-2.832.943a.75.75 0 0 0 0 1.424l2.83.944.945 2.831a.75.75 0 0 0 1.424 0l.943-2.832 2.832-.943a.75.75 0 0 0 0-1.424l-2.832-.943-.943-2.832a.75.75 0 0 0-.75-.512M6 4.623l.35 1.052a.75.75 0 0 0 .475.474l1.052.351-1.052.35a.75.75 0 0 0-.474.475L6 8.377l-.35-1.052a.75.75 0 0 0-.475-.474L4.123 6.5l1.052-.35a.75.75 0 0 0 .474-.475zm9.72 1.378a.75.75 0 0 0-.684.52l-1.463 4.552-4.552 1.463a.75.75 0 0 0 0 1.428l4.552 1.463 1.463 4.553a.75.75 0 0 0 1.428 0l1.463-4.553 4.553-1.463a.75.75 0 0 0 0-1.428l-4.553-1.463-1.463-4.552A.75.75 0 0 0 15.72 6m.03 3.2.867 2.697a.75.75 0 0 0 .485.485l2.698.867-2.698.867a.75.75 0 0 0-.485.485L15.75 17.3l-.867-2.698a.75.75 0 0 0-.484-.485L11.7 13.25l2.699-.867a.75.75 0 0 0 .484-.485zM5.212 14a.75.75 0 0 0-.674.512l-.757 2.27-2.268.755a.75.75 0 0 0 0 1.424l2.268.756.757 2.27a.75.75 0 0 0 1.424 0l.756-2.27 2.27-.756a.75.75 0 0 0 0-1.424l-2.27-.757-.756-2.268a.75.75 0 0 0-.75-.512m.038 3.121.163.49a.75.75 0 0 0 .475.475l.489.163-.49.163a.75.75 0 0 0-.474.475l-.163.49-.164-.49a.75.75 0 0 0-.475-.475l-.489-.163.49-.163a.75.75 0 0 0 .474-.475z"
26
- }));
27
- };
28
- var _default = exports.default = SvgSparkles;
17
+ })]
18
+ });
19
+ export default SvgSparkles;
@@ -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 SvgSpecies = _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 SvgSpecies = ({
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: "M22 17.74a.75.75 0 0 0-.22-.52l-2.5-2.5a.75.75 0 1 0-1.06 1.06L19.44 17h-6.69c-.7 0-1.25-.55-1.25-1.25v-7a.751.751 0 1 0-1.5 0v7c0 1.51 1.24 2.75 2.75 2.75h6.69l-1.22 1.22a.75.75 0 1 0 1.06 1.06l2.5-2.5a.75.75 0 0 0 .22-.54m-.5-11.5a.75.75 0 0 0-.22-.52l-2.5-2.5a.75.75 0 1 0-1.06 1.06l1.22 1.22H3.25a.75.75 0 1 0 0 1.5h15.69l-1.22 1.22a.75.75 0 1 0 1.06 1.06l2.5-2.5a.75.75 0 0 0 .22-.54"
26
- }));
27
- };
28
- var _default = exports.default = SvgSpecies;
17
+ })]
18
+ });
19
+ export default SvgSpecies;