@terraware/web-components 3.5.12-rc.8 → 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 (228) 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 +331 -55164
  215. package/license-report.html +1 -1
  216. package/package.json +2 -9
  217. package/setupTests.js +5 -0
  218. package/style-dictionary-dist/TerrawareTheme.js +193 -0
  219. package/style-dictionary-dist/terraware.scss +414 -0
  220. package/theme.js +86 -0
  221. package/utils/date.js +124 -0
  222. package/utils/date.test.js +87 -0
  223. package/utils/index.js +53 -0
  224. package/utils/preventDefaultEvent.js +8 -0
  225. package/utils/text.js +17 -0
  226. package/utils/text.test.js +23 -0
  227. package/utils/useDeviceInfo.js +85 -0
  228. package/index.js.map +0 -1
@@ -0,0 +1,158 @@
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 SvgBlobbyIconNursery = _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-nursery_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-nursery_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-nursery_svg__c)",
37
+ d: "M60 81.449h.02c2.75 0 4.98 3.33 4.998 7.449.018-4.11 2.24-7.434 4.98-7.449-2.74-.015-4.962-3.34-4.98-7.449-.018 4.119-2.249 7.449-4.999 7.449z"
38
+ }), /*#__PURE__*/React.createElement("path", {
39
+ fill: "url(#blobby-icon-nursery_svg__d)",
40
+ d: "M124 103.449h.019c2.75 0 4.981 3.33 4.999 7.449.018-4.109 2.239-7.434 4.981-7.449-2.742-.015-4.963-3.34-4.981-7.449-.018 4.119-2.249 7.449-4.999 7.449z"
41
+ }), /*#__PURE__*/React.createElement("path", {
42
+ fill: "url(#blobby-icon-nursery_svg__e)",
43
+ d: "M130 23.449h.019c2.75 0 4.981 3.33 4.999 7.449.018-4.11 2.239-7.434 4.981-7.449-2.742-.015-4.963-3.34-4.981-7.449-.018 4.119-2.249 7.449-4.999 7.449z"
44
+ }), /*#__PURE__*/React.createElement("mask", {
45
+ id: "blobby-icon-nursery_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-nursery_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-nursery_svg__g)"
67
+ }, /*#__PURE__*/React.createElement("path", {
68
+ fill: "url(#blobby-icon-nursery_svg__h)",
69
+ d: "m148.557 80.437-26.786-26.786-44.81 34.274 27.537 27.537z",
70
+ opacity: 0.25
71
+ })), /*#__PURE__*/React.createElement("path", {
72
+ fill: "#EAF3DC",
73
+ d: "m109.6 40.4 11.6 12.533c1.733 1.867 2.8 4.667 2.8 7.6v24.134c0 2.666-1.733 4.666-4 4.666H79.733c-2.133 0-3.733-2-3.733-4.666V60.533c0-2.933.933-5.733 2.4-7.6L88.933 40.4c.934-1.067 2.267-1.733 3.6-1.733h13.334v.133c1.333 0 2.666.533 3.733 1.6"
74
+ }), /*#__PURE__*/React.createElement("path", {
75
+ fill: "#2C8658",
76
+ fillRule: "evenodd",
77
+ d: "m109.6 40.4 11.6 12.533c1.733 1.867 2.8 4.667 2.8 7.6v24.134c0 2.666-1.733 4.666-4 4.666H79.733c-2.133 0-3.733-2-3.733-4.666V60.533c0-2.933.933-5.733 2.4-7.6L88.933 40.4c.934-1.067 2.267-1.733 3.6-1.733h13.334v.133c1.333 0 2.666.533 3.733 1.6m-17.467 2.667c.134-.267.4-.4.534-.4h7.466l-8 8.666-1.466 1.6c-1.334 1.467-2.267 3.467-2.534 5.6h-7.866c.266-1.2.666-2.266 1.333-2.933l3.467-4.267zM118.4 55.6l-11.6-12.533c-.133-.134-.4-.4-.8-.4s-.667.266-.8.4L93.733 55.6c-.666.8-1.2 1.733-1.466 2.933h27.6c-.267-1.2-.8-2.133-1.467-2.933m1.6 6.933V78H92V62.533zM88 78V62.533h-8V78zm4.133 7.333C92 85.2 92 84.933 92 84.667V82h28v2.667c0 .156-.046.312-.084.442-.026.091-.049.17-.049.224zM80 82v2.667c0 .266 0 .533.133.666H88V82z",
78
+ clipRule: "evenodd"
79
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
80
+ id: "blobby-icon-nursery_svg__b",
81
+ x1: 125.5,
82
+ x2: 50,
83
+ y1: 101.5,
84
+ y2: 26,
85
+ gradientUnits: "userSpaceOnUse"
86
+ }, /*#__PURE__*/React.createElement("stop", {
87
+ stopColor: "#F1F0EC"
88
+ }), /*#__PURE__*/React.createElement("stop", {
89
+ offset: 1,
90
+ stopColor: "#84D6AC"
91
+ })), /*#__PURE__*/React.createElement("linearGradient", {
92
+ id: "blobby-icon-nursery_svg__c",
93
+ x1: 69.999,
94
+ x2: 59.999,
95
+ y1: 88.898,
96
+ y2: 73.898,
97
+ gradientUnits: "userSpaceOnUse"
98
+ }, /*#__PURE__*/React.createElement("stop", {
99
+ stopColor: "#2C8658"
100
+ }), /*#__PURE__*/React.createElement("stop", {
101
+ offset: 1,
102
+ stopColor: "#ACD278"
103
+ })), /*#__PURE__*/React.createElement("linearGradient", {
104
+ id: "blobby-icon-nursery_svg__d",
105
+ x1: 133.999,
106
+ x2: 123.999,
107
+ y1: 110.898,
108
+ y2: 95.898,
109
+ gradientUnits: "userSpaceOnUse"
110
+ }, /*#__PURE__*/React.createElement("stop", {
111
+ stopColor: "#2C8658"
112
+ }), /*#__PURE__*/React.createElement("stop", {
113
+ offset: 1,
114
+ stopColor: "#ACD278"
115
+ })), /*#__PURE__*/React.createElement("linearGradient", {
116
+ id: "blobby-icon-nursery_svg__e",
117
+ x1: 139.999,
118
+ x2: 129.999,
119
+ y1: 30.898,
120
+ y2: 15.898,
121
+ gradientUnits: "userSpaceOnUse"
122
+ }, /*#__PURE__*/React.createElement("stop", {
123
+ stopColor: "#2C8658"
124
+ }), /*#__PURE__*/React.createElement("stop", {
125
+ offset: 1,
126
+ stopColor: "#ACD278"
127
+ })), /*#__PURE__*/React.createElement("linearGradient", {
128
+ id: "blobby-icon-nursery_svg__f",
129
+ x1: 125.5,
130
+ x2: 50,
131
+ y1: 101.5,
132
+ y2: 26,
133
+ gradientUnits: "userSpaceOnUse"
134
+ }, /*#__PURE__*/React.createElement("stop", {
135
+ stopColor: "#F1F0EC"
136
+ }), /*#__PURE__*/React.createElement("stop", {
137
+ offset: 1,
138
+ stopColor: "#84D6AC"
139
+ })), /*#__PURE__*/React.createElement("linearGradient", {
140
+ id: "blobby-icon-nursery_svg__h",
141
+ x1: 96.5,
142
+ x2: 122.689,
143
+ y1: 71.951,
144
+ y2: 104.226,
145
+ gradientUnits: "userSpaceOnUse"
146
+ }, /*#__PURE__*/React.createElement("stop", {
147
+ stopColor: "#2C8658"
148
+ }), /*#__PURE__*/React.createElement("stop", {
149
+ offset: 1,
150
+ stopColor: "#ACD278"
151
+ })), /*#__PURE__*/React.createElement("clipPath", {
152
+ id: "blobby-icon-nursery_svg__a"
153
+ }, /*#__PURE__*/React.createElement("path", {
154
+ fill: "#fff",
155
+ d: "M0 0h200v128H0z"
156
+ }))));
157
+ };
158
+ var _default = exports.default = SvgBlobbyIconNursery;
@@ -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 SvgBlobbyIconOrganization = _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-organization_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-organization_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-organization_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-organization_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-organization_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-organization_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-organization_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-organization_svg__g)"
67
+ }, /*#__PURE__*/React.createElement("path", {
68
+ fill: "url(#blobby-icon-organization_svg__h)",
69
+ d: "m153.619 78.772-40.718-40.718-38.909 40.087 37.877 37.877z",
70
+ opacity: 0.25
71
+ })), /*#__PURE__*/React.createElement("path", {
72
+ fill: "#EAF3DC",
73
+ d: "M75.893 37.477a2 2 0 0 1 .774-.144h34.666a2 2 0 1 1 0 4h-.666v8h9.679c.215-.035.434-.035.649 0h2.338a2 2 0 1 1 0 4h-.666V69.47c2.231.34 4 2.213 4 4.531v14.667a2 2 0 0 1-2 2H87.333a2 2 0 0 1-2-2v-10h-10a2 2 0 0 1-2-2V62a4.675 4.675 0 0 1 4-4.62V41.333h-.666a2 2 0 0 1-.775-3.856"
74
+ }), /*#__PURE__*/React.createElement("path", {
75
+ fill: "#2C8658",
76
+ d: "M76.667 37.333a2 2 0 1 0 0 4h.666V57.38a4.675 4.675 0 0 0-4 4.62v14.667a2 2 0 0 0 2 2h7.334v-4h-5.334V62c0-.367.3-.667.667-.667h1.333a2 2 0 0 0 2-2v-18h25.334v5.334h4v-5.334h.666a2 2 0 1 0 0-4zm14.635 11.972a2 2 0 0 0-.29.028h-2.345a2 2 0 1 0 0 4h.666V69.47c-2.231.34-4 2.213-4 4.531v14.667a2 2 0 0 0 2 2h37.334a2 2 0 0 0 2-2V74c0-2.318-1.769-4.19-4-4.531V53.333h.666a2 2 0 1 0 0-4h-2.338a2 2 0 0 0-.649 0H91.661a2 2 0 0 0-.359-.028m2.031 4.028h25.334v18a2 2 0 0 0 2 2H122c.393 0 .667.274.667.667v12.667h-13.334v-8c0-.736-.597-1.334-1.333-1.334h-4c-.736 0-1.333.598-1.333 1.334v8H89.333V74c0-.393.273-.667.667-.667h1.333a2 2 0 0 0 2-2zM100 58.667c-.736 0-1.333.597-1.333 1.333v2.667c0 .736.597 1.333 1.333 1.333h2.667c.736 0 1.333-.597 1.333-1.333V60c0-.736-.597-1.333-1.333-1.333zm9.333 0c-.736 0-1.333.597-1.333 1.333v2.667c0 .736.597 1.333 1.333 1.333H112c.736 0 1.333-.597 1.333-1.333V60c0-.736-.597-1.333-1.333-1.333zM100 68c-.736 0-1.333.597-1.333 1.333V72c0 .736.597 1.333 1.333 1.333h2.667c.736 0 1.333-.597 1.333-1.333v-2.667c0-.736-.597-1.333-1.333-1.333zm9.333 0c-.736 0-1.333.597-1.333 1.333V72c0 .736.597 1.333 1.333 1.333H112c.736 0 1.333-.597 1.333-1.333v-2.667c0-.736-.597-1.333-1.333-1.333zm-14.666 9.333c-.736 0-1.334.598-1.334 1.334v2.666c0 .736.598 1.334 1.334 1.334h2.666c.736 0 1.334-.598 1.334-1.334v-2.666c0-.736-.598-1.334-1.334-1.334zm20 0c-.736 0-1.334.598-1.334 1.334v2.666c0 .736.598 1.334 1.334 1.334h2.666c.736 0 1.334-.598 1.334-1.334v-2.666c0-.736-.598-1.334-1.334-1.334z"
77
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
78
+ id: "blobby-icon-organization_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-organization_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-organization_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-organization_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-organization_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-organization_svg__h",
139
+ x1: 90.5,
140
+ x2: 133.322,
141
+ y1: 58.575,
142
+ y2: 99.564,
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-organization_svg__a"
151
+ }, /*#__PURE__*/React.createElement("path", {
152
+ fill: "#fff",
153
+ d: "M0 0h200v128H0z"
154
+ }))));
155
+ };
156
+ var _default = exports.default = SvgBlobbyIconOrganization;
@@ -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 SvgBlobbyIconParchment = _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-parchment_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-parchment_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-parchment_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-parchment_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-parchment_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-parchment_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-parchment_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-parchment_svg__g)"
67
+ }, /*#__PURE__*/React.createElement("path", {
68
+ fill: "url(#blobby-icon-parchment_svg__h)",
69
+ d: "M157.851 72.897 125.974 41.02 73.907 86.058l32.419 32.419z",
70
+ opacity: 0.25
71
+ })), /*#__PURE__*/React.createElement("path", {
72
+ fill: "#EAF3DC",
73
+ d: "M88.667 38.667c-4.763 0-8.667 3.904-8.667 8.666v5.006a2 2 0 0 0 0 .648v21.68h-3.333c-2.554 0-4.667 2.113-4.667 4.666v1.334c0 4.762 3.904 8.666 8.667 8.666H110v-.12c3.993-.023 7.333-3.197 7.333-7.213V68.995a2 2 0 0 0 0-.649v-8.685a2 2 0 0 0 0-.648v-4.346h6c2.554 0 4.667-2.114 4.667-4.667v-3.77c0-3.76-2.758-7.162-6.62-7.53a7 7 0 0 0-.713-.03v-.003h-32"
74
+ }), /*#__PURE__*/React.createElement("path", {
75
+ fill: "#2C8658",
76
+ d: "M88.667 38.667c-4.763 0-8.667 3.904-8.667 8.666v5.006a2 2 0 0 0 0 .648v21.68h-3.333c-2.554 0-4.667 2.113-4.667 4.666v1.334c0 4.762 3.904 8.666 8.667 8.666H110v-.12c3.993-.023 7.333-3.197 7.333-7.213V68.995a2 2 0 0 0 0-.649v-8.685a2 2 0 0 0 0-.648v-4.346h6c2.554 0 4.667-2.114 4.667-4.667v-3.77c0-3.76-2.758-7.162-6.62-7.53a7 7 0 0 0-.713-.03v-.003h-32m0 4h25.492a7.2 7.2 0 0 0-.826 3.333v11.333h-4.666a2 2 0 1 0 0 4h4.666v5.334H106a2 2 0 1 0 0 4h7.333V82c0 1.975-1.622 3.513-3.666 3.318-1.686-.16-3-1.736-3-3.547v-2.438c0-2.553-2.114-4.666-4.667-4.666H84v-20h4.667a2 2 0 1 0 0-4H84v-3.334c0-2.6 2.067-4.666 4.667-4.666m32.333.015c1.685.16 3 1.736 3 3.547V50c0 .393-.273.667-.667.667h-6V46c0-1.975 1.622-3.513 3.667-3.318M76.667 78.667H102c.393 0 .667.273.667.666v2.438c0 1.284.417 2.468.994 3.562H80.667A4.64 4.64 0 0 1 76 80.667v-1.334c0-.393.273-.666.667-.666"
77
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
78
+ id: "blobby-icon-parchment_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-parchment_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-parchment_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-parchment_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-parchment_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-parchment_svg__h",
139
+ x1: 96.816,
140
+ x2: 127.72,
141
+ y1: 63.953,
142
+ y2: 97.282,
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-parchment_svg__a"
151
+ }, /*#__PURE__*/React.createElement("path", {
152
+ fill: "#fff",
153
+ d: "M0 0h200v128H0z"
154
+ }))));
155
+ };
156
+ var _default = exports.default = SvgBlobbyIconParchment;
@@ -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 SvgBlobbyIconPeople = _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-people_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-people_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-people_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-people_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-people_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-people_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-people_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-people_svg__g)"
67
+ }, /*#__PURE__*/React.createElement("path", {
68
+ fill: "url(#blobby-icon-people_svg__h)",
69
+ d: "m110.5 42.5 41.175 41.175L112.5 115 82.783 85.283l23.968-9.032-15.968-15.969z",
70
+ opacity: 0.25
71
+ })), /*#__PURE__*/React.createElement("path", {
72
+ fill: "#EAF3DC",
73
+ d: "M100 37.333c-7.34 0-13.333 5.994-13.333 13.334S92.66 64 100 64s13.333-5.993 13.333-13.333S107.34 37.333 100 37.333m-16.029 32c-2.906 0-5.304 2.399-5.304 5.305v2.029c0 4.805 3.039 8.523 7.075 10.75 4.037 2.227 9.149 3.25 14.258 3.25s10.221-1.023 14.258-3.25c3.442-1.9 6.032-4.933 6.758-8.75h.32v-4.029c0-2.906-2.401-5.305-5.307-5.305z"
74
+ }), /*#__PURE__*/React.createElement("path", {
75
+ fill: "#2C8658",
76
+ d: "M100 37.333c-7.34 0-13.333 5.994-13.333 13.334S92.66 64 100 64s13.333-5.993 13.333-13.333S107.34 37.333 100 37.333m0 4a9.303 9.303 0 0 1 9.333 9.334A9.303 9.303 0 0 1 100 60a9.303 9.303 0 0 1-9.333-9.333A9.303 9.303 0 0 1 100 41.333m-16.029 28c-2.906 0-5.304 2.399-5.304 5.305v2.029c0 4.805 3.039 8.523 7.075 10.75 4.037 2.227 9.149 3.25 14.258 3.25s10.221-1.023 14.258-3.25c3.442-1.9 6.032-4.933 6.758-8.75h.32v-4.029c0-2.906-2.401-5.305-5.307-5.305zm0 4h32.058c.744 0 1.307.56 1.307 1.305v.029h-.003v2c0 3.194-1.794 5.477-5.007 7.25-3.214 1.773-7.768 2.75-12.326 2.75-4.557 0-9.112-.977-12.325-2.75-3.214-1.773-5.008-4.056-5.008-7.25v-2.029c0-.744.56-1.305 1.304-1.305"
77
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
78
+ id: "blobby-icon-people_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-people_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-people_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-people_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-people_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-people_svg__h",
139
+ x1: 90.5,
140
+ x2: 136.049,
141
+ y1: 60.121,
142
+ y2: 97.834,
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-people_svg__a"
151
+ }, /*#__PURE__*/React.createElement("path", {
152
+ fill: "#fff",
153
+ d: "M0 0h200v128H0z"
154
+ }))));
155
+ };
156
+ var _default = exports.default = SvgBlobbyIconPeople;