@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,25 @@
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 SvgIconModule = _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
+ viewBox: "0 0 24 24",
18
+ "aria-labelledby": titleId
19
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
20
+ id: titleId
21
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
22
+ d: "M5 3a2 2 0 1 0 0 4 2 2 0 0 0 0-4m2.231 0c.371.413.628.929.724 1.5H19.5V14H8v1.5h13.25a.75.75 0 1 0 0-1.5H21V3.75a.75.75 0 0 0-.75-.75zM4 8a1.5 1.5 0 0 0-1.5 1.5v6H7v-6h5.25a.75.75 0 1 0 0-1.5H4m.5 9a2 2 0 1 0 0 4 2 2 0 0 0 0-4m5 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4m5 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4m5 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconModule;
@@ -0,0 +1,25 @@
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 SvgIconMyLocation = _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
+ viewBox: "0 0 24 24",
18
+ "aria-labelledby": titleId
19
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
20
+ id: titleId
21
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
22
+ d: "M11.988 1.49a.75.75 0 0 0-.738.76v.788a9.006 9.006 0 0 0-8.212 8.212H2.25a.75.75 0 1 0 0 1.5h.788a9.006 9.006 0 0 0 8.212 8.212v.788a.752.752 0 0 0 1.284.537.75.75 0 0 0 .216-.537v-.788a8.96 8.96 0 0 0 4.97-2.02 9 9 0 0 0 3.242-6.192h.788q.037 0 .075-.003a.75.75 0 0 0-.075-1.497h-.788c-.005-.056-.003-.113-.009-.169a9 9 0 0 0-3.925-6.542 8.94 8.94 0 0 0-4.278-1.5V2.25a.75.75 0 0 0-.762-.76m-.738 3.048v.712a.751.751 0 1 0 1.5 0v-.712a7.46 7.46 0 0 1 3.447 1.24 7.465 7.465 0 0 1 3.264 5.453v.019h-.711a.75.75 0 1 0 0 1.5h.712a7.5 7.5 0 0 1-.298 1.483 7.49 7.49 0 0 1-6.395 5.228h-.019v-.711a.75.75 0 1 0-1.5 0v.712a7.487 7.487 0 0 1-6.712-6.712h.712q.037 0 .075-.003a.75.75 0 0 0-.075-1.497h-.712l.001-.019a7.485 7.485 0 0 1 6.711-6.693M12 9.5c-.77 0-1.444.316-1.873.799A2.55 2.55 0 0 0 9.5 12c0 .604.198 1.218.627 1.701.43.483 1.102.799 1.873.799s1.444-.316 1.873-.799.627-1.097.627-1.701-.198-1.218-.627-1.701C13.443 9.816 12.771 9.5 12 9.5m0 1.5c.396 0 .598.121.752.295.154.173.248.434.248.705s-.094.532-.248.705c-.154.174-.356.295-.752.295s-.598-.121-.752-.295A1.08 1.08 0 0 1 11 12q0-.102.017-.2c.033-.196.115-.375.231-.505.154-.174.356-.295.752-.295"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconMyLocation;
@@ -0,0 +1,27 @@
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 SvgIconNote = _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 24 24",
19
+ "aria-labelledby": titleId
20
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
21
+ id: titleId
22
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
23
+ fill: "#333025",
24
+ d: "M5.25 3A2.26 2.26 0 0 0 3 5.25v13.5A2.26 2.26 0 0 0 5.25 21h9.5a.75.75 0 0 0 .538-.227l5.492-5.493a.75.75 0 0 0 .22-.53v-9.5A2.26 2.26 0 0 0 18.75 3zm0 1.5h13.5c.423 0 .75.327.75.75V14h-3.25A2.26 2.26 0 0 0 14 16.25v3.25H5.25a.74.74 0 0 1-.75-.75V5.25c0-.423.327-.75.75-.75m2.5 2.499a.75.75 0 1 0 0 1.5h8.5a.75.75 0 1 0 0-1.5zm0 3.5a.751.751 0 1 0 0 1.5h6.5a.75.75 0 1 0 0-1.5zm8.5 5.001h2.19l-2.94 2.94v-2.19c0-.423.327-.75.75-.75"
25
+ }));
26
+ };
27
+ var _default = exports.default = SvgIconNote;
@@ -0,0 +1,27 @@
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 SvgIconNursery = _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
+ viewBox: "0 0 24 24",
18
+ "aria-labelledby": titleId
19
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
20
+ id: titleId
21
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
22
+ fillRule: "evenodd",
23
+ d: "m15.6 3.15 4.35 4.7C20.6 8.55 21 9.6 21 10.7v9.05c0 1-.65 1.75-1.5 1.75H4.4c-.8 0-1.4-.75-1.4-1.75V10.7c0-1.1.35-2.15.9-2.85l3.95-4.7c.35-.4.85-.65 1.35-.65h5v.05c.5 0 1 .2 1.4.6m-6.55 1c.05-.1.15-.15.2-.15h2.8l-3 3.25-.55.6c-.5.55-.85 1.3-.95 2.1H4.6c.1-.45.25-.85.5-1.1l1.3-1.6zm9.85 4.7-4.35-4.7c-.05-.05-.15-.15-.3-.15s-.25.1-.3.15l-4.3 4.7c-.25.3-.45.65-.55 1.1h10.35c-.1-.45-.3-.8-.55-1.1m.6 2.6v5.8H9v-5.8zm-12 5.8v-5.8h-3v5.8zM9.05 20C9 19.95 9 19.85 9 19.75v-1h10.5v1c0 .059-.017.117-.031.166q-.017.052-.019.084zM4.5 18.75v1c0 .1 0 .2.05.25H7.5v-1.25z",
24
+ clipRule: "evenodd"
25
+ }));
26
+ };
27
+ var _default = exports.default = SvgIconNursery;
@@ -0,0 +1,25 @@
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 SvgIconOrg = _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
+ viewBox: "0 0 24 24",
18
+ "aria-labelledby": titleId
19
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
20
+ id: titleId
21
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
22
+ d: "M3.25 2a.75.75 0 1 0 0 1.5h.25v6.018C2.653 9.64 2 10.37 2 11.25v5.5c0 .414.336.75.75.75H5.5V16h-2v-4.75a.25.25 0 0 1 .25-.25h.5a.75.75 0 0 0 .75-.75V3.5h9.5v2H16v-2h.25a.75.75 0 1 0 0-1.5zm5.488 4.49a1 1 0 0 0-.108.01h-.88a.75.75 0 1 0 0 1.5H8v6.05c-.837.129-1.5.83-1.5 1.7v5.5a.75.75 0 0 0 .75.75h14a.75.75 0 0 0 .75-.75v-5.5c0-.87-.663-1.571-1.5-1.7V8h.25a.75.75 0 1 0 0-1.5h-.877a.8.8 0 0 0-.243 0H8.873a1 1 0 0 0-.135-.01M9.5 8H19v6.75a.75.75 0 0 0 .75.75h.5c.148 0 .25.102.25.25v4.75h-5v-3a.5.5 0 0 0-.5-.5h-1.5a.5.5 0 0 0-.5.5v3H8v-4.75c0-.148.102-.25.25-.25h.5a.75.75 0 0 0 .75-.75zm2.5 2a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3.5 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM12 13.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm3.5 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zM10 17a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm7.5 0a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconOrg;
@@ -0,0 +1,25 @@
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 SvgIconParchment = _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
+ viewBox: "0 0 24 24",
18
+ "aria-labelledby": titleId
19
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
20
+ id: titleId
21
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
22
+ d: "M7.75 2.5A3.26 3.26 0 0 0 4.5 5.75v1.877a.8.8 0 0 0 0 .243V16H3.25c-.957 0-1.75.793-1.75 1.75v.5a3.26 3.26 0 0 0 3.25 3.25h11v-.045c1.497-.009 2.75-1.2 2.75-2.705v-4.877a.8.8 0 0 0 0-.243v-3.257a.8.8 0 0 0 0-.243V8.5h2.25c.957 0 1.75-.793 1.75-1.75V5.336c0-1.41-1.034-2.685-2.482-2.823a3 3 0 0 0-.268-.012V2.5h-12m0 1.5h9.56c-.196.376-.31.8-.31 1.25V9.5h-1.75a.75.75 0 1 0 0 1.5H17v2h-2.75a.751.751 0 1 0 0 1.5H17v4.25c0 .74-.608 1.317-1.375 1.244-.632-.06-1.125-.65-1.125-1.33v-.914c0-.957-.793-1.75-1.75-1.75H6V8.5h1.75a.75.75 0 1 0 0-1.5H6V5.75C6 4.775 6.775 4 7.75 4m12.125.006c.632.06 1.125.65 1.125 1.33V6.75c0 .148-.102.25-.25.25H18.5V5.25c0-.74.608-1.317 1.375-1.244M3.25 17.5h9.5c.148 0 .25.102.25.25v.914c0 .482.156.926.373 1.336H4.75A1.74 1.74 0 0 1 3 18.25v-.5c0-.148.102-.25.25-.25"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconParchment;
@@ -0,0 +1,25 @@
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 SvgIconPhoto = _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
+ viewBox: "0 0 19 19",
18
+ "aria-labelledby": titleId
19
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
20
+ id: titleId
21
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
22
+ d: "M11.176 0c.759 0 1.464.42 1.846 1.1l1.043 1.858h1.848C17.609 2.958 19 4.402 19 6.163v9.369c0 1.76-1.39 3.205-3.087 3.205H3.087C1.391 18.737 0 17.293 0 15.532v-9.37c0-1.76 1.391-3.204 3.087-3.204h1.848L5.979 1.1A2.13 2.13 0 0 1 7.825 0zM9.5 6.793c-2.234 0-4.046 1.88-4.046 4.199s1.812 4.199 4.046 4.199 4.044-1.88 4.044-4.199-1.81-4.199-4.044-4.199"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconPhoto;
@@ -0,0 +1,25 @@
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 SvgIconRedo = _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
+ viewBox: "0 0 24 24",
18
+ "aria-labelledby": titleId
19
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
20
+ id: titleId
21
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
22
+ d: "M15.242 2.992a.75.75 0 0 0-.522 1.288L18.44 8H9.5C5.92 8 3 10.92 3 14.5S5.92 21 9.5 21h3.75a.751.751 0 1 0 0-1.5H9.5c-2.77 0-5-2.23-5-5s2.23-5 5-5h8.94l-3.72 3.72a.75.75 0 1 0 1.06 1.06l5-5a.75.75 0 0 0 0-1.06l-5-5a.75.75 0 0 0-.538-.228"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconRedo;
@@ -0,0 +1,25 @@
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 SvgIconRestorationSite = _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
+ viewBox: "0 0 24 24",
18
+ "aria-labelledby": titleId
19
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
20
+ id: titleId
21
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
22
+ d: "M12 1.5c-.775 0-1.495.247-1.999.751a2.44 2.44 0 0 0-.54.86c-.226-.069-.453-.139-.679-.134a2.47 2.47 0 0 0-1.596.653c-.597.537-.94 1.374-.897 2.264-.848.058-1.617.463-2.065 1.12-.476.698-.55 1.655-.162 2.54-.35.19-.648.453-.876.752a3.38 3.38 0 0 0-.686 2.047c0 .94.404 1.88 1.185 2.512.614.498 1.493.68 2.459.633.144.748.429 1.445.966 1.953.718.678 1.734 1.049 2.89 1.049v.75c0 .366-.122 1.021-.404 1.485s-.618.765-1.346.765a.75.75 0 0 0 0 1.5h7.5a.75.75 0 0 0 0-1.5c-.728 0-1.064-.3-1.346-.765-.282-.464-.404-1.119-.404-1.485v-.75c1.156 0 2.172-.37 2.89-1.049.537-.508.822-1.205.966-1.953.966.047 1.845-.135 2.46-.633a3.23 3.23 0 0 0 1.184-2.513c0-.722-.23-1.45-.686-2.046a2.8 2.8 0 0 0-.876-.752c.388-.885.314-1.842-.162-2.54-.448-.657-1.217-1.062-2.065-1.12.043-.89-.3-1.727-.896-2.264a2.47 2.47 0 0 0-1.597-.653c-.226-.005-.453.066-.679.133a2.44 2.44 0 0 0-.54-.859C13.495 1.747 12.775 1.5 12 1.5M12 3c.475 0 .755.128.938.312.183.183.312.463.312.938a.75.75 0 0 0 1.28.53c.25-.25.454-.307.659-.303a.98.98 0 0 1 .621.268c.39.35.624.96.27 1.67a.75.75 0 0 0 .934 1.037c.701-.263 1.244 0 1.522.408s.357.937-.316 1.61a.75.75 0 0 0 .53 1.28c.376 0 .641.163.873.467.232.303.377.751.377 1.135 0 .51-.22 1.018-.628 1.348-.407.33-1.012.528-1.959.318a.75.75 0 0 0-.913.732c0 .696-.233 1.227-.64 1.611-.407.385-1.016.639-1.86.639v-.75a.751.751 0 1 0-1.5 0v3c0 .63.146 1.468.616 2.25h-2.232c.47-.782.616-1.62.616-2.25v-3a.75.75 0 1 0-1.5 0V17c-.844 0-1.453-.254-1.86-.639-.407-.384-.64-.915-.64-1.611a.75.75 0 0 0-.913-.732c-.947.21-1.552.012-1.96-.318A1.74 1.74 0 0 1 4 12.352c0-.384.145-.832.377-1.135s.497-.467.873-.467a.75.75 0 0 0 .53-1.28c-.673-.673-.594-1.202-.316-1.61.278-.407.82-.671 1.522-.408a.75.75 0 0 0 .935-1.037c-.355-.71-.12-1.32.268-1.67a.98.98 0 0 1 .623-.268c.204-.004.408.053.658.303a.75.75 0 0 0 1.28-.53c0-.475.129-.755.312-.938.183-.184.463-.312.938-.312"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconRestorationSite;
@@ -0,0 +1,25 @@
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 SvgIconSeedBank = _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
+ viewBox: "0 0 24 24",
18
+ "aria-labelledby": titleId
19
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
20
+ id: titleId
21
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
22
+ d: "M8.25 2.75c-1.837 0-3.433 1.166-4.521 2.873S2 9.614 2 12.125s.64 4.795 1.729 6.502S6.413 21.5 8.25 21.5c.52 0 1.027-.093 1.507-.269a1 1 0 0 0 .102-.046c1.424.718 3.171.611 4.838-.062 1.885-.761 3.735-2.246 5.163-4.275 1.425-2.024 2.225-4.245 2.332-6.26.108-2.014-.505-3.892-2.01-4.951-1.06-.746-2.344-.951-3.675-.742-1.077.169-2.183.613-3.224 1.258-.48-.926-.997-1.747-1.749-2.362-.823-.673-1.91-1.041-3.284-1.041m0 1.5c1.126 0 1.785.252 2.335.702.541.443.992 1.143 1.47 2.091a13.3 13.3 0 0 0-2.415 2.61c-.21.296-.306.614-.488.918-.261-1.174.222-1.905.222-1.905a.75.75 0 1 0-1.248-.832s-1.203 1.938-.047 4.251q.06.121.157.216c-.51 1.223-.866 2.447-.928 3.61-.083 1.54.258 3 1.095 4.075-.051.003-.101.014-.153.014-1.2 0-2.355-.765-3.257-2.18S3.5 14.377 3.5 12.125s.59-4.28 1.493-5.695C5.895 5.015 7.05 4.25 8.25 4.25m9.36 2.089q.268.009.519.052c.446.076.85.233 1.19.472.978.69 1.465 1.974 1.375 3.646-.089 1.672-.783 3.66-2.06 5.475-1.274 1.81-2.93 3.115-4.498 3.748-1.568.634-2.975.594-3.954-.095-.98-.69-1.466-1.974-1.376-3.646.089-1.672.783-3.66 2.06-5.475a11.6 11.6 0 0 1 2.578-2.666c1.415-1.04 2.916-1.553 4.165-1.511m.128 1.15a.75.75 0 0 0-.723.908s.212 1.144 0 2.205c-.107.531-.312 1.01-.639 1.336-.327.328-.782.562-1.626.562-1.27 0-2.246.37-2.895.987-.65.617-.936 1.419-1.045 2.154-.216 1.469.223 2.828.223 2.828a.75.75 0 1 0 1.434-.438s-.325-1.14-.173-2.172c.076-.515.256-.963.594-1.284.338-.32.868-.575 1.862-.575 1.156 0 2.076-.39 2.686-1.001s.906-1.382 1.05-2.101c.287-1.44 0-2.795 0-2.795a.75.75 0 0 0-.748-.614"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconSeedBank;
@@ -0,0 +1,25 @@
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 SvgIconSeedling = _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
+ viewBox: "0 0 24 24",
18
+ "aria-labelledby": titleId
19
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
20
+ id: titleId
21
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
22
+ d: "M6.703 2.003a5 5 0 0 0-.394.032 5.4 5.4 0 0 0-1.562.443C2.718 3.389 1 5.613 1 8.8a.75.75 0 0 0 1.175.618c.56-.385 1.2-.325 2.033-.093.833.233 1.704.675 2.686.675a4.3 4.3 0 0 0 3.16-1.379.75.75 0 1 0-1.108-1.01c-.5.547-1.32.889-2.052.889-.421 0-1.303-.346-2.283-.62-.593-.165-1.28-.263-1.967-.172.326-1.991 1.446-3.29 2.718-3.862.75-.337 1.531-.422 2.179-.278.176.04.316.134.472.204-1.801.354-2.832 1.49-2.832 1.49a.75.75 0 1 0 1.138.976s1.147-1.436 3.547-1l.041.006s.217.003.563.349c.345.345.78 1.05.78 2.657V12h-6a.75.75 0 1 0 0 1.5h.33l.727 6.554A2.76 2.76 0 0 0 9.04 22.5h5.92a2.76 2.76 0 0 0 2.734-2.446l.727-6.554h.329a.751.751 0 1 0 0-1.5h-6V8.25c0-1.607.435-2.312.78-2.657s.561-.349.562-.349l.042-.006c2.4-.436 3.547 1 3.547 1a.75.75 0 1 0 1.138-.976s-1.03-1.136-2.832-1.49c.156-.07.296-.164.472-.204.648-.144 1.429-.06 2.179.278 1.272.571 2.392 1.87 2.718 3.862-.688-.091-1.373.007-1.967.173-.98.273-1.862.619-2.283.619-.732 0-1.553-.342-2.052-.89a.75.75 0 1 0-1.108 1.011A4.3 4.3 0 0 0 17.106 10c.982 0 1.853-.442 2.686-.675.833-.232 1.473-.292 2.033.093A.75.75 0 0 0 23 8.8c0-3.187-1.718-5.411-3.747-6.322-1.014-.456-2.11-.599-3.12-.374-.945.211-1.789.8-2.349 1.677a1 1 0 0 0-.132.051l-.002.001c-.26.07-.703.222-1.18.7-.18.179-.314.503-.47.765-.156-.262-.29-.586-.47-.766-.479-.479-.924-.63-1.183-.7a1 1 0 0 0-.131-.05c-.56-.878-1.404-1.467-2.349-1.678a4.5 4.5 0 0 0-1.164-.101M7.088 13.5h4.789q.121.02.243 0h4.792l-.709 6.388A1.24 1.24 0 0 1 14.961 21H9.04a1.24 1.24 0 0 1-1.242-1.111v-.001z"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconSeedling;
@@ -0,0 +1,25 @@
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 SvgIconSettings = _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
+ viewBox: "0 0 24 24",
18
+ "aria-labelledby": titleId
19
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
20
+ id: titleId
21
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
22
+ d: "M12 2c-.789 0-1.549.1-2.274.269a.75.75 0 0 0-.576.649l-.159 1.451a1.5 1.5 0 0 1-2.095 1.21L5.561 4.99a.75.75 0 0 0-.85.174A10 10 0 0 0 2.43 9.101a.75.75 0 0 0 .274.822l1.183.867a1.5 1.5 0 0 1 0 2.42l-1.183.866a.75.75 0 0 0-.274.822 10 10 0 0 0 2.283 3.937.75.75 0 0 0 .85.173l1.332-.587a1.5 1.5 0 0 1 2.096 1.21l.16 1.451a.75.75 0 0 0 .574.648A10 10 0 0 0 12 22c.788 0 1.549-.1 2.274-.269a.75.75 0 0 0 .576-.649l.159-1.451a1.498 1.498 0 0 1 2.095-1.21l1.334.587a.75.75 0 0 0 .85-.173 10 10 0 0 0 2.282-3.937.75.75 0 0 0-.274-.822l-1.183-.866a1.498 1.498 0 0 1 0-2.42l1.183-.866a.75.75 0 0 0 .274-.822 10 10 0 0 0-2.283-3.937.75.75 0 0 0-.85-.173l-1.334.587a1.5 1.5 0 0 1-2.094-1.21l-.16-1.451a.75.75 0 0 0-.574-.648A10 10 0 0 0 12 2m0 1.5c.487 0 .955.087 1.424.17l.094.862a3.003 3.003 0 0 0 4.19 2.42l.793-.348a8.4 8.4 0 0 1 1.428 2.461l-.703.516a3.002 3.002 0 0 0 0 4.838l.703.516a8.4 8.4 0 0 1-1.428 2.461l-.793-.348a3 3 0 0 0-4.19 2.42l-.094.862c-.469.082-.937.17-1.424.17s-.955-.087-1.424-.17l-.094-.862a3.003 3.003 0 0 0-4.19-2.42l-.793.349a8.4 8.4 0 0 1-1.428-2.462l.703-.516a3.002 3.002 0 0 0 0-4.839l-.703-.516c.337-.905.82-1.73 1.429-2.461l.792.348a3 3 0 0 0 4.19-2.419l.094-.862c.469-.082.937-.17 1.424-.17M12 8c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4m0 1.5c1.39 0 2.5 1.11 2.5 2.5s-1.11 2.5-2.5 2.5-2.5-1.11-2.5-2.5 1.11-2.5 2.5-2.5"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconSettings;
@@ -0,0 +1,25 @@
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 SvgIconSlice = _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
+ viewBox: "0 0 24 24",
18
+ "aria-labelledby": titleId
19
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
20
+ id: titleId
21
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
22
+ d: "M16.646 1.504c-1.021.001-2.01.395-2.885 1.013a.75.75 0 0 0-.559.337 1 1 0 0 0-.068.06l-7.905 7.903a2.22 2.22 0 0 0-.649 1.498l-.041 1.272-2.32 2.32a.75.75 0 0 0-.204.677l1.039 5.197a.75.75 0 0 0 1.266.383l4.399-4.398 1.27-.041a2.22 2.22 0 0 0 1.498-.65l5.743-5.742c1.007-.17 1.988-.603 2.768-1.383.034-.033.044-.079.076-.113a.75.75 0 0 0 .408-.61c1.369-1.95 1.313-4.603-.398-6.314a4.83 4.83 0 0 0-3.439-1.41m-.007 1.492a3.34 3.34 0 0 1 2.384.978c1.063 1.062 1.224 2.655.551 3.971L15.06 3.431c.506-.258 1.036-.433 1.58-.435m-2.801 1.335 4.782 4.782c-.562.453-1.201.753-1.871.82a.75.75 0 0 0-.456.215l-5.867 5.867a.72.72 0 0 1-.486.21l-3.222.104a.707.707 0 0 1-.742-.742l.103-3.223a.72.72 0 0 1 .211-.486zm-.54 3.647a1 1 0 0 0-.687.302l-4.158 4.158a1 1 0 1 0 1.414 1.414l4.158-4.158a1 1 0 0 0-.727-1.716M4.48 15.767a2.24 2.24 0 0 0 2.059 2.056l-2.289 2.29-.686-3.43z"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconSlice;
@@ -0,0 +1,25 @@
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 SvgIconSubmit = _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
+ viewBox: "0 0 24 24",
18
+ "aria-labelledby": titleId
19
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
20
+ id: titleId
21
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
22
+ d: "M12.728 3a.75.75 0 0 0-.728.75V7H5.25C3.74 7 2.5 8.24 2.5 9.75v4.5C2.5 15.76 3.74 17 5.25 17H12v3.25a.75.75 0 0 0 1.273.538l8.5-8.25a.75.75 0 0 0 0-1.076l-8.5-8.25A.75.75 0 0 0 12.727 3m.772 2.523L20.173 12 13.5 18.477V16.25a.75.75 0 0 0-.75-.75h-7.5c-.7 0-1.25-.55-1.25-1.25v-4.5c0-.7.55-1.25 1.25-1.25h7.5a.75.75 0 0 0 .75-.75zm-.765 3.97a.75.75 0 0 0-.515.227l-2.97 2.97-1.22-1.22a.751.751 0 0 0-1.23.817.8.8 0 0 0 .17.243l1.75 1.75a.75.75 0 0 0 1.06 0l3.5-3.5a.75.75 0 0 0-.545-1.287"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconSubmit;
@@ -0,0 +1,27 @@
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 SvgIconSubtract = _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 24 24",
19
+ "aria-labelledby": titleId
20
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
21
+ id: titleId
22
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
23
+ fill: "#333025",
24
+ d: "M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2m0 1.5c4.703 0 8.5 3.797 8.5 8.5s-3.797 8.5-8.5 8.5A8.49 8.49 0 0 1 3.5 12c0-4.703 3.797-8.5 8.5-8.5m-4.25 7.75a.751.751 0 1 0 0 1.5h8.5a.751.751 0 1 0 0-1.5z"
25
+ }));
26
+ };
27
+ var _default = exports.default = SvgIconSubtract;
@@ -0,0 +1,25 @@
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 SvgIconSynced = _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
+ viewBox: "0 0 24 24",
18
+ "aria-labelledby": titleId
19
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
20
+ id: titleId
21
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
22
+ d: "M12.985.993a.75.75 0 0 0-.515.227l-1.936 1.935a.8.8 0 0 0-.141.142l-.173.173a.75.75 0 0 0 0 1.06l2.25 2.25a.75.75 0 1 0 1.06-1.06l-1.203-1.203A7.48 7.48 0 0 1 19.5 12a7.48 7.48 0 0 1-3.183 6.126.75.75 0 1 0 .866 1.226A8.99 8.99 0 0 0 21 12c0-4.701-3.627-8.568-8.228-8.96l.758-.76a.75.75 0 0 0-.545-1.287M7.29 4.506a.75.75 0 0 0-.472.142A8.99 8.99 0 0 0 3 12c0 4.701 3.627 8.567 8.229 8.96l-.76.76a.75.75 0 1 0 1.061 1.06l1.936-1.935a.8.8 0 0 0 .141-.142l.173-.173a.75.75 0 0 0 0-1.06l-2.25-2.25a.75.75 0 1 0-1.06 1.06l1.203 1.203A7.48 7.48 0 0 1 4.5 12a7.48 7.48 0 0 1 3.183-6.126.75.75 0 0 0-.394-1.368"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconSynced;
@@ -0,0 +1,25 @@
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 SvgIconTrashCan = _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
+ viewBox: "0 0 24 24",
18
+ "aria-labelledby": titleId
19
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
20
+ id: titleId
21
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
22
+ d: "M12 2c-1.648 0-3 1.352-3 3H5.873a.8.8 0 0 0-.243 0H3.75a.75.75 0 1 0 0 1.5H5v12.75C5 20.76 6.24 22 7.75 22h8.5c1.51 0 2.75-1.24 2.75-2.75V6.5h1.25a.75.75 0 1 0 0-1.5h-1.877a.8.8 0 0 0-.243 0H15c0-1.648-1.352-3-3-3m0 1.5c.837 0 1.5.663 1.5 1.5h-3c0-.837.663-1.5 1.5-1.5m-5.5 3h11v12.75c0 .7-.55 1.25-1.25 1.25h-8.5c-.7 0-1.25-.55-1.25-1.25zm3.738 2.49a.75.75 0 0 0-.738.76v7.5a.75.75 0 1 0 1.5 0v-7.5a.75.75 0 0 0-.762-.76m3.5 0a.75.75 0 0 0-.738.76v7.5a.751.751 0 1 0 1.5 0v-7.5a.75.75 0 0 0-.762-.76"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconTrashCan;
@@ -0,0 +1,25 @@
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 SvgIconTreasureMap = _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
+ viewBox: "0 0 24 24",
18
+ "aria-labelledby": titleId
19
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
20
+ id: titleId
21
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
22
+ d: "M9.271 4a.75.75 0 0 0-.462.144l-5.5 4A.75.75 0 0 0 3 8.75v10.5a.75.75 0 0 0 1.191.606l5.059-3.678 5.059 3.678a.75.75 0 0 0 .882 0l5.5-4A.75.75 0 0 0 21 15.25V4.75a.75.75 0 0 0-1.191-.606L14.75 7.822 9.691 4.144A.75.75 0 0 0 9.271 4M9.25 5.678l5.059 3.678a.75.75 0 0 0 .882 0L19.5 6.223v8.645l-4.75 3.454-5.059-3.678a.75.75 0 0 0-.882 0L4.5 17.777V9.132zm-.507 3.311a.75.75 0 0 0-.523.23l-.47.47-.47-.47a.75.75 0 1 0-1.06 1.061l.47.47-.47.47a.75.75 0 1 0 1.06 1.06l.47-.47.47.47a.751.751 0 0 0 1.23-.817.8.8 0 0 0-.17-.243l-.47-.47.47-.47a.75.75 0 0 0-.537-1.29m9.007.511a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m-6.5.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m2 1.25a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m3 0a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m-1.5 2a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconTreasureMap;
@@ -0,0 +1,25 @@
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 SvgIconUndo = _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
+ viewBox: "0 0 24 24",
18
+ "aria-labelledby": titleId
19
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
20
+ id: titleId
21
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
22
+ d: "M8.735 2.993a.75.75 0 0 0-.515.227l-5 5a.75.75 0 0 0 0 1.06l5 5a.75.75 0 1 0 1.06-1.06L5.56 9.5h8.94c2.77 0 5 2.23 5 5s-2.23 5-5 5h-3.75a.751.751 0 1 0 0 1.5h3.75c3.58 0 6.5-2.92 6.5-6.5S18.08 8 14.5 8H5.56l3.72-3.72a.75.75 0 0 0-.545-1.287"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconUndo;
@@ -0,0 +1,25 @@
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 SvgIconVariable = _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
+ viewBox: "0 0 24 24",
18
+ "aria-labelledby": titleId
19
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
20
+ id: titleId
21
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
22
+ d: "M11.979 1a.75.75 0 0 0-.32.082L2.91 5.538a.75.75 0 0 0-.409.668v10.395a.75.75 0 0 0 .343.63l8.75 5.649a.75.75 0 0 0 .814 0l8.75-5.649a.75.75 0 0 0 .343-.63V6.206a.75.75 0 0 0-.41-.668l-8.75-4.456A.75.75 0 0 0 11.98 1M12 2.592l7.208 3.67-2.518 1.524-4.35-2.215a.75.75 0 0 0-.68 0L7.31 7.786 4.793 6.263zm0 4.489 3.179 1.62L12 10.622 8.821 8.7zm-8 .456L6.5 9.05v5.373a.75.75 0 0 0 .343.63l4.407 2.844v2.976L4 16.193zm16 0v8.655l-7.25 4.681v-2.976l4.407-2.844a.75.75 0 0 0 .343-.63V9.05zM8 9.957l3.25 1.966v4.19L8 14.012zm8 0v4.057l-3.25 2.098v-4.19z"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconVariable;
@@ -0,0 +1,25 @@
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 SvgIconWifi = _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
+ viewBox: "0 0 24 24",
18
+ "aria-labelledby": titleId
19
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
20
+ id: titleId
21
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
22
+ d: "M11.905 3.553A15.32 15.32 0 0 0 1.04 8.049a.75.75 0 1 0 1.06 1.06c5.422-5.421 14.19-5.421 19.61 0a.751.751 0 1 0 1.061-1.06 15.32 15.32 0 0 0-10.866-4.496m0 4.46a10.87 10.87 0 0 0-7.712 3.19.75.75 0 1 0 1.06 1.06 9.396 9.396 0 0 1 13.305 0 .75.75 0 1 0 1.06-1.06 10.87 10.87 0 0 0-7.713-3.19m0 4.459a6.43 6.43 0 0 0-4.56 1.883.75.75 0 1 0 1.062 1.061 4.937 4.937 0 0 1 6.997 0 .748.748 0 0 0 1.236-.236.75.75 0 0 0-.175-.825 6.43 6.43 0 0 0-4.56-1.883M12 17a2 2 0 1 0 0 4 2 2 0 0 0 0-4"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconWifi;
@@ -0,0 +1,25 @@
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 SvgInfo = _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
+ viewBox: "0 0 24 24",
18
+ "aria-labelledby": titleId
19
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
20
+ id: titleId
21
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
22
+ d: "M12 2C6.486 2 2 6.486 2 12s4.486 10 10 10 10-4.486 10-10S17.514 2 12 2m0 1.5c4.703 0 8.5 3.797 8.5 8.5s-3.797 8.5-8.5 8.5A8.49 8.49 0 0 1 3.5 12c0-4.703 3.797-8.5 8.5-8.5M12 7a1 1 0 1 0 0 2 1 1 0 0 0 0-2m-.012 3.49a.75.75 0 0 0-.738.76v5.5a.751.751 0 1 0 1.5 0v-5.5a.75.75 0 0 0-.762-.76"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgInfo;
@@ -0,0 +1,25 @@
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 SvgKey = _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
+ viewBox: "0 0 24 24",
18
+ "aria-labelledby": titleId
19
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
20
+ id: titleId
21
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
22
+ d: "M15 2.5c-3.58 0-6.5 2.92-6.5 6.5 0 .441.091.852.176 1.264L2.72 16.22a.75.75 0 0 0-.22.53v4a.75.75 0 0 0 .75.75h4a.75.75 0 0 0 .75-.75V19.5h1.75a.75.75 0 0 0 .75-.75V17h1.75a.75.75 0 0 0 .75-.75v-1.102c.636.207 1.298.352 2 .352 3.58 0 6.5-2.92 6.5-6.5S18.58 2.5 15 2.5M15 4c2.77 0 5 2.23 5 5s-2.23 5-5 5c-.869 0-1.68-.22-2.39-.607a.75.75 0 0 0-1.11.658V15.5H9.75a.75.75 0 0 0-.75.75V18H7.25a.75.75 0 0 0-.75.75V20H4v-2.94l5.994-5.994a.75.75 0 0 0 .193-.731A4.989 4.989 0 0 1 15 4m1 2.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgKey;