@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,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 SvgBlobbyIconHeartMonitor = ({
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(#blobby-icon-heart-monitor_svg__a)",
18
+ children: [/*#__PURE__*/_jsx("path", {
19
+ fill: "#E2F6EC",
20
+ fillRule: "evenodd",
21
+ d: "M96.667 4.039c26.67-1.026 50.485 18.385 57.399 44.164 6.047 22.546-11.922 41.533-30.693 55.408-19.462 14.387-44.342 28.69-64.028 14.611-19.947-14.266-15.548-42.761-7.93-66.071 7.563-23.136 20.93-47.177 45.252-48.112",
22
+ clipRule: "evenodd"
23
+ }), /*#__PURE__*/_jsx("path", {
24
+ fill: "url(#blobby-icon-heart-monitor_svg__b)",
25
+ fillOpacity: 0.2,
26
+ fillRule: "evenodd",
27
+ d: "M96.667 4.039c26.67-1.026 50.485 18.385 57.399 44.164 6.047 22.546-11.922 41.533-30.693 55.408-19.462 14.387-44.342 28.69-64.028 14.611-19.947-14.266-15.548-42.761-7.93-66.071 7.563-23.136 20.93-47.177 45.252-48.112",
28
+ clipRule: "evenodd"
29
+ }), /*#__PURE__*/_jsx("path", {
30
+ fill: "url(#blobby-icon-heart-monitor_svg__c)",
31
+ d: "M146.999 100.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"
32
+ }), /*#__PURE__*/_jsx("path", {
33
+ fill: "url(#blobby-icon-heart-monitor_svg__d)",
34
+ d: "M87.999 25.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"
35
+ }), /*#__PURE__*/_jsx("path", {
36
+ fill: "url(#blobby-icon-heart-monitor_svg__e)",
37
+ d: "M63.999 76.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: "blobby-icon-heart-monitor_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: "M96.667 4.039c26.67-1.026 50.485 18.385 57.399 44.164 6.047 22.546-11.922 41.533-30.693 55.408-19.462 14.387-44.342 28.69-64.028 14.611-19.947-14.266-15.548-42.761-7.93-66.071 7.563-23.136 20.93-47.177 45.252-48.112",
52
+ clipRule: "evenodd"
53
+ }), /*#__PURE__*/_jsx("path", {
54
+ fill: "url(#blobby-icon-heart-monitor_svg__f)",
55
+ fillOpacity: 0.2,
56
+ fillRule: "evenodd",
57
+ d: "M96.667 4.039c26.67-1.026 50.485 18.385 57.399 44.164 6.047 22.546-11.922 41.533-30.693 55.408-19.462 14.387-44.342 28.69-64.028 14.611-19.947-14.266-15.548-42.761-7.93-66.071 7.563-23.136 20.93-47.177 45.252-48.112",
58
+ clipRule: "evenodd"
59
+ })]
60
+ }), /*#__PURE__*/_jsx("g", {
61
+ mask: "url(#blobby-icon-heart-monitor_svg__g)",
62
+ children: /*#__PURE__*/_jsx("path", {
63
+ fill: "url(#blobby-icon-heart-monitor_svg__h)",
64
+ d: "M159.7 77.7 125 43 75.64 85.641 107.5 117.5z",
65
+ opacity: 0.25
66
+ })
67
+ }), /*#__PURE__*/_jsx("path", {
68
+ fill: "#EAF3DC",
69
+ d: "M73.333 47.333c0-4.026 3.307-7.333 7.334-7.333h38.666c4.027 0 7.334 3.307 7.334 7.333v33.334c0 4.026-3.307 7.333-7.334 7.333H80.667c-4.027 0-7.334-3.307-7.334-7.333V47.333"
70
+ }), /*#__PURE__*/_jsx("path", {
71
+ fill: "#2C8658",
72
+ d: "M80.667 40c-4.027 0-7.334 3.307-7.334 7.333v33.334c0 4.026 3.307 7.333 7.334 7.333h38.666c4.027 0 7.334-3.307 7.334-7.333V47.333c0-4.026-3.307-7.333-7.334-7.333zm0 4h38.666a3.304 3.304 0 0 1 3.334 3.333v33.334A3.304 3.304 0 0 1 119.333 84H80.667a3.304 3.304 0 0 1-3.334-3.333V68h3.334c.702 0 1.353-.367 1.713-.971l2.024-3.367 3.768 8.484a2 2 0 0 0 1.82 1.187c.796-.032 1.503-.456 1.828-1.171l4.623-10.172 5.007 14.018a2 2 0 0 0 1.883 1.325 2 2 0 0 0 1.789-1.104l4.782-9.562h1.432A3.33 3.33 0 0 0 114 68a3.333 3.333 0 1 0-2.664-5.333h-2.669c-.758 0-1.451.426-1.789 1.104l-3.237 6.476-5.092-14.255a2 2 0 0 0-1.8-1.323 1.97 1.97 0 0 0-1.903 1.17l-4.825 10.617-3.529-7.935a2 2 0 0 0-3.542-.216L79.534 64h-2.2V47.333A3.304 3.304 0 0 1 80.666 44"
73
+ })]
74
+ }), /*#__PURE__*/_jsxs("defs", {
75
+ children: [/*#__PURE__*/_jsxs("linearGradient", {
76
+ id: "blobby-icon-heart-monitor_svg__b",
77
+ x1: 126.5,
78
+ x2: 50,
79
+ y1: 104,
80
+ y2: 27.5,
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: "blobby-icon-heart-monitor_svg__c",
90
+ x1: 137,
91
+ x2: 147,
92
+ y1: 93,
93
+ y2: 108,
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: "blobby-icon-heart-monitor_svg__d",
103
+ x1: 78,
104
+ x2: 88,
105
+ y1: 18,
106
+ y2: 33,
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: "blobby-icon-heart-monitor_svg__e",
116
+ x1: 54,
117
+ x2: 64,
118
+ y1: 69,
119
+ y2: 84,
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: "blobby-icon-heart-monitor_svg__f",
129
+ x1: 126.5,
130
+ x2: 50,
131
+ y1: 104,
132
+ y2: 27.5,
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: "blobby-icon-heart-monitor_svg__h",
142
+ x1: 96.5,
143
+ x2: 130.831,
144
+ y1: 64.048,
145
+ y2: 104.17,
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: "blobby-icon-heart-monitor_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 SvgBlobbyIconHeartMonitor = _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(#blobby-icon-heart-monitor_svg__a)"
27
- }, /*#__PURE__*/React.createElement("path", {
28
- fill: "#E2F6EC",
29
- fillRule: "evenodd",
30
- d: "M96.667 4.039c26.67-1.026 50.485 18.385 57.399 44.164 6.047 22.546-11.922 41.533-30.693 55.408-19.462 14.387-44.342 28.69-64.028 14.611-19.947-14.266-15.548-42.761-7.93-66.071 7.563-23.136 20.93-47.177 45.252-48.112",
31
- clipRule: "evenodd"
32
- }), /*#__PURE__*/React.createElement("path", {
33
- fill: "url(#blobby-icon-heart-monitor_svg__b)",
34
- fillOpacity: 0.2,
35
- fillRule: "evenodd",
36
- d: "M96.667 4.039c26.67-1.026 50.485 18.385 57.399 44.164 6.047 22.546-11.922 41.533-30.693 55.408-19.462 14.387-44.342 28.69-64.028 14.611-19.947-14.266-15.548-42.761-7.93-66.071 7.563-23.136 20.93-47.177 45.252-48.112",
37
- clipRule: "evenodd"
38
- }), /*#__PURE__*/React.createElement("path", {
39
- fill: "url(#blobby-icon-heart-monitor_svg__c)",
40
- d: "M146.999 100.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"
41
- }), /*#__PURE__*/React.createElement("path", {
42
- fill: "url(#blobby-icon-heart-monitor_svg__d)",
43
- d: "M87.999 25.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"
44
- }), /*#__PURE__*/React.createElement("path", {
45
- fill: "url(#blobby-icon-heart-monitor_svg__e)",
46
- d: "M63.999 76.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: "blobby-icon-heart-monitor_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: "M96.667 4.039c26.67-1.026 50.485 18.385 57.399 44.164 6.047 22.546-11.922 41.533-30.693 55.408-19.462 14.387-44.342 28.69-64.028 14.611-19.947-14.266-15.548-42.761-7.93-66.071 7.563-23.136 20.93-47.177 45.252-48.112",
61
- clipRule: "evenodd"
62
- }), /*#__PURE__*/React.createElement("path", {
63
- fill: "url(#blobby-icon-heart-monitor_svg__f)",
64
- fillOpacity: 0.2,
65
- fillRule: "evenodd",
66
- d: "M96.667 4.039c26.67-1.026 50.485 18.385 57.399 44.164 6.047 22.546-11.922 41.533-30.693 55.408-19.462 14.387-44.342 28.69-64.028 14.611-19.947-14.266-15.548-42.761-7.93-66.071 7.563-23.136 20.93-47.177 45.252-48.112",
67
- clipRule: "evenodd"
68
- })), /*#__PURE__*/React.createElement("g", {
69
- mask: "url(#blobby-icon-heart-monitor_svg__g)"
70
- }, /*#__PURE__*/React.createElement("path", {
71
- fill: "url(#blobby-icon-heart-monitor_svg__h)",
72
- d: "M159.7 77.7 125 43 75.64 85.641 107.5 117.5z",
73
- opacity: 0.25
74
- })), /*#__PURE__*/React.createElement("path", {
75
- fill: "#EAF3DC",
76
- d: "M73.333 47.333c0-4.026 3.307-7.333 7.334-7.333h38.666c4.027 0 7.334 3.307 7.334 7.333v33.334c0 4.026-3.307 7.333-7.334 7.333H80.667c-4.027 0-7.334-3.307-7.334-7.333V47.333"
77
- }), /*#__PURE__*/React.createElement("path", {
78
- fill: "#2C8658",
79
- d: "M80.667 40c-4.027 0-7.334 3.307-7.334 7.333v33.334c0 4.026 3.307 7.333 7.334 7.333h38.666c4.027 0 7.334-3.307 7.334-7.333V47.333c0-4.026-3.307-7.333-7.334-7.333zm0 4h38.666a3.304 3.304 0 0 1 3.334 3.333v33.334A3.304 3.304 0 0 1 119.333 84H80.667a3.304 3.304 0 0 1-3.334-3.333V68h3.334c.702 0 1.353-.367 1.713-.971l2.024-3.367 3.768 8.484a2 2 0 0 0 1.82 1.187c.796-.032 1.503-.456 1.828-1.171l4.623-10.172 5.007 14.018a2 2 0 0 0 1.883 1.325 2 2 0 0 0 1.789-1.104l4.782-9.562h1.432A3.33 3.33 0 0 0 114 68a3.333 3.333 0 1 0-2.664-5.333h-2.669c-.758 0-1.451.426-1.789 1.104l-3.237 6.476-5.092-14.255a2 2 0 0 0-1.8-1.323 1.97 1.97 0 0 0-1.903 1.17l-4.825 10.617-3.529-7.935a2 2 0 0 0-3.542-.216L79.534 64h-2.2V47.333A3.304 3.304 0 0 1 80.666 44"
80
- })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
81
- id: "blobby-icon-heart-monitor_svg__b",
82
- x1: 126.5,
83
- x2: 50,
84
- y1: 104,
85
- y2: 27.5,
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: "blobby-icon-heart-monitor_svg__c",
94
- x1: 137,
95
- x2: 147,
96
- y1: 93,
97
- y2: 108,
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: "blobby-icon-heart-monitor_svg__d",
106
- x1: 78,
107
- x2: 88,
108
- y1: 18,
109
- y2: 33,
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: "blobby-icon-heart-monitor_svg__e",
118
- x1: 54,
119
- x2: 64,
120
- y1: 69,
121
- y2: 84,
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: "blobby-icon-heart-monitor_svg__f",
130
- x1: 126.5,
131
- x2: 50,
132
- y1: 104,
133
- y2: 27.5,
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: "blobby-icon-heart-monitor_svg__h",
142
- x1: 96.5,
143
- x2: 130.831,
144
- y1: 64.048,
145
- y2: 104.17,
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: "blobby-icon-heart-monitor_svg__a"
154
- }, /*#__PURE__*/React.createElement("path", {
155
- fill: "#fff",
156
- d: "M0 0h200v128H0z"
157
- }))));
158
- };
159
- var _default = exports.default = SvgBlobbyIconHeartMonitor;
162
+ export default SvgBlobbyIconHeartMonitor;
@@ -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 SvgBlobbyIconLeaf = ({
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(#blobby-icon-leaf_svg__a)",
18
+ children: [/*#__PURE__*/_jsx("path", {
19
+ fill: "#E2F6EC",
20
+ fillRule: "evenodd",
21
+ d: "M85.957 4.231c27.911-2.327 55.85 13.068 64.879 39.58 9.385 27.56-1.432 58.971-25.993 74.602-21.169 13.473-47.12.371-66.2-15.926-14.37-12.272-16.13-31.86-11.068-50.066 6.08-21.874 15.757-46.304 38.382-48.19",
22
+ clipRule: "evenodd"
23
+ }), /*#__PURE__*/_jsx("path", {
24
+ fill: "url(#blobby-icon-leaf_svg__b)",
25
+ fillOpacity: 0.2,
26
+ fillRule: "evenodd",
27
+ d: "M85.957 4.231c27.911-2.327 55.85 13.068 64.879 39.58 9.385 27.56-1.432 58.971-25.993 74.602-21.169 13.473-47.12.371-66.2-15.926-14.37-12.272-16.13-31.86-11.068-50.066 6.08-21.874 15.757-46.304 38.382-48.19",
28
+ clipRule: "evenodd"
29
+ }), /*#__PURE__*/_jsx("path", {
30
+ fill: "url(#blobby-icon-leaf_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(#blobby-icon-leaf_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(#blobby-icon-leaf_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: "blobby-icon-leaf_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: "M85.957 4.231c27.911-2.327 55.85 13.068 64.879 39.58 9.385 27.56-1.432 58.971-25.993 74.602-21.169 13.473-47.12.371-66.2-15.926-14.37-12.272-16.13-31.86-11.068-50.066 6.08-21.874 15.757-46.304 38.382-48.19",
52
+ clipRule: "evenodd"
53
+ }), /*#__PURE__*/_jsx("path", {
54
+ fill: "url(#blobby-icon-leaf_svg__f)",
55
+ fillOpacity: 0.2,
56
+ fillRule: "evenodd",
57
+ d: "M85.957 4.231c27.911-2.327 55.85 13.068 64.879 39.58 9.385 27.56-1.432 58.971-25.993 74.602-21.169 13.473-47.12.371-66.2-15.926-14.37-12.272-16.13-31.86-11.068-50.066 6.08-21.874 15.757-46.304 38.382-48.19",
58
+ clipRule: "evenodd"
59
+ })]
60
+ }), /*#__PURE__*/_jsx("g", {
61
+ mask: "url(#blobby-icon-leaf_svg__g)",
62
+ children: /*#__PURE__*/_jsx("path", {
63
+ fill: "url(#blobby-icon-leaf_svg__h)",
64
+ d: "m162.332 85.1-47.037-47.036L93.5 81.5l-15.606 8.552 40.23 40.23z",
65
+ opacity: 0.25
66
+ })
67
+ }), /*#__PURE__*/_jsx("path", {
68
+ fill: "#EAF3DC",
69
+ d: "M109.57 36.79a6 6 0 0 1 1.805-.243 6.02 6.02 0 0 1 4.685 2.362c6.542 8.594 9.174 19.043 9.268 26.146.097 7.183-1.731 12.972-4.966 17.052s-7.889 6.357-12.951 6.557l-.039.003h-.039c-1.998 0-5.922-.054-9.88-3.079l-.003-.001c-.24-.17-3.12-2.22-3.958-4.791-.287-.467-3.98 1.465-5.344 1.134-2.28-.8-4.527-1.99-6.497-3.873-3.148-3.008-5.568-7.342-5.568-12.455 0-2.755.313-6.218 2.5-9.873l.026-.044.032-.044C86.3 44.232 103.039 38.71 109.57 36.789"
70
+ }), /*#__PURE__*/_jsx("path", {
71
+ fill: "#2C8658",
72
+ d: "M111.375 36.547a6 6 0 0 0-1.805.242c-6.531 1.921-23.27 7.443-30.93 18.852l-.03.044-.027.044c-2.187 3.655-2.5 7.118-2.5 9.873 0 5.113 2.42 9.447 5.568 12.455 1.97 1.883 4.217 3.072 6.497 3.873a32.4 32.4 0 0 1-9.421 4.83 2 2 0 1 0 1.213 3.813c15.53-4.942 25.179-19.55 28.365-34.612a2.001 2.001 0 0 0-3.914-.828c-1.878 8.876-6.174 17.445-12.584 23.656-2.08-.14-5.024-1.361-7.393-3.625-2.508-2.397-4.33-5.712-4.33-9.562 0-2.476.217-4.92 1.916-7.78 6.45-9.545 22.493-15.37 28.698-17.194a2.01 2.01 0 0 1 2.18.703c5.892 7.74 8.371 17.649 8.453 23.776v.002c.087 6.478-1.557 11.302-4.102 14.51-2.539 3.202-5.969 4.878-9.948 5.043-1.993 0-4.396.045-7.4-2.25a1.998 1.998 0 0 0-3.206 1.05 2 2 0 0 0 .778 2.126c3.958 3.025 7.882 3.079 9.88 3.079h.039l.039-.003c5.062-.2 9.715-2.478 12.951-6.557 3.235-4.08 5.063-9.869 4.966-17.052-.094-7.103-2.726-17.552-9.268-26.146a6.02 6.02 0 0 0-4.685-2.362"
73
+ })]
74
+ }), /*#__PURE__*/_jsxs("defs", {
75
+ children: [/*#__PURE__*/_jsxs("linearGradient", {
76
+ id: "blobby-icon-leaf_svg__b",
77
+ x1: 139.5,
78
+ x2: 52.354,
79
+ y1: 110,
80
+ y2: 24.156,
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: "blobby-icon-leaf_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: "blobby-icon-leaf_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: "blobby-icon-leaf_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: "blobby-icon-leaf_svg__f",
129
+ x1: 139.5,
130
+ x2: 52.354,
131
+ y1: 110,
132
+ y2: 24.156,
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: "blobby-icon-leaf_svg__h",
142
+ x1: 93.085,
143
+ x2: 148.602,
144
+ y1: 59.755,
145
+ y2: 102.372,
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: "blobby-icon-leaf_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 SvgBlobbyIconLeaf = _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(#blobby-icon-leaf_svg__a)"
27
- }, /*#__PURE__*/React.createElement("path", {
28
- fill: "#E2F6EC",
29
- fillRule: "evenodd",
30
- d: "M85.957 4.231c27.911-2.327 55.85 13.068 64.879 39.58 9.385 27.56-1.432 58.971-25.993 74.602-21.169 13.473-47.12.371-66.2-15.926-14.37-12.272-16.13-31.86-11.068-50.066 6.08-21.874 15.757-46.304 38.382-48.19",
31
- clipRule: "evenodd"
32
- }), /*#__PURE__*/React.createElement("path", {
33
- fill: "url(#blobby-icon-leaf_svg__b)",
34
- fillOpacity: 0.2,
35
- fillRule: "evenodd",
36
- d: "M85.957 4.231c27.911-2.327 55.85 13.068 64.879 39.58 9.385 27.56-1.432 58.971-25.993 74.602-21.169 13.473-47.12.371-66.2-15.926-14.37-12.272-16.13-31.86-11.068-50.066 6.08-21.874 15.757-46.304 38.382-48.19",
37
- clipRule: "evenodd"
38
- }), /*#__PURE__*/React.createElement("path", {
39
- fill: "url(#blobby-icon-leaf_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(#blobby-icon-leaf_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(#blobby-icon-leaf_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: "blobby-icon-leaf_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: "M85.957 4.231c27.911-2.327 55.85 13.068 64.879 39.58 9.385 27.56-1.432 58.971-25.993 74.602-21.169 13.473-47.12.371-66.2-15.926-14.37-12.272-16.13-31.86-11.068-50.066 6.08-21.874 15.757-46.304 38.382-48.19",
61
- clipRule: "evenodd"
62
- }), /*#__PURE__*/React.createElement("path", {
63
- fill: "url(#blobby-icon-leaf_svg__f)",
64
- fillOpacity: 0.2,
65
- fillRule: "evenodd",
66
- d: "M85.957 4.231c27.911-2.327 55.85 13.068 64.879 39.58 9.385 27.56-1.432 58.971-25.993 74.602-21.169 13.473-47.12.371-66.2-15.926-14.37-12.272-16.13-31.86-11.068-50.066 6.08-21.874 15.757-46.304 38.382-48.19",
67
- clipRule: "evenodd"
68
- })), /*#__PURE__*/React.createElement("g", {
69
- mask: "url(#blobby-icon-leaf_svg__g)"
70
- }, /*#__PURE__*/React.createElement("path", {
71
- fill: "url(#blobby-icon-leaf_svg__h)",
72
- d: "m162.332 85.1-47.037-47.036L93.5 81.5l-15.606 8.552 40.23 40.23z",
73
- opacity: 0.25
74
- })), /*#__PURE__*/React.createElement("path", {
75
- fill: "#EAF3DC",
76
- d: "M109.57 36.79a6 6 0 0 1 1.805-.243 6.02 6.02 0 0 1 4.685 2.362c6.542 8.594 9.174 19.043 9.268 26.146.097 7.183-1.731 12.972-4.966 17.052s-7.889 6.357-12.951 6.557l-.039.003h-.039c-1.998 0-5.922-.054-9.88-3.079l-.003-.001c-.24-.17-3.12-2.22-3.958-4.791-.287-.467-3.98 1.465-5.344 1.134-2.28-.8-4.527-1.99-6.497-3.873-3.148-3.008-5.568-7.342-5.568-12.455 0-2.755.313-6.218 2.5-9.873l.026-.044.032-.044C86.3 44.232 103.039 38.71 109.57 36.789"
77
- }), /*#__PURE__*/React.createElement("path", {
78
- fill: "#2C8658",
79
- d: "M111.375 36.547a6 6 0 0 0-1.805.242c-6.531 1.921-23.27 7.443-30.93 18.852l-.03.044-.027.044c-2.187 3.655-2.5 7.118-2.5 9.873 0 5.113 2.42 9.447 5.568 12.455 1.97 1.883 4.217 3.072 6.497 3.873a32.4 32.4 0 0 1-9.421 4.83 2 2 0 1 0 1.213 3.813c15.53-4.942 25.179-19.55 28.365-34.612a2.001 2.001 0 0 0-3.914-.828c-1.878 8.876-6.174 17.445-12.584 23.656-2.08-.14-5.024-1.361-7.393-3.625-2.508-2.397-4.33-5.712-4.33-9.562 0-2.476.217-4.92 1.916-7.78 6.45-9.545 22.493-15.37 28.698-17.194a2.01 2.01 0 0 1 2.18.703c5.892 7.74 8.371 17.649 8.453 23.776v.002c.087 6.478-1.557 11.302-4.102 14.51-2.539 3.202-5.969 4.878-9.948 5.043-1.993 0-4.396.045-7.4-2.25a1.998 1.998 0 0 0-3.206 1.05 2 2 0 0 0 .778 2.126c3.958 3.025 7.882 3.079 9.88 3.079h.039l.039-.003c5.062-.2 9.715-2.478 12.951-6.557 3.235-4.08 5.063-9.869 4.966-17.052-.094-7.103-2.726-17.552-9.268-26.146a6.02 6.02 0 0 0-4.685-2.362"
80
- })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
81
- id: "blobby-icon-leaf_svg__b",
82
- x1: 139.5,
83
- x2: 52.354,
84
- y1: 110,
85
- y2: 24.156,
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: "blobby-icon-leaf_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: "blobby-icon-leaf_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: "blobby-icon-leaf_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: "blobby-icon-leaf_svg__f",
130
- x1: 139.5,
131
- x2: 52.354,
132
- y1: 110,
133
- y2: 24.156,
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: "blobby-icon-leaf_svg__h",
142
- x1: 93.085,
143
- x2: 148.602,
144
- y1: 59.755,
145
- y2: 102.372,
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: "blobby-icon-leaf_svg__a"
154
- }, /*#__PURE__*/React.createElement("path", {
155
- fill: "#fff",
156
- d: "M0 0h200v128H0z"
157
- }))));
158
- };
159
- var _default = exports.default = SvgBlobbyIconLeaf;
162
+ export default SvgBlobbyIconLeaf;