@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,52 +1,47 @@
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 SvgTerrawareLogoDesktop = _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
- fill: "none",
21
- viewBox: "0 0 140 30",
22
- "aria-labelledby": titleId
23
- }, props), title ? /*#__PURE__*/React.createElement("title", {
24
- id: titleId
25
- }, 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 SvgTerrawareLogoDesktop = ({
4
+ title,
5
+ titleId,
6
+ ...props
7
+ }) => /*#__PURE__*/_jsxs("svg", {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ fill: "none",
10
+ viewBox: "0 0 140 30",
11
+ "aria-labelledby": titleId,
12
+ ...props,
13
+ children: [title ? /*#__PURE__*/_jsx("title", {
14
+ id: titleId,
15
+ children: title
16
+ }) : null, /*#__PURE__*/_jsx("path", {
26
17
  fill: "#2C8658",
27
18
  d: "M26.25 1.824V.274h8.446v1.55h-3.272v8.655h-1.902V1.824zM38.605 10.628q-1.194 0-2.063-.478a3.3 3.3 0 0 1-1.328-1.366q-.465-.886-.465-2.087 0-1.18.465-2.073a3.44 3.44 0 0 1 1.313-1.395q.842-.503 1.98-.503.733 0 1.385.229.656.224 1.157.698.507.473.796 1.205.29.728.29 1.734v.553h-6.508V5.93h4.714a1.9 1.9 0 0 0-.232-.922 1.66 1.66 0 0 0-.636-.643 1.84 1.84 0 0 0-.94-.234q-.575 0-1.009.269-.434.264-.677.697-.238.429-.243.942V7.1q0 .667.254 1.146.252.473.708.728.455.249 1.064.249.409 0 .74-.11.33-.114.573-.334.244-.219.367-.543l1.747.19q-.165.667-.63 1.166-.46.492-1.179.767-.719.27-1.643.269M43.718 10.479V2.825h1.814v1.276h.083q.216-.663.744-1.021.532-.364 1.215-.364.154 0 .346.015.196.01.325.035v1.659a2 2 0 0 0-.377-.07 4 4 0 0 0-.49-.035 1.95 1.95 0 0 0-.92.214q-.404.21-.637.583-.232.375-.232.862v4.5zM49.489 10.479V2.825h1.814v1.276h.083q.216-.663.744-1.021.533-.364 1.214-.364.156 0 .347.015.196.01.325.035v1.659a2 2 0 0 0-.377-.07 4 4 0 0 0-.49-.035 1.95 1.95 0 0 0-.921.214q-.403.21-.636.583-.232.375-.232.862v4.5zM57.402 10.633a3.4 3.4 0 0 1-1.36-.26 2.2 2.2 0 0 1-.95-.776q-.347-.514-.347-1.266 0-.648.248-1.071.248-.424.677-.678t.967-.383q.543-.135 1.122-.195.697-.07 1.132-.124.434-.06.63-.18a.42.42 0 0 0 .202-.383v-.03q0-.564-.347-.872-.346-.31-.997-.31-.688 0-1.09.29-.399.289-.538.683l-1.747-.24q.207-.697.682-1.166a3 3 0 0 1 1.163-.707 4.6 4.6 0 0 1 1.52-.24q.573 0 1.142.13.568.13 1.039.429.47.294.754.802.29.508.29 1.27v5.123h-1.799V9.427h-.062a2.2 2.2 0 0 1-.48.598 2.3 2.3 0 0 1-.77.444 3.2 3.2 0 0 1-1.081.164m.486-1.325q.563 0 .977-.215a1.6 1.6 0 0 0 .635-.578q.228-.359.228-.782v-.902a.9.9 0 0 1-.3.13q-.207.06-.465.105-.258.044-.512.08l-.44.059q-.417.055-.749.18-.33.124-.522.348a.83.83 0 0 0-.19.568q0 .498.376.753.377.254.962.254M65.114 10.479 62.87 2.825h1.908l1.395 5.381h.073l1.426-5.38h1.887l1.426 5.35h.078l1.375-5.35h1.912l-2.248 7.653h-1.949l-1.488-5.172h-.109l-1.489 5.172zM77.941 10.633a3.4 3.4 0 0 1-1.36-.26 2.2 2.2 0 0 1-.95-.776q-.347-.514-.347-1.266 0-.648.248-1.071.249-.424.678-.678t.966-.383q.543-.135 1.122-.195.697-.07 1.132-.124.435-.06.63-.18a.42.42 0 0 0 .202-.383v-.03q0-.564-.346-.872-.347-.31-.998-.31-.687 0-1.09.29-.399.289-.538.683l-1.747-.24q.207-.697.682-1.166a3 3 0 0 1 1.163-.707 4.6 4.6 0 0 1 1.52-.24q.573 0 1.142.13t1.039.429q.47.294.755.802.29.508.289 1.27v5.123h-1.799V9.427h-.062a2.2 2.2 0 0 1-.48.598q-.305.274-.77.444a3.2 3.2 0 0 1-1.08.164m.486-1.325q.564 0 .977-.215a1.6 1.6 0 0 0 .636-.578q.227-.359.227-.782v-.902a.9.9 0 0 1-.3.13q-.207.06-.465.105-.258.044-.512.08l-.439.059q-.419.055-.75.18-.33.124-.521.348a.83.83 0 0 0-.192.568q0 .498.378.753.377.254.961.254M84.014 10.479V2.825h1.815v1.276h.082q.217-.663.745-1.021.533-.364 1.214-.364.156 0 .347.015.196.01.325.035v1.659a2 2 0 0 0-.377-.07 4 4 0 0 0-.491-.035 1.95 1.95 0 0 0-.92.214q-.403.21-.636.583-.233.375-.233.862v4.5zM92.973 10.628q-1.194 0-2.062-.478a3.3 3.3 0 0 1-1.329-1.366q-.465-.886-.465-2.087 0-1.18.465-2.073a3.44 3.44 0 0 1 1.313-1.395q.843-.503 1.98-.503.734 0 1.385.229.657.224 1.158.698.507.473.796 1.205.29.728.29 1.734v.553h-6.508V5.93h4.714a1.9 1.9 0 0 0-.233-.922 1.66 1.66 0 0 0-.636-.643 1.84 1.84 0 0 0-.94-.234q-.575 0-1.008.269-.434.264-.677.697-.239.429-.243.942V7.1q0 .667.253 1.146.254.473.708.728.454.249 1.065.249.408 0 .74-.11.33-.114.573-.334.243-.219.367-.543l1.747.19q-.165.667-.63 1.166-.46.492-1.18.767-.717.27-1.643.269M101.343 10.479V2.315h1.236V5.35h.075q.107-.192.31-.443.202-.25.562-.438.36-.192.951-.192.77 0 1.373.375.604.375.947 1.08.347.706.347 1.698 0 .993-.343 1.702-.343.705-.943 1.088a2.5 2.5 0 0 1-1.368.38q-.58 0-.947-.188a1.8 1.8 0 0 1-.571-.439 3 3 0 0 1-.318-.446h-.104v.953zm1.212-3.062q0 .645.194 1.132t.562.762q.368.27.902.27.554 0 .926-.282a1.76 1.76 0 0 0 .562-.778q.195-.49.195-1.104 0-.605-.191-1.088a1.67 1.67 0 0 0-.562-.761q-.372-.28-.93-.28-.538 0-.91.268a1.65 1.65 0 0 0-.558.745q-.19.48-.19 1.116M109.098 12.774q-.278 0-.504-.043a1.6 1.6 0 0 1-.339-.088l.297-.977q.34.088.604.076a.74.74 0 0 0 .467-.191q.207-.18.364-.586l.153-.407-2.324-6.202h1.323l1.609 4.751h.066l1.609-4.75h1.327l-2.617 6.939a2.8 2.8 0 0 1-.464.809q-.28.334-.669.502-.39.167-.902.167"
28
- }), /*#__PURE__*/React.createElement("g", {
19
+ }), /*#__PURE__*/_jsxs("g", {
29
20
  fill: "#1B5035",
30
- clipPath: "url(#terraware-logo-desktop_svg__a)"
31
- }, /*#__PURE__*/React.createElement("path", {
32
- d: "M31.014 24.777a29.05 29.05 0 0 0-11.352-4.213V16.62c0-1.07-.203-1.94-.675-2.408-.338-.468-1.014-.735-1.825-.735h-2.297v1.404h1.892c.946 0 1.284.669 1.284 1.806v3.677c-.811-.066-1.69-.133-2.5-.133-.676 0-1.284 0-1.96.067v-6.821l-1.69.468v6.486A28.3 28.3 0 0 0 0 24.777 35.5 35.5 0 0 1 11.892 21.3v5.283c0 1.07.203 1.939.676 2.407.405.468 1.013.736 1.824.736h2.365V28.32h-1.892c-.946 0-1.284-.669-1.284-1.805v-5.35c.676-.067 1.284-.067 1.96-.067.447 0 .878.017 1.3.035.405.016.802.032 1.2.032v8.56l1.689-.468v-7.892a34 34 0 0 1 11.284 3.411M55.27 23.573c0-1.27.338-2.006 1.42-2.006l.675-.067v-1.538h-1.149c-.878 0-1.554.335-2.027.803-.54.601-.743 1.538-.743 2.741v4.013h1.824zM61.554 21.567c-1.081 0-1.419.736-1.419 2.006v3.946h-1.824v-4.013c0-1.203.203-2.14.743-2.741.473-.468 1.149-.803 2.027-.803h1.149V21.5zM90.946 21.567c-1.081 0-1.419.736-1.419 2.006v3.946h-1.824v-4.013c0-1.203.202-2.14.743-2.741.473-.468 1.149-.803 2.027-.803h1.149V21.5z"
33
- }), /*#__PURE__*/React.createElement("path", {
34
- fillRule: "evenodd",
35
- d: "M48.243 27.72c1.554 0 2.568-.469 3.379-1.606l-1.487-.869c-.473.535-1.013.736-1.824.736-1.081 0-1.892-.602-2.095-1.672h5.946v-.401c0-2.274-1.554-3.946-3.919-3.946s-3.851 1.873-3.851 3.879c0 2.14 1.486 3.878 3.851 3.878m0-6.153c1.014 0 1.757.535 2.027 1.404h-3.986c.338-.936 1.013-1.404 1.96-1.404M68.784 26.783c-.676.602-1.352.936-2.297.936-1.892 0-3.514-1.605-3.514-3.878s1.554-3.879 3.514-3.879c.878 0 1.689.335 2.297 1.003v-.802h1.824v7.356h-1.824zm-3.92-2.942c0 1.27.812 2.207 1.96 2.207 1.149 0 2.027-.87 2.027-2.207 0-1.27-.878-2.14-2.027-2.14-1.216 0-1.96 1.003-1.96 2.14M82.432 27.72c2.23 0 3.92-1.74 3.92-3.88s-1.757-3.81-3.92-3.878c-2.027 0-3.85 1.672-3.85 3.879s1.688 3.878 3.85 3.878m0-1.74c-1.148 0-1.959-.869-1.959-2.14 0-1.203.81-2.072 1.96-2.14 1.216 0 2.026.87 2.026 2.14 0 1.338-.878 2.14-2.027 2.14M111.149 26.783c-.676.602-1.352.936-2.298.936-1.892 0-3.513-1.605-3.513-3.878s1.554-3.879 3.513-3.879c.879 0 1.69.335 2.298 1.003v-.802h1.824v7.356h-1.824zm-3.987-2.942c0 1.27.811 2.207 1.96 2.207 1.148 0 2.027-.87 2.027-2.207 0-1.27-.879-2.14-2.027-2.14s-1.96 1.003-1.96 2.14",
36
- clipRule: "evenodd"
37
- }), /*#__PURE__*/React.createElement("path", {
38
- d: "M122.365 19.093a1.205 1.205 0 1 0 0-2.407c-.676 0-1.216.535-1.216 1.136 0 .67.54 1.27 1.216 1.27M123.311 20.23h-1.824v7.356h1.824zM46.284 15.415H35.946v1.806h4.19v10.298h1.891V17.22h4.257z"
39
- }), /*#__PURE__*/React.createElement("path", {
40
- fillRule: "evenodd",
41
- d: "M128.446 27.72c2.23 0 3.919-1.74 3.919-3.88s-1.757-3.81-3.919-3.878c-2.027 0-3.851 1.672-3.851 3.879s1.689 3.878 3.851 3.878m0-1.74c-1.149 0-1.959-.869-1.959-2.14 0-1.203.81-2.072 1.959-2.14 1.216 0 2.027.87 2.027 2.14 0 1.338-.878 2.14-2.027 2.14",
42
- clipRule: "evenodd"
43
- }), /*#__PURE__*/React.createElement("path", {
44
- d: "M120.135 21.768v-1.605h-2.094v-3.477l-1.825.535v3.009h-1.959v1.605h1.959v3.744c0 1.204.203 2.14.743 2.742.473.468 1.149.803 2.027.803h1.149v-1.605h-.676c-1.081 0-1.418-.736-1.418-2.006v-3.745zM77.838 15.682v1.539h-.676c-1.216 0-1.419.601-1.419 2.006v.936h2.095v1.605h-2.095v7.155l-1.824.535v-7.556h-1.96v-1.605h1.96v-1.07c0-1.27.203-2.14.743-2.742.406-.535 1.149-.803 2.027-.803zM99.527 27.519h-1.824v-3.544c0-1.405-.27-2.274-1.284-2.274-.946 0-1.622.735-1.622 2.274v3.544h-1.824v-7.49h1.824v1.003a3.04 3.04 0 0 1 2.298-1.003c.945 0 1.689.401 2.162 1.338.675-.87 1.351-1.338 2.5-1.338.811 0 1.554.334 1.959.87.473.601.541 1.404.541 2.407v4.213h-1.825v-4.012c0-1.204-.405-1.806-1.283-1.806-.946 0-1.622.735-1.622 2.207zM137.432 20.03c-.81 0-1.418.333-2.162.935v-.802h-1.824v7.356h1.824v-3.076l-.002-.276c-.007-.628-.014-1.205.34-1.73.338-.469.743-.736 1.284-.736 1.149 0 1.284.87 1.284 2.34v3.478H140V22.57c0-1.605-1.216-2.54-2.568-2.54"
45
- })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
46
- id: "terraware-logo-desktop_svg__a"
47
- }, /*#__PURE__*/React.createElement("path", {
48
- fill: "#fff",
49
- d: "M0 13.476h140v16.25H0z"
50
- }))));
51
- };
52
- var _default = exports.default = SvgTerrawareLogoDesktop;
21
+ clipPath: "url(#terraware-logo-desktop_svg__a)",
22
+ children: [/*#__PURE__*/_jsx("path", {
23
+ d: "M31.014 24.777a29.05 29.05 0 0 0-11.352-4.213V16.62c0-1.07-.203-1.94-.675-2.408-.338-.468-1.014-.735-1.825-.735h-2.297v1.404h1.892c.946 0 1.284.669 1.284 1.806v3.677c-.811-.066-1.69-.133-2.5-.133-.676 0-1.284 0-1.96.067v-6.821l-1.69.468v6.486A28.3 28.3 0 0 0 0 24.777 35.5 35.5 0 0 1 11.892 21.3v5.283c0 1.07.203 1.939.676 2.407.405.468 1.013.736 1.824.736h2.365V28.32h-1.892c-.946 0-1.284-.669-1.284-1.805v-5.35c.676-.067 1.284-.067 1.96-.067.447 0 .878.017 1.3.035.405.016.802.032 1.2.032v8.56l1.689-.468v-7.892a34 34 0 0 1 11.284 3.411M55.27 23.573c0-1.27.338-2.006 1.42-2.006l.675-.067v-1.538h-1.149c-.878 0-1.554.335-2.027.803-.54.601-.743 1.538-.743 2.741v4.013h1.824zM61.554 21.567c-1.081 0-1.419.736-1.419 2.006v3.946h-1.824v-4.013c0-1.203.203-2.14.743-2.741.473-.468 1.149-.803 2.027-.803h1.149V21.5zM90.946 21.567c-1.081 0-1.419.736-1.419 2.006v3.946h-1.824v-4.013c0-1.203.202-2.14.743-2.741.473-.468 1.149-.803 2.027-.803h1.149V21.5z"
24
+ }), /*#__PURE__*/_jsx("path", {
25
+ fillRule: "evenodd",
26
+ d: "M48.243 27.72c1.554 0 2.568-.469 3.379-1.606l-1.487-.869c-.473.535-1.013.736-1.824.736-1.081 0-1.892-.602-2.095-1.672h5.946v-.401c0-2.274-1.554-3.946-3.919-3.946s-3.851 1.873-3.851 3.879c0 2.14 1.486 3.878 3.851 3.878m0-6.153c1.014 0 1.757.535 2.027 1.404h-3.986c.338-.936 1.013-1.404 1.96-1.404M68.784 26.783c-.676.602-1.352.936-2.297.936-1.892 0-3.514-1.605-3.514-3.878s1.554-3.879 3.514-3.879c.878 0 1.689.335 2.297 1.003v-.802h1.824v7.356h-1.824zm-3.92-2.942c0 1.27.812 2.207 1.96 2.207 1.149 0 2.027-.87 2.027-2.207 0-1.27-.878-2.14-2.027-2.14-1.216 0-1.96 1.003-1.96 2.14M82.432 27.72c2.23 0 3.92-1.74 3.92-3.88s-1.757-3.81-3.92-3.878c-2.027 0-3.85 1.672-3.85 3.879s1.688 3.878 3.85 3.878m0-1.74c-1.148 0-1.959-.869-1.959-2.14 0-1.203.81-2.072 1.96-2.14 1.216 0 2.026.87 2.026 2.14 0 1.338-.878 2.14-2.027 2.14M111.149 26.783c-.676.602-1.352.936-2.298.936-1.892 0-3.513-1.605-3.513-3.878s1.554-3.879 3.513-3.879c.879 0 1.69.335 2.298 1.003v-.802h1.824v7.356h-1.824zm-3.987-2.942c0 1.27.811 2.207 1.96 2.207 1.148 0 2.027-.87 2.027-2.207 0-1.27-.879-2.14-2.027-2.14s-1.96 1.003-1.96 2.14",
27
+ clipRule: "evenodd"
28
+ }), /*#__PURE__*/_jsx("path", {
29
+ d: "M122.365 19.093a1.205 1.205 0 1 0 0-2.407c-.676 0-1.216.535-1.216 1.136 0 .67.54 1.27 1.216 1.27M123.311 20.23h-1.824v7.356h1.824zM46.284 15.415H35.946v1.806h4.19v10.298h1.891V17.22h4.257z"
30
+ }), /*#__PURE__*/_jsx("path", {
31
+ fillRule: "evenodd",
32
+ d: "M128.446 27.72c2.23 0 3.919-1.74 3.919-3.88s-1.757-3.81-3.919-3.878c-2.027 0-3.851 1.672-3.851 3.879s1.689 3.878 3.851 3.878m0-1.74c-1.149 0-1.959-.869-1.959-2.14 0-1.203.81-2.072 1.959-2.14 1.216 0 2.027.87 2.027 2.14 0 1.338-.878 2.14-2.027 2.14",
33
+ clipRule: "evenodd"
34
+ }), /*#__PURE__*/_jsx("path", {
35
+ d: "M120.135 21.768v-1.605h-2.094v-3.477l-1.825.535v3.009h-1.959v1.605h1.959v3.744c0 1.204.203 2.14.743 2.742.473.468 1.149.803 2.027.803h1.149v-1.605h-.676c-1.081 0-1.418-.736-1.418-2.006v-3.745zM77.838 15.682v1.539h-.676c-1.216 0-1.419.601-1.419 2.006v.936h2.095v1.605h-2.095v7.155l-1.824.535v-7.556h-1.96v-1.605h1.96v-1.07c0-1.27.203-2.14.743-2.742.406-.535 1.149-.803 2.027-.803zM99.527 27.519h-1.824v-3.544c0-1.405-.27-2.274-1.284-2.274-.946 0-1.622.735-1.622 2.274v3.544h-1.824v-7.49h1.824v1.003a3.04 3.04 0 0 1 2.298-1.003c.945 0 1.689.401 2.162 1.338.675-.87 1.351-1.338 2.5-1.338.811 0 1.554.334 1.959.87.473.601.541 1.404.541 2.407v4.213h-1.825v-4.012c0-1.204-.405-1.806-1.283-1.806-.946 0-1.622.735-1.622 2.207zM137.432 20.03c-.81 0-1.418.333-2.162.935v-.802h-1.824v7.356h1.824v-3.076l-.002-.276c-.007-.628-.014-1.205.34-1.73.338-.469.743-.736 1.284-.736 1.149 0 1.284.87 1.284 2.34v3.478H140V22.57c0-1.605-1.216-2.54-2.568-2.54"
36
+ })]
37
+ }), /*#__PURE__*/_jsx("defs", {
38
+ children: /*#__PURE__*/_jsx("clipPath", {
39
+ id: "terraware-logo-desktop_svg__a",
40
+ children: /*#__PURE__*/_jsx("path", {
41
+ fill: "#fff",
42
+ d: "M0 13.476h140v16.25H0z"
43
+ })
44
+ })
45
+ })]
46
+ });
47
+ export default SvgTerrawareLogoDesktop;
@@ -1,33 +1,24 @@
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 SvgTerrawareLogoMobile = _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
- fill: "none",
21
- viewBox: "0 0 106 24",
22
- "aria-labelledby": titleId
23
- }, props), title ? /*#__PURE__*/React.createElement("title", {
24
- id: titleId
25
- }, 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 SvgTerrawareLogoMobile = ({
4
+ title,
5
+ titleId,
6
+ ...props
7
+ }) => /*#__PURE__*/_jsxs("svg", {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ fill: "none",
10
+ viewBox: "0 0 106 24",
11
+ "aria-labelledby": titleId,
12
+ ...props,
13
+ children: [title ? /*#__PURE__*/_jsx("title", {
14
+ id: titleId,
15
+ children: title
16
+ }) : null, /*#__PURE__*/_jsx("path", {
26
17
  fill: "#1B5035",
27
18
  d: "M26.049 14.737a23.95 23.95 0 0 0-9.517-3.63v-3.4c0-.921-.17-1.67-.566-2.073-.283-.404-.85-.634-1.53-.634h-1.925v1.21h1.586c.793 0 1.076.576 1.076 1.555v3.17c-.68-.059-1.416-.116-2.096-.116-.566 0-1.076 0-1.643.057V5l-1.416.403v5.589c-3.625.46-7.024 1.786-9.97 3.745a29.1 29.1 0 0 1 9.97-2.996v4.551c0 .922.17 1.671.566 2.074.34.404.85.634 1.53.634h1.983v-1.21H12.51c-.794 0-1.077-.576-1.077-1.555v-4.61c.567-.057 1.077-.057 1.643-.057.375 0 .736.015 1.09.03.34.014.673.027 1.006.027V19l1.416-.403v-6.799a28 28 0 0 1 9.46 2.939"
28
- }), /*#__PURE__*/React.createElement("path", {
19
+ }), /*#__PURE__*/_jsx("path", {
29
20
  fill: "#2C8658",
30
21
  d: "M30.912 8.13V6.365h9.284V8.13h-3.597V18h-2.09V8.13zm13.08 10.04q-1.311 0-2.267-.545a3.7 3.7 0 0 1-1.46-1.557q-.51-1.011-.511-2.38 0-1.347.511-2.364a3.87 3.87 0 0 1 1.443-1.591q.927-.574 2.177-.574.806 0 1.522.261.722.255 1.273.796.557.54.875 1.375.318.83.318 1.977v.63H40.72v-1.386h5.182a2.2 2.2 0 0 0-.256-1.05q-.25-.467-.699-.734a1.97 1.97 0 0 0-1.034-.267q-.63 0-1.108.307-.477.3-.744.796a2.3 2.3 0 0 0-.267 1.073v1.21q0 .762.278 1.307.279.54.778.83.501.284 1.17.284.45 0 .813-.125.364-.13.631-.38t.404-.62l1.92.216q-.181.761-.693 1.33a3.4 3.4 0 0 1-1.296.875q-.79.306-1.806.306m5.121-.17V9.273h1.995v1.454h.09q.24-.756.819-1.165.585-.414 1.335-.414.17 0 .38.017.217.01.358.04v1.892a2 2 0 0 0-.414-.08 4 4 0 0 0-.54-.04 2.1 2.1 0 0 0-1.011.245q-.444.238-.7.664t-.255.983V18zm5.844 0V9.273h1.994v1.454h.091q.24-.756.818-1.165.585-.414 1.336-.414.17 0 .38.017.216.01.358.04v1.892a2 2 0 0 0-.414-.08 4 4 0 0 0-.54-.04 2.1 2.1 0 0 0-1.012.245q-.442.238-.699.664-.255.427-.255.983V18zm8.199.176a3.6 3.6 0 0 1-1.495-.295q-.658-.302-1.045-.887-.38-.584-.38-1.443 0-.739.272-1.222.273-.482.744-.772a3.8 3.8 0 0 1 1.063-.438 9 9 0 0 1 1.233-.221q.767-.08 1.244-.142.478-.069.693-.205.222-.142.222-.437v-.035q0-.642-.38-.994-.381-.352-1.097-.352-.756 0-1.2.33-.436.33-.59.778l-1.92-.273q.227-.795.75-1.33.522-.54 1.278-.806a4.9 4.9 0 0 1 1.67-.273q.631 0 1.256.148.625.147 1.142.488.517.336.83.915.318.58.318 1.45V18h-1.977v-1.199h-.069a2.5 2.5 0 0 1-.528.682 2.5 2.5 0 0 1-.847.506q-.506.187-1.187.187m.534-1.511q.619 0 1.074-.244.454-.25.699-.66.25-.409.25-.892v-1.028a1 1 0 0 1-.33.148 5 5 0 0 1-.511.119q-.284.051-.563.09l-.483.069q-.46.063-.824.205a1.37 1.37 0 0 0-.573.397q-.21.25-.21.648 0 .568.414.858.415.29 1.057.29M71.133 18l-2.466-8.727h2.097l1.534 6.136h.08l1.568-6.136h2.073l1.569 6.102h.085l1.511-6.102h2.103L78.815 18h-2.142l-1.636-5.898h-.12L73.281 18zm13.601.176a3.6 3.6 0 0 1-1.494-.295q-.66-.302-1.046-.887-.38-.584-.38-1.443 0-.739.272-1.222.273-.482.745-.772a3.8 3.8 0 0 1 1.062-.438 9 9 0 0 1 1.233-.221q.767-.08 1.244-.142.478-.069.694-.205.22-.142.221-.437v-.035q0-.642-.38-.994-.381-.352-1.097-.352-.756 0-1.199.33-.438.33-.591.778l-1.92-.273q.226-.795.75-1.33.522-.54 1.278-.806a4.9 4.9 0 0 1 1.67-.273q.631 0 1.256.148.625.147 1.142.488.517.336.83.915.318.58.318 1.45V18h-1.977v-1.199h-.069q-.187.364-.528.682a2.5 2.5 0 0 1-.847.506q-.506.187-1.187.187m.534-1.511q.619 0 1.074-.244.454-.25.699-.66.25-.409.25-.892v-1.028a1 1 0 0 1-.33.148 5 5 0 0 1-.511.119q-.284.051-.563.09l-.483.069q-.46.063-.823.205a1.37 1.37 0 0 0-.574.397q-.21.25-.21.648 0 .568.414.858.415.29 1.057.29M90.91 18V9.273h1.994v1.454h.091q.24-.756.819-1.165.585-.414 1.335-.414.17 0 .38.017.216.01.358.04v1.892a2 2 0 0 0-.414-.08 4 4 0 0 0-.54-.04 2.1 2.1 0 0 0-1.012.245q-.443.238-.698.664t-.256.983V18zm9.348.17q-1.312 0-2.267-.545a3.7 3.7 0 0 1-1.46-1.557q-.512-1.011-.512-2.38 0-1.347.512-2.364a3.87 3.87 0 0 1 1.443-1.591q.926-.574 2.176-.574.807 0 1.523.261.721.255 1.273.796.556.54.875 1.375.318.83.318 1.977v.63h-7.154v-1.386h5.182a2.2 2.2 0 0 0-.255-1.05q-.25-.467-.699-.734a1.97 1.97 0 0 0-1.034-.267q-.63 0-1.108.307-.478.3-.745.796a2.3 2.3 0 0 0-.267 1.073v1.21q0 .762.279 1.307.278.54.778.83.5.284 1.171.284.449 0 .812-.125.364-.13.631-.38t.403-.62l1.921.216q-.183.761-.694 1.33a3.4 3.4 0 0 1-1.295.875q-.79.306-1.807.306"
31
- }));
32
- };
33
- var _default = exports.default = SvgTerrawareLogoMobile;
22
+ })]
23
+ });
24
+ export default SvgTerrawareLogoMobile;
@@ -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 SvgTouchscreen = _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 SvgTouchscreen = ({
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: "M8.25 2A2.26 2.26 0 0 0 6 4.25v15.5A2.26 2.26 0 0 0 8.25 22h7.5A2.26 2.26 0 0 0 18 19.75V4.25A2.26 2.26 0 0 0 15.75 2zm0 1.5h7.5c.423 0 .75.327.75.75v15.5c0 .423-.327.75-.75.75h-7.5a.74.74 0 0 1-.75-.75V4.25c0-.423.327-.75.75-.75M12 5a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m-1.25 12.5a.751.751 0 1 0 0 1.5h2.5a.751.751 0 1 0 0-1.5z"
26
- }));
27
- };
28
- var _default = exports.default = SvgTouchscreen;
17
+ })]
18
+ });
19
+ export default SvgTouchscreen;
@@ -1,159 +1,162 @@
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 SvgUploadCloud = ({
4
+ title,
5
+ titleId,
6
+ ...props
7
+ }) => /*#__PURE__*/_jsxs("svg", {
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ fill: "none",
10
+ viewBox: "0 0 200 128",
11
+ "aria-labelledby": titleId,
12
+ ...props,
13
+ children: [title ? /*#__PURE__*/_jsx("title", {
14
+ id: titleId,
15
+ children: title
16
+ }) : null, /*#__PURE__*/_jsxs("g", {
17
+ clipPath: "url(#upload-cloud_svg__a)",
18
+ children: [/*#__PURE__*/_jsx("path", {
19
+ fill: "#E2F6EC",
20
+ fillRule: "evenodd",
21
+ d: "M97.492 4.026c24.033-.76 45.335 14.966 53.284 37.66 8.572 24.47 4.488 52.73-16.101 68.491-22.132 16.943-53.93 19.23-75.615 1.718C39.75 96.3 45.34 68.141 53.67 44.76c7.4-20.77 21.784-40.036 43.822-40.734",
22
+ clipRule: "evenodd"
23
+ }), /*#__PURE__*/_jsx("path", {
24
+ fill: "url(#upload-cloud_svg__b)",
25
+ fillOpacity: 0.2,
26
+ fillRule: "evenodd",
27
+ d: "M97.492 4.026c24.033-.76 45.335 14.966 53.284 37.66 8.572 24.47 4.488 52.73-16.101 68.491-22.132 16.943-53.93 19.23-75.615 1.718C39.75 96.3 45.34 68.141 53.67 44.76c7.4-20.77 21.784-40.036 43.822-40.734",
28
+ clipRule: "evenodd"
29
+ }), /*#__PURE__*/_jsx("path", {
30
+ fill: "url(#upload-cloud_svg__c)",
31
+ d: "M108.999 106.449h-.019c-2.75 0-4.982-3.33-5-7.449-.018 4.109-2.239 7.434-4.98 7.449 2.741.015 4.962 3.34 4.98 7.449.018-4.119 2.25-7.449 5-7.449z"
32
+ }), /*#__PURE__*/_jsx("path", {
33
+ fill: "url(#upload-cloud_svg__d)",
34
+ d: "M142.999 19.449h-.019c-2.75 0-4.982-3.33-5-7.449-.018 4.11-2.239 7.434-4.98 7.449 2.741.015 4.962 3.34 4.98 7.449.018-4.119 2.25-7.449 5-7.449z"
35
+ }), /*#__PURE__*/_jsx("path", {
36
+ fill: "url(#upload-cloud_svg__e)",
37
+ d: "M66.999 42.449h-.02c-2.75 0-4.98-3.33-4.999-7.449-.018 4.11-2.239 7.434-4.98 7.449 2.741.015 4.962 3.34 4.98 7.449.018-4.119 2.25-7.449 5-7.449z"
38
+ }), /*#__PURE__*/_jsxs("mask", {
39
+ id: "upload-cloud_svg__g",
40
+ width: 200,
41
+ height: 128,
42
+ x: 0,
43
+ y: 0,
44
+ maskUnits: "userSpaceOnUse",
45
+ style: {
46
+ maskType: 'alpha'
47
+ },
48
+ children: [/*#__PURE__*/_jsx("path", {
49
+ fill: "#E2F6EC",
50
+ fillRule: "evenodd",
51
+ d: "M97.492 4.026c24.033-.76 45.335 14.966 53.284 37.66 8.572 24.47 4.488 52.73-16.101 68.491-22.132 16.943-53.93 19.23-75.615 1.718C39.75 96.3 45.34 68.141 53.67 44.76c7.4-20.77 21.784-40.036 43.822-40.734",
52
+ clipRule: "evenodd"
53
+ }), /*#__PURE__*/_jsx("path", {
54
+ fill: "url(#upload-cloud_svg__f)",
55
+ fillOpacity: 0.2,
56
+ fillRule: "evenodd",
57
+ d: "M97.492 4.026c24.033-.76 45.335 14.966 53.284 37.66 8.572 24.47 4.488 52.73-16.101 68.491-22.132 16.943-53.93 19.23-75.615 1.718C39.75 96.3 45.34 68.141 53.67 44.76c7.4-20.77 21.784-40.036 43.822-40.734",
58
+ clipRule: "evenodd"
59
+ })]
60
+ }), /*#__PURE__*/_jsx("g", {
61
+ mask: "url(#upload-cloud_svg__g)",
62
+ children: /*#__PURE__*/_jsx("path", {
63
+ fill: "url(#upload-cloud_svg__h)",
64
+ d: "M155.247 93.985 110.72 49.458 74.964 78.966l45.07 45.069z",
65
+ opacity: 0.25
66
+ })
67
+ }), /*#__PURE__*/_jsx("path", {
68
+ fill: "#EAF3DC",
69
+ d: "M84.057 60c.679-8.2 7.57-14.667 15.943-14.667S115.264 51.8 115.943 60h.724C122.916 60 128 65.084 128 71.333s-5.084 11.334-11.333 11.334H83.333C77.084 82.667 72 77.583 72 71.333 72 65.084 77.084 60 83.333 60z"
70
+ }), /*#__PURE__*/_jsx("path", {
71
+ fill: "#2C8658",
72
+ d: "M100 45.333c-8.373 0-15.264 6.467-15.943 14.667h-.724C77.084 60 72 65.084 72 71.333s5.084 11.334 11.333 11.334h12v-4h-12c-4.044 0-7.333-3.29-7.333-7.334S79.29 64 83.333 64H86a2 2 0 0 0 2-2v-.667c0-6.616 5.384-12 12-12s12 5.384 12 12V62a2 2 0 0 0 2 2h2.667c4.044 0 7.333 3.29 7.333 7.333s-3.289 7.334-7.333 7.334h-12v4h12c6.249 0 11.333-5.084 11.333-11.334C128 65.084 122.916 60 116.667 60h-.724c-.679-8.2-7.57-14.667-15.943-14.667m-.031 18.638a2 2 0 0 0-1.565.797l-5.818 5.818a2.002 2.002 0 0 0 .63 3.295 2 2 0 0 0 2.198-.467L98 70.828V86a2.002 2.002 0 0 0 2.772 1.874A2 2 0 0 0 102 86V70.828l2.586 2.586a2 2 0 0 0 2.857.03 2 2 0 0 0 .586-1.436 2.007 2.007 0 0 0-.615-1.422l-5.828-5.828a2 2 0 0 0-1.617-.787"
73
+ })]
74
+ }), /*#__PURE__*/_jsxs("defs", {
75
+ children: [/*#__PURE__*/_jsxs("linearGradient", {
76
+ id: "upload-cloud_svg__b",
77
+ x1: 133,
78
+ x2: 49.23,
79
+ y1: 114,
80
+ y2: 31.784,
81
+ gradientUnits: "userSpaceOnUse",
82
+ children: [/*#__PURE__*/_jsx("stop", {
83
+ stopColor: "#F1F0EC"
84
+ }), /*#__PURE__*/_jsx("stop", {
85
+ offset: 1,
86
+ stopColor: "#84D6AC"
87
+ })]
88
+ }), /*#__PURE__*/_jsxs("linearGradient", {
89
+ id: "upload-cloud_svg__c",
90
+ x1: 99,
91
+ x2: 109,
92
+ y1: 99,
93
+ y2: 114,
94
+ gradientUnits: "userSpaceOnUse",
95
+ children: [/*#__PURE__*/_jsx("stop", {
96
+ stopColor: "#2C8658"
97
+ }), /*#__PURE__*/_jsx("stop", {
98
+ offset: 1,
99
+ stopColor: "#ACD278"
100
+ })]
101
+ }), /*#__PURE__*/_jsxs("linearGradient", {
102
+ id: "upload-cloud_svg__d",
103
+ x1: 133,
104
+ x2: 143,
105
+ y1: 12,
106
+ y2: 27,
107
+ gradientUnits: "userSpaceOnUse",
108
+ children: [/*#__PURE__*/_jsx("stop", {
109
+ stopColor: "#2C8658"
110
+ }), /*#__PURE__*/_jsx("stop", {
111
+ offset: 1,
112
+ stopColor: "#ACD278"
113
+ })]
114
+ }), /*#__PURE__*/_jsxs("linearGradient", {
115
+ id: "upload-cloud_svg__e",
116
+ x1: 57,
117
+ x2: 67,
118
+ y1: 35,
119
+ y2: 50,
120
+ gradientUnits: "userSpaceOnUse",
121
+ children: [/*#__PURE__*/_jsx("stop", {
122
+ stopColor: "#2C8658"
123
+ }), /*#__PURE__*/_jsx("stop", {
124
+ offset: 1,
125
+ stopColor: "#ACD278"
126
+ })]
127
+ }), /*#__PURE__*/_jsxs("linearGradient", {
128
+ id: "upload-cloud_svg__f",
129
+ x1: 133,
130
+ x2: 49.23,
131
+ y1: 114,
132
+ y2: 31.784,
133
+ gradientUnits: "userSpaceOnUse",
134
+ children: [/*#__PURE__*/_jsx("stop", {
135
+ stopColor: "#F1F0EC"
136
+ }), /*#__PURE__*/_jsx("stop", {
137
+ offset: 1,
138
+ stopColor: "#84D6AC"
139
+ })]
140
+ }), /*#__PURE__*/_jsxs("linearGradient", {
141
+ id: "upload-cloud_svg__h",
142
+ x1: 89.408,
143
+ x2: 133.953,
144
+ y1: 67,
145
+ y2: 114.369,
146
+ gradientUnits: "userSpaceOnUse",
147
+ children: [/*#__PURE__*/_jsx("stop", {
148
+ stopColor: "#2C8658"
149
+ }), /*#__PURE__*/_jsx("stop", {
150
+ offset: 1,
151
+ stopColor: "#ACD278"
152
+ })]
153
+ }), /*#__PURE__*/_jsx("clipPath", {
154
+ id: "upload-cloud_svg__a",
155
+ children: /*#__PURE__*/_jsx("path", {
156
+ fill: "#fff",
157
+ d: "M0 0h200v128H0z"
158
+ })
159
+ })]
160
+ })]
7
161
  });
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 SvgUploadCloud = _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
- fill: "none",
21
- viewBox: "0 0 200 128",
22
- "aria-labelledby": titleId
23
- }, props), title ? /*#__PURE__*/React.createElement("title", {
24
- id: titleId
25
- }, title) : null, /*#__PURE__*/React.createElement("g", {
26
- clipPath: "url(#upload-cloud_svg__a)"
27
- }, /*#__PURE__*/React.createElement("path", {
28
- fill: "#E2F6EC",
29
- fillRule: "evenodd",
30
- d: "M97.492 4.026c24.033-.76 45.335 14.966 53.284 37.66 8.572 24.47 4.488 52.73-16.101 68.491-22.132 16.943-53.93 19.23-75.615 1.718C39.75 96.3 45.34 68.141 53.67 44.76c7.4-20.77 21.784-40.036 43.822-40.734",
31
- clipRule: "evenodd"
32
- }), /*#__PURE__*/React.createElement("path", {
33
- fill: "url(#upload-cloud_svg__b)",
34
- fillOpacity: 0.2,
35
- fillRule: "evenodd",
36
- d: "M97.492 4.026c24.033-.76 45.335 14.966 53.284 37.66 8.572 24.47 4.488 52.73-16.101 68.491-22.132 16.943-53.93 19.23-75.615 1.718C39.75 96.3 45.34 68.141 53.67 44.76c7.4-20.77 21.784-40.036 43.822-40.734",
37
- clipRule: "evenodd"
38
- }), /*#__PURE__*/React.createElement("path", {
39
- fill: "url(#upload-cloud_svg__c)",
40
- d: "M108.999 106.449h-.019c-2.75 0-4.982-3.33-5-7.449-.018 4.109-2.239 7.434-4.98 7.449 2.741.015 4.962 3.34 4.98 7.449.018-4.119 2.25-7.449 5-7.449z"
41
- }), /*#__PURE__*/React.createElement("path", {
42
- fill: "url(#upload-cloud_svg__d)",
43
- d: "M142.999 19.449h-.019c-2.75 0-4.982-3.33-5-7.449-.018 4.11-2.239 7.434-4.98 7.449 2.741.015 4.962 3.34 4.98 7.449.018-4.119 2.25-7.449 5-7.449z"
44
- }), /*#__PURE__*/React.createElement("path", {
45
- fill: "url(#upload-cloud_svg__e)",
46
- d: "M66.999 42.449h-.02c-2.75 0-4.98-3.33-4.999-7.449-.018 4.11-2.239 7.434-4.98 7.449 2.741.015 4.962 3.34 4.98 7.449.018-4.119 2.25-7.449 5-7.449z"
47
- }), /*#__PURE__*/React.createElement("mask", {
48
- id: "upload-cloud_svg__g",
49
- width: 200,
50
- height: 128,
51
- x: 0,
52
- y: 0,
53
- maskUnits: "userSpaceOnUse",
54
- style: {
55
- maskType: 'alpha'
56
- }
57
- }, /*#__PURE__*/React.createElement("path", {
58
- fill: "#E2F6EC",
59
- fillRule: "evenodd",
60
- d: "M97.492 4.026c24.033-.76 45.335 14.966 53.284 37.66 8.572 24.47 4.488 52.73-16.101 68.491-22.132 16.943-53.93 19.23-75.615 1.718C39.75 96.3 45.34 68.141 53.67 44.76c7.4-20.77 21.784-40.036 43.822-40.734",
61
- clipRule: "evenodd"
62
- }), /*#__PURE__*/React.createElement("path", {
63
- fill: "url(#upload-cloud_svg__f)",
64
- fillOpacity: 0.2,
65
- fillRule: "evenodd",
66
- d: "M97.492 4.026c24.033-.76 45.335 14.966 53.284 37.66 8.572 24.47 4.488 52.73-16.101 68.491-22.132 16.943-53.93 19.23-75.615 1.718C39.75 96.3 45.34 68.141 53.67 44.76c7.4-20.77 21.784-40.036 43.822-40.734",
67
- clipRule: "evenodd"
68
- })), /*#__PURE__*/React.createElement("g", {
69
- mask: "url(#upload-cloud_svg__g)"
70
- }, /*#__PURE__*/React.createElement("path", {
71
- fill: "url(#upload-cloud_svg__h)",
72
- d: "M155.247 93.985 110.72 49.458 74.964 78.966l45.07 45.069z",
73
- opacity: 0.25
74
- })), /*#__PURE__*/React.createElement("path", {
75
- fill: "#EAF3DC",
76
- d: "M84.057 60c.679-8.2 7.57-14.667 15.943-14.667S115.264 51.8 115.943 60h.724C122.916 60 128 65.084 128 71.333s-5.084 11.334-11.333 11.334H83.333C77.084 82.667 72 77.583 72 71.333 72 65.084 77.084 60 83.333 60z"
77
- }), /*#__PURE__*/React.createElement("path", {
78
- fill: "#2C8658",
79
- d: "M100 45.333c-8.373 0-15.264 6.467-15.943 14.667h-.724C77.084 60 72 65.084 72 71.333s5.084 11.334 11.333 11.334h12v-4h-12c-4.044 0-7.333-3.29-7.333-7.334S79.29 64 83.333 64H86a2 2 0 0 0 2-2v-.667c0-6.616 5.384-12 12-12s12 5.384 12 12V62a2 2 0 0 0 2 2h2.667c4.044 0 7.333 3.29 7.333 7.333s-3.289 7.334-7.333 7.334h-12v4h12c6.249 0 11.333-5.084 11.333-11.334C128 65.084 122.916 60 116.667 60h-.724c-.679-8.2-7.57-14.667-15.943-14.667m-.031 18.638a2 2 0 0 0-1.565.797l-5.818 5.818a2.002 2.002 0 0 0 .63 3.295 2 2 0 0 0 2.198-.467L98 70.828V86a2.002 2.002 0 0 0 2.772 1.874A2 2 0 0 0 102 86V70.828l2.586 2.586a2 2 0 0 0 2.857.03 2 2 0 0 0 .586-1.436 2.007 2.007 0 0 0-.615-1.422l-5.828-5.828a2 2 0 0 0-1.617-.787"
80
- })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
81
- id: "upload-cloud_svg__b",
82
- x1: 133,
83
- x2: 49.23,
84
- y1: 114,
85
- y2: 31.784,
86
- gradientUnits: "userSpaceOnUse"
87
- }, /*#__PURE__*/React.createElement("stop", {
88
- stopColor: "#F1F0EC"
89
- }), /*#__PURE__*/React.createElement("stop", {
90
- offset: 1,
91
- stopColor: "#84D6AC"
92
- })), /*#__PURE__*/React.createElement("linearGradient", {
93
- id: "upload-cloud_svg__c",
94
- x1: 99,
95
- x2: 109,
96
- y1: 99,
97
- y2: 114,
98
- gradientUnits: "userSpaceOnUse"
99
- }, /*#__PURE__*/React.createElement("stop", {
100
- stopColor: "#2C8658"
101
- }), /*#__PURE__*/React.createElement("stop", {
102
- offset: 1,
103
- stopColor: "#ACD278"
104
- })), /*#__PURE__*/React.createElement("linearGradient", {
105
- id: "upload-cloud_svg__d",
106
- x1: 133,
107
- x2: 143,
108
- y1: 12,
109
- y2: 27,
110
- gradientUnits: "userSpaceOnUse"
111
- }, /*#__PURE__*/React.createElement("stop", {
112
- stopColor: "#2C8658"
113
- }), /*#__PURE__*/React.createElement("stop", {
114
- offset: 1,
115
- stopColor: "#ACD278"
116
- })), /*#__PURE__*/React.createElement("linearGradient", {
117
- id: "upload-cloud_svg__e",
118
- x1: 57,
119
- x2: 67,
120
- y1: 35,
121
- y2: 50,
122
- gradientUnits: "userSpaceOnUse"
123
- }, /*#__PURE__*/React.createElement("stop", {
124
- stopColor: "#2C8658"
125
- }), /*#__PURE__*/React.createElement("stop", {
126
- offset: 1,
127
- stopColor: "#ACD278"
128
- })), /*#__PURE__*/React.createElement("linearGradient", {
129
- id: "upload-cloud_svg__f",
130
- x1: 133,
131
- x2: 49.23,
132
- y1: 114,
133
- y2: 31.784,
134
- gradientUnits: "userSpaceOnUse"
135
- }, /*#__PURE__*/React.createElement("stop", {
136
- stopColor: "#F1F0EC"
137
- }), /*#__PURE__*/React.createElement("stop", {
138
- offset: 1,
139
- stopColor: "#84D6AC"
140
- })), /*#__PURE__*/React.createElement("linearGradient", {
141
- id: "upload-cloud_svg__h",
142
- x1: 89.408,
143
- x2: 133.953,
144
- y1: 67,
145
- y2: 114.369,
146
- gradientUnits: "userSpaceOnUse"
147
- }, /*#__PURE__*/React.createElement("stop", {
148
- stopColor: "#2C8658"
149
- }), /*#__PURE__*/React.createElement("stop", {
150
- offset: 1,
151
- stopColor: "#ACD278"
152
- })), /*#__PURE__*/React.createElement("clipPath", {
153
- id: "upload-cloud_svg__a"
154
- }, /*#__PURE__*/React.createElement("path", {
155
- fill: "#fff",
156
- d: "M0 0h200v128H0z"
157
- }))));
158
- };
159
- var _default = exports.default = SvgUploadCloud;
162
+ export default SvgUploadCloud;
@@ -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 SvgWarning = _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 SvgWarning = ({
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 2.526c-.777 0-1.555.38-1.975 1.138l-7.74 13.984C1.47 19.122 2.575 21 4.26 21H19.74c1.686 0 2.791-1.878 1.975-3.352L13.975 3.664c-.42-.759-1.198-1.138-1.975-1.138m0 1.449c.254 0 .508.138.662.416l7.741 13.983c.297.536-.05 1.126-.662 1.126H4.26c-.612 0-.959-.59-.662-1.126l7.74-13.983c.154-.278.408-.416.662-.416m-.012 4.014a.75.75 0 0 0-.738.761v5a.751.751 0 1 0 1.5 0v-5a.75.75 0 0 0-.762-.76M12 16a1 1 0 1 0 0 2 1 1 0 0 0 0-2"
26
- }));
27
- };
28
- var _default = exports.default = SvgWarning;
17
+ })]
18
+ });
19
+ export default SvgWarning;