@terraware/web-components 3.5.12-rc.7 → 3.5.12

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 (230) hide show
  1. package/components/AntSwitch/index.js +27 -0
  2. package/components/AntSwitch/styles.scss +66 -0
  3. package/components/Autocomplete/Autocomplete.js +131 -0
  4. package/components/Autocomplete/styles.scss +155 -0
  5. package/components/Badge/index.js +32 -0
  6. package/components/BusySpinner/index.js +49 -0
  7. package/components/Button/Button.js +51 -0
  8. package/components/Button/button.test.js +25 -0
  9. package/components/Button/styles.scss +453 -0
  10. package/components/Checkbox.js +70 -0
  11. package/components/Confirm/index.js +94 -0
  12. package/components/DatePicker/DatePicker.js +150 -0
  13. package/components/DatePicker/styles.scss +95 -0
  14. package/components/DialogBox/DialogBox.js +91 -0
  15. package/components/DialogBox/styles.scss +165 -0
  16. package/components/Divisor.js +21 -0
  17. package/components/Dropdown.js +102 -0
  18. package/components/ErrorBox/ErrorBox.js +47 -0
  19. package/components/ErrorBox/styles.scss +63 -0
  20. package/components/FileChooser/index.js +137 -0
  21. package/components/FormBottomBar/index.js +90 -0
  22. package/components/Icon/Icon.js +25 -0
  23. package/components/Icon/icons/index.js +241 -0
  24. package/components/Icon/styles.scss +41 -0
  25. package/components/IconTooltip/index.js +61 -0
  26. package/components/Map/MapBox.d.ts.map +1 -1
  27. package/components/Map/MapBox.js +479 -0
  28. package/components/Map/MapContainer.js +30 -0
  29. package/components/Map/MapDateSliderControl.js +66 -0
  30. package/components/Map/MapDrawer.js +45 -0
  31. package/components/Map/MapLegend.js +172 -0
  32. package/components/Map/MapViewStyleControl.js +74 -0
  33. package/components/Map/ReactMapboxWrapper.d.ts +3 -0
  34. package/components/Map/ReactMapboxWrapper.d.ts.map +1 -0
  35. package/components/Map/ReactMapboxWrapper.js +9 -0
  36. package/components/Map/index.js +190 -0
  37. package/components/Map/styles.scss +130 -0
  38. package/components/Map/types.js +24 -0
  39. package/components/Map/useMaintainLayerOrder.js +32 -0
  40. package/components/Message/Message.js +67 -0
  41. package/components/Message/styles.scss +202 -0
  42. package/components/MultiSelect/MultiSelect.test.js +75 -0
  43. package/components/MultiSelect/index.js +120 -0
  44. package/components/MultiSelect/styles.scss +180 -0
  45. package/components/Navbar/NavFooter.js +17 -0
  46. package/components/Navbar/NavItem.js +73 -0
  47. package/components/Navbar/NavSection.js +22 -0
  48. package/components/Navbar/Navbar.js +46 -0
  49. package/components/Navbar/SubNavbar.js +17 -0
  50. package/components/Navbar/styles.scss +155 -0
  51. package/components/Note.js +25 -0
  52. package/components/PageForm/index.js +43 -0
  53. package/components/PhotoChooser/index.js +137 -0
  54. package/components/Pill/index.js +46 -0
  55. package/components/Pill/styles.scss +50 -0
  56. package/components/PillList/index.js +29 -0
  57. package/components/PillList/styles.scss +12 -0
  58. package/components/PlacementWrapper/index.js +63 -0
  59. package/components/PopoverMenu/Popover.js +88 -0
  60. package/components/PopoverMenu/index.js +59 -0
  61. package/components/PopoverMultiSelect/index.js +62 -0
  62. package/components/PopoverMultiSelect/styles.scss +10 -0
  63. package/components/ProgressCircle/ProgressCircle.js +34 -0
  64. package/components/ProgressCircle/styles.scss +87 -0
  65. package/components/RadioButton.js +25 -0
  66. package/components/Select/Select.js +19 -0
  67. package/components/Select/SelectT.js +245 -0
  68. package/components/Select/styles.scss +307 -0
  69. package/components/Separator/index.js +21 -0
  70. package/components/Size.js +5 -0
  71. package/components/Slider/index.js +60 -0
  72. package/components/SummaryBox.js +73 -0
  73. package/components/Tabs/index.js +111 -0
  74. package/components/TextTruncated/index.js +146 -0
  75. package/components/Textfield/Textfield.js +172 -0
  76. package/components/Textfield/TruncatedTextArea.js +71 -0
  77. package/components/Textfield/styles.scss +271 -0
  78. package/components/Tooltip/Tooltip.js +54 -0
  79. package/components/ViewPhotosDialog/index.js +136 -0
  80. package/components/ViewPhotosDialog/styles.scss +18 -0
  81. package/components/svg/BlobbyGrayIconImage.js +39 -0
  82. package/components/svg/BlobbyGrayIconImport.js +39 -0
  83. package/components/svg/BlobbyGrayIconUploadToTheCloud.js +39 -0
  84. package/components/svg/BlobbyIconCloudChecked.js +156 -0
  85. package/components/svg/BlobbyIconExportOrUploadPhoto.js +156 -0
  86. package/components/svg/BlobbyIconFolder.js +156 -0
  87. package/components/svg/BlobbyIconGraphReport.js +156 -0
  88. package/components/svg/BlobbyIconHappy.js +156 -0
  89. package/components/svg/BlobbyIconHeartMonitor.js +156 -0
  90. package/components/svg/BlobbyIconLeaf.js +156 -0
  91. package/components/svg/BlobbyIconLibrary.js +156 -0
  92. package/components/svg/BlobbyIconNursery.js +158 -0
  93. package/components/svg/BlobbyIconOrganization.js +156 -0
  94. package/components/svg/BlobbyIconParchment.js +156 -0
  95. package/components/svg/BlobbyIconPeople.js +156 -0
  96. package/components/svg/BlobbyIconSeedBank.js +156 -0
  97. package/components/svg/BlobbyIconSeedling.js +156 -0
  98. package/components/svg/BlobbyIconSeeds.js +156 -0
  99. package/components/svg/BlobbyIconSite.js +159 -0
  100. package/components/svg/BlobbyIconSparkles.js +156 -0
  101. package/components/svg/BlobbyIconWrench.js +156 -0
  102. package/components/svg/Bug.js +25 -0
  103. package/components/svg/Calendar.js +25 -0
  104. package/components/svg/CaretDown.js +25 -0
  105. package/components/svg/CaretLeft.js +25 -0
  106. package/components/svg/CaretRight.js +25 -0
  107. package/components/svg/CaretUp.js +25 -0
  108. package/components/svg/ChevronDown.js +25 -0
  109. package/components/svg/ChevronUp.js +25 -0
  110. package/components/svg/Close.js +25 -0
  111. package/components/svg/Critical.js +25 -0
  112. package/components/svg/Edit.js +156 -0
  113. package/components/svg/Error.js +25 -0
  114. package/components/svg/Filter.js +25 -0
  115. package/components/svg/Folder.js +25 -0
  116. package/components/svg/Help.js +25 -0
  117. package/components/svg/Home.js +25 -0
  118. package/components/svg/IconAdd.js +25 -0
  119. package/components/svg/IconArrowRight.js +27 -0
  120. package/components/svg/IconBusinessNetwork.js +25 -0
  121. package/components/svg/IconCancel.js +25 -0
  122. package/components/svg/IconChargingBattery.js +25 -0
  123. package/components/svg/IconCheckmark.js +25 -0
  124. package/components/svg/IconCoinInHand.js +25 -0
  125. package/components/svg/IconColumns.js +25 -0
  126. package/components/svg/IconComment.js +26 -0
  127. package/components/svg/IconDashboard.js +25 -0
  128. package/components/svg/IconDataMigration.js +25 -0
  129. package/components/svg/IconEdit.js +27 -0
  130. package/components/svg/IconExport.js +25 -0
  131. package/components/svg/IconExternalLink.js +25 -0
  132. package/components/svg/IconEye.js +25 -0
  133. package/components/svg/IconEyeOff.js +25 -0
  134. package/components/svg/IconFile.js +25 -0
  135. package/components/svg/IconFolder.js +25 -0
  136. package/components/svg/IconFullScreen.js +26 -0
  137. package/components/svg/IconFutures.js +25 -0
  138. package/components/svg/IconGraphReport.js +25 -0
  139. package/components/svg/IconHeartMonitor.js +25 -0
  140. package/components/svg/IconHelp.js +27 -0
  141. package/components/svg/IconHistory.js +25 -0
  142. package/components/svg/IconImport.js +25 -0
  143. package/components/svg/IconIndex.js +25 -0
  144. package/components/svg/IconLayers.js +25 -0
  145. package/components/svg/IconLibrary.js +26 -0
  146. package/components/svg/IconList.js +25 -0
  147. package/components/svg/IconLivePlant.js +25 -0
  148. package/components/svg/IconLocations.js +25 -0
  149. package/components/svg/IconMail.js +25 -0
  150. package/components/svg/IconManager.js +25 -0
  151. package/components/svg/IconMarker.js +25 -0
  152. package/components/svg/IconMenu.js +25 -0
  153. package/components/svg/IconMenuHorizontal.js +25 -0
  154. package/components/svg/IconModule.js +25 -0
  155. package/components/svg/IconMyLocation.js +25 -0
  156. package/components/svg/IconNote.js +27 -0
  157. package/components/svg/IconNursery.js +27 -0
  158. package/components/svg/IconOrg.js +25 -0
  159. package/components/svg/IconParchment.js +25 -0
  160. package/components/svg/IconPhoto.js +25 -0
  161. package/components/svg/IconRedo.js +25 -0
  162. package/components/svg/IconRestorationSite.js +25 -0
  163. package/components/svg/IconSeedBank.js +25 -0
  164. package/components/svg/IconSeedling.js +25 -0
  165. package/components/svg/IconSettings.js +25 -0
  166. package/components/svg/IconSlice.js +25 -0
  167. package/components/svg/IconSubmit.js +25 -0
  168. package/components/svg/IconSubtract.js +27 -0
  169. package/components/svg/IconSynced.js +25 -0
  170. package/components/svg/IconTrashCan.js +25 -0
  171. package/components/svg/IconTreasureMap.js +25 -0
  172. package/components/svg/IconUndo.js +25 -0
  173. package/components/svg/IconVariable.js +25 -0
  174. package/components/svg/IconWifi.js +25 -0
  175. package/components/svg/Info.js +25 -0
  176. package/components/svg/Key.js +25 -0
  177. package/components/svg/Leaf.js +25 -0
  178. package/components/svg/Lock.js +25 -0
  179. package/components/svg/Logo.js +43 -0
  180. package/components/svg/MenuVertical.js +25 -0
  181. package/components/svg/Notification.js +25 -0
  182. package/components/svg/Person.js +25 -0
  183. package/components/svg/Plus.js +25 -0
  184. package/components/svg/RestorationSite.js +25 -0
  185. package/components/svg/Search.js +25 -0
  186. package/components/svg/Seeds.js +25 -0
  187. package/components/svg/Site.js +25 -0
  188. package/components/svg/Sparkles.js +25 -0
  189. package/components/svg/Species.js +25 -0
  190. package/components/svg/Species2.js +156 -0
  191. package/components/svg/Spinner.js +52 -0
  192. package/components/svg/Success.js +25 -0
  193. package/components/svg/SuccessFilled.js +25 -0
  194. package/components/svg/TerrawareLogoDesktop.js +49 -0
  195. package/components/svg/TerrawareLogoMobile.js +30 -0
  196. package/components/svg/Touchscreen.js +25 -0
  197. package/components/svg/UploadCloud.js +156 -0
  198. package/components/svg/Warning.js +25 -0
  199. package/components/svg/WelcomeClipboard.js +133 -0
  200. package/components/svg/index.js +832 -0
  201. package/components/table/EnhancedTableToolbar.js +76 -0
  202. package/components/table/EnhancedTableToolbarV2.js +49 -0
  203. package/components/table/TableCellRenderer.js +244 -0
  204. package/components/table/TableHeader.js +75 -0
  205. package/components/table/TableHeaderItem.js +100 -0
  206. package/components/table/density.js +28 -0
  207. package/components/table/index.js +346 -0
  208. package/components/table/sort.js +72 -0
  209. package/components/table/sort.test.js +37 -0
  210. package/components/table/types.js +5 -0
  211. package/components/types/index.js +5 -0
  212. package/fonts/Inter.ttf +0 -0
  213. package/index.css +11 -0
  214. package/index.js +377 -0
  215. package/package.json +2 -5
  216. package/setupTests.js +5 -0
  217. package/style-dictionary-dist/TerrawareTheme.js +193 -0
  218. package/style-dictionary-dist/terraware.scss +414 -0
  219. package/theme.js +86 -0
  220. package/utils/date.js +124 -0
  221. package/utils/date.test.js +87 -0
  222. package/utils/index.js +53 -0
  223. package/utils/preventDefaultEvent.js +8 -0
  224. package/utils/text.js +17 -0
  225. package/utils/text.test.js +23 -0
  226. package/utils/useDeviceInfo.js +85 -0
  227. package/index.cjs.js +0 -88606
  228. package/index.cjs.js.map +0 -1
  229. package/index.esm.js +0 -88533
  230. package/index.esm.js.map +0 -1
@@ -0,0 +1,156 @@
1
+ "use strict";
2
+
3
+ var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.default = void 0;
8
+ var React = _interopRequireWildcard(require("react"));
9
+ const SvgBlobbyIconSeedBank = _ref => {
10
+ let {
11
+ title,
12
+ titleId,
13
+ ...props
14
+ } = _ref;
15
+ return /*#__PURE__*/React.createElement("svg", Object.assign({
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ fill: "none",
18
+ viewBox: "0 0 200 128",
19
+ "aria-labelledby": titleId
20
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
21
+ id: titleId
22
+ }, title) : null, /*#__PURE__*/React.createElement("g", {
23
+ clipPath: "url(#blobby-icon-seed-bank_svg__a)"
24
+ }, /*#__PURE__*/React.createElement("path", {
25
+ fill: "#E2F6EC",
26
+ fillRule: "evenodd",
27
+ d: "M96.821 12.057c24.878-.65 53.949 4 61.596 27.683 7.623 23.607-13.691 43.746-33.873 58.171-19.515 13.948-44.256 25.396-64.012 11.791-20.912-14.4-24.98-43.182-16.134-66.982 7.796-20.98 30.05-30.078 52.423-30.663",
28
+ clipRule: "evenodd"
29
+ }), /*#__PURE__*/React.createElement("path", {
30
+ fill: "url(#blobby-icon-seed-bank_svg__b)",
31
+ fillOpacity: 0.2,
32
+ fillRule: "evenodd",
33
+ d: "M96.821 12.057c24.878-.65 53.949 4 61.596 27.683 7.623 23.607-13.691 43.746-33.873 58.171-19.515 13.948-44.256 25.396-64.012 11.791-20.912-14.4-24.98-43.182-16.134-66.982 7.796-20.98 30.05-30.078 52.423-30.663",
34
+ clipRule: "evenodd"
35
+ }), /*#__PURE__*/React.createElement("path", {
36
+ fill: "url(#blobby-icon-seed-bank_svg__c)",
37
+ d: "M56.999 34.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__*/React.createElement("path", {
39
+ fill: "url(#blobby-icon-seed-bank_svg__d)",
40
+ d: "M152.999 63.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-seed-bank_svg__e)",
43
+ d: "M84.999 92.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("mask", {
45
+ id: "blobby-icon-seed-bank_svg__g",
46
+ width: 200,
47
+ height: 128,
48
+ x: 0,
49
+ y: 0,
50
+ maskUnits: "userSpaceOnUse",
51
+ style: {
52
+ maskType: 'alpha'
53
+ }
54
+ }, /*#__PURE__*/React.createElement("path", {
55
+ fill: "#E2F6EC",
56
+ fillRule: "evenodd",
57
+ d: "M96.821 12.057c24.878-.65 53.949 4 61.596 27.683 7.623 23.607-13.691 43.746-33.873 58.171-19.515 13.948-44.256 25.396-64.012 11.791-20.912-14.4-24.98-43.182-16.134-66.982 7.796-20.98 30.05-30.078 52.423-30.663",
58
+ clipRule: "evenodd"
59
+ }), /*#__PURE__*/React.createElement("path", {
60
+ fill: "url(#blobby-icon-seed-bank_svg__f)",
61
+ fillOpacity: 0.2,
62
+ fillRule: "evenodd",
63
+ d: "M96.821 12.057c24.878-.65 53.949 4 61.596 27.683 7.623 23.607-13.691 43.746-33.873 58.171-19.515 13.948-44.256 25.396-64.012 11.791-20.912-14.4-24.98-43.182-16.134-66.982 7.796-20.98 30.05-30.078 52.423-30.663",
64
+ clipRule: "evenodd"
65
+ })), /*#__PURE__*/React.createElement("g", {
66
+ mask: "url(#blobby-icon-seed-bank_svg__g)"
67
+ }, /*#__PURE__*/React.createElement("path", {
68
+ fill: "url(#blobby-icon-seed-bank_svg__h)",
69
+ d: "m152.2 77.2-28.7-28.7-41.86 37.641L107.5 112z",
70
+ opacity: 0.25
71
+ })), /*#__PURE__*/React.createElement("path", {
72
+ fill: "#EAF3DC",
73
+ d: "M77.943 46.995c2.902-4.551 7.16-7.662 12.057-7.662 3.665 0 6.563.982 8.758 2.776 2.004 1.64 3.382 3.828 4.664 6.3 2.777-1.722 5.726-2.906 8.596-3.357 3.55-.557 6.976-.008 9.8 1.98 4.013 2.824 5.648 7.833 5.362 13.205-.287 5.372-2.42 11.293-6.219 16.69-3.81 5.41-8.742 9.37-13.768 11.401-4.446 1.796-9.106 2.079-12.901.167q-.133.07-.274.122a11.7 11.7 0 0 1-4.018.716c-4.898 0-9.155-3.11-12.057-7.661s-4.61-10.643-4.61-17.339 1.707-12.787 4.61-17.338"
74
+ }), /*#__PURE__*/React.createElement("path", {
75
+ fill: "#2C8658",
76
+ d: "M90 39.333c-4.898 0-9.155 3.11-12.057 7.662-2.903 4.55-4.61 10.642-4.61 17.338s1.707 12.788 4.61 17.339c2.902 4.55 7.16 7.661 12.057 7.661 1.385 0 2.74-.25 4.018-.716q.141-.051.274-.122c3.794 1.912 8.455 1.629 12.901-.167 5.026-2.03 9.958-5.99 13.768-11.4 3.799-5.398 5.932-11.32 6.219-16.691.286-5.372-1.349-10.38-5.362-13.206-2.824-1.987-6.25-2.536-9.8-1.979-2.87.45-5.819 1.635-8.596 3.357-1.282-2.472-2.66-4.66-4.664-6.3-2.195-1.794-5.093-2.776-8.758-2.776m0 4c3.002 0 4.76.673 6.227 1.873 1.444 1.18 2.646 3.048 3.921 5.575a35.4 35.4 0 0 0-6.442 6.959c-.558.791-.815 1.64-1.3 2.45-.697-3.132.591-5.08.591-5.08a2 2 0 1 0-3.328-2.22s-3.209 5.168-.125 11.337a2 2 0 0 0 .42.575c-1.362 3.26-2.312 6.526-2.477 9.628-.22 4.107.69 7.998 2.922 10.867-.137.007-.27.036-.41.036-3.202 0-6.278-2.039-8.684-5.812s-3.982-9.181-3.982-15.188c0-6.006 1.576-11.414 3.982-15.187s5.482-5.813 8.685-5.813m24.958 5.57q.715.025 1.386.139c1.189.203 2.264.621 3.172 1.26 2.61 1.838 3.907 5.263 3.669 9.721s-2.089 9.763-5.495 14.602c-3.397 4.825-7.815 8.306-11.995 9.995-4.179 1.688-7.933 1.582-10.544-.255-2.61-1.838-3.907-5.264-3.67-9.722.239-4.458 2.09-9.762 5.496-14.601 2.039-2.897 4.411-5.297 6.874-7.11 3.773-2.774 7.775-4.14 11.107-4.028m.344 3.068a2 2 0 0 0-1.93 2.422s.566 3.05 0 5.88c-.283 1.416-.83 2.69-1.703 3.563s-2.086 1.497-4.336 1.497c-3.386 0-5.99.989-7.721 2.633s-2.495 3.783-2.784 5.742c-.577 3.918.594 7.542.594 7.542a2 2 0 0 0 2.52 1.409 2 2 0 0 0 1.2-1.01 2 2 0 0 0 .103-1.566s-.866-3.043-.461-5.791c.202-1.375.682-2.57 1.583-3.425s2.316-1.534 4.966-1.534c3.084 0 5.537-1.042 7.164-2.669s2.414-3.686 2.797-5.604c.767-3.836 0-7.453 0-7.453a2 2 0 0 0-1.992-1.636"
77
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
78
+ id: "blobby-icon-seed-bank_svg__b",
79
+ x1: 125.5,
80
+ x2: 50,
81
+ y1: 101.5,
82
+ y2: 26,
83
+ gradientUnits: "userSpaceOnUse"
84
+ }, /*#__PURE__*/React.createElement("stop", {
85
+ stopColor: "#F1F0EC"
86
+ }), /*#__PURE__*/React.createElement("stop", {
87
+ offset: 1,
88
+ stopColor: "#84D6AC"
89
+ })), /*#__PURE__*/React.createElement("linearGradient", {
90
+ id: "blobby-icon-seed-bank_svg__c",
91
+ x1: 47,
92
+ x2: 57,
93
+ y1: 27,
94
+ y2: 42,
95
+ gradientUnits: "userSpaceOnUse"
96
+ }, /*#__PURE__*/React.createElement("stop", {
97
+ stopColor: "#2C8658"
98
+ }), /*#__PURE__*/React.createElement("stop", {
99
+ offset: 1,
100
+ stopColor: "#ACD278"
101
+ })), /*#__PURE__*/React.createElement("linearGradient", {
102
+ id: "blobby-icon-seed-bank_svg__d",
103
+ x1: 143,
104
+ x2: 153,
105
+ y1: 56,
106
+ y2: 71,
107
+ gradientUnits: "userSpaceOnUse"
108
+ }, /*#__PURE__*/React.createElement("stop", {
109
+ stopColor: "#2C8658"
110
+ }), /*#__PURE__*/React.createElement("stop", {
111
+ offset: 1,
112
+ stopColor: "#ACD278"
113
+ })), /*#__PURE__*/React.createElement("linearGradient", {
114
+ id: "blobby-icon-seed-bank_svg__e",
115
+ x1: 75,
116
+ x2: 85,
117
+ y1: 85,
118
+ y2: 100,
119
+ gradientUnits: "userSpaceOnUse"
120
+ }, /*#__PURE__*/React.createElement("stop", {
121
+ stopColor: "#2C8658"
122
+ }), /*#__PURE__*/React.createElement("stop", {
123
+ offset: 1,
124
+ stopColor: "#ACD278"
125
+ })), /*#__PURE__*/React.createElement("linearGradient", {
126
+ id: "blobby-icon-seed-bank_svg__f",
127
+ x1: 125.5,
128
+ x2: 50,
129
+ y1: 101.5,
130
+ y2: 26,
131
+ gradientUnits: "userSpaceOnUse"
132
+ }, /*#__PURE__*/React.createElement("stop", {
133
+ stopColor: "#F1F0EC"
134
+ }), /*#__PURE__*/React.createElement("stop", {
135
+ offset: 1,
136
+ stopColor: "#84D6AC"
137
+ })), /*#__PURE__*/React.createElement("linearGradient", {
138
+ id: "blobby-icon-seed-bank_svg__h",
139
+ x1: 100,
140
+ x2: 128.018,
141
+ y1: 67.84,
142
+ y2: 99.59,
143
+ gradientUnits: "userSpaceOnUse"
144
+ }, /*#__PURE__*/React.createElement("stop", {
145
+ stopColor: "#2C8658"
146
+ }), /*#__PURE__*/React.createElement("stop", {
147
+ offset: 1,
148
+ stopColor: "#ACD278"
149
+ })), /*#__PURE__*/React.createElement("clipPath", {
150
+ id: "blobby-icon-seed-bank_svg__a"
151
+ }, /*#__PURE__*/React.createElement("path", {
152
+ fill: "#fff",
153
+ d: "M0 0h200v128H0z"
154
+ }))));
155
+ };
156
+ var _default = exports.default = SvgBlobbyIconSeedBank;
@@ -0,0 +1,156 @@
1
+ "use strict";
2
+
3
+ var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.default = void 0;
8
+ var React = _interopRequireWildcard(require("react"));
9
+ const SvgBlobbyIconSeedling = _ref => {
10
+ let {
11
+ title,
12
+ titleId,
13
+ ...props
14
+ } = _ref;
15
+ return /*#__PURE__*/React.createElement("svg", Object.assign({
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ fill: "none",
18
+ viewBox: "0 0 200 128",
19
+ "aria-labelledby": titleId
20
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
21
+ id: titleId
22
+ }, title) : null, /*#__PURE__*/React.createElement("g", {
23
+ clipPath: "url(#blobby-icon-seedling_svg__a)"
24
+ }, /*#__PURE__*/React.createElement("path", {
25
+ fill: "#E2F6EC",
26
+ fillRule: "evenodd",
27
+ d: "M96.086 15.373c25.873-1.513 57.892.593 65.604 25.277 7.588 24.287-19.377 41.46-40.139 56.23-19.895 14.155-43.87 31.774-63.872 17.768-20.522-14.371-16.173-44.163-7.146-67.498 7.376-19.065 25.103-30.582 45.553-31.777",
28
+ clipRule: "evenodd"
29
+ }), /*#__PURE__*/React.createElement("path", {
30
+ fill: "url(#blobby-icon-seedling_svg__b)",
31
+ fillOpacity: 0.2,
32
+ fillRule: "evenodd",
33
+ d: "M96.086 15.373c25.873-1.513 57.892.593 65.604 25.277 7.588 24.287-19.377 41.46-40.139 56.23-19.895 14.155-43.87 31.774-63.872 17.768-20.522-14.371-16.173-44.163-7.146-67.498 7.376-19.065 25.103-30.582 45.553-31.777",
34
+ clipRule: "evenodd"
35
+ }), /*#__PURE__*/React.createElement("path", {
36
+ fill: "url(#blobby-icon-seedling_svg__c)",
37
+ 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"
38
+ }), /*#__PURE__*/React.createElement("path", {
39
+ fill: "url(#blobby-icon-seedling_svg__d)",
40
+ 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"
41
+ }), /*#__PURE__*/React.createElement("path", {
42
+ fill: "url(#blobby-icon-seedling_svg__e)",
43
+ 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"
44
+ }), /*#__PURE__*/React.createElement("mask", {
45
+ id: "blobby-icon-seedling_svg__g",
46
+ width: 200,
47
+ height: 128,
48
+ x: 0,
49
+ y: 0,
50
+ maskUnits: "userSpaceOnUse",
51
+ style: {
52
+ maskType: 'alpha'
53
+ }
54
+ }, /*#__PURE__*/React.createElement("path", {
55
+ fill: "#E2F6EC",
56
+ fillRule: "evenodd",
57
+ d: "M96.086 15.373c25.873-1.513 57.892.593 65.604 25.277 7.588 24.287-19.377 41.46-40.139 56.23-19.895 14.155-43.87 31.774-63.872 17.768-20.522-14.371-16.173-44.163-7.146-67.498 7.376-19.065 25.103-30.582 45.553-31.777",
58
+ clipRule: "evenodd"
59
+ }), /*#__PURE__*/React.createElement("path", {
60
+ fill: "url(#blobby-icon-seedling_svg__f)",
61
+ fillOpacity: 0.2,
62
+ fillRule: "evenodd",
63
+ d: "M96.086 15.373c25.873-1.513 57.892.593 65.604 25.277 7.588 24.287-19.377 41.46-40.139 56.23-19.895 14.155-43.87 31.774-63.872 17.768-20.522-14.371-16.173-44.163-7.146-67.498 7.376-19.065 25.103-30.582 45.553-31.777",
64
+ clipRule: "evenodd"
65
+ })), /*#__PURE__*/React.createElement("g", {
66
+ mask: "url(#blobby-icon-seedling_svg__g)"
67
+ }, /*#__PURE__*/React.createElement("path", {
68
+ fill: "url(#blobby-icon-seedling_svg__h)",
69
+ d: "m155.155 73.04-31.877-31.877L71.271 56.86l9.698 9.698-.492.774 14.47 14.47-8.29 7.7 23.21 23.21z",
70
+ opacity: 0.25
71
+ })), /*#__PURE__*/React.createElement("path", {
72
+ fill: "#EAF3DC",
73
+ d: "M84.823 37.427q.527-.065 1.052-.086c1.05-.042 2.094.046 3.104.271 2.52.561 4.77 2.131 6.263 4.471a2 2 0 0 1 .35.136c.69.185 1.877.589 3.156 1.867.479.48.835 1.344 1.252 2.042.417-.698.773-1.563 1.253-2.042 1.272-1.273 2.453-1.678 3.148-1.865l.005-.002q.17-.084.352-.136c1.493-2.34 3.743-3.91 6.263-4.471 2.694-.6 5.615-.22 8.32.995 5.41 2.43 9.992 8.361 9.992 16.86a1.99 1.99 0 0 1-1.068 1.769 2 2 0 0 1-2.064-.121c-1.494-1.027-3.202-.868-5.422-.248-2.221.62-4.543 1.8-7.162 1.8-3.112 0-6.249-1.29-8.427-3.677-1.06-1.087-2.162-2.326-3.19-3.49V64h16a2 2 0 1 1 0 4h-.878l-1.937 17.477c-.413 3.695-3.569 6.523-7.289 6.523h-15.79c-3.72 0-6.878-2.826-7.288-6.523L82.878 68H82a2 2 0 1 1 0-4h16V51.5c-2.357 2.576-2.206 2.48-3.19 3.49-2.177 2.387-5.315 3.677-8.427 3.677-2.619 0-4.941-1.18-7.162-1.8s-3.928-.779-5.421.248a2 2 0 0 1-3.133-1.649c0-8.498 4.582-14.428 9.992-16.86a14.5 14.5 0 0 1 4.164-1.179"
74
+ }), /*#__PURE__*/React.createElement("path", {
75
+ fill: "#2C8658",
76
+ d: "M85.875 37.341q-.524.021-1.052.086a14.5 14.5 0 0 0-4.164 1.18c-5.41 2.43-9.992 8.361-9.992 16.86a2.001 2.001 0 0 0 3.133 1.648c1.493-1.027 3.201-.868 5.421-.248s4.543 1.8 7.162 1.8c3.112 0 6.25-1.29 8.427-3.677a2.001 2.001 0 1 0-2.953-2.696c-1.332 1.46-3.52 2.373-5.474 2.373-1.123 0-3.474-.922-6.086-1.651-1.584-.443-3.412-.705-5.247-.461.87-5.31 3.857-8.776 7.25-10.3 1.999-.898 4.081-1.125 5.81-.74.47.105.842.357 1.257.545-4.802.942-7.552 3.971-7.552 3.971a2 2 0 1 0 3.037 2.604s3.059-3.83 9.458-2.666q.054.009.11.015s.579.01 1.5.93c.92.92 2.08 2.8 2.08 7.086v10H82a2 2 0 1 0 0 4h.878l1.94 17.477c.41 3.697 3.568 6.523 7.289 6.523h15.789c3.72 0 6.876-2.828 7.289-6.523L117.122 68H118a2 2 0 1 0 0-4h-16V54c0-4.286 1.16-6.165 2.081-7.086.92-.92 1.496-.93 1.497-.93h.003l.109-.015c6.399-1.164 9.459 2.666 9.459 2.666a1.996 1.996 0 0 0 2.832.231 2 2 0 0 0 .693-1.375 2 2 0 0 0-.489-1.46s-2.75-3.03-7.552-3.971c.415-.188.788-.44 1.258-.544 1.728-.386 3.81-.16 5.81.74 3.392 1.523 6.379 4.989 7.25 10.299-1.835-.244-3.664.018-5.248.46-2.611.73-4.963 1.652-6.086 1.652-1.954 0-4.142-.912-5.474-2.373a1.995 1.995 0 0 0-2.186-.587 2 2 0 0 0-1.334 1.828 1.997 1.997 0 0 0 .567 1.455c2.178 2.387 5.315 3.677 8.427 3.677 2.619 0 4.941-1.18 7.162-1.8s3.928-.779 5.422.248a1.998 1.998 0 0 0 3.132-1.649c0-8.498-4.582-14.428-9.992-16.86-2.705-1.215-5.626-1.594-8.32-.994-2.52.561-4.77 2.131-6.263 4.471a2 2 0 0 0-.357.138c-.695.187-1.876.592-3.148 1.865-.48.48-.836 1.344-1.253 2.042-.417-.698-.773-1.563-1.252-2.042-1.279-1.278-2.466-1.682-3.157-1.867a2 2 0 0 0-.349-.136c-1.493-2.34-3.743-3.91-6.263-4.471a12 12 0 0 0-3.104-.27M86.901 68h12.771c.215.035.434.035.648 0h12.779l-1.891 17.034A3.31 3.31 0 0 1 107.896 88h-15.79a3.306 3.306 0 0 1-3.312-2.964v-.002z"
77
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
78
+ id: "blobby-icon-seedling_svg__b",
79
+ x1: 134,
80
+ x2: 81.938,
81
+ y1: 98.5,
82
+ y2: 16.32,
83
+ gradientUnits: "userSpaceOnUse"
84
+ }, /*#__PURE__*/React.createElement("stop", {
85
+ stopColor: "#F1F0EC"
86
+ }), /*#__PURE__*/React.createElement("stop", {
87
+ offset: 1,
88
+ stopColor: "#84D6AC"
89
+ })), /*#__PURE__*/React.createElement("linearGradient", {
90
+ id: "blobby-icon-seedling_svg__c",
91
+ x1: 137,
92
+ x2: 147,
93
+ y1: 93,
94
+ y2: 108,
95
+ gradientUnits: "userSpaceOnUse"
96
+ }, /*#__PURE__*/React.createElement("stop", {
97
+ stopColor: "#2C8658"
98
+ }), /*#__PURE__*/React.createElement("stop", {
99
+ offset: 1,
100
+ stopColor: "#ACD278"
101
+ })), /*#__PURE__*/React.createElement("linearGradient", {
102
+ id: "blobby-icon-seedling_svg__d",
103
+ x1: 78,
104
+ x2: 88,
105
+ y1: 18,
106
+ y2: 33,
107
+ gradientUnits: "userSpaceOnUse"
108
+ }, /*#__PURE__*/React.createElement("stop", {
109
+ stopColor: "#2C8658"
110
+ }), /*#__PURE__*/React.createElement("stop", {
111
+ offset: 1,
112
+ stopColor: "#ACD278"
113
+ })), /*#__PURE__*/React.createElement("linearGradient", {
114
+ id: "blobby-icon-seedling_svg__e",
115
+ x1: 54,
116
+ x2: 64,
117
+ y1: 69,
118
+ y2: 84,
119
+ gradientUnits: "userSpaceOnUse"
120
+ }, /*#__PURE__*/React.createElement("stop", {
121
+ stopColor: "#2C8658"
122
+ }), /*#__PURE__*/React.createElement("stop", {
123
+ offset: 1,
124
+ stopColor: "#ACD278"
125
+ })), /*#__PURE__*/React.createElement("linearGradient", {
126
+ id: "blobby-icon-seedling_svg__f",
127
+ x1: 134,
128
+ x2: 81.938,
129
+ y1: 98.5,
130
+ y2: 16.32,
131
+ gradientUnits: "userSpaceOnUse"
132
+ }, /*#__PURE__*/React.createElement("stop", {
133
+ stopColor: "#F1F0EC"
134
+ }), /*#__PURE__*/React.createElement("stop", {
135
+ offset: 1,
136
+ stopColor: "#84D6AC"
137
+ })), /*#__PURE__*/React.createElement("linearGradient", {
138
+ id: "blobby-icon-seedling_svg__h",
139
+ x1: 81.801,
140
+ x2: 124.962,
141
+ y1: 49.5,
142
+ y2: 104.019,
143
+ gradientUnits: "userSpaceOnUse"
144
+ }, /*#__PURE__*/React.createElement("stop", {
145
+ stopColor: "#2C8658"
146
+ }), /*#__PURE__*/React.createElement("stop", {
147
+ offset: 1,
148
+ stopColor: "#ACD278"
149
+ })), /*#__PURE__*/React.createElement("clipPath", {
150
+ id: "blobby-icon-seedling_svg__a"
151
+ }, /*#__PURE__*/React.createElement("path", {
152
+ fill: "#fff",
153
+ d: "M0 0h200v128H0z"
154
+ }))));
155
+ };
156
+ var _default = exports.default = SvgBlobbyIconSeedling;
@@ -0,0 +1,156 @@
1
+ "use strict";
2
+
3
+ var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.default = void 0;
8
+ var React = _interopRequireWildcard(require("react"));
9
+ const SvgBlobbyIconSeeds = _ref => {
10
+ let {
11
+ title,
12
+ titleId,
13
+ ...props
14
+ } = _ref;
15
+ return /*#__PURE__*/React.createElement("svg", Object.assign({
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ fill: "none",
18
+ viewBox: "0 0 200 128",
19
+ "aria-labelledby": titleId
20
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
21
+ id: titleId
22
+ }, title) : null, /*#__PURE__*/React.createElement("g", {
23
+ clipPath: "url(#blobby-icon-seeds_svg__a)"
24
+ }, /*#__PURE__*/React.createElement("path", {
25
+ fill: "#E2F6EC",
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__*/React.createElement("path", {
30
+ fill: "url(#blobby-icon-seeds_svg__b)",
31
+ fillOpacity: 0.2,
32
+ fillRule: "evenodd",
33
+ 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",
34
+ clipRule: "evenodd"
35
+ }), /*#__PURE__*/React.createElement("path", {
36
+ fill: "url(#blobby-icon-seeds_svg__c)",
37
+ 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"
38
+ }), /*#__PURE__*/React.createElement("path", {
39
+ fill: "url(#blobby-icon-seeds_svg__d)",
40
+ 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"
41
+ }), /*#__PURE__*/React.createElement("path", {
42
+ fill: "url(#blobby-icon-seeds_svg__e)",
43
+ 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"
44
+ }), /*#__PURE__*/React.createElement("mask", {
45
+ id: "blobby-icon-seeds_svg__g",
46
+ width: 200,
47
+ height: 128,
48
+ x: 0,
49
+ y: 0,
50
+ maskUnits: "userSpaceOnUse",
51
+ style: {
52
+ maskType: 'alpha'
53
+ }
54
+ }, /*#__PURE__*/React.createElement("path", {
55
+ fill: "#E2F6EC",
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
+ }), /*#__PURE__*/React.createElement("path", {
60
+ fill: "url(#blobby-icon-seeds_svg__f)",
61
+ fillOpacity: 0.2,
62
+ fillRule: "evenodd",
63
+ 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",
64
+ clipRule: "evenodd"
65
+ })), /*#__PURE__*/React.createElement("g", {
66
+ mask: "url(#blobby-icon-seeds_svg__g)"
67
+ }, /*#__PURE__*/React.createElement("path", {
68
+ fill: "url(#blobby-icon-seeds_svg__h)",
69
+ d: "M164.752 94.247 123 52.494 109.5 63.5 92 46 76 58l7.93 8.17V80.09L129 125.158z",
70
+ opacity: 0.25
71
+ })), /*#__PURE__*/React.createElement("path", {
72
+ fill: "#EAF3DC",
73
+ d: "M84 42.667c-5.701 0-10.667 4.005-10.667 9.333S78.3 61.333 84 61.333 94.667 57.328 94.667 52 89.7 42.667 84 42.667m30.471 5.974c-2.225.037-4.365.836-6.013 2.484-3.767 3.767-3.088 10.11.943 14.14 4.031 4.032 10.374 4.71 14.141.943s3.088-10.11-.943-14.14c-2.268-2.268-5.267-3.476-8.128-3.427M89.508 63.763c-3.66.036-7.05 1.835-8.56 5.172-2.196 4.854.675 10.551 5.87 12.9 2.05.928 4.251 1.23 6.302.97C94.905 85.984 98.56 88 102.667 88c5.701 0 10.666-4.005 10.666-9.333s-4.965-9.334-10.666-9.334c-.967 0-1.903.126-2.8.339-1.146-2.038-3.01-3.784-5.354-4.844a11.9 11.9 0 0 0-5.005-1.065"
74
+ }), /*#__PURE__*/React.createElement("path", {
75
+ fill: "#2C8658",
76
+ d: "M84 42.667c-5.701 0-10.667 4.005-10.667 9.333S78.3 61.333 84 61.333 94.667 57.328 94.667 52 89.7 42.667 84 42.667m0 4c3.872 0 6.667 2.56 6.667 5.333S87.872 57.333 84 57.333s-6.667-2.56-6.667-5.333 2.795-5.333 6.667-5.333m30.471 1.974c-2.225.037-4.365.836-6.013 2.484-3.767 3.767-3.088 10.11.943 14.14 4.031 4.032 10.374 4.71 14.141.943s3.088-10.11-.943-14.14c-2.268-2.268-5.267-3.476-8.128-3.427m.766 4.02c1.534.139 3.165.866 4.534 2.235 2.738 2.738 2.903 6.524.942 8.484-1.96 1.96-5.746 1.795-8.484-.943s-2.903-6.523-.943-8.484c.981-.98 2.417-1.43 3.951-1.292m-25.73 11.102c-3.659.036-7.05 1.835-8.56 5.172-2.195 4.854.676 10.551 5.87 12.9 2.05.928 4.252 1.23 6.303.97C94.905 85.984 98.56 88 102.667 88c5.701 0 10.666-4.005 10.666-9.333s-4.965-9.334-10.666-9.334c-.967 0-1.903.126-2.8.339-1.146-2.038-3.01-3.784-5.354-4.844a11.9 11.9 0 0 0-5.005-1.065m-.51 4.01c1.21-.107 2.545.103 3.868.7 3.527 1.597 5.017 5.082 3.875 7.608s-4.744 3.705-8.271 2.11c-3.528-1.597-5.02-5.082-3.878-7.608.714-1.579 2.39-2.631 4.406-2.81m13.67 5.56c3.872 0 6.666 2.56 6.666 5.334S106.539 84 102.667 84c-2.447 0-4.488-1.082-5.636-2.531 1.436-.87 2.621-2.119 3.354-3.74a8.34 8.34 0 0 0 .696-4.237 8 8 0 0 1 1.586-.159"
77
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
78
+ id: "blobby-icon-seeds_svg__b",
79
+ x1: 139.5,
80
+ x2: 52.354,
81
+ y1: 110,
82
+ y2: 24.156,
83
+ gradientUnits: "userSpaceOnUse"
84
+ }, /*#__PURE__*/React.createElement("stop", {
85
+ stopColor: "#F1F0EC"
86
+ }), /*#__PURE__*/React.createElement("stop", {
87
+ offset: 1,
88
+ stopColor: "#84D6AC"
89
+ })), /*#__PURE__*/React.createElement("linearGradient", {
90
+ id: "blobby-icon-seeds_svg__c",
91
+ x1: 137,
92
+ x2: 147,
93
+ y1: 93,
94
+ y2: 108,
95
+ gradientUnits: "userSpaceOnUse"
96
+ }, /*#__PURE__*/React.createElement("stop", {
97
+ stopColor: "#2C8658"
98
+ }), /*#__PURE__*/React.createElement("stop", {
99
+ offset: 1,
100
+ stopColor: "#ACD278"
101
+ })), /*#__PURE__*/React.createElement("linearGradient", {
102
+ id: "blobby-icon-seeds_svg__d",
103
+ x1: 78,
104
+ x2: 88,
105
+ y1: 18,
106
+ y2: 33,
107
+ gradientUnits: "userSpaceOnUse"
108
+ }, /*#__PURE__*/React.createElement("stop", {
109
+ stopColor: "#2C8658"
110
+ }), /*#__PURE__*/React.createElement("stop", {
111
+ offset: 1,
112
+ stopColor: "#ACD278"
113
+ })), /*#__PURE__*/React.createElement("linearGradient", {
114
+ id: "blobby-icon-seeds_svg__e",
115
+ x1: 54,
116
+ x2: 64,
117
+ y1: 69,
118
+ y2: 84,
119
+ gradientUnits: "userSpaceOnUse"
120
+ }, /*#__PURE__*/React.createElement("stop", {
121
+ stopColor: "#2C8658"
122
+ }), /*#__PURE__*/React.createElement("stop", {
123
+ offset: 1,
124
+ stopColor: "#ACD278"
125
+ })), /*#__PURE__*/React.createElement("linearGradient", {
126
+ id: "blobby-icon-seeds_svg__f",
127
+ x1: 139.5,
128
+ x2: 52.354,
129
+ y1: 110,
130
+ y2: 24.156,
131
+ gradientUnits: "userSpaceOnUse"
132
+ }, /*#__PURE__*/React.createElement("stop", {
133
+ stopColor: "#F1F0EC"
134
+ }), /*#__PURE__*/React.createElement("stop", {
135
+ offset: 1,
136
+ stopColor: "#84D6AC"
137
+ })), /*#__PURE__*/React.createElement("linearGradient", {
138
+ id: "blobby-icon-seeds_svg__h",
139
+ x1: 82.375,
140
+ x2: 138.217,
141
+ y1: 53,
142
+ y2: 117.435,
143
+ gradientUnits: "userSpaceOnUse"
144
+ }, /*#__PURE__*/React.createElement("stop", {
145
+ stopColor: "#2C8658"
146
+ }), /*#__PURE__*/React.createElement("stop", {
147
+ offset: 1,
148
+ stopColor: "#ACD278"
149
+ })), /*#__PURE__*/React.createElement("clipPath", {
150
+ id: "blobby-icon-seeds_svg__a"
151
+ }, /*#__PURE__*/React.createElement("path", {
152
+ fill: "#fff",
153
+ d: "M0 0h200v128H0z"
154
+ }))));
155
+ };
156
+ var _default = exports.default = SvgBlobbyIconSeeds;
@@ -0,0 +1,159 @@
1
+ "use strict";
2
+
3
+ var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.default = void 0;
8
+ var React = _interopRequireWildcard(require("react"));
9
+ const SvgBlobbyIconSite = _ref => {
10
+ let {
11
+ title,
12
+ titleId,
13
+ ...props
14
+ } = _ref;
15
+ return /*#__PURE__*/React.createElement("svg", Object.assign({
16
+ xmlns: "http://www.w3.org/2000/svg",
17
+ fill: "none",
18
+ viewBox: "0 0 200 128",
19
+ "aria-labelledby": titleId
20
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
21
+ id: titleId
22
+ }, title) : null, /*#__PURE__*/React.createElement("g", {
23
+ clipPath: "url(#blobby-icon-site_svg__a)"
24
+ }, /*#__PURE__*/React.createElement("path", {
25
+ fill: "#E2F6EC",
26
+ fillRule: "evenodd",
27
+ d: "M96.821 12.057c24.878-.65 53.949 4 61.596 27.683 7.623 23.607-13.691 43.746-33.873 58.171-19.515 13.948-44.256 25.396-64.012 11.791-20.912-14.4-24.98-43.182-16.134-66.982 7.796-20.98 30.05-30.078 52.423-30.663",
28
+ clipRule: "evenodd"
29
+ }), /*#__PURE__*/React.createElement("path", {
30
+ fill: "url(#blobby-icon-site_svg__b)",
31
+ fillOpacity: 0.2,
32
+ fillRule: "evenodd",
33
+ d: "M96.821 12.057c24.878-.65 53.949 4 61.596 27.683 7.623 23.607-13.691 43.746-33.873 58.171-19.515 13.948-44.256 25.396-64.012 11.791-20.912-14.4-24.98-43.182-16.134-66.982 7.796-20.98 30.05-30.078 52.423-30.663",
34
+ clipRule: "evenodd"
35
+ }), /*#__PURE__*/React.createElement("path", {
36
+ fill: "url(#blobby-icon-site_svg__c)",
37
+ 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"
38
+ }), /*#__PURE__*/React.createElement("path", {
39
+ fill: "url(#blobby-icon-site_svg__d)",
40
+ 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"
41
+ }), /*#__PURE__*/React.createElement("path", {
42
+ fill: "url(#blobby-icon-site_svg__e)",
43
+ 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"
44
+ }), /*#__PURE__*/React.createElement("mask", {
45
+ id: "blobby-icon-site_svg__g",
46
+ width: 200,
47
+ height: 128,
48
+ x: 0,
49
+ y: 0,
50
+ maskUnits: "userSpaceOnUse",
51
+ style: {
52
+ maskType: 'alpha'
53
+ }
54
+ }, /*#__PURE__*/React.createElement("path", {
55
+ fill: "#E2F6EC",
56
+ fillRule: "evenodd",
57
+ d: "M96.821 12.057c24.878-.65 53.949 4 61.596 27.683 7.623 23.607-13.691 43.746-33.873 58.171-19.515 13.948-44.256 25.396-64.012 11.791-20.912-14.4-24.98-43.182-16.134-66.982 7.796-20.98 30.05-30.078 52.423-30.663",
58
+ clipRule: "evenodd"
59
+ }), /*#__PURE__*/React.createElement("path", {
60
+ fill: "url(#blobby-icon-site_svg__f)",
61
+ fillOpacity: 0.2,
62
+ fillRule: "evenodd",
63
+ d: "M96.821 12.057c24.878-.65 53.949 4 61.596 27.683 7.623 23.607-13.691 43.746-33.873 58.171-19.515 13.948-44.256 25.396-64.012 11.791-20.912-14.4-24.98-43.182-16.134-66.982 7.796-20.98 30.05-30.078 52.423-30.663",
64
+ clipRule: "evenodd"
65
+ })), /*#__PURE__*/React.createElement("g", {
66
+ mask: "url(#blobby-icon-site_svg__g)"
67
+ }, /*#__PURE__*/React.createElement("path", {
68
+ fill: "url(#blobby-icon-site_svg__h)",
69
+ d: "m146.963 80.963-33.638-33.638L94.5 74.5 77.5 88l27.5 27.5z",
70
+ opacity: 0.25
71
+ })), /*#__PURE__*/React.createElement("path", {
72
+ fill: "#EAF3DC",
73
+ d: "M99.999 40c-8.813 0-16 7.187-16 16 0 3.943 2.338 8.328 4.99 12.688a99 99 0 0 0 3.02 4.645 140 140 0 0 0 4.633 6.326c1.67 2.151 5.044 2.151 6.714 0a140 140 0 0 0 4.634-6.326 100 100 0 0 0 3.019-4.645c2.652-4.36 4.99-8.745 4.99-12.688 0-8.813-7.187-16-16-16"
74
+ }), /*#__PURE__*/React.createElement("path", {
75
+ fill: "#EAF3DC",
76
+ d: "M103.356 79.659c-1.67 2.151-5.044 2.151-6.714 0a140 140 0 0 1-4.634-6.326h-8.376a4.67 4.67 0 0 0-4.266 2.771l-2.96 6.667a4.65 4.65 0 0 0 .348 4.437 4.65 4.65 0 0 0 3.914 2.125h38.659c1.585 0 3.05-.794 3.914-2.125a4.65 4.65 0 0 0 .352-4.437l-2.961-6.667a4.67 4.67 0 0 0-4.266-2.77h-8.376a140 140 0 0 1-4.634 6.325"
77
+ }), /*#__PURE__*/React.createElement("path", {
78
+ fill: "#2C8658",
79
+ d: "M99.999 40c-8.813 0-16 7.187-16 16 0 3.943 2.338 8.328 4.99 12.688 2.651 4.359 5.742 8.507 7.653 10.97 1.67 2.152 5.044 2.152 6.714 0 1.911-2.463 5.002-6.611 7.653-10.97 2.652-4.36 4.99-8.745 4.99-12.688 0-8.813-7.187-16-16-16m0 4c6.651 0 12 5.349 12 12 0 2.067-1.89 6.469-4.409 10.61-2.518 4.14-5.539 8.205-7.396 10.598-.133.171-.258.171-.39 0-1.857-2.393-4.878-6.458-7.396-10.599-2.519-4.14-4.409-8.542-4.409-10.609 0-6.651 5.349-12 12-12m0 8a4 4 0 1 0 0 8 4 4 0 0 0 0-8M83.632 73.333a4.67 4.67 0 0 0-4.266 2.771l-2.96 6.667a4.65 4.65 0 0 0 .348 4.437 4.65 4.65 0 0 0 3.914 2.125h38.659c1.585 0 3.05-.794 3.914-2.125a4.65 4.65 0 0 0 .352-4.437l-2.961-6.667a4.67 4.67 0 0 0-4.266-2.77h-4.341a119 119 0 0 1-2.766 4h7.107c.263 0 .503.154.61.395l2.96 6.667a.65.65 0 0 1-.049.635.65.65 0 0 1-.557.302H80.668a.65.65 0 0 1-.56-.304.65.65 0 0 1-.05-.633l2.964-6.667a.67.67 0 0 1 .61-.396h7.104a116 116 0 0 1-2.763-4z"
80
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
81
+ id: "blobby-icon-site_svg__b",
82
+ x1: 125.5,
83
+ x2: 50,
84
+ y1: 101.5,
85
+ y2: 26,
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-site_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-site_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-site_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-site_svg__f",
130
+ x1: 125.5,
131
+ x2: 50,
132
+ y1: 101.5,
133
+ y2: 26,
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-site_svg__h",
142
+ x1: 94.5,
143
+ x2: 126.628,
144
+ y1: 70.114,
145
+ y2: 100.721,
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-site_svg__a"
154
+ }, /*#__PURE__*/React.createElement("path", {
155
+ fill: "#fff",
156
+ d: "M0 0h200v128H0z"
157
+ }))));
158
+ };
159
+ var _default = exports.default = SvgBlobbyIconSite;