@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 SvgEdit = _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(#edit_svg__a)"
24
+ }, /*#__PURE__*/React.createElement("path", {
25
+ fill: "#E2F6EC",
26
+ fillRule: "evenodd",
27
+ d: "M113.962 6.222c26.535 2.074 38.447 30.862 44.693 56.735 4.621 19.146-2.901 38.537-18.932 49.978-15.595 11.131-35.55 10.486-51.986.639C63.732 99.19 34.311 80.943 40.954 53.757c7.619-31.19 41-50.037 73.009-47.535",
28
+ clipRule: "evenodd"
29
+ }), /*#__PURE__*/React.createElement("path", {
30
+ fill: "url(#edit_svg__b)",
31
+ fillOpacity: 0.2,
32
+ fillRule: "evenodd",
33
+ d: "M113.962 6.222c26.535 2.074 38.447 30.862 44.693 56.735 4.621 19.146-2.901 38.537-18.932 49.978-15.595 11.131-35.55 10.486-51.986.639C63.732 99.19 34.311 80.943 40.954 53.757c7.619-31.19 41-50.037 73.009-47.535",
34
+ clipRule: "evenodd"
35
+ }), /*#__PURE__*/React.createElement("path", {
36
+ fill: "url(#edit_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(#edit_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(#edit_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: "edit_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: "M113.962 6.222c26.535 2.074 38.447 30.862 44.693 56.735 4.621 19.146-2.901 38.537-18.932 49.978-15.595 11.131-35.55 10.486-51.986.639C63.732 99.19 34.311 80.943 40.954 53.757c7.619-31.19 41-50.037 73.009-47.535",
58
+ clipRule: "evenodd"
59
+ }), /*#__PURE__*/React.createElement("path", {
60
+ fill: "url(#edit_svg__f)",
61
+ fillOpacity: 0.2,
62
+ fillRule: "evenodd",
63
+ d: "M113.962 6.222c26.535 2.074 38.447 30.862 44.693 56.735 4.621 19.146-2.901 38.537-18.932 49.978-15.595 11.131-35.55 10.486-51.986.639C63.732 99.19 34.311 80.943 40.954 53.757c7.619-31.19 41-50.037 73.009-47.535",
64
+ clipRule: "evenodd"
65
+ })), /*#__PURE__*/React.createElement("g", {
66
+ mask: "url(#edit_svg__g)"
67
+ }, /*#__PURE__*/React.createElement("path", {
68
+ fill: "url(#edit_svg__h)",
69
+ d: "m170.095 88.904-47.246-47.247-47.587 47.1 45.069 45.07z",
70
+ opacity: 0.25
71
+ })), /*#__PURE__*/React.createElement("path", {
72
+ fill: "#EAF3DC",
73
+ d: "M109.401 41.401A9.3 9.3 0 0 1 116 38.68c2.393 0 4.786.907 6.599 2.721 3.628 3.628 3.628 9.57 0 13.198l-29.51 29.513a4.7 4.7 0 0 1-2.016 1.185l-.003.002-13.854 3.956a2 2 0 0 1-2.471-2.471L78.7 72.932a4.66 4.66 0 0 1 1.187-2.02z"
74
+ }), /*#__PURE__*/React.createElement("path", {
75
+ fill: "#2C8658",
76
+ d: "M116 38.68a9.3 9.3 0 0 0-6.599 2.721l-29.513 29.51c-.56.56-.97 1.257-1.187 2.021l-3.956 13.852a2 2 0 0 0 2.471 2.471L91.07 85.3l.003-.002a4.7 4.7 0 0 0 2.016-1.185l29.51-29.513c3.628-3.628 3.628-9.57 0-13.198A9.3 9.3 0 0 0 116 38.68m0 3.976a5.3 5.3 0 0 1 3.768 1.573h.003c2.1 2.1 2.1 5.442 0 7.542l-2.586 2.586-7.542-7.542 2.586-2.586A5.32 5.32 0 0 1 116 42.656m-9.185 6.987 7.542 7.542-24.1 24.099a.7.7 0 0 1-.288.17l-10.39 2.968 2.968-10.393v-.003a.65.65 0 0 1 .17-.286z"
77
+ })), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
78
+ id: "edit_svg__b",
79
+ x1: 145.5,
80
+ x2: 54.2,
81
+ y1: 111.5,
82
+ y2: 21.651,
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: "edit_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: "edit_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: "edit_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: "edit_svg__f",
127
+ x1: 145.5,
128
+ x2: 54.2,
129
+ y1: 111.5,
130
+ y2: 21.651,
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: "edit_svg__h",
139
+ x1: 94.972,
140
+ x2: 143.686,
141
+ y1: 68.5,
142
+ y2: 115.822,
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: "edit_svg__a"
151
+ }, /*#__PURE__*/React.createElement("path", {
152
+ fill: "#fff",
153
+ d: "M0 0h200v128H0z"
154
+ }))));
155
+ };
156
+ var _default = exports.default = SvgEdit;
@@ -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 SvgError = _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.5m-4.25 6c-.957 0-1.75.793-1.75 1.75v1.5c0 .957.793 1.75 1.75 1.75h8.5c.957 0 1.75-.793 1.75-1.75v-1.5c0-.957-.793-1.75-1.75-1.75zm0 1.5h8.5c.148 0 .25.102.25.25v1.5c0 .148-.102.25-.25.25h-8.5a.24.24 0 0 1-.25-.25v-1.5c0-.148.102-.25.25-.25"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgError;
@@ -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 SvgFilter = _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: "M4.25 3C3.568 3 3 3.568 3 4.25v1.545c0 1.148.528 2.234 1.43 2.945l5.07 3.995v7.515a.75.75 0 0 0 1.185.61l3.5-2.5a.75.75 0 0 0 .315-.61v-5.016l5.07-3.994A3.75 3.75 0 0 0 21 5.795V4.25C21 3.568 20.432 3 19.75 3zm.25 1.5h15v1.295c0 .69-.315 1.34-.857 1.767l-5 3.938h-3.287L5.357 7.562A2.25 2.25 0 0 1 4.5 5.795zM11 13h2v4.364l-2 1.429z"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgFilter;
@@ -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 SvgFolder = _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: "M4.25 4A2.26 2.26 0 0 0 2 6.25v11.5A2.26 2.26 0 0 0 4.25 20h15.5A2.26 2.26 0 0 0 22 17.75v-9a2.26 2.26 0 0 0-2.25-2.25h-7.728L9.785 4.638A2.75 2.75 0 0 0 8.026 4zm0 1.5h3.776c.293 0 .575.103.8.29l1.752 1.46-1.752 1.46c-.225.187-.507.29-.8.29H3.5V6.25c0-.423.327-.75.75-.75M12.022 8h7.728c.423 0 .75.327.75.75v9c0 .423-.327.75-.75.75H4.25a.74.74 0 0 1-.75-.75V10.5h4.526a2.75 2.75 0 0 0 1.76-.638z"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgFolder;
@@ -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 SvgHelp = _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.5m0 3c-1.648 0-3 1.352-3 3v.25a.75.75 0 1 0 1.5 0V9.5c0-.837.663-1.5 1.5-1.5s1.5.663 1.5 1.5c0 1.17-.304 1.317-.838 1.736-.267.21-.616.452-.915.859s-.497.974-.497 1.655a.751.751 0 1 0 1.5 0c0-.427.083-.6.206-.768.123-.167.336-.334.632-.566C14.179 11.951 15 11.079 15 9.5c0-1.648-1.352-3-3-3m0 9.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgHelp;
@@ -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 SvgHome = _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.976 2a.75.75 0 0 0-.44.161L4.43 7.76A3.75 3.75 0 0 0 3 10.705v9.545c0 .682.568 1.25 1.25 1.25h5c.682 0 1.25-.568 1.25-1.25v-5c0-.148.102-.25.25-.25h2.5c.148 0 .25.102.25.25v5c0 .682.568 1.25 1.25 1.25h5c.682 0 1.25-.568 1.25-1.25v-9.545a3.75 3.75 0 0 0-1.43-2.945L12.464 2.16A.75.75 0 0 0 11.976 2M12 3.705l6.643 5.233c.542.428.857 1.077.857 1.767V20H15v-4.75c0-.957-.793-1.75-1.75-1.75h-2.5c-.957 0-1.75.793-1.75 1.75V20H4.5v-9.295c0-.69.315-1.34.857-1.767z"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgHome;
@@ -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 SvgIconAdd = _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.5m-.012 3.49a.75.75 0 0 0-.738.76v3.5h-3.5a.751.751 0 1 0 0 1.5h3.5v3.5a.751.751 0 1 0 1.5 0v-3.5h3.5a.751.751 0 1 0 0-1.5h-3.5v-3.5a.75.75 0 0 0-.762-.76"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconAdd;
@@ -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 SvgIconArrowRight = _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: "#3A4445",
24
+ d: "M13.242 4.492a.75.75 0 0 0-.522 1.288l5.72 5.72H3.75a.751.751 0 1 0 0 1.5h14.69l-5.72 5.72a.75.75 0 1 0 1.06 1.06l7-7a.75.75 0 0 0 0-1.06l-7-7a.75.75 0 0 0-.538-.228"
25
+ }));
26
+ };
27
+ var _default = exports.default = SvgIconArrowRight;
@@ -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 SvgIconBusinessNetwork = _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 1a1.75 1.75 0 0 0-1.742 1.888L4.744 6.062a1.75 1.75 0 0 0-2.087.071A1.75 1.75 0 0 0 3 9.081v5.84a1.75 1.75 0 0 0 .75 3.329c.356 0 .703-.109.995-.311l5.51 3.172A1.75 1.75 0 0 0 12 23a1.75 1.75 0 0 0 1.742-1.888l5.514-3.173a1.75 1.75 0 0 0 2.087-.073A1.75 1.75 0 0 0 21 14.92v-5.84a1.75 1.75 0 0 0-.75-3.329 1.75 1.75 0 0 0-.995.312l-5.51-3.173A1.75 1.75 0 0 0 12 1m-.994 3.188a1.75 1.75 0 0 0 1.99.001l5.51 3.172a1.75 1.75 0 0 0 .994 1.72v5.84a1.75 1.75 0 0 0-.992 1.717l-5.514 3.174A1.75 1.75 0 0 0 12 19.5a1.75 1.75 0 0 0-.996.311l-5.51-3.172a1.75 1.75 0 0 0-.994-1.72v-5.84a1.75 1.75 0 0 0 .992-1.717zM12 6.5c-.77 0-1.444.316-1.873.799A2.55 2.55 0 0 0 9.5 9c0 .604.198 1.218.627 1.701s1.102.799 1.873.799 1.444-.316 1.873-.799S14.5 9.604 14.5 9s-.198-1.218-.627-1.701C13.443 6.816 12.771 6.5 12 6.5M12 8c.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 9c0-.27.094-.532.248-.705C11.402 8.12 11.604 8 12 8m-2.25 4.5c-.958 0-1.75.793-1.75 1.75V15c0 .86.618 1.505 1.347 1.898.728.392 1.646.602 2.653.602s1.925-.21 2.653-.602C15.382 16.505 16 15.86 16 15v-.75c0-.957-.793-1.75-1.75-1.75zm0 1.5h4.5c.148 0 .25.102.25.25V15c0 .107-.11.336-.558.577S12.788 16 12 16s-1.495-.182-1.942-.423c-.448-.241-.558-.47-.558-.577v-.75c0-.148.102-.25.25-.25"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconBusinessNetwork;
@@ -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 SvgIconCancel = _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.5m3.243 4.49a.75.75 0 0 0-.523.23L12 10.94 9.28 8.22a.75.75 0 1 0-1.06 1.06L10.94 12l-2.72 2.72a.75.75 0 1 0 1.06 1.06L12 13.06l2.72 2.72a.75.75 0 1 0 1.06-1.06L13.06 12l2.72-2.72a.75.75 0 0 0-.537-1.29"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconCancel;
@@ -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 SvgIconChargingBattery = _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: "M4.75 6C3.24 6 2 7.24 2 8.75v6.5C2 16.76 3.24 18 4.75 18h12.5c1.51 0 2.75-1.24 2.75-2.75V14h1a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-1V8.75C20 7.24 18.76 6 17.25 6zm0 1.5h12.5c.7 0 1.25.55 1.25 1.25v6.5c0 .7-.55 1.25-1.25 1.25H4.75c-.7 0-1.25-.55-1.25-1.25v-6.5c0-.7.55-1.25 1.25-1.25m5.652 1.503a.356.356 0 0 0-.402.354V12l-3.055-.99a.357.357 0 0 0-.316.622l4.785 3.285a.357.357 0 0 0 .586-.274V12l3.055.99a.357.357 0 0 0 .316-.622l-4.785-3.285a.36.36 0 0 0-.184-.08"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconChargingBattery;
@@ -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 SvgIconCheckmark = _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: "M21.735 4.493a.75.75 0 0 0-.515.227L8.25 17.69l-5.47-5.47a.751.751 0 0 0-1.29.527.75.75 0 0 0 .23.533l6 6a.75.75 0 0 0 1.06 0l13.5-13.5a.75.75 0 0 0-.545-1.287"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconCheckmark;
@@ -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 SvgIconCoinInHand = _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: "M13 1c-2.753 0-5 2.247-5 5s2.247 5 5 5c2.752 0 5-2.247 5-5s-2.248-5-5-5m0 1.5c1.942 0 3.5 1.558 3.5 3.5S14.942 9.5 13 9.5A3.49 3.49 0 0 1 9.5 6c0-1.942 1.558-3.5 3.5-3.5m-.008.76a.5.5 0 0 0-.492.507v.277a1.21 1.21 0 0 0-.917 1.163 1.22 1.22 0 0 0 1.229 1.209h.459c.218 0 .395.169.395.375a.386.386 0 0 1-.396.375h-.193a.5.5 0 0 0-.157 0h-.241a.63.63 0 0 1-.42-.153.417.417 0 0 0-.689.468c.15.226.508.443.93.497v.255a.499.499 0 1 0 1 0v-.255c.568-.106 1-.598 1-1.187a1.22 1.22 0 0 0-1.229-1.208h-.459a.387.387 0 0 1-.396-.375c0-.206.178-.375.396-.375h.096a.5.5 0 0 0 .177 0h.165c.209 0 .308.132.313.138a.416.416 0 1 0 .707-.442 1.2 1.2 0 0 0-.77-.505v-.257a.5.5 0 0 0-.508-.507m7.815 7.75c-.56.005-1.092.227-1.565.578-.507.377-2.033 1.516-3.353 2.502-.287-.914-1.136-1.59-2.139-1.59h-2.196c-1.406 0-2.061-.114-2.624-.233S7.823 12 6.913 12c-1.942 0-3.407 1.246-4.366 2.396-.96 1.148-1.48 2.296-1.48 2.296a.75.75 0 1 0 1.366.622s.45-.98 1.265-1.957C4.514 14.38 5.63 13.5 6.913 13.5c.76 0 1.09.103 1.705.233s1.444.267 2.936.267h2.196c.423 0 .75.327.75.75a.74.74 0 0 1-.285.589l-.042.035-.001.001a.76.76 0 0 1-.422.125h-3.5a.751.751 0 1 0 0 1.5h3.5c.47 0 .908-.15 1.27-.4l.002-.001a1 1 0 0 0 .09-.058s4.276-3.193 5.025-3.749v-.001c.282-.21.518-.28.683-.281s.29.039.46.21a.736.736 0 0 1 .006 1.047c-2.678 2.251-4.362 3.751-5.475 4.63-1.126.89-1.598 1.103-2.061 1.103-1.826 0-3.85-.5-6-.5-1.25 0-2.129.672-2.6 1.3-.47.628-.628 1.268-.628 1.268a.75.75 0 1 0 1.456.364s.093-.36.372-.732.65-.7 1.4-.7c1.904 0 3.918.5 6 .5.951 0 1.792-.478 2.991-1.425 1.184-.935 2.847-2.42 5.508-4.658a1 1 0 0 0 .092-.076q.003-.006.008-.012l.002.002.026-.027a.75.75 0 0 0 .165-.267c.623-.876.582-2.095-.201-2.878a2.17 2.17 0 0 0-1.534-.65"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconCoinInHand;
@@ -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 SvgIconColumns = _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: "M4.25 3.5A2.26 2.26 0 0 0 2 5.75v12.5a2.26 2.26 0 0 0 2.25 2.25h15.5A2.26 2.26 0 0 0 22 18.25V5.75a2.26 2.26 0 0 0-2.25-2.25zm0 1.5H8v14H4.25a.74.74 0 0 1-.75-.75V5.75c0-.423.327-.75.75-.75M9.5 5h5v14h-5zM16 5h3.75c.423 0 .75.327.75.75v12.5c0 .423-.327.75-.75.75H16z"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconColumns;
@@ -0,0 +1,26 @@
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 SvgIconComment = _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
+ fill: "#333025",
23
+ d: "M5.25 3.5A3.26 3.26 0 0 0 2 6.75v8.5a3.26 3.26 0 0 0 3.25 3.25H6v2.75c0 .983 1.214 1.59 2 1l5-3.75h5.75A3.26 3.26 0 0 0 22 15.25v-8.5a3.26 3.26 0 0 0-3.25-3.25zm0 1.5h13.5c.975 0 1.75.775 1.75 1.75v8.5A1.74 1.74 0 0 1 18.75 17h-6a.75.75 0 0 0-.45.15l-4.8 3.6v-3a.75.75 0 0 0-.75-.75h-1.5a1.74 1.74 0 0 1-1.75-1.75v-8.5C3.5 5.775 4.275 5 5.25 5m2.5 3.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.5z"
24
+ }));
25
+ };
26
+ var _default = exports.default = SvgIconComment;
@@ -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 SvgIconDashboard = _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.5m0 .75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5M7.05 6.3a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m9.9 0a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m.299 3.308c-1.145-.019-5.186 1.283-5.632 1.468a1 1 0 0 0 .766 1.848c.51-.212 5.372-2.71 5.16-3.22-.026-.064-.13-.093-.294-.096M5 11.25a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m14 0a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5M7.05 16.2a.75.75 0 1 0 0 1.499.75.75 0 0 0 0-1.5m9.9 0a.75.75 0 1 0 0 1.499.75.75 0 0 0 0-1.5"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconDashboard;
@@ -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 SvgIconDataMigration = _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.25 2C4.74 2 3.5 3.24 3.5 4.75v1.5c0 .79.355 1.495.895 2-.54.505-.895 1.21-.895 2v1.5c0 .79.355 1.495.895 2-.54.505-.895 1.21-.895 2v1.5C3.5 18.76 4.74 20 6.25 20h5.25q-.299-.713-.425-1.5H6.25c-.7 0-1.25-.55-1.25-1.25v-1.5c0-.7.55-1.25 1.25-1.25h5.485c.285-.55.65-1.055 1.08-1.5H6.25C5.55 13 5 12.45 5 11.75v-1.5C5 9.55 5.55 9 6.25 9h11.5c.7 0 1.25.55 1.25 1.25v.925c.53.125 1.03.315 1.5.56V10.25c0-.79-.355-1.495-.895-2 .54-.505.895-1.21.895-2v-1.5C20.5 3.24 19.26 2 17.75 2zm0 1.5h11.5c.7 0 1.25.55 1.25 1.25v1.5c0 .7-.55 1.25-1.25 1.25H6.25C5.55 7.5 5 6.95 5 6.25v-1.5c0-.7.55-1.25 1.25-1.25M17.5 12a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11M15 14.5a.5.5 0 0 1 .5.5v1.5c0 1.103.897 2 2 2h1.793l-.646-.646a.5.5 0 1 1 .707-.707l1.5 1.5a.5.5 0 0 1 0 .707l-1.5 1.5a.5.5 0 1 1-.707-.707l.646-.647H17.5c-1.655 0-3-1.346-3-3V15a.5.5 0 0 1 .5-.5"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconDataMigration;
@@ -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 SvgIconEdit = _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: "#3A4445",
24
+ d: "M18 2.505c-.897 0-1.795.34-2.475 1.02L4.458 14.592a1.75 1.75 0 0 0-.445.758l-1.484 5.194a.75.75 0 0 0 .927.927l5.195-1.484h.001c.285-.082.546-.234.756-.445L20.475 8.475a3.51 3.51 0 0 0 0-4.95A3.5 3.5 0 0 0 18 2.505m0 1.491c.51 0 1.02.197 1.413.59h.001c.787.787.787 2.04 0 2.828l-.97.97-2.828-2.828.97-.97c.393-.393.904-.59 1.414-.59m-3.444 2.62 2.828 2.828-9.037 9.037a.25.25 0 0 1-.109.064l-3.896 1.113 1.113-3.897v-.001a.25.25 0 0 1 .064-.108z"
25
+ }));
26
+ };
27
+ var _default = exports.default = SvgIconEdit;
@@ -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 SvgIconExport = _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.25 2A2.26 2.26 0 0 0 4 4.25v15.5A2.26 2.26 0 0 0 6.25 22h11.5A2.26 2.26 0 0 0 20 19.75V9.25a.75.75 0 0 0-.22-.53l-.008-.008L13.28 2.22a.75.75 0 0 0-.53-.22zm0 1.5H12v4.25A2.26 2.26 0 0 0 14.25 10h4.25v9.75c0 .423-.327.75-.75.75H6.25a.74.74 0 0 1-.75-.75V4.25c0-.423.327-.75.75-.75m7.25 1.06 3.94 3.94h-3.19a.74.74 0 0 1-.75-.75zm-1.512 6.43a.75.75 0 0 0-.738.76v3.19l-.72-.72a.75.75 0 1 0-1.06 1.06l2 2a.75.75 0 0 0 1.06 0l2-2a.75.75 0 1 0-1.06-1.06l-.72.72v-3.19a.75.75 0 0 0-.762-.76m.023 6.51H8.75a.751.751 0 1 0 0 1.5h6.5a.751.751 0 1 0 0-1.5z"
23
+ }));
24
+ };
25
+ var _default = exports.default = SvgIconExport;