@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 SvgBlobbyIconHappy = _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-happy_svg__a)"
24
+ }, /*#__PURE__*/React.createElement("path", {
25
+ fill: "#E2F6EC",
26
+ fillRule: "evenodd",
27
+ d: "M97.492 4.026c24.033-.76 45.335 14.966 53.284 37.66 8.572 24.47 4.488 52.73-16.101 68.491-22.132 16.943-53.93 19.23-75.615 1.718C39.75 96.3 45.34 68.141 53.67 44.76c7.4-20.77 21.784-40.036 43.822-40.734",
28
+ clipRule: "evenodd"
29
+ }), /*#__PURE__*/React.createElement("path", {
30
+ fill: "url(#blobby-icon-happy_svg__b)",
31
+ fillOpacity: 0.2,
32
+ fillRule: "evenodd",
33
+ d: "M97.492 4.026c24.033-.76 45.335 14.966 53.284 37.66 8.572 24.47 4.488 52.73-16.101 68.491-22.132 16.943-53.93 19.23-75.615 1.718C39.75 96.3 45.34 68.141 53.67 44.76c7.4-20.77 21.784-40.036 43.822-40.734",
34
+ clipRule: "evenodd"
35
+ }), /*#__PURE__*/React.createElement("path", {
36
+ fill: "url(#blobby-icon-happy_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-happy_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-happy_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-happy_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: "M97.492 4.026c24.033-.76 45.335 14.966 53.284 37.66 8.572 24.47 4.488 52.73-16.101 68.491-22.132 16.943-53.93 19.23-75.615 1.718C39.75 96.3 45.34 68.141 53.67 44.76c7.4-20.77 21.784-40.036 43.822-40.734",
58
+ clipRule: "evenodd"
59
+ }), /*#__PURE__*/React.createElement("path", {
60
+ fill: "url(#blobby-icon-happy_svg__f)",
61
+ fillOpacity: 0.2,
62
+ fillRule: "evenodd",
63
+ d: "M97.492 4.026c24.033-.76 45.335 14.966 53.284 37.66 8.572 24.47 4.488 52.73-16.101 68.491-22.132 16.943-53.93 19.23-75.615 1.718C39.75 96.3 45.34 68.141 53.67 44.76c7.4-20.77 21.784-40.036 43.822-40.734",
64
+ clipRule: "evenodd"
65
+ })), /*#__PURE__*/React.createElement("g", {
66
+ mask: "url(#blobby-icon-happy_svg__g)"
67
+ }, /*#__PURE__*/React.createElement("path", {
68
+ fill: "url(#blobby-icon-happy_svg__h)",
69
+ d: "M160.321 86.616 119.614 45.91 82.227 83.856l40.229 40.229z",
70
+ opacity: 0.25
71
+ })), /*#__PURE__*/React.createElement("path", {
72
+ fill: "#EAF3DC",
73
+ d: "M73.333 64c0-14.704 11.963-26.667 26.667-26.667S126.667 49.296 126.667 64 114.704 90.667 100 90.667 73.333 78.704 73.333 64"
74
+ }), /*#__PURE__*/React.createElement("path", {
75
+ fill: "#2C8658",
76
+ d: "M100 37.333c-14.704 0-26.667 11.963-26.667 26.667S85.296 90.667 100 90.667 126.667 78.704 126.667 64 114.704 37.333 100 37.333m0 4c12.542 0 22.667 10.125 22.667 22.667S112.542 86.667 100 86.667 77.333 76.542 77.333 64 87.458 41.333 100 41.333M92 54a3.333 3.333 0 1 0 0 6.667A3.333 3.333 0 0 0 92 54m16 0a3.333 3.333 0 1 0 0 6.666A3.333 3.333 0 0 0 108 54M89.031 69.313a2.001 2.001 0 0 0-1.588 3.257A15.96 15.96 0 0 0 100 78.667c5.076 0 9.631-2.379 12.557-6.097a2 2 0 0 0 .433-1.481 2.005 2.005 0 0 0-1.453-1.704 2 2 0 0 0-2.123.711 11.93 11.93 0 0 1-9.414 4.57c-3.83 0-7.22-1.781-9.414-4.57a2 2 0 0 0-1.555-.784"
77
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
78
+ id: "blobby-icon-happy_svg__b",
79
+ x1: 133,
80
+ x2: 49.23,
81
+ y1: 114,
82
+ y2: 31.784,
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-happy_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-happy_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-happy_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-happy_svg__f",
127
+ x1: 133,
128
+ x2: 49.23,
129
+ y1: 114,
130
+ y2: 31.784,
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-happy_svg__h",
139
+ x1: 97.5,
140
+ x2: 143.326,
141
+ y1: 65.521,
142
+ y2: 107.483,
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-happy_svg__a"
151
+ }, /*#__PURE__*/React.createElement("path", {
152
+ fill: "#fff",
153
+ d: "M0 0h200v128H0z"
154
+ }))));
155
+ };
156
+ var _default = exports.default = SvgBlobbyIconHappy;
@@ -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 SvgBlobbyIconHeartMonitor = _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-heart-monitor_svg__a)"
24
+ }, /*#__PURE__*/React.createElement("path", {
25
+ fill: "#E2F6EC",
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__*/React.createElement("path", {
30
+ fill: "url(#blobby-icon-heart-monitor_svg__b)",
31
+ fillOpacity: 0.2,
32
+ fillRule: "evenodd",
33
+ 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",
34
+ clipRule: "evenodd"
35
+ }), /*#__PURE__*/React.createElement("path", {
36
+ fill: "url(#blobby-icon-heart-monitor_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-heart-monitor_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-heart-monitor_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-heart-monitor_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.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
+ }), /*#__PURE__*/React.createElement("path", {
60
+ fill: "url(#blobby-icon-heart-monitor_svg__f)",
61
+ fillOpacity: 0.2,
62
+ fillRule: "evenodd",
63
+ 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",
64
+ clipRule: "evenodd"
65
+ })), /*#__PURE__*/React.createElement("g", {
66
+ mask: "url(#blobby-icon-heart-monitor_svg__g)"
67
+ }, /*#__PURE__*/React.createElement("path", {
68
+ fill: "url(#blobby-icon-heart-monitor_svg__h)",
69
+ d: "M159.7 77.7 125 43 75.64 85.641 107.5 117.5z",
70
+ opacity: 0.25
71
+ })), /*#__PURE__*/React.createElement("path", {
72
+ fill: "#EAF3DC",
73
+ 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"
74
+ }), /*#__PURE__*/React.createElement("path", {
75
+ fill: "#2C8658",
76
+ 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"
77
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
78
+ id: "blobby-icon-heart-monitor_svg__b",
79
+ x1: 126.5,
80
+ x2: 50,
81
+ y1: 104,
82
+ y2: 27.5,
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-heart-monitor_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-heart-monitor_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-heart-monitor_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-heart-monitor_svg__f",
127
+ x1: 126.5,
128
+ x2: 50,
129
+ y1: 104,
130
+ y2: 27.5,
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-heart-monitor_svg__h",
139
+ x1: 96.5,
140
+ x2: 130.831,
141
+ y1: 64.048,
142
+ y2: 104.17,
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-heart-monitor_svg__a"
151
+ }, /*#__PURE__*/React.createElement("path", {
152
+ fill: "#fff",
153
+ d: "M0 0h200v128H0z"
154
+ }))));
155
+ };
156
+ var _default = exports.default = SvgBlobbyIconHeartMonitor;
@@ -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 SvgBlobbyIconLeaf = _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-leaf_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-leaf_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-leaf_svg__c)",
37
+ 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"
38
+ }), /*#__PURE__*/React.createElement("path", {
39
+ fill: "url(#blobby-icon-leaf_svg__d)",
40
+ 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"
41
+ }), /*#__PURE__*/React.createElement("path", {
42
+ fill: "url(#blobby-icon-leaf_svg__e)",
43
+ 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"
44
+ }), /*#__PURE__*/React.createElement("mask", {
45
+ id: "blobby-icon-leaf_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-leaf_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-leaf_svg__g)"
67
+ }, /*#__PURE__*/React.createElement("path", {
68
+ fill: "url(#blobby-icon-leaf_svg__h)",
69
+ d: "m162.332 85.1-47.037-47.036L93.5 81.5l-15.606 8.552 40.23 40.23z",
70
+ opacity: 0.25
71
+ })), /*#__PURE__*/React.createElement("path", {
72
+ fill: "#EAF3DC",
73
+ 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"
74
+ }), /*#__PURE__*/React.createElement("path", {
75
+ fill: "#2C8658",
76
+ 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"
77
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
78
+ id: "blobby-icon-leaf_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-leaf_svg__c",
91
+ x1: 99,
92
+ x2: 109,
93
+ y1: 99,
94
+ y2: 114,
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-leaf_svg__d",
103
+ x1: 133,
104
+ x2: 143,
105
+ y1: 12,
106
+ y2: 27,
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-leaf_svg__e",
115
+ x1: 57,
116
+ x2: 67,
117
+ y1: 35,
118
+ y2: 50,
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-leaf_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-leaf_svg__h",
139
+ x1: 93.085,
140
+ x2: 148.602,
141
+ y1: 59.755,
142
+ y2: 102.372,
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-leaf_svg__a"
151
+ }, /*#__PURE__*/React.createElement("path", {
152
+ fill: "#fff",
153
+ d: "M0 0h200v128H0z"
154
+ }))));
155
+ };
156
+ var _default = exports.default = SvgBlobbyIconLeaf;
@@ -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 SvgBlobbyIconLibrary = _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-library_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-library_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-library_svg__c)",
37
+ d: "M144.999 66.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-library_svg__d)",
40
+ d: "M70.999 23.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-library_svg__e)",
43
+ d: "M64.999 103.449h-.02c-2.75 0-4.98-3.33-4.999-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"
44
+ }), /*#__PURE__*/React.createElement("mask", {
45
+ id: "blobby-icon-library_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-library_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-library_svg__g)"
67
+ }, /*#__PURE__*/React.createElement("path", {
68
+ fill: "url(#blobby-icon-library_svg__h)",
69
+ d: "m164.713 81.886-38.652-38.652-52.09 44.232 42.362 42.36z",
70
+ opacity: 0.25
71
+ })), /*#__PURE__*/React.createElement("path", {
72
+ fill: "#EAF3DC",
73
+ d: "M82 38.667a2 2 0 0 0-2 2v2h-4.667a2 2 0 0 0-2 2V86a2 2 0 0 0 2 2h49.334a2 2 0 0 0 2-2V44.667a2 2 0 0 0-2-2H120v-2a2 2 0 0 0-2-2h-10c-3.35 0-6.183 1.777-8 4.325-1.817-2.548-4.65-4.325-8-4.325z"
74
+ }), /*#__PURE__*/React.createElement("path", {
75
+ fill: "#2C8658",
76
+ d: "M82 38.667a2 2 0 0 0-2 2v2h-4.667a2 2 0 0 0-2 2V86a2 2 0 0 0 2 2h49.334a2 2 0 0 0 2-2V44.667a2 2 0 0 0-2-2H120v-2a2 2 0 0 0-2-2h-10c-3.35 0-6.183 1.777-8 4.325-1.817-2.548-4.65-4.325-8-4.325zm2 4h8c3.338 0 6 2.662 6 6v30.705c-1.677-1.265-3.748-2.039-6-2.039h-8V44.995a2 2 0 0 0 0-.649zm24 0h8v1.672a2 2 0 0 0 0 .648v32.346h-8c-2.252 0-4.323.774-6 2.04V48.666c0-3.338 2.662-6 6-6m-30.667 4H80v32.666a2 2 0 0 0 2 2h10A5.97 5.97 0 0 1 96.987 84H77.333zm42.667 0h2.667V84h-19.654A5.97 5.97 0 0 1 108 81.333h10a2 2 0 0 0 2-2z"
77
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
78
+ id: "blobby-icon-library_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-library_svg__c",
91
+ x1: 135,
92
+ x2: 145,
93
+ y1: 59,
94
+ y2: 74,
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-library_svg__d",
103
+ x1: 61,
104
+ x2: 71,
105
+ y1: 16,
106
+ y2: 31,
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-library_svg__e",
115
+ x1: 55,
116
+ x2: 65,
117
+ y1: 96,
118
+ y2: 111,
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-library_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-library_svg__h",
139
+ x1: 93.276,
140
+ x2: 137.829,
141
+ y1: 68,
142
+ y2: 112.893,
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-library_svg__a"
151
+ }, /*#__PURE__*/React.createElement("path", {
152
+ fill: "#fff",
153
+ d: "M0 0h200v128H0z"
154
+ }))));
155
+ };
156
+ var _default = exports.default = SvgBlobbyIconLibrary;