@lavalogic/scoria 0.0.1

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 (581) hide show
  1. package/README.md +58 -0
  2. package/dist/Components/Action.svelte +258 -0
  3. package/dist/Components/Action.svelte.d.ts +30 -0
  4. package/dist/Components/AlertModal.svelte +373 -0
  5. package/dist/Components/AlertModal.svelte.d.ts +3 -0
  6. package/dist/Components/BigRadioSet.svelte +88 -0
  7. package/dist/Components/BigRadioSet.svelte.d.ts +30 -0
  8. package/dist/Components/Bubble.svelte +115 -0
  9. package/dist/Components/Bubble.svelte.d.ts +21 -0
  10. package/dist/Components/Button.svelte +540 -0
  11. package/dist/Components/Button.svelte.d.ts +32 -0
  12. package/dist/Components/Checkbox.svelte +168 -0
  13. package/dist/Components/Checkbox.svelte.d.ts +15 -0
  14. package/dist/Components/CollapsibleCard.svelte +136 -0
  15. package/dist/Components/CollapsibleCard.svelte.d.ts +11 -0
  16. package/dist/Components/Contexts/ContextMenu.svelte +73 -0
  17. package/dist/Components/Contexts/ContextMenu.svelte.d.ts +3 -0
  18. package/dist/Components/Contexts/ContextMenuDivider.svelte +11 -0
  19. package/dist/Components/Contexts/ContextMenuDivider.svelte.d.ts +6 -0
  20. package/dist/Components/Contexts/ContextMenuOption.svelte +65 -0
  21. package/dist/Components/Contexts/ContextMenuOption.svelte.d.ts +10 -0
  22. package/dist/Components/Contexts/Toast.svelte +89 -0
  23. package/dist/Components/Contexts/Toast.svelte.d.ts +8 -0
  24. package/dist/Components/Contexts/ToastContainer.svelte +54 -0
  25. package/dist/Components/Contexts/ToastContainer.svelte.d.ts +3 -0
  26. package/dist/Components/Contexts/Tooltip.svelte +116 -0
  27. package/dist/Components/Contexts/Tooltip.svelte.d.ts +3 -0
  28. package/dist/Components/DataMatrixIcon.svelte +58 -0
  29. package/dist/Components/DataMatrixIcon.svelte.d.ts +9 -0
  30. package/dist/Components/DateInput.svelte +356 -0
  31. package/dist/Components/DateInput.svelte.d.ts +24 -0
  32. package/dist/Components/DatePicker.svelte +346 -0
  33. package/dist/Components/DatePicker.svelte.d.ts +11 -0
  34. package/dist/Components/DesktopModal.svelte +235 -0
  35. package/dist/Components/DesktopModal.svelte.d.ts +23 -0
  36. package/dist/Components/Dial.svelte +219 -0
  37. package/dist/Components/Dial.svelte.d.ts +37 -0
  38. package/dist/Components/DimensionInput.svelte +486 -0
  39. package/dist/Components/DimensionInput.svelte.d.ts +32 -0
  40. package/dist/Components/FileCard.svelte +32 -0
  41. package/dist/Components/FileCard.svelte.d.ts +7 -0
  42. package/dist/Components/FileUpload.svelte +413 -0
  43. package/dist/Components/FileUpload.svelte.d.ts +27 -0
  44. package/dist/Components/GridInput.svelte +187 -0
  45. package/dist/Components/GridInput.svelte.d.ts +30 -0
  46. package/dist/Components/GridInputSet.svelte +37 -0
  47. package/dist/Components/GridInputSet.svelte.d.ts +30 -0
  48. package/dist/Components/HorizontalTabGroup.svelte +81 -0
  49. package/dist/Components/HorizontalTabGroup.svelte.d.ts +34 -0
  50. package/dist/Components/HorizontalTabGroupButton.svelte +85 -0
  51. package/dist/Components/HorizontalTabGroupButton.svelte.d.ts +29 -0
  52. package/dist/Components/Icon.svelte +1412 -0
  53. package/dist/Components/Icon.svelte.d.ts +887 -0
  54. package/dist/Components/LoadingAnimation.svelte +129 -0
  55. package/dist/Components/LoadingAnimation.svelte.d.ts +6 -0
  56. package/dist/Components/LoadingModal.svelte +316 -0
  57. package/dist/Components/LoadingModal.svelte.d.ts +7 -0
  58. package/dist/Components/LoadingOverlay.svelte +58 -0
  59. package/dist/Components/LoadingOverlay.svelte.d.ts +8 -0
  60. package/dist/Components/Modal.svelte +577 -0
  61. package/dist/Components/Modal.svelte.d.ts +31 -0
  62. package/dist/Components/MultiSelect.svelte +412 -0
  63. package/dist/Components/MultiSelect.svelte.d.ts +49 -0
  64. package/dist/Components/NumberInput.svelte +407 -0
  65. package/dist/Components/NumberInput.svelte.d.ts +32 -0
  66. package/dist/Components/PasswordInput.svelte +324 -0
  67. package/dist/Components/PasswordInput.svelte.d.ts +18 -0
  68. package/dist/Components/Portal.svelte +31 -0
  69. package/dist/Components/Portal.svelte.d.ts +8 -0
  70. package/dist/Components/ProgressBubble.svelte +134 -0
  71. package/dist/Components/ProgressBubble.svelte.d.ts +8 -0
  72. package/dist/Components/QuerySelect.svelte +556 -0
  73. package/dist/Components/QuerySelect.svelte.d.ts +52 -0
  74. package/dist/Components/SingleSelect.svelte +480 -0
  75. package/dist/Components/SingleSelect.svelte.d.ts +61 -0
  76. package/dist/Components/Switch.svelte +151 -0
  77. package/dist/Components/Switch.svelte.d.ts +12 -0
  78. package/dist/Components/Table/Body/QuickSearchCell.svelte +527 -0
  79. package/dist/Components/Table/Body/QuickSearchCell.svelte.d.ts +30 -0
  80. package/dist/Components/Table/Body/Rows/ColumnHighlight.svelte +67 -0
  81. package/dist/Components/Table/Body/Rows/ColumnHighlight.svelte.d.ts +8 -0
  82. package/dist/Components/Table/Body/Rows/ColumnList.svelte +67 -0
  83. package/dist/Components/Table/Body/Rows/ColumnList.svelte.d.ts +27 -0
  84. package/dist/Components/Table/Body/Rows/ColumnListRow.svelte +187 -0
  85. package/dist/Components/Table/Body/Rows/ColumnListRow.svelte.d.ts +28 -0
  86. package/dist/Components/Table/Body/Rows/Columns/ActionsCell.svelte +305 -0
  87. package/dist/Components/Table/Body/Rows/Columns/ActionsCell.svelte.d.ts +29 -0
  88. package/dist/Components/Table/Body/Rows/Columns/BubbleCell.svelte +171 -0
  89. package/dist/Components/Table/Body/Rows/Columns/BubbleCell.svelte.d.ts +28 -0
  90. package/dist/Components/Table/Body/Rows/Columns/ExpandCell.svelte +149 -0
  91. package/dist/Components/Table/Body/Rows/Columns/ExpandCell.svelte.d.ts +31 -0
  92. package/dist/Components/Table/Body/Rows/Columns/FocusableImmutableCell.svelte +156 -0
  93. package/dist/Components/Table/Body/Rows/Columns/FocusableImmutableCell.svelte.d.ts +31 -0
  94. package/dist/Components/Table/Body/Rows/Columns/ProgressCell.svelte +161 -0
  95. package/dist/Components/Table/Body/Rows/Columns/ProgressCell.svelte.d.ts +28 -0
  96. package/dist/Components/Table/Body/Rows/Columns/TableAction.svelte +62 -0
  97. package/dist/Components/Table/Body/Rows/Columns/TableAction.svelte.d.ts +30 -0
  98. package/dist/Components/Table/Body/Rows/Columns/TableCheckbox.svelte +155 -0
  99. package/dist/Components/Table/Body/Rows/Columns/TableCheckbox.svelte.d.ts +30 -0
  100. package/dist/Components/Table/Body/Rows/Columns/TableColumn.svelte +140 -0
  101. package/dist/Components/Table/Body/Rows/Columns/TableColumn.svelte.d.ts +31 -0
  102. package/dist/Components/Table/Body/Rows/Columns/TableDatePicker.svelte +290 -0
  103. package/dist/Components/Table/Body/Rows/Columns/TableDatePicker.svelte.d.ts +28 -0
  104. package/dist/Components/Table/Body/Rows/Columns/TableNumberInput.svelte +359 -0
  105. package/dist/Components/Table/Body/Rows/Columns/TableNumberInput.svelte.d.ts +28 -0
  106. package/dist/Components/Table/Body/Rows/Columns/TableQuerySelect.svelte +331 -0
  107. package/dist/Components/Table/Body/Rows/Columns/TableQuerySelect.svelte.d.ts +28 -0
  108. package/dist/Components/Table/Body/Rows/Columns/TableRowSelectionCheckbox.svelte +157 -0
  109. package/dist/Components/Table/Body/Rows/Columns/TableRowSelectionCheckbox.svelte.d.ts +30 -0
  110. package/dist/Components/Table/Body/Rows/Columns/TableSelect.svelte +354 -0
  111. package/dist/Components/Table/Body/Rows/Columns/TableSelect.svelte.d.ts +28 -0
  112. package/dist/Components/Table/Body/Rows/Columns/TableTextInput.svelte +375 -0
  113. package/dist/Components/Table/Body/Rows/Columns/TableTextInput.svelte.d.ts +28 -0
  114. package/dist/Components/Table/Body/Rows/Columns/ValidityCell.svelte +227 -0
  115. package/dist/Components/Table/Body/Rows/Columns/ValidityCell.svelte.d.ts +33 -0
  116. package/dist/Components/Table/Body/Rows/TableRow.svelte +201 -0
  117. package/dist/Components/Table/Body/Rows/TableRow.svelte.d.ts +30 -0
  118. package/dist/Components/Table/Body/TableBody.svelte +74 -0
  119. package/dist/Components/Table/Body/TableBody.svelte.d.ts +27 -0
  120. package/dist/Components/Table/ColumnDefinitions/ExampleItemColumnDef.svelte.d.ts +7 -0
  121. package/dist/Components/Table/ColumnDefinitions/ExampleItemColumnDef.svelte.js +139 -0
  122. package/dist/Components/Table/Headers/HighlightAllHeader.svelte +52 -0
  123. package/dist/Components/Table/Headers/HighlightAllHeader.svelte.d.ts +24 -0
  124. package/dist/Components/Table/Headers/SelectAllHeader.svelte +62 -0
  125. package/dist/Components/Table/Headers/SelectAllHeader.svelte.d.ts +24 -0
  126. package/dist/Components/Table/Headers/TableHead.svelte +366 -0
  127. package/dist/Components/Table/Headers/TableHead.svelte.d.ts +29 -0
  128. package/dist/Components/Table/Misc/ColumnPanel.svelte +96 -0
  129. package/dist/Components/Table/Misc/ColumnPanel.svelte.d.ts +24 -0
  130. package/dist/Components/Table/Misc/ColumnPanelModal.svelte +137 -0
  131. package/dist/Components/Table/Misc/ColumnPanelModal.svelte.d.ts +27 -0
  132. package/dist/Components/Table/Misc/FilterInput.svelte +635 -0
  133. package/dist/Components/Table/Misc/FilterInput.svelte.d.ts +45 -0
  134. package/dist/Components/Table/Misc/FilterPanel.svelte +49 -0
  135. package/dist/Components/Table/Misc/FilterPanel.svelte.d.ts +24 -0
  136. package/dist/Components/Table/Misc/FilterPanelModal.svelte +74 -0
  137. package/dist/Components/Table/Misc/FilterPanelModal.svelte.d.ts +27 -0
  138. package/dist/Components/Table/Misc/SidePanel.svelte +51 -0
  139. package/dist/Components/Table/Misc/SidePanel.svelte.d.ts +10 -0
  140. package/dist/Components/Table/Misc/TableFooter.svelte +364 -0
  141. package/dist/Components/Table/Misc/TableFooter.svelte.d.ts +27 -0
  142. package/dist/Components/Table/Misc/TableHorizontalBar.svelte +171 -0
  143. package/dist/Components/Table/Misc/TableHorizontalBar.svelte.d.ts +24 -0
  144. package/dist/Components/Table/Misc/TableSidebar.svelte +186 -0
  145. package/dist/Components/Table/Misc/TableSidebar.svelte.d.ts +24 -0
  146. package/dist/Components/Table/Misc/ToolboxPanel.svelte +84 -0
  147. package/dist/Components/Table/Misc/ToolboxPanel.svelte.d.ts +24 -0
  148. package/dist/Components/Table/Misc/ToolboxPanelModal.svelte +108 -0
  149. package/dist/Components/Table/Misc/ToolboxPanelModal.svelte.d.ts +27 -0
  150. package/dist/Components/Table/NestedTable.svelte +86 -0
  151. package/dist/Components/Table/NestedTable.svelte.d.ts +34 -0
  152. package/dist/Components/Table/Table.svelte +555 -0
  153. package/dist/Components/Table/Table.svelte.d.ts +37 -0
  154. package/dist/Components/Table/Types/Columns/AbstractDisplayDef.svelte.d.ts +19 -0
  155. package/dist/Components/Table/Types/Columns/AbstractDisplayDef.svelte.js +10 -0
  156. package/dist/Components/Table/Types/Columns/Column.d.ts +10 -0
  157. package/dist/Components/Table/Types/Columns/Column.js +1 -0
  158. package/dist/Components/Table/Types/Columns/ColumnDefPreset.d.ts +11 -0
  159. package/dist/Components/Table/Types/Columns/ColumnDefPreset.js +1 -0
  160. package/dist/Components/Table/Types/Columns/ColumnPinningState.d.ts +4 -0
  161. package/dist/Components/Table/Types/Columns/ColumnPinningState.js +1 -0
  162. package/dist/Components/Table/Types/Columns/ColumnSizingState.d.ts +1 -0
  163. package/dist/Components/Table/Types/Columns/ColumnSizingState.js +1 -0
  164. package/dist/Components/Table/Types/Columns/ColumnType.d.ts +9 -0
  165. package/dist/Components/Table/Types/Columns/ColumnType.js +10 -0
  166. package/dist/Components/Table/Types/Columns/DateColumn.d.ts +10 -0
  167. package/dist/Components/Table/Types/Columns/DateColumn.js +1 -0
  168. package/dist/Components/Table/Types/Columns/DateTableCell.d.ts +8 -0
  169. package/dist/Components/Table/Types/Columns/DateTableCell.js +1 -0
  170. package/dist/Components/Table/Types/Columns/Definitions/AccessorFn.d.ts +1 -0
  171. package/dist/Components/Table/Types/Columns/Definitions/AccessorFn.js +1 -0
  172. package/dist/Components/Table/Types/Columns/Definitions/Accessors/AccessorDef.svelte.d.ts +10 -0
  173. package/dist/Components/Table/Types/Columns/Definitions/Accessors/AccessorDef.svelte.js +5 -0
  174. package/dist/Components/Table/Types/Columns/Definitions/Accessors/AccessorType.d.ts +8 -0
  175. package/dist/Components/Table/Types/Columns/Definitions/Accessors/AccessorType.js +9 -0
  176. package/dist/Components/Table/Types/Columns/Definitions/Accessors/CheckboxDef.d.ts +9 -0
  177. package/dist/Components/Table/Types/Columns/Definitions/Accessors/CheckboxDef.js +8 -0
  178. package/dist/Components/Table/Types/Columns/Definitions/Accessors/DateInputDef.svelte.d.ts +11 -0
  179. package/dist/Components/Table/Types/Columns/Definitions/Accessors/DateInputDef.svelte.js +10 -0
  180. package/dist/Components/Table/Types/Columns/Definitions/Accessors/NumberInputDef.svelte.d.ts +14 -0
  181. package/dist/Components/Table/Types/Columns/Definitions/Accessors/NumberInputDef.svelte.js +13 -0
  182. package/dist/Components/Table/Types/Columns/Definitions/Accessors/QueryDef.d.ts +15 -0
  183. package/dist/Components/Table/Types/Columns/Definitions/Accessors/QueryDef.js +12 -0
  184. package/dist/Components/Table/Types/Columns/Definitions/Accessors/SelectDef.svelte.d.ts +18 -0
  185. package/dist/Components/Table/Types/Columns/Definitions/Accessors/SelectDef.svelte.js +16 -0
  186. package/dist/Components/Table/Types/Columns/Definitions/Accessors/TextInputDef.d.ts +9 -0
  187. package/dist/Components/Table/Types/Columns/Definitions/Accessors/TextInputDef.js +8 -0
  188. package/dist/Components/Table/Types/Columns/Definitions/Actions/ActionsDef.svelte.d.ts +16 -0
  189. package/dist/Components/Table/Types/Columns/Definitions/Actions/ActionsDef.svelte.js +19 -0
  190. package/dist/Components/Table/Types/Columns/Definitions/ColumnDef.svelte.d.ts +52 -0
  191. package/dist/Components/Table/Types/Columns/Definitions/ColumnDef.svelte.js +77 -0
  192. package/dist/Components/Table/Types/Columns/Definitions/ColumnDefSet.d.ts +11 -0
  193. package/dist/Components/Table/Types/Columns/Definitions/ColumnDefSet.js +1 -0
  194. package/dist/Components/Table/Types/Columns/Definitions/Display/BubbleDef.svelte.d.ts +11 -0
  195. package/dist/Components/Table/Types/Columns/Definitions/Display/BubbleDef.svelte.js +10 -0
  196. package/dist/Components/Table/Types/Columns/Definitions/Display/DisplayDef.d.ts +8 -0
  197. package/dist/Components/Table/Types/Columns/Definitions/Display/DisplayDef.js +8 -0
  198. package/dist/Components/Table/Types/Columns/Definitions/Display/ProgressBarDef.svelte.d.ts +11 -0
  199. package/dist/Components/Table/Types/Columns/Definitions/Display/ProgressBarDef.svelte.js +10 -0
  200. package/dist/Components/Table/Types/Columns/Definitions/Display/ValidityDef.svelte.d.ts +11 -0
  201. package/dist/Components/Table/Types/Columns/Definitions/Display/ValidityDef.svelte.js +11 -0
  202. package/dist/Components/Table/Types/Columns/Definitions/Expand/ExpandDef.svelte.d.ts +21 -0
  203. package/dist/Components/Table/Types/Columns/Definitions/Expand/ExpandDef.svelte.js +18 -0
  204. package/dist/Components/Table/Types/Columns/Definitions/FilterOnly/FilterOnlyDef.d.ts +6 -0
  205. package/dist/Components/Table/Types/Columns/Definitions/FilterOnly/FilterOnlyDef.js +5 -0
  206. package/dist/Components/Table/Types/Columns/Definitions/RowSelection/RowSelectionDef.svelte.d.ts +7 -0
  207. package/dist/Components/Table/Types/Columns/Definitions/RowSelection/RowSelectionDef.svelte.js +15 -0
  208. package/dist/Components/Table/Types/Columns/Definitions/ValidationFn.d.ts +3 -0
  209. package/dist/Components/Table/Types/Columns/Definitions/ValidationFn.js +1 -0
  210. package/dist/Components/Table/Types/Columns/DefsWrapper.d.ts +6 -0
  211. package/dist/Components/Table/Types/Columns/DefsWrapper.js +1 -0
  212. package/dist/Components/Table/Types/Columns/DisplayType.d.ts +7 -0
  213. package/dist/Components/Table/Types/Columns/DisplayType.js +8 -0
  214. package/dist/Components/Table/Types/Columns/ExpandColumn.d.ts +10 -0
  215. package/dist/Components/Table/Types/Columns/ExpandColumn.js +1 -0
  216. package/dist/Components/Table/Types/Columns/ExpandTableCell.d.ts +8 -0
  217. package/dist/Components/Table/Types/Columns/ExpandTableCell.js +1 -0
  218. package/dist/Components/Table/Types/Columns/ProgressBarColumn.d.ts +10 -0
  219. package/dist/Components/Table/Types/Columns/ProgressBarColumn.js +1 -0
  220. package/dist/Components/Table/Types/Columns/ProgressBarTableCell.d.ts +8 -0
  221. package/dist/Components/Table/Types/Columns/ProgressBarTableCell.js +1 -0
  222. package/dist/Components/Table/Types/Columns/TableActionButton.d.ts +8 -0
  223. package/dist/Components/Table/Types/Columns/TableActionButton.js +1 -0
  224. package/dist/Components/Table/Types/Columns/TableCell.d.ts +8 -0
  225. package/dist/Components/Table/Types/Columns/TableCell.js +1 -0
  226. package/dist/Components/Table/Types/Columns/VisibilityState.d.ts +1 -0
  227. package/dist/Components/Table/Types/Columns/VisibilityState.js +1 -0
  228. package/dist/Components/Table/Types/Context/ReadonlyRowModel.d.ts +6 -0
  229. package/dist/Components/Table/Types/Context/ReadonlyRowModel.js +1 -0
  230. package/dist/Components/Table/Types/Context/Row.d.ts +10 -0
  231. package/dist/Components/Table/Types/Context/Row.js +1 -0
  232. package/dist/Components/Table/Types/Context/RowModel.d.ts +5 -0
  233. package/dist/Components/Table/Types/Context/RowModel.js +1 -0
  234. package/dist/Components/Table/Types/Context/Table.d.ts +33 -0
  235. package/dist/Components/Table/Types/Context/Table.js +1 -0
  236. package/dist/Components/Table/Types/Context/TableContext.svelte.d.ts +232 -0
  237. package/dist/Components/Table/Types/Context/TableContext.svelte.js +2317 -0
  238. package/dist/Components/Table/Types/Context/TableInitOptions.d.ts +14 -0
  239. package/dist/Components/Table/Types/Context/TableInitOptions.js +1 -0
  240. package/dist/Components/Table/Types/Context/TableSettings.d.ts +8 -0
  241. package/dist/Components/Table/Types/Context/TableSettings.js +1 -0
  242. package/dist/Components/Table/Types/Coordinates/CellCoordinates.d.ts +5 -0
  243. package/dist/Components/Table/Types/Coordinates/CellCoordinates.js +1 -0
  244. package/dist/Components/Table/Types/Coordinates/CellCoordinatesWithoutColumn.d.ts +2 -0
  245. package/dist/Components/Table/Types/Coordinates/CellCoordinatesWithoutColumn.js +1 -0
  246. package/dist/Components/Table/Types/DataRepository/DataRepository.d.ts +40 -0
  247. package/dist/Components/Table/Types/DataRepository/DataRepository.js +1 -0
  248. package/dist/Components/Table/Types/DataRepository/LocalDataRepository.d.ts +24 -0
  249. package/dist/Components/Table/Types/DataRepository/LocalDataRepository.js +1 -0
  250. package/dist/Components/Table/Types/DataRepository/LocalTableDataRepository.svelte.d.ts +55 -0
  251. package/dist/Components/Table/Types/DataRepository/LocalTableDataRepository.svelte.js +311 -0
  252. package/dist/Components/Table/Types/DataRepository/RemoteDataRepository.d.ts +19 -0
  253. package/dist/Components/Table/Types/DataRepository/RemoteDataRepository.js +1 -0
  254. package/dist/Components/Table/Types/DataRepository/RemoteTableDataRepository.svelte.d.ts +92 -0
  255. package/dist/Components/Table/Types/DataRepository/RemoteTableDataRepository.svelte.js +521 -0
  256. package/dist/Components/Table/Types/DataRepository/SortingState.d.ts +5 -0
  257. package/dist/Components/Table/Types/DataRepository/SortingState.js +1 -0
  258. package/dist/Components/Table/Types/DataRepository/TableDataRepository.svelte.d.ts +47 -0
  259. package/dist/Components/Table/Types/DataRepository/TableDataRepository.svelte.js +75 -0
  260. package/dist/Components/Table/Types/ExpandedPanel.d.ts +6 -0
  261. package/dist/Components/Table/Types/ExpandedPanel.js +7 -0
  262. package/dist/Components/Table/Types/Filtering/ColumnFiltersState.d.ts +5 -0
  263. package/dist/Components/Table/Types/Filtering/ColumnFiltersState.js +1 -0
  264. package/dist/Components/Table/Types/Filtering/CustomFilter.d.ts +12 -0
  265. package/dist/Components/Table/Types/Filtering/CustomFilter.js +1 -0
  266. package/dist/Components/Table/Types/Filtering/CustomFilterType.d.ts +6 -0
  267. package/dist/Components/Table/Types/Filtering/CustomFilterType.js +7 -0
  268. package/dist/Components/Table/Types/Filtering/CustomFlterFn.d.ts +2 -0
  269. package/dist/Components/Table/Types/Filtering/CustomFlterFn.js +1 -0
  270. package/dist/Components/Table/Types/Filtering/CustomProxyFIlter.d.ts +10 -0
  271. package/dist/Components/Table/Types/Filtering/CustomProxyFIlter.js +1 -0
  272. package/dist/Components/Table/Types/Filtering/CustomRemoteFilters.d.ts +3 -0
  273. package/dist/Components/Table/Types/Filtering/CustomRemoteFilters.js +1 -0
  274. package/dist/Components/Table/Types/Filtering/FilterFn.d.ts +9 -0
  275. package/dist/Components/Table/Types/Filtering/FilterFn.js +1 -0
  276. package/dist/Components/Table/Types/Filtering/FilterMode.d.ts +3 -0
  277. package/dist/Components/Table/Types/Filtering/FilterMode.js +1 -0
  278. package/dist/Components/Table/Types/Filtering/FilterType.d.ts +4 -0
  279. package/dist/Components/Table/Types/Filtering/FilterType.js +5 -0
  280. package/dist/Components/Table/Types/Filtering/HasCustomFilterFunction.d.ts +3 -0
  281. package/dist/Components/Table/Types/Filtering/HasCustomFilterFunction.js +1 -0
  282. package/dist/Components/Table/Types/Filtering/NumberDateFilterMode.d.ts +13 -0
  283. package/dist/Components/Table/Types/Filtering/NumberDateFilterMode.js +14 -0
  284. package/dist/Components/Table/Types/Filtering/StringFilterMode.d.ts +15 -0
  285. package/dist/Components/Table/Types/Filtering/StringFilterMode.js +16 -0
  286. package/dist/Components/Table/Types/Focus/MultiFocusEdge.d.ts +10 -0
  287. package/dist/Components/Table/Types/Focus/MultiFocusEdge.js +11 -0
  288. package/dist/Components/Table/Types/Focus/TableFocusDetails.svelte.d.ts +40 -0
  289. package/dist/Components/Table/Types/Focus/TableFocusDetails.svelte.js +174 -0
  290. package/dist/Components/Table/Types/Header.d.ts +9 -0
  291. package/dist/Components/Table/Types/Header.js +1 -0
  292. package/dist/Components/Table/Types/HeaderGroup.d.ts +5 -0
  293. package/dist/Components/Table/Types/HeaderGroup.js +1 -0
  294. package/dist/Components/Table/Types/OnChangeFn.d.ts +3 -0
  295. package/dist/Components/Table/Types/OnChangeFn.js +1 -0
  296. package/dist/Components/Table/Types/Pagination/PaginationState.d.ts +4 -0
  297. package/dist/Components/Table/Types/Pagination/PaginationState.js +1 -0
  298. package/dist/Components/Table/Types/Pagination/PaginationType.d.ts +5 -0
  299. package/dist/Components/Table/Types/Pagination/PaginationType.js +6 -0
  300. package/dist/Components/Table/Types/Toolbar/ToolbarPosition.d.ts +6 -0
  301. package/dist/Components/Table/Types/Toolbar/ToolbarPosition.js +7 -0
  302. package/dist/Components/TextArea.svelte +349 -0
  303. package/dist/Components/TextArea.svelte.d.ts +29 -0
  304. package/dist/Components/TextInput.svelte +407 -0
  305. package/dist/Components/TextInput.svelte.d.ts +34 -0
  306. package/dist/Components/ThreeStateRadio.svelte +202 -0
  307. package/dist/Components/ThreeStateRadio.svelte.d.ts +16 -0
  308. package/dist/Components/Touch/BoolCard.svelte +180 -0
  309. package/dist/Components/Touch/BoolCard.svelte.d.ts +13 -0
  310. package/dist/Components/Touch/DateModal.svelte +256 -0
  311. package/dist/Components/Touch/DateModal.svelte.d.ts +22 -0
  312. package/dist/Components/Touch/EditCard.svelte +223 -0
  313. package/dist/Components/Touch/EditCard.svelte.d.ts +15 -0
  314. package/dist/Components/Touch/InfoCard.svelte +82 -0
  315. package/dist/Components/Touch/InfoCard.svelte.d.ts +11 -0
  316. package/dist/Components/Touch/InfoTextCard.svelte +55 -0
  317. package/dist/Components/Touch/InfoTextCard.svelte.d.ts +10 -0
  318. package/dist/Components/Touch/ModalExplanation.svelte +27 -0
  319. package/dist/Components/Touch/ModalExplanation.svelte.d.ts +9 -0
  320. package/dist/Components/Touch/NumberKeyboard.svelte +299 -0
  321. package/dist/Components/Touch/NumberKeyboard.svelte.d.ts +14 -0
  322. package/dist/Components/Touch/NumberModal.svelte +336 -0
  323. package/dist/Components/Touch/NumberModal.svelte.d.ts +18 -0
  324. package/dist/Components/Touch/PlusMinusCard.svelte +94 -0
  325. package/dist/Components/Touch/PlusMinusCard.svelte.d.ts +9 -0
  326. package/dist/Components/Touch/SelectModal.svelte +351 -0
  327. package/dist/Components/Touch/SelectModal.svelte.d.ts +11 -0
  328. package/dist/Components/Touch/SummaryCard.svelte +348 -0
  329. package/dist/Components/Touch/SummaryCard.svelte.d.ts +18 -0
  330. package/dist/Components/Touch/TextAreaModal.svelte +330 -0
  331. package/dist/Components/Touch/TextAreaModal.svelte.d.ts +15 -0
  332. package/dist/Components/Touch/TextModal.svelte +377 -0
  333. package/dist/Components/Touch/TextModal.svelte.d.ts +22 -0
  334. package/dist/Components/Touch/TouchCard.svelte +169 -0
  335. package/dist/Components/Touch/TouchCard.svelte.d.ts +9 -0
  336. package/dist/Components/Touch/TouchModal.svelte +516 -0
  337. package/dist/Components/Touch/TouchModal.svelte.d.ts +34 -0
  338. package/dist/Components/Touch/UtilityButton.svelte +192 -0
  339. package/dist/Components/Touch/UtilityButton.svelte.d.ts +23 -0
  340. package/dist/Components/VerticalTabGroup.svelte +129 -0
  341. package/dist/Components/VerticalTabGroup.svelte.d.ts +12 -0
  342. package/dist/Components/VerticalTabGroupButton.svelte +108 -0
  343. package/dist/Components/VerticalTabGroupButton.svelte.d.ts +8 -0
  344. package/dist/Contexts/AlertContext.svelte.d.ts +46 -0
  345. package/dist/Contexts/AlertContext.svelte.js +118 -0
  346. package/dist/Contexts/ContextMenuContext.svelte.d.ts +22 -0
  347. package/dist/Contexts/ContextMenuContext.svelte.js +45 -0
  348. package/dist/Contexts/ToastContext.svelte.d.ts +9 -0
  349. package/dist/Contexts/ToastContext.svelte.js +82 -0
  350. package/dist/Contexts/TooltipContext.svelte.d.ts +31 -0
  351. package/dist/Contexts/TooltipContext.svelte.js +78 -0
  352. package/dist/Contexts/UntypedInputContext.svelte.d.ts +13 -0
  353. package/dist/Contexts/UntypedInputContext.svelte.js +78 -0
  354. package/dist/Delay/Delay.d.ts +3 -0
  355. package/dist/Delay/Delay.js +4 -0
  356. package/dist/Helpers/Datamatrix.d.ts +11 -0
  357. package/dist/Helpers/Datamatrix.js +2 -0
  358. package/dist/Helpers/Helpers.svelte.d.ts +102 -0
  359. package/dist/Helpers/Helpers.svelte.js +490 -0
  360. package/dist/Helpers/INamed.d.ts +3 -0
  361. package/dist/Helpers/INamed.js +1 -0
  362. package/dist/Helpers/skata.d.ts +1 -0
  363. package/dist/Helpers/skata.js +1 -0
  364. package/dist/Types/Examples/ExampleItem.d.ts +15 -0
  365. package/dist/Types/Examples/ExampleItem.js +1 -0
  366. package/dist/Types/Examples/ExampleModal.svelte +38 -0
  367. package/dist/Types/Examples/ExampleModal.svelte.d.ts +5 -0
  368. package/dist/Types/Examples/ExampleSelectEnum.d.ts +6 -0
  369. package/dist/Types/Examples/ExampleSelectEnum.js +7 -0
  370. package/dist/Types/Internal/ApplicationIdentifier.d.ts +37 -0
  371. package/dist/Types/Internal/ApplicationIdentifier.js +2080 -0
  372. package/dist/Types/Internal/AttributeOperation.d.ts +30 -0
  373. package/dist/Types/Internal/AttributeOperation.js +33 -0
  374. package/dist/Types/Internal/BigRadioOption.d.ts +5 -0
  375. package/dist/Types/Internal/BigRadioOption.js +1 -0
  376. package/dist/Types/Internal/ButtonProp.d.ts +11 -0
  377. package/dist/Types/Internal/ButtonProp.js +1 -0
  378. package/dist/Types/Internal/CallbackButton.d.ts +10 -0
  379. package/dist/Types/Internal/CallbackButton.js +1 -0
  380. package/dist/Types/Internal/DateChange.d.ts +5 -0
  381. package/dist/Types/Internal/DateChange.js +1 -0
  382. package/dist/Types/Internal/DatePickerType.d.ts +8 -0
  383. package/dist/Types/Internal/DatePickerType.js +9 -0
  384. package/dist/Types/Internal/FloService.d.ts +7 -0
  385. package/dist/Types/Internal/FloService.js +30 -0
  386. package/dist/Types/Internal/GridItem.d.ts +4 -0
  387. package/dist/Types/Internal/GridItem.js +1 -0
  388. package/dist/Types/Internal/GridMultiSelectItem.d.ts +4 -0
  389. package/dist/Types/Internal/GridMultiSelectItem.js +1 -0
  390. package/dist/Types/Internal/GridMultiSelectItemAsObject.d.ts +5 -0
  391. package/dist/Types/Internal/GridMultiSelectItemAsObject.js +1 -0
  392. package/dist/Types/Internal/GridMultiSelectItemAsPrimitive.d.ts +5 -0
  393. package/dist/Types/Internal/GridMultiSelectItemAsPrimitive.js +1 -0
  394. package/dist/Types/Internal/GridNumberItem.d.ts +4 -0
  395. package/dist/Types/Internal/GridNumberItem.js +1 -0
  396. package/dist/Types/Internal/GridSelectItem.d.ts +12 -0
  397. package/dist/Types/Internal/GridSelectItem.js +1 -0
  398. package/dist/Types/Internal/GridSingleSelectItem.d.ts +5 -0
  399. package/dist/Types/Internal/GridSingleSelectItem.js +1 -0
  400. package/dist/Types/Internal/GridSingleSelectItemAsObject.d.ts +5 -0
  401. package/dist/Types/Internal/GridSingleSelectItemAsObject.js +1 -0
  402. package/dist/Types/Internal/GridSingleSelectItemAsPrimitive.d.ts +5 -0
  403. package/dist/Types/Internal/GridSingleSelectItemAsPrimitive.js +1 -0
  404. package/dist/Types/Internal/GridStringItem.d.ts +9 -0
  405. package/dist/Types/Internal/GridStringItem.js +1 -0
  406. package/dist/Types/Internal/GridTextItem.d.ts +4 -0
  407. package/dist/Types/Internal/GridTextItem.js +1 -0
  408. package/dist/Types/Internal/IdentifiableToastMessage.d.ts +5 -0
  409. package/dist/Types/Internal/IdentifiableToastMessage.js +1 -0
  410. package/dist/Types/Internal/InputVariant.d.ts +6 -0
  411. package/dist/Types/Internal/InputVariant.js +7 -0
  412. package/dist/Types/Internal/Misc.d.ts +271 -0
  413. package/dist/Types/Internal/Misc.js +129 -0
  414. package/dist/Types/Internal/RefWrapper.d.ts +3 -0
  415. package/dist/Types/Internal/RefWrapper.js +1 -0
  416. package/dist/Types/Internal/SelectOption.d.ts +4 -0
  417. package/dist/Types/Internal/SelectOption.js +1 -0
  418. package/dist/Types/Internal/Shape.d.ts +4 -0
  419. package/dist/Types/Internal/Shape.js +5 -0
  420. package/dist/Types/Internal/Side.d.ts +6 -0
  421. package/dist/Types/Internal/Side.js +7 -0
  422. package/dist/Types/Internal/Size.d.ts +13 -0
  423. package/dist/Types/Internal/Size.js +14 -0
  424. package/dist/Types/Internal/TabOption.d.ts +12 -0
  425. package/dist/Types/Internal/TabOption.js +1 -0
  426. package/dist/Types/Internal/Ternary.d.ts +5 -0
  427. package/dist/Types/Internal/Ternary.js +6 -0
  428. package/dist/Types/Internal/ToastMessage.d.ts +10 -0
  429. package/dist/Types/Internal/ToastMessage.js +1 -0
  430. package/dist/Types/Internal/Validity.d.ts +7 -0
  431. package/dist/Types/Internal/Validity.js +8 -0
  432. package/dist/Types/Internal/ValidityWrapper.d.ts +5 -0
  433. package/dist/Types/Internal/ValidityWrapper.js +1 -0
  434. package/dist/Types/Internal/Variant.d.ts +10 -0
  435. package/dist/Types/Internal/Variant.js +11 -0
  436. package/dist/Types/Requests/IFillablePodLineDateRequestBody.d.ts +11 -0
  437. package/dist/Types/Requests/IFillablePodLineDateRequestBody.js +10 -0
  438. package/dist/Types/Requests/IRequiredPodLineDateRequestBody.d.ts +12 -0
  439. package/dist/Types/Requests/IRequiredPodLineDateRequestBody.js +8 -0
  440. package/dist/Types/Requests/IValidatedPodLineDateRequestBody.d.ts +14 -0
  441. package/dist/Types/Requests/IValidatedPodLineDateRequestBody.js +10 -0
  442. package/dist/Types/Responses/AddressType.d.ts +3 -0
  443. package/dist/Types/Responses/AddressType.js +2 -0
  444. package/dist/Types/Responses/IAddress.d.ts +39 -0
  445. package/dist/Types/Responses/IAddress.js +30 -0
  446. package/dist/Types/Responses/IBaseAddress.d.ts +17 -0
  447. package/dist/Types/Responses/IBaseAddress.js +15 -0
  448. package/dist/Types/Responses/ICountry.d.ts +16 -0
  449. package/dist/Types/Responses/ICountry.js +1 -0
  450. package/dist/Types/Responses/IDBEntry.d.ts +13 -0
  451. package/dist/Types/Responses/IDBEntry.js +12 -0
  452. package/dist/Types/Responses/IErrorResponse.d.ts +10 -0
  453. package/dist/Types/Responses/IErrorResponse.js +1 -0
  454. package/dist/Types/Responses/ILabelPrinter.d.ts +4 -0
  455. package/dist/Types/Responses/ILabelPrinter.js +1 -0
  456. package/dist/Types/Responses/ILaserPrinter.d.ts +4 -0
  457. package/dist/Types/Responses/ILaserPrinter.js +1 -0
  458. package/dist/Types/Responses/ILoginResponse.d.ts +8 -0
  459. package/dist/Types/Responses/ILoginResponse.js +1 -0
  460. package/dist/Types/Responses/IPaginatedPayload.d.ts +5 -0
  461. package/dist/Types/Responses/IPaginatedPayload.js +1 -0
  462. package/dist/Types/Responses/IPaginatedResponse.d.ts +5 -0
  463. package/dist/Types/Responses/IPaginatedResponse.js +1 -0
  464. package/dist/Types/Responses/IPagination.d.ts +9 -0
  465. package/dist/Types/Responses/IPagination.js +1 -0
  466. package/dist/Types/Responses/IPayload.d.ts +3 -0
  467. package/dist/Types/Responses/IPayload.js +1 -0
  468. package/dist/Types/Responses/IPrinter.d.ts +11 -0
  469. package/dist/Types/Responses/IPrinter.js +1 -0
  470. package/dist/Types/Responses/IProcessTypeSelectionMethodOutboundType.d.ts +18 -0
  471. package/dist/Types/Responses/IProcessTypeSelectionMethodOutboundType.js +12 -0
  472. package/dist/Types/Responses/IProcessTypeSelectionMethodWarehouseCustomer.d.ts +20 -0
  473. package/dist/Types/Responses/IProcessTypeSelectionMethodWarehouseCustomer.js +14 -0
  474. package/dist/Types/Responses/IProcessTypeSelectionMethodWarehouseCustomerType.d.ts +20 -0
  475. package/dist/Types/Responses/IProcessTypeSelectionMethodWarehouseCustomerType.js +14 -0
  476. package/dist/Types/Responses/IProductCategory.d.ts +19 -0
  477. package/dist/Types/Responses/IProductCategory.js +13 -0
  478. package/dist/Types/Responses/IProductCategoryDetails.d.ts +33 -0
  479. package/dist/Types/Responses/IProductCategoryDetails.js +13 -0
  480. package/dist/Types/Responses/IProductIgnoreOnAllocationOutboundType.d.ts +17 -0
  481. package/dist/Types/Responses/IProductIgnoreOnAllocationOutboundType.js +11 -0
  482. package/dist/Types/Responses/IProductLocation.d.ts +23 -0
  483. package/dist/Types/Responses/IProductLocation.js +17 -0
  484. package/dist/Types/Responses/IResponse.d.ts +8 -0
  485. package/dist/Types/Responses/IResponse.js +1 -0
  486. package/dist/Types/Responses/IStockSortationMethodCustomer.d.ts +18 -0
  487. package/dist/Types/Responses/IStockSortationMethodCustomer.js +12 -0
  488. package/dist/Types/Responses/Pods/IAttributeTypeWithAI.d.ts +8 -0
  489. package/dist/Types/Responses/Pods/IAttributeTypeWithAI.js +1 -0
  490. package/dist/Types/Responses/Pods/IBatchType.d.ts +5 -0
  491. package/dist/Types/Responses/Pods/IBatchType.js +1 -0
  492. package/dist/Types/Responses/Pods/IDateType.d.ts +6 -0
  493. package/dist/Types/Responses/Pods/IDateType.js +1 -0
  494. package/dist/Types/Responses/Pods/IFillablePodLineAttribute.d.ts +10 -0
  495. package/dist/Types/Responses/Pods/IFillablePodLineAttribute.js +9 -0
  496. package/dist/Types/Responses/Pods/IFillablePodLineBatch.d.ts +18 -0
  497. package/dist/Types/Responses/Pods/IFillablePodLineBatch.js +12 -0
  498. package/dist/Types/Responses/Pods/IFillablePodLineDate.d.ts +19 -0
  499. package/dist/Types/Responses/Pods/IFillablePodLineDate.js +13 -0
  500. package/dist/Types/Responses/Pods/IFillablePodLinePurchaseOrder.d.ts +18 -0
  501. package/dist/Types/Responses/Pods/IFillablePodLinePurchaseOrder.js +12 -0
  502. package/dist/Types/Responses/Pods/IFillablePodLineSerial.d.ts +18 -0
  503. package/dist/Types/Responses/Pods/IFillablePodLineSerial.js +12 -0
  504. package/dist/Types/Responses/Pods/IFillablePodLineTag.d.ts +18 -0
  505. package/dist/Types/Responses/Pods/IFillablePodLineTag.js +12 -0
  506. package/dist/Types/Responses/Pods/IPurchaseOrderType.d.ts +5 -0
  507. package/dist/Types/Responses/Pods/IPurchaseOrderType.js +1 -0
  508. package/dist/Types/Responses/Pods/IRequiredOrValidatedAttribute.d.ts +5 -0
  509. package/dist/Types/Responses/Pods/IRequiredOrValidatedAttribute.js +7 -0
  510. package/dist/Types/Responses/Pods/IRequiredPodLineBatch.d.ts +16 -0
  511. package/dist/Types/Responses/Pods/IRequiredPodLineBatch.js +8 -0
  512. package/dist/Types/Responses/Pods/IRequiredPodLineDate.d.ts +17 -0
  513. package/dist/Types/Responses/Pods/IRequiredPodLineDate.js +8 -0
  514. package/dist/Types/Responses/Pods/IRequiredPodLinePurchaseOrder.d.ts +19 -0
  515. package/dist/Types/Responses/Pods/IRequiredPodLinePurchaseOrder.js +8 -0
  516. package/dist/Types/Responses/Pods/IRequiredPodLineSerial.d.ts +19 -0
  517. package/dist/Types/Responses/Pods/IRequiredPodLineSerial.js +8 -0
  518. package/dist/Types/Responses/Pods/IRequiredPodLineTag.d.ts +19 -0
  519. package/dist/Types/Responses/Pods/IRequiredPodLineTag.js +8 -0
  520. package/dist/Types/Responses/Pods/ISerialType.d.ts +6 -0
  521. package/dist/Types/Responses/Pods/ISerialType.js +1 -0
  522. package/dist/Types/Responses/Pods/ITagType.d.ts +6 -0
  523. package/dist/Types/Responses/Pods/ITagType.js +1 -0
  524. package/dist/Types/Responses/Pods/IValidatedPodLineAttribute.d.ts +13 -0
  525. package/dist/Types/Responses/Pods/IValidatedPodLineAttribute.js +10 -0
  526. package/dist/Types/Responses/Pods/IValidatedPodLineBatch.d.ts +17 -0
  527. package/dist/Types/Responses/Pods/IValidatedPodLineBatch.js +10 -0
  528. package/dist/Types/Responses/Pods/IValidatedPodLineDate.d.ts +19 -0
  529. package/dist/Types/Responses/Pods/IValidatedPodLineDate.js +10 -0
  530. package/dist/Types/Responses/Pods/IValidatedPodLinePurchaseOrder.d.ts +20 -0
  531. package/dist/Types/Responses/Pods/IValidatedPodLinePurchaseOrder.js +10 -0
  532. package/dist/Types/Responses/Pods/IValidatedPodLineSerial.d.ts +20 -0
  533. package/dist/Types/Responses/Pods/IValidatedPodLineSerial.js +10 -0
  534. package/dist/Types/Responses/Pods/IValidatedPodLineTag.d.ts +20 -0
  535. package/dist/Types/Responses/Pods/IValidatedPodLineTag.js +10 -0
  536. package/dist/Types/Responses/Products/IAttributeRule.d.ts +34 -0
  537. package/dist/Types/Responses/Products/IAttributeRule.js +28 -0
  538. package/dist/Types/Responses/Products/IBarcode.d.ts +18 -0
  539. package/dist/Types/Responses/Products/IBarcode.js +12 -0
  540. package/dist/Types/Responses/Products/IBatchRule.d.ts +36 -0
  541. package/dist/Types/Responses/Products/IBatchRule.js +9 -0
  542. package/dist/Types/Responses/Products/ICustomerRule.d.ts +23 -0
  543. package/dist/Types/Responses/Products/ICustomerRule.js +17 -0
  544. package/dist/Types/Responses/Products/IDateRule.d.ts +36 -0
  545. package/dist/Types/Responses/Products/IDateRule.js +9 -0
  546. package/dist/Types/Responses/Products/IPrice.d.ts +19 -0
  547. package/dist/Types/Responses/Products/IPrice.js +12 -0
  548. package/dist/Types/Responses/Products/IProduct.d.ts +436 -0
  549. package/dist/Types/Responses/Products/IProduct.js +77 -0
  550. package/dist/Types/Responses/Products/IProductKit.d.ts +24 -0
  551. package/dist/Types/Responses/Products/IProductKit.js +18 -0
  552. package/dist/Types/Responses/Products/IProductKitMatrix.d.ts +13 -0
  553. package/dist/Types/Responses/Products/IProductKitMatrix.js +1 -0
  554. package/dist/Types/Responses/Products/IProductSupplier.d.ts +18 -0
  555. package/dist/Types/Responses/Products/IProductSupplier.js +12 -0
  556. package/dist/Types/Responses/Products/IProductTag.d.ts +33 -0
  557. package/dist/Types/Responses/Products/IProductTag.js +14 -0
  558. package/dist/Types/Responses/Products/IProductTagType.d.ts +18 -0
  559. package/dist/Types/Responses/Products/IProductTagType.js +12 -0
  560. package/dist/Types/Responses/Products/IProductUnitOfMeasure.d.ts +97 -0
  561. package/dist/Types/Responses/Products/IProductUnitOfMeasure.js +35 -0
  562. package/dist/Types/Responses/Products/IProductUnitOfMeasurePrice.d.ts +36 -0
  563. package/dist/Types/Responses/Products/IProductUnitOfMeasurePrice.js +17 -0
  564. package/dist/Types/Responses/Products/IPurchaseOrderRule.d.ts +36 -0
  565. package/dist/Types/Responses/Products/IPurchaseOrderRule.js +9 -0
  566. package/dist/Types/Responses/Products/ISerialRule.d.ts +36 -0
  567. package/dist/Types/Responses/Products/ISerialRule.js +9 -0
  568. package/dist/Types/Responses/Products/ITagRule.d.ts +36 -0
  569. package/dist/Types/Responses/Products/ITagRule.js +9 -0
  570. package/dist/Types/Responses/Products/IUnitOfMeasure.d.ts +18 -0
  571. package/dist/Types/Responses/Products/IUnitOfMeasure.js +12 -0
  572. package/dist/index.d.ts +1 -0
  573. package/dist/index.js +2 -0
  574. package/dist/scss/basics.scss +12 -0
  575. package/dist/scss/colours.d.ts +94 -0
  576. package/dist/scss/colours.js +138 -0
  577. package/dist/scss/colours.scss +134 -0
  578. package/dist/scss/mixins.scss +2778 -0
  579. package/dist/scss/sizing.scss +72 -0
  580. package/dist/scss/transitions.scss +8 -0
  581. package/package.json +92 -0
@@ -0,0 +1,887 @@
1
+ import { Size } from '../Types/Internal/Size.js';
2
+ import { Colour } from '../scss/colours.js';
3
+ import { Variant } from '../Types/Internal/Variant.js';
4
+ export interface IconProps {
5
+ name: keyof typeof icons;
6
+ size?: Size;
7
+ onclick?: ((e: MouseEvent) => void) | undefined;
8
+ label?: string;
9
+ float?: boolean;
10
+ variant?: Variant;
11
+ invisible?: boolean;
12
+ clickable?: boolean;
13
+ clickableType?: 'button' | 'submit';
14
+ zindex?: number;
15
+ anchorX?: string;
16
+ anchorY?: string;
17
+ left?: string;
18
+ right?: string;
19
+ top?: string;
20
+ bottom?: string;
21
+ colour?: Colour | undefined;
22
+ rotate?: boolean;
23
+ }
24
+ export type PartialIconProps = {
25
+ name: IconProps['name'];
26
+ } & Partial<IconProps>;
27
+ export declare const icons: {
28
+ readonly 361: {
29
+ readonly box: 12;
30
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.5 6C10.5 8.48528 8.48528 10.5 6 10.5C3.51472 10.5 1.5 8.48528 1.5 6C1.5 3.51472 3.51472 1.5 6 1.5C8.48528 1.5 10.5 3.51472 10.5 6ZM6.78326 9.41202C8.08734 9.11389 9.11389 8.08734 9.41202 6.78326C8.94953 7.06598 8.24418 7.28679 7.40487 7.40487C7.28679 8.24418 7.06598 8.94953 6.78326 9.41202ZM5.21674 9.41202C3.91266 9.11389 2.88611 8.08734 2.58798 6.78326C3.05047 7.06598 3.75582 7.28679 4.59513 7.40487C4.71321 8.24418 4.93402 8.94953 5.21674 9.41202ZM6 9.5C5.59673 9.5 5.24921 8.66451 5.09104 7.4611C5.38305 7.48655 5.68734 7.5 6 7.5C6.31266 7.5 6.61695 7.48655 6.90896 7.4611C6.75079 8.66451 6.40327 9.5 6 9.5ZM7.4611 6.90896C8.66451 6.75079 9.5 6.40327 9.5 6C9.5 5.59673 8.66451 5.24921 7.4611 5.09104C7.48655 5.38305 7.5 5.68734 7.5 6C7.5 6.31266 7.48655 6.61695 7.4611 6.90896ZM6.96177 5.03823C6.98667 5.34381 7 5.66646 7 6C7 6.33354 6.98667 6.65619 6.96177 6.96177C6.65619 6.98667 6.33354 7 6 7C5.66646 7 5.34381 6.98667 5.03823 6.96177C5.01333 6.65619 5 6.33354 5 6C5 5.66646 5.01333 5.34381 5.03823 5.03823C5.34381 5.01333 5.66646 5 6 5C6.33354 5 6.65619 5.01333 6.96177 5.03823ZM7.40487 4.59513C8.24418 4.71321 8.94953 4.93402 9.41202 5.21674C9.11389 3.91266 8.08734 2.88611 6.78326 2.58798C7.06598 3.05047 7.28679 3.75582 7.40487 4.59513ZM5.21674 2.58798C3.91266 2.88611 2.88611 3.91266 2.58798 5.21674C3.05047 4.93403 3.75582 4.71321 4.59513 4.59513C4.71321 3.75582 4.93403 3.05047 5.21674 2.58798ZM5.09104 4.5389C5.24921 3.33549 5.59673 2.5 6 2.5C6.40327 2.5 6.75079 3.33549 6.90896 4.5389C6.61695 4.51345 6.31266 4.5 6 4.5C5.68734 4.5 5.38305 4.51345 5.09104 4.5389ZM4.5389 5.09104C3.33549 5.24921 2.5 5.59673 2.5 6C2.5 6.40327 3.33549 6.75079 4.5389 6.90896C4.51345 6.61695 4.5 6.31266 4.5 6C4.5 5.68734 4.51345 5.38305 4.5389 5.09104Z\" />";
31
+ };
32
+ readonly 'access-token': {
33
+ readonly box: 24;
34
+ readonly svg: "<path d=\"M13 8h-2v1h2V8Zm-1.5 6.7v1.8h1v-1.8l1.3 1.3.7-.7-1.3-1.3H15v-1h-1.8l1.3-1.3-.7-.7-1.3 1.3v-1.8h-1v1.8L10.2 11l-.7.7 1.3 1.3H9v1h1.8l-1.3 1.3.7.7 1.3-1.3Z\"/><path fill-rule=\"evenodd\" d=\"M18 2h-4c-.2 2.5-3.8 2.5-4 0H6v20h4c.2-2.5 3.8-2.5 4 0h4V2Zm-3.3 18H16V9h-2V8h2V4h-1.3l-.2.3a3 3 0 0 1-5 0L9.3 4H8v4h2v1H8v11h1.3l.2-.3a3 3 0 0 1 5 0l.2.3Z\" clip-rule=\"evenodd\"/>";
35
+ };
36
+ readonly 'accordion-close': {
37
+ readonly box: 12;
38
+ readonly svg: "<path d=\"M8.5 6C8.5 6.27614 8.27614 6.5 8 6.5H4C3.72386 6.5 3.5 6.27614 3.5 6C3.5 5.72386 3.72386 5.5 4 5.5H8C8.27614 5.5 8.5 5.72386 8.5 6Z\" />\n\t\t\t\t\t\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 10.5C8.48528 10.5 10.5 8.48528 10.5 6C10.5 3.51472 8.48528 1.5 6 1.5C3.51472 1.5 1.5 3.51472 1.5 6C1.5 8.48528 3.51472 10.5 6 10.5ZM9.5 6C9.5 7.933 7.933 9.5 6 9.5C4.067 9.5 2.5 7.933 2.5 6C2.5 4.067 4.067 2.5 6 2.5C7.933 2.5 9.5 4.067 9.5 6Z\" />";
39
+ };
40
+ readonly 'accordion-open': {
41
+ readonly box: 12;
42
+ readonly svg: "<path d=\"M5.5 8C5.5 8.27614 5.72386 8.5 6 8.5C6.27614 8.5 6.5 8.27614 6.5 8V6.5H8C8.27614 6.5 8.5 6.27614 8.5 6C8.5 5.72386 8.27614 5.5 8 5.5H6.5V4C6.5 3.72386 6.27614 3.5 6 3.5C5.72386 3.5 5.5 3.72386 5.5 4V5.5H4C3.72386 5.5 3.5 5.72386 3.5 6C3.5 6.27614 3.72386 6.5 4 6.5H5.5V8Z\" />\n\t\t\t\t\t\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.5 6C10.5 8.48528 8.48528 10.5 6 10.5C3.51472 10.5 1.5 8.48528 1.5 6C1.5 3.51472 3.51472 1.5 6 1.5C8.48528 1.5 10.5 3.51472 10.5 6ZM6 9.5C7.933 9.5 9.5 7.933 9.5 6C9.5 4.067 7.933 2.5 6 2.5C4.067 2.5 2.5 4.067 2.5 6C2.5 7.933 4.067 9.5 6 9.5Z\" />";
43
+ };
44
+ readonly 'account-3': {
45
+ readonly box: 12;
46
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.75 2.5H2.5V3H1.5V10.5H10.5V3H9.5V2.5H7.25C6.5 2.5 6 3.25 6 3.25C6 3.25 5.5 2.5 4.75 2.5ZM2 3.5H2.5V9.5H4.75C5.125 9.5 5.4375 9.75 5.65625 10H2V3.5ZM10 10H6.34375C6.5625 9.75 6.875 9.5 7.25 9.5H9.5V3.5H10V10ZM9 9V3H7C6.75 3 6.25 3.5 6.25 3.76313V9.41371C6.513 9.20219 6.93205 9 7.25 9H9ZM5.75 9.41371V3.76313C5.75 3.5 5.25 3 5 3H3V9H4.75C5.06795 9 5.487 9.20219 5.75 9.41371Z\" />";
47
+ };
48
+ readonly 'account-4': {
49
+ readonly box: 12;
50
+ readonly svg: "<path d=\"M4 8C4 8.27614 3.77614 8.5 3.5 8.5C3.22386 8.5 3 8.27614 3 8C3 7.72386 3.22386 7.5 3.5 7.5C3.77614 7.5 4 7.72386 4 8Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M3.25 3.5C3.11193 3.5 3 3.61193 3 3.75V6.75C3 6.88807 3.11193 7 3.25 7H3.75C3.88807 7 4 6.88807 4 6.75V3.75C4 3.61193 3.88807 3.5 3.75 3.5H3.25Z\" />\n\t\t\t\t\t\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.5 2.5C1.5 1.94772 1.94772 1.5 2.5 1.5H4.5C5.05228 1.5 5.5 1.94772 5.5 2.5V9.5C5.5 10.0523 5.05228 10.5 4.5 10.5H2.5C1.94772 10.5 1.5 10.0523 1.5 9.5V2.5ZM2.5 3C2.5 2.72386 2.72386 2.5 3 2.5H4C4.27614 2.5 4.5 2.72386 4.5 3V9C4.5 9.27614 4.27614 9.5 4 9.5H3C2.72386 9.5 2.5 9.27614 2.5 9V3Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M9 8C9 8.27614 8.77614 8.5 8.5 8.5C8.22386 8.5 8 8.27614 8 8C8 7.72386 8.22386 7.5 8.5 7.5C8.77614 7.5 9 7.72386 9 8Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M8.25 3.5C8.11193 3.5 8 3.61193 8 3.75V6.75C8 6.88807 8.11193 7 8.25 7H8.75C8.88807 7 9 6.88807 9 6.75V3.75C9 3.61193 8.88807 3.5 8.75 3.5H8.25Z\" />\n\t\t\t\t\t\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.5 2.5C6.5 1.94772 6.94772 1.5 7.5 1.5H9.5C10.0523 1.5 10.5 1.94772 10.5 2.5V9.5C10.5 10.0523 10.0523 10.5 9.5 10.5H7.5C6.94772 10.5 6.5 10.0523 6.5 9.5V2.5ZM7.5 3C7.5 2.72386 7.72386 2.5 8 2.5H9C9.27614 2.5 9.5 2.72386 9.5 3V9C9.5 9.27614 9.27614 9.5 9 9.5H8C7.72386 9.5 7.5 9.27614 7.5 9V3Z\" />";
51
+ };
52
+ readonly account: {
53
+ readonly box: 12;
54
+ readonly svg: "<path d=\"M5.5 6.75C5.5 6.61193 5.61193 6.5 5.75 6.5H8.25C8.38807 6.5 8.5 6.61193 8.5 6.75C8.5 6.88807 8.38807 7 8.25 7H5.75C5.61193 7 5.5 6.88807 5.5 6.75Z\" />\n\t\t\t\t\t\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 3.5C5.72386 3.5 5.5 3.72386 5.5 4V5C5.5 5.27614 5.72386 5.5 6 5.5H8C8.27614 5.5 8.5 5.27614 8.5 5V4C8.5 3.72386 8.27614 3.5 8 3.5H6ZM6.25 4C6.11193 4 6 4.11193 6 4.25V4.75C6 4.88807 6.11193 5 6.25 5H7.75C7.88807 5 8 4.88807 8 4.75V4.25C8 4.11193 7.88807 4 7.75 4H6.25Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M5.5 8.25C5.5 8.11193 5.61193 8 5.75 8H8.25C8.38807 8 8.5 8.11193 8.5 8.25C8.5 8.38807 8.38807 8.5 8.25 8.5H5.75C5.61193 8.5 5.5 8.38807 5.5 8.25Z\" />\n\t\t\t\t\t\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.5 2.5C2.5 1.94772 2.94772 1.5 3.5 1.5H9.5C10.0523 1.5 10.5 1.94772 10.5 2.5V9.5C10.5 10.0523 10.0523 10.5 9.5 10.5H3.5C2.94772 10.5 2.5 10.0523 2.5 9.5V9H2C1.72386 9 1.5 8.77614 1.5 8.5V8C1.5 7.72386 1.72386 7.5 2 7.5H2.5V6.75H2C1.72386 6.75 1.5 6.52614 1.5 6.25V5.75C1.5 5.47386 1.72386 5.25 2 5.25H2.5V4.5H2C1.72386 4.5 1.5 4.27614 1.5 4V3.5C1.5 3.22386 1.72386 3 2 3H2.5V2.5ZM4 2.5C3.72386 2.5 3.5 2.72386 3.5 3L4 3C4.27614 3 4.5 3.22386 4.5 3.5V4C4.5 4.27614 4.27614 4.5 4 4.5H3.5V5.25H4C4.27614 5.25 4.5 5.47386 4.5 5.75V6.25C4.5 6.52614 4.27614 6.75 4 6.75H3.5V7.5H4C4.27614 7.5 4.5 7.72386 4.5 8V8.5C4.5 8.77614 4.27614 9 4 9H3.5C3.5 9.27614 3.72386 9.5 4 9.5H9C9.27614 9.5 9.5 9.27614 9.5 9V3C9.5 2.72386 9.27614 2.5 9 2.5H4ZM2.25 3.5C2.11193 3.5 2 3.61193 2 3.75C2 3.88807 2.11193 4 2.25 4H2.5H3.5H3.75C3.88807 4 4 3.88807 4 3.75C4 3.61193 3.88807 3.5 3.75 3.5H3.5H2.5H2.25ZM2.25 5.75C2.11193 5.75 2 5.86193 2 6C2 6.13807 2.11193 6.25 2.25 6.25H2.5H3.5H3.75C3.88807 6.25 4 6.13807 4 6C4 5.86193 3.88807 5.75 3.75 5.75H3.5H2.5H2.25ZM2.25 8C2.11193 8 2 8.11193 2 8.25C2 8.38807 2.11193 8.5 2.25 8.5H2.5H3.5H3.75C3.88807 8.5 4 8.38807 4 8.25C4 8.11193 3.88807 8 3.75 8H3.5H2.5H2.25Z\" />";
55
+ };
56
+ readonly 'add-rule': {
57
+ readonly box: 12;
58
+ readonly svg: "<path d=\"M1.5 4.25C1.5 3.83579 1.83579 3.5 2.25 3.5H9.75C10.1642 3.5 10.5 3.83579 10.5 4.25C10.5 4.66421 10.1642 5 9.75 5H5.5V7H9.75C10.1642 7 10.5 7.33579 10.5 7.75C10.5 8.16421 10.1642 8.5 9.75 8.5H4.75C4.33579 8.5 4 8.16421 4 7.75V5H2.25C1.83579 5 1.5 4.66421 1.5 4.25Z\" />";
59
+ };
60
+ readonly assessment: {
61
+ readonly box: 12;
62
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 7.5C6.82843 7.5 7.5 6.82843 7.5 6C7.5 5.17157 6.82843 4.5 6 4.5C5.17157 4.5 4.5 5.17157 4.5 6C4.5 6.82843 5.17157 7.5 6 7.5ZM6.75 6C6.75 6.41421 6.41421 6.75 6 6.75C5.58579 6.75 5.25 6.41421 5.25 6C5.25 5.58579 5.58579 5.25 6 5.25C6.41421 5.25 6.75 5.58579 6.75 6Z\" />\n\t\t\t\t\t\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 3C3.5 3 1 6 1 6C1 6 3.5 9 6 9C8.5 9 11 6 11 6C11 6 8.5 3 6 3ZM6 4C4.25 4 2.5 6 2.5 6C2.5 6 4.25 8 6 8C7.75 8 9.5 6 9.5 6C9.5 6 7.75 4 6 4Z\" />";
63
+ };
64
+ readonly 'arrow-circle-left': {
65
+ readonly box: 24;
66
+ readonly svg: "<path d=\"m9.62 12.76 3.03 2.91c.98 1 2.5-.52 1.5-1.5L12.86 13l-1.03-1 1.06-1 1.27-1.19c.99-1-.53-2.47-1.52-1.48l-3 2.9c-.42.42-.63.6-.63.77 0 .18.2.35.62.76Z\"/><path fill-rule=\"evenodd\" d=\"M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-2 0a7 7 0 1 1-14 0 7 7 0 0 1 14 0Z\" clip-rule=\"evenodd\"/>";
67
+ };
68
+ readonly 'arrow-circle-right': {
69
+ readonly box: 24;
70
+ readonly svg: "<path d=\"m14.86 11.24-3.03-2.91c-.98-1-2.5.52-1.5 1.5l1.3 1.17 1.03 1-1.05 1-1.28 1.19c-.99 1 .53 2.47 1.52 1.48l3-2.9c.42-.41.63-.6.63-.77 0-.18-.2-.35-.62-.76Z\"/><path fill-rule=\"evenodd\" d=\"M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18Zm0-2a7 7 0 1 0 0-14 7 7 0 0 0 0 14Z\" clip-rule=\"evenodd\"/>";
71
+ };
72
+ readonly 'arrow-move-horizontal': {
73
+ readonly box: 24;
74
+ readonly svg: "<path d=\"m5.72 15.64-3.03-2.91c-.4-.41-.62-.59-.62-.76 0-.18.2-.36.62-.77l3.02-2.9c.99-1 2.5.48 1.51 1.48l-1.27 1.18h12.1l-1.27-1.18c-.99-1 .52-2.48 1.51-1.48l3.02 2.9c.41.41.62.6.62.77 0 .17-.21.35-.62.76l-3.03 2.9c-.98 1.01-2.5-.51-1.51-1.5l1.3-1.16H5.93l1.31 1.16c1 .99-.53 2.51-1.51 1.5Z\"/>";
75
+ };
76
+ readonly 'arrow-move-vertical': {
77
+ readonly box: 12;
78
+ readonly svg: "<path d=\"M4.16368 2.84318L5.61951 1.33065C5.8231 1.12383 5.91077 1.01998 5.99911 1.01942C6.08784 1.01884 6.17725 1.12249 6.3855 1.33065L7.83506 2.83609C8.33215 3.33161 7.5953 4.0885 7.09339 3.59469L6.50085 2.95698V9.00968L7.09339 8.37198C7.5953 7.87816 8.33215 8.63505 7.83506 9.13058L6.3855 10.636C6.17725 10.8442 6.08784 10.9478 5.99911 10.9473C5.91077 10.9467 5.8231 10.8428 5.61951 10.636L4.16368 9.12348C3.66309 8.63444 4.42325 7.87207 4.91594 8.36831L5.49982 9.02258V2.94409L4.91594 3.59835C4.42325 4.09459 3.66309 3.33222 4.16368 2.84318Z\" />";
79
+ };
80
+ readonly 'arrow-tip-down': {
81
+ readonly box: 24;
82
+ readonly svg: "<path d=\"M12 14.4 4.8 7.2a1 1 0 0 0-1.4 1.5l7.8 7.7c.2.3.5.4.8.4.3 0 .6-.1.8-.4l7.8-7.7a1 1 0 1 0-1.4-1.5L12 14.4Z\"/>";
83
+ };
84
+ readonly at: {
85
+ readonly box: 12;
86
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 10.5C3.51472 10.5 1.5 8.48528 1.5 6C1.5 3.51472 3.51472 1.5 6 1.5C8.48528 1.5 10.5 3.51472 10.5 6C10.5 6.52595 10.4158 7.03083 10.25 7.5C10.2421 7.52239 10.2326 7.55325 10.2212 7.59028C10.1353 7.86955 9.94147 8.5 9.5 8.5H7.75C7.47386 8.5 7.25 8.27614 7.25 8V7.87111C6.89248 8.11043 6.46254 8.25 6 8.25C4.75736 8.25 3.75 7.24264 3.75 6C3.75 4.75736 4.75736 3.75 6 3.75C6.50655 3.75 6.974 3.91739 7.35006 4.19988C7.44128 4.0785 7.58647 4 7.75 4C8.02614 4 8.25 4.22386 8.25 4.5V7.5H9.16319C9.37915 7.04537 9.5 6.5368 9.5 6C9.5 4.067 7.933 2.5 6 2.5C4.067 2.5 2.5 4.067 2.5 6C2.5 7.933 4.067 9.5 6 9.5C6.25 9.5 6.5 9.72386 6.5 10C6.5 10.2761 6.25 10.5 6 10.5ZM7.25 6C7.25 5.30964 6.69036 4.75 6 4.75C5.30964 4.75 4.75 5.30964 4.75 6C4.75 6.69036 5.30964 7.25 6 7.25C6.69036 7.25 7.25 6.69036 7.25 6Z\" />";
87
+ };
88
+ readonly 'back-arrow': {
89
+ readonly box: 12;
90
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.49999 2.35V1.32613C5.49999 1.19798 5.34967 1.12884 5.25237 1.21224L2.13286 3.88611C2.06301 3.94597 2.06301 4.05402 2.13286 4.11389L5.25237 6.78775C5.34967 6.87116 5.49999 6.80202 5.49999 6.67387V5.65C5.49999 5.56716 5.56657 5.49976 5.64927 5.50472C6.56547 5.55964 8.49999 6.11018 8.49999 8C8.49999 9.03685 7.50546 9.99473 6.01232 10.2479C6.00417 10.2493 5.99565 10.2499 5.9874 10.2502C5.75006 10.2585 5.75426 10.5 5.99999 10.5C7.33332 10.5 9.99999 9.7 9.99999 6.5C9.99999 3.41409 7.0551 2.56009 5.64936 2.50312C5.56659 2.49977 5.49999 2.43284 5.49999 2.35ZM5.06249 2.7116V3.57395C5.06249 3.62803 5.10614 3.6723 5.16019 3.67424C7.50059 3.75823 9.10772 4.38181 9.26158 7.12322C9.26842 7.24504 9.07674 7.26176 9.04389 7.14425C8.59769 5.54849 7.51756 4.5417 5.16379 4.51375C5.10856 4.5131 5.06249 4.55793 5.06249 4.61316V5.47333C5.06249 5.5578 4.96423 5.60422 4.89898 5.55057L3.21897 4.16937C3.1703 4.12936 3.17031 4.05486 3.21899 4.01486L4.899 2.63434C4.96425 2.58072 5.06249 2.62714 5.06249 2.7116Z\" />";
91
+ };
92
+ readonly 'back-triple': {
93
+ readonly box: 12;
94
+ readonly svg: "<path d=\"M1.91121 6.38043L3.42375 7.83627C3.91279 8.33686 4.67515 7.57669 4.17891 7.08401L3.52465 6.50012L3.01203 6.00019L3.53755 5.4991L4.17525 4.90655C4.66907 4.40464 3.91217 3.66779 3.41665 4.16488L1.91121 5.61444C1.70305 5.82269 1.59941 5.9121 1.59998 6.00083C1.60055 6.08917 1.70439 6.17684 1.91121 6.38043Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M6.42375 7.83627L4.91121 6.38043C4.88363 6.35328 4.85788 6.32819 4.83395 6.30488C4.67853 6.15344 4.60047 6.07739 4.59998 6.00084C4.59948 5.9236 4.67794 5.84586 4.83554 5.68968C4.85901 5.66643 4.88423 5.64143 4.91121 5.61444L6.41665 4.16488C6.91217 3.6678 7.66907 4.40465 7.17525 4.90655L6.53755 5.4991L6.01203 6.00019L6.52465 6.50013L7.17891 7.08401C7.67515 7.5767 6.91279 8.33686 6.42375 7.83627Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M9.42375 7.83627L7.91121 6.38043C7.88363 6.35328 7.85788 6.32819 7.83396 6.30488C7.67853 6.15345 7.60047 6.07739 7.59998 6.00084C7.59948 5.9236 7.67793 5.84586 7.83554 5.68969C7.85901 5.66643 7.88423 5.64143 7.91121 5.61444L9.41665 4.16488C9.91217 3.6678 10.6691 4.40465 10.1752 4.90655L9.53755 5.4991L9.01203 6.00019L9.52465 6.50013L10.1789 7.08401C10.6752 7.5767 9.91279 8.33686 9.42375 7.83627Z\" />";
95
+ };
96
+ readonly barcodes: {
97
+ readonly box: 12;
98
+ readonly svg: "<path d=\"M3 4H2.5V8H3V4Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M3.5 4H4V8H3.5V4Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M5 4H4.5V8H5V4Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M5.5 4H6V8H5.5V4Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M9.5 4H9V8H9.5V4Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M8 4H8.5V8H8V4Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M7.5 4H6.5V8H7.5V4Z\" />\n\t\t\t\t\t\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1 3.5C1 2.94772 1.44772 2.5 2 2.5H10C10.5523 2.5 11 2.94772 11 3.5V8.5C11 9.05228 10.5523 9.5 10 9.5H2C1.44772 9.5 1 9.05228 1 8.5V3.5ZM2 3.5H10V8.5H2V3.5Z\" />";
99
+ };
100
+ readonly batch: {
101
+ readonly box: 12;
102
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 1.5L1.5 3.75L3.75 4.875L1.5 6L3.75 7.125L1.5 8.25L6 10.5L10.5 8.25L8.25 7.125L10.5 6L8.25 4.875L10.5 3.75L6 1.5ZM7.30952 7.59524L6 8.25L4.69048 7.59524L3.25 8.25L6 9.5L8.75 8.25L7.30952 7.59524ZM3.25 6L4.69048 5.34524L6 6L7.30952 5.34524L8.75 6L6 7.25L3.25 6ZM6 2.5L3.25 3.75L6 5L8.75 3.75L6 2.5Z\" />";
103
+ };
104
+ readonly bin: {
105
+ readonly box: 12;
106
+ readonly svg: "<path d=\"M8.5 2H7C7 1.72386 6.77614 1.5 6.5 1.5H5.5C5.22386 1.5 5 1.72386 5 2H3.5C3.22386 2 3 2.22386 3 2.5C3 2.77614 3.22386 3 3.5 3H8.5C8.77614 3 9 2.77614 9 2.5C9 2.22386 8.77614 2 8.5 2Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M5 8.75C5 8.88807 5.11193 9 5.25 9C5.38807 9 5.5 8.88807 5.5 8.75V5.25C5.5 5.11193 5.38807 5 5.25 5C5.11193 5 5 5.11193 5 5.25V8.75Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M6.5 5.25C6.5 5.11193 6.61193 5 6.75 5C6.88807 5 7 5.11193 7 5.25V8.75C7 8.88807 6.88807 9 6.75 9C6.61193 9 6.5 8.88807 6.5 8.75V5.25Z\" />\n\t\t\t\t\t\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 3.5C3.44772 3.5 3 3.94772 3 4.5V9.5C3 10.0523 3.44772 10.5 4 10.5H8C8.55228 10.5 9 10.0523 9 9.5V4.5C9 3.94772 8.55228 3.5 8 3.5H4ZM8 4.5H4L4 9.5H8V4.5Z\" />";
107
+ };
108
+ readonly 'box-damaged': {
109
+ readonly box: 12;
110
+ readonly svg: "<path d=\"M7.14413 3.76781C7.13379 3.62309 7.24841 3.5 7.39349 3.5H8.10651C8.25159 3.5 8.36621 3.6231 8.35587 3.76781L8.14158 6.76781C8.13224 6.89864 8.02338 7 7.89222 7H7.60778C7.47662 7 7.36776 6.89864 7.35842 6.76781L7.14413 3.76781Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M7.75 8.5C8.02614 8.5 8.25 8.27614 8.25 8C8.25 7.72386 8.02614 7.5 7.75 7.5C7.47386 7.5 7.25 7.72386 7.25 8C7.25 8.27614 7.47386 8.5 7.75 8.5Z\" />\n\t\t\t\t\t\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.5 2.5C1.5 1.94772 1.94772 1.5 2.5 1.5H9.5C10.0523 1.5 10.5 1.94772 10.5 2.5V9.5C10.5 10.0523 10.0523 10.5 9.5 10.5H2.5C1.94772 10.5 1.5 10.0523 1.5 9.5V2.5ZM4.75 2.5L3.25 5.5L4.5 6.25L4.25 8.5H4.5L5.75 6L4.5 5.25L5.96667 2.5H9C9.27614 2.5 9.5 2.72386 9.5 3V9C9.5 9.27614 9.27614 9.5 9 9.5H3C2.72386 9.5 2.5 9.27614 2.5 9V3C2.5 2.72386 2.72386 2.5 3 2.5H4.75Z\" />";
111
+ };
112
+ readonly breadcrumb: {
113
+ readonly box: 12;
114
+ readonly svg: "<mask id=\"path-1-inside-1\" >\n\t\t\t\t\t\t\t\t\t\t<path d=\"M4.9036 2.64645C4.70834 2.45118 4.39176 2.45118 4.1965 2.64645C4.00123 2.84171 4.00123 3.15829 4.1965 3.35355L6.87787 6.03492L4.1965 8.71629C4.00123 8.91156 4.00123 9.22814 4.1965 9.4234C4.39176 9.61866 4.70834 9.61866 4.9036 9.4234L7.87345 6.45355C7.98767 6.33933 8.03508 6.1836 8.01567 6.03492C8.03508 5.88625 7.98767 5.73051 7.87345 5.61629L4.9036 2.64645Z\"/>\n\t\t\t\t\t\t\t\t\t\t</mask>\n\t\t\t\t\t\t\t\t\t\t<path d=\"M4.1965 2.64645L3.48939 1.93934L3.48939 1.93934L4.1965 2.64645ZM4.9036 2.64645L4.1965 3.35355L4.1965 3.35355L4.9036 2.64645ZM4.1965 3.35355L3.48939 4.06066L3.48939 4.06066L4.1965 3.35355ZM6.87787 6.03492L7.58497 6.74203L8.29208 6.03492L7.58497 5.32782L6.87787 6.03492ZM4.1965 8.71629L4.9036 9.4234L4.9036 9.4234L4.1965 8.71629ZM4.1965 9.4234L4.9036 8.7163L4.9036 8.71629L4.1965 9.4234ZM4.9036 9.4234L5.61071 10.1305L5.61071 10.1305L4.9036 9.4234ZM7.87345 6.45355L7.16634 5.74645L7.87345 6.45355ZM8.01567 6.03492L7.02408 5.9055L7.00719 6.03492L7.02408 6.16435L8.01567 6.03492ZM7.87345 5.61629L8.58056 4.90919L8.58056 4.90919L7.87345 5.61629ZM4.9036 3.35355C4.70834 3.54882 4.39176 3.54882 4.1965 3.35355L5.61071 1.93934C5.02492 1.35355 4.07517 1.35355 3.48939 1.93934L4.9036 3.35355ZM4.9036 2.64645C5.09886 2.84171 5.09886 3.15829 4.9036 3.35355L3.48939 1.93934C2.9036 2.52513 2.9036 3.47487 3.48939 4.06066L4.9036 2.64645ZM7.58497 5.32782L4.9036 2.64645L3.48939 4.06066L6.17076 6.74203L7.58497 5.32782ZM4.9036 9.4234L7.58497 6.74203L6.17076 5.32782L3.48939 8.00919L4.9036 9.4234ZM4.9036 8.71629C5.09886 8.91156 5.09886 9.22814 4.9036 9.4234L3.48939 8.00919C2.9036 8.59497 2.9036 9.54472 3.48939 10.1305L4.9036 8.71629ZM4.1965 8.71629C4.39176 8.52103 4.70834 8.52103 4.9036 8.7163L3.48939 10.1305C4.07518 10.7163 5.02492 10.7163 5.61071 10.1305L4.1965 8.71629ZM7.16634 5.74645L4.1965 8.71629L5.61071 10.1305L8.58056 7.16066L7.16634 5.74645ZM7.02408 6.16435C7.00503 6.01841 7.05172 5.86107 7.16634 5.74645L8.58056 7.16066C8.92362 6.81759 9.06512 6.3488 9.00726 5.90549L7.02408 6.16435ZM7.16634 6.3234C7.05172 6.20877 7.00503 6.05144 7.02408 5.9055L9.00726 6.16435C9.06512 5.72105 8.92362 5.25225 8.58056 4.90919L7.16634 6.3234ZM4.1965 3.35355L7.16634 6.3234L8.58056 4.90919L5.61071 1.93934L4.1965 3.35355Z\" mask=\"url(#path-1-inside-1)\"/>";
115
+ };
116
+ readonly bucket: {
117
+ readonly box: 12;
118
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.25 4L3.25 9.75C3.58333 10.0833 4.4 11 6 11C7.6 11 8.41667 10.0833 8.75 9.75L9.75 4C9.62855 3.91904 9.20401 3.8184 8.9864 3.71244C8.84166 2.19048 7.55986 1 6 1C4.44014 1 3.15834 2.19048 3.0136 3.71244C2.79599 3.8184 2.37145 3.91904 2.25 4ZM6 4C4.8 4 3.375 4.5 3.5 4.75C3.625 5 4.8 5.5 6 5.5C7.2 5.5 8.375 5 8.5 4.75C8.625 4.5 7.2 4 6 4ZM6 6.5C5 6.5 3.91667 6 3.5 5.75L4.25 9.25C4.30157 9.28868 4.35513 9.33333 4.41253 9.3812C4.72621 9.64273 5.1547 10 6 10C6.8453 10 7.27379 9.64274 7.58746 9.3812C7.59464 9.37522 7.60176 9.36928 7.60882 9.3634C7.65824 9.32226 7.70488 9.28384 7.75 9.25L8.5 5.75C8.08333 6 7 6.5 6 6.5ZM6 1.75C7.20155 1.75 8.00978 2.34766 8.25 3.47759C7.59317 3.22421 6.92788 3 6 3C5.07212 3 4.40683 3.24662 3.75 3.5C3.99022 2.37006 4.79845 1.75 6 1.75Z\" />";
119
+ };
120
+ readonly 'bullet-list': {
121
+ readonly box: 12;
122
+ readonly svg: "<path d=\"M2.5 2C2.22386 2 2 2.22386 2 2.5C2 2.77614 2.22386 3 2.5 3H3C3.27614 3 3.5 2.77614 3.5 2.5C3.5 2.22386 3.27614 2 3 2H2.5Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M5 2C4.72386 2 4.5 2.22386 4.5 2.5C4.5 2.77614 4.72386 3 5 3H10C10.2761 3 10.5 2.77614 10.5 2.5C10.5 2.22386 10.2761 2 10 2H5Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M2 6C2 5.72386 2.22386 5.5 2.5 5.5H3C3.27614 5.5 3.5 5.72386 3.5 6C3.5 6.27614 3.27614 6.5 3 6.5H2.5C2.22386 6.5 2 6.27614 2 6Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M2.5 9C2.22386 9 2 9.22386 2 9.5C2 9.77614 2.22386 10 2.5 10H3C3.27614 10 3.5 9.77614 3.5 9.5C3.5 9.22386 3.27614 9 3 9H2.5Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M4.5 6C4.5 5.72386 4.72386 5.5 5 5.5H10C10.2761 5.5 10.5 5.72386 10.5 6C10.5 6.27614 10.2761 6.5 10 6.5H5C4.72386 6.5 4.5 6.27614 4.5 6Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M5 9C4.72386 9 4.5 9.22386 4.5 9.5C4.5 9.77614 4.72386 10 5 10H10C10.2761 10 10.5 9.77614 10.5 9.5C10.5 9.22386 10.2761 9 10 9H5Z\" />";
123
+ };
124
+ readonly 'burger-menu': {
125
+ readonly box: 12;
126
+ readonly svg: "<path d=\"M1.5 2C1.5 1.72386 1.72386 1.5 2 1.5H10C10.2761 1.5 10.5 1.72386 10.5 2C10.5 2.27614 10.2761 2.5 10 2.5H2C1.72386 2.5 1.5 2.27614 1.5 2Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M1.5 6C1.5 5.72386 1.72386 5.5 2 5.5H10C10.2761 5.5 10.5 5.72386 10.5 6C10.5 6.27614 10.2761 6.5 10 6.5H2C1.72386 6.5 1.5 6.27614 1.5 6Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M1.5 10C1.5 9.72386 1.72386 9.5 2 9.5H10C10.2761 9.5 10.5 9.72386 10.5 10C10.5 10.2761 10.2761 10.5 10 10.5H2C1.72386 10.5 1.5 10.2761 1.5 10Z\" />";
127
+ };
128
+ readonly 'block-menu': {
129
+ readonly box: 24;
130
+ readonly svg: "<path d=\"M3 4a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4Zm0 7a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-2Zm1 6a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1H4Zm6-13a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1V4Zm1 6a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-2Zm-1 8a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-2Zm8-15a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1h-2Zm-1 8a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-2Zm1 6a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-2Z\"/>";
131
+ };
132
+ readonly calendar: {
133
+ readonly box: 12;
134
+ readonly svg: "<path d=\"M5.5 3.5V4.5H6.5V3.5H5.5Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M7.5 3.5H8.5V4.5H7.5V3.5Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M3.5 5.5V6.5H4.5V5.5H3.5Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M5.5 5.5H6.5V6.5H5.5V5.5Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M7.5 5.5V6.5H8.5V5.5H7.5Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M3.5 7.5H4.5V8.5H3.5V7.5Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M5.5 7.5V8.5H6.5V7.5H5.5Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M7.5 7.5H8.5V8.5H7.5V7.5Z\" />\n\t\t\t\t\t\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.5 1.5C1.94772 1.5 1.5 1.94772 1.5 2.5V9.5C1.5 10.0523 1.94772 10.5 2.5 10.5H9.5C10.0523 10.5 10.5 10.0523 10.5 9.5V2.5C10.5 1.94772 10.0523 1.5 9.5 1.5H2.5ZM9.5 2.5H2.5L2.5 9.5H9.5V2.5Z\" />";
135
+ };
136
+ readonly 'caret-down': {
137
+ readonly box: 12;
138
+ readonly svg: "<path d=\"M10.47,3.76,6,8.24,1.53,3.76Z\"/>";
139
+ };
140
+ readonly 'caret-left': {
141
+ readonly box: 12;
142
+ readonly svg: "<path d=\"M8.24,10.47,3.76,6,8.24,1.53Z\"/>";
143
+ };
144
+ readonly 'caret-right': {
145
+ readonly box: 12;
146
+ readonly svg: "<path d=\"M3.76,1.53,8.24,6,3.76,10.47Z\"/>";
147
+ };
148
+ readonly 'caret-up': {
149
+ readonly box: 12;
150
+ readonly svg: "<path d=\"M1.76,8.24,6.24,3.76l4.47,4.48Z\"/>";
151
+ };
152
+ readonly caret: {
153
+ readonly box: 12;
154
+ readonly svg: "<path d=\"M6 2.25L3.375 5.25L8.625 5.25L6 2.25Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M6 9.75L8.625 6.75H3.375L6 9.75Z\" />";
155
+ };
156
+ readonly cases: {
157
+ readonly box: 12;
158
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1 2.5C1 1.94772 1.44772 1.5 2 1.5H4.5C5.45096 1.5 5.79904 2.10289 6.05385 2.54423C6.20096 2.79904 6.31699 3 6.5 3H9.5C10.5 3 10.5 4 10.5 4V5C10.5 5 11 5 11 5.5L10.5 9.5C10.5 10.5 9.5 10.5 9.5 10.5H2C1.44772 10.5 1 10.0523 1 9.5V2.5ZM2.5 2.5C2 2.5 2 3 2 3V5H9.5V4.5C9.5 4 9 4 9 4H6C5.5 4 5.25 3.625 5 3.25C4.75 2.875 4.5 2.5 4 2.5H2.5ZM2 9C2 9.5 2.5 9.5 2.5 9.5H9.5L10 6H2V9Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M3 7.25C3 7.11193 3.11193 7 3.25 7H8.25C8.38807 7 8.5 7.11193 8.5 7.25C8.5 7.38807 8.38807 7.5 8.25 7.5H3.25C3.11193 7.5 3 7.38807 3 7.25Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M3 8.25C3 8.11193 3.11193 8 3.25 8H8.25C8.38807 8 8.5 8.11193 8.5 8.25C8.5 8.38807 8.38807 8.5 8.25 8.5H3.25C3.11193 8.5 3 8.38807 3 8.25Z\" />";
159
+ };
160
+ readonly category: {
161
+ readonly box: 12;
162
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.5 2.5C1.5 1.94772 1.94772 1.5 2.5 1.5H4.5C5.05228 1.5 5.5 1.94772 5.5 2.5V4.5C5.5 5.05228 5.05228 5.5 4.5 5.5H2.5C1.94772 5.5 1.5 5.05228 1.5 4.5V2.5ZM2.5 2.5H4.5V4.5H2.5V2.5Z\" />\n\t\t\t\t\t\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.5 2.5C6.5 1.94772 6.94772 1.5 7.5 1.5H9.5C10.0523 1.5 10.5 1.94772 10.5 2.5V4.5C10.5 5.05228 10.0523 5.5 9.5 5.5H7.5C6.94772 5.5 6.5 5.05228 6.5 4.5V2.5ZM7.5 2.5H9.5V4.5H7.5V2.5Z\" />\n\t\t\t\t\t\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.5 6.5C1.94772 6.5 1.5 6.94772 1.5 7.5V9.5C1.5 10.0523 1.94772 10.5 2.5 10.5H4.5C5.05228 10.5 5.5 10.0523 5.5 9.5V7.5C5.5 6.94772 5.05228 6.5 4.5 6.5H2.5ZM4.5 7.5H2.5V9.5H4.5V7.5Z\" />\n\t\t\t\t\t\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.5 7.5C6.5 6.94772 6.94772 6.5 7.5 6.5H9.5C10.0523 6.5 10.5 6.94772 10.5 7.5V9.5C10.5 10.0523 10.0523 10.5 9.5 10.5H7.5C6.94772 10.5 6.5 10.0523 6.5 9.5V7.5ZM7.5 7.5H9.5V9.5H7.5V7.5Z\" />";
163
+ };
164
+ readonly 'check-paper': {
165
+ readonly box: 24;
166
+ readonly svg: "<path d=\"M15 8h-3v1h3V8Zm-3-2h2v1h-2V6Zm5 7h-5v1h5v-1Zm-5-2h5v1h-5v-1Zm5 7h-5v1h5v-1Zm-5-2h5v1h-5v-1Z\"/><path fill-rule=\"evenodd\" d=\"M7 5h4v4H7V5Zm1 1h2v2H8V6Zm3 4H7v4h4v-4Zm-1 1H8v2h2v-2Zm-3 4h4v4H7v-4Zm1 1h2v2H8v-2Z\" clip-rule=\"evenodd\"/><path fill-rule=\"evenodd\" d=\"M4 4c0-1.10457.89543-2 2-2h9l5 5v13c0 1.1046-.8954 2-2 2H6c-1.10457 0-2-.8954-2-2V4Zm10 0 4 4v12H6V4h8Z\" clip-rule=\"evenodd\"/>";
167
+ };
168
+ readonly 'chevron-down': {
169
+ readonly box: 12;
170
+ readonly svg: "<path d=\"M2.36727 5.09273L5.27894 8.11779C6.09515 8.94695 5.97979 8.94857 6.81093 8.11779L9.71004 5.10692C10.7042 4.11587 9.23052 2.60209 8.22671 3.58972L7.04161 4.86513L6.03943 5.91615L5.03956 4.89092L3.87179 3.58239C2.88642 2.58991 1.36609 4.11465 2.36727 5.09273Z\" />";
171
+ };
172
+ readonly 'chevron-left': {
173
+ readonly box: 12;
174
+ readonly svg: "<path d=\"M6.94708 2.32749L3.92201 5.23916C3.09286 6.05536 3.09124 5.94 3.92201 6.77114L6.93289 9.67025C7.92394 10.6644 9.43772 9.19073 8.45009 8.18692L7.17468 7.00182L6.12366 5.99964L7.14889 4.99977L8.45742 3.832C9.4499 2.84663 7.92516 1.3263 6.94708 2.32749Z\" />";
175
+ };
176
+ readonly 'chevron-right': {
177
+ readonly box: 12;
178
+ readonly svg: "<path d=\"M5.13251 9.67256L8.15757 6.76089C8.98673 5.94468 8.98835 6.06005 8.15757 5.22891L5.1467 2.32979C4.15565 1.33562 2.64187 2.80932 3.6295 3.81313L4.90491 4.99822L5.95593 6.00041L4.9307 7.00028L3.62217 8.16804C2.62969 9.15342 4.15443 10.6737 5.13251 9.67256Z\" />";
179
+ };
180
+ readonly 'chevron-up': {
181
+ readonly box: 12;
182
+ readonly svg: "<path d=\"M9.71232 6.90732L6.80065 3.88225C5.98444 3.05309 6.0998 3.05148 5.26867 3.88225L2.36955 6.89313C1.37537 7.88417 2.84907 9.39796 3.85288 8.41032L5.03798 7.13492L6.04016 6.08389L7.04003 7.10913L8.2078 8.41765C9.19317 9.41013 10.7135 7.8854 9.71232 6.90732Z\" />";
183
+ };
184
+ readonly 'circle-cross': {
185
+ readonly box: 24;
186
+ readonly svg: "<path d=\"M8.46467 14.1212C8.07415 14.5117 8.074 15.145 8.46452 15.5355C8.85505 15.9261 9.48821 15.9261 9.87874 15.5355L12.0001 13.4142L14.1208 15.5349C14.5113 15.9255 15.1451 15.9261 15.5356 15.5355C15.9261 15.145 15.9261 14.5118 15.5356 14.1213L13.4143 12L15.5356 9.87868C15.9261 9.48815 15.9261 8.85499 15.5356 8.46446C15.1451 8.07394 14.5119 8.07394 14.1214 8.46446L12.0001 10.5858L9.87874 8.46446C9.48821 8.07394 8.85505 8.07394 8.46452 8.46446C8.074 8.85499 8.074 9.48815 8.46452 9.87868L10.5858 12L8.46467 14.1212Z\" />\n\t\t\t\t\t\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12ZM19 12C19 15.866 15.866 19 12 19C8.13401 19 5 15.866 5 12C5 8.13401 8.13401 5 12 5C15.866 5 19 8.13401 19 12Z\" />";
187
+ };
188
+ readonly 'circle-edit': {
189
+ readonly box: 24;
190
+ readonly svg: "<path d=\"M14.2516 3.28395C13.532 3.09859 12.7775 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 11.1652 20.8863 10.3569 20.6736 9.5898L18.9653 11.2982C18.9882 11.529 19 11.7631 19 12C19 15.866 15.866 19 12 19C8.13401 19 5 15.866 5 12C5 8.13401 8.13401 5 12 5C12.1738 5 12.3461 5.00633 12.5167 5.01878L14.2516 3.28395Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M12.3098 15.3567L8 16.0638L8.70711 11.7544L10.6998 9.76052L15.4815 5.00399L19.032 8.59654L14.2964 13.3418L12.3098 15.3567ZM10.3477 13.7014L12.2949 13.3489L12.6512 12.9926L11.0559 11.3973L10.7002 11.7531L10.3477 13.7014ZM15.5082 7.00732L12.7528 9.78226L13.7322 10.7828L16.4947 8.05786L15.5082 7.00732Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M20.0606 7.56679L16.4824 4.00584L17.491 3C17.491 3 18.5773 3.52483 19.578 4.53174C20.5788 5.53865 21.0434 6.58298 21.0434 6.58298L20.0606 7.56679Z\" />";
191
+ };
192
+ readonly 'circle-exclamation': {
193
+ readonly box: 24;
194
+ readonly svg: "<path d=\"M12 7C12.5523 7 13.5 7.44772 13.5 8L13 13C13 13.5523 12.5523 14 12 14C11.4477 14 11 13.5523 11 13L10.5 8C10.5 7.44771 11.4477 7 12 7Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M13 16C13 15.4477 12.5523 15 12 15C11.4477 15 11 15.4477 11 16C11 16.5523 11.4477 17 12 17C12.5523 17 13 16.5523 13 16Z\" />\n\t\t\t\t\t\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12ZM5 12C5 8.13401 8.13401 5 12 5C15.866 5 19 8.13401 19 12C19 15.866 15.866 19 12 19C8.13401 19 5 15.866 5 12Z\" />";
195
+ };
196
+ readonly 'circle-help': {
197
+ readonly box: 24;
198
+ readonly svg: "<path d=\"M9 10C9 8 10 7 12 7C14 7 15 8 15 10C15 11.1716 14.3137 12 13.7452 12.6863C13.3431 13.1716 13 13.5858 13 14H11C11 14 11 13 12 12C13 11 13 10 13 10C13 9 12.3333 9 12 9C11.6667 9 11 9 11 10H9Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M11 16C11 16.5523 11.4477 17 12 17C12.5523 17 13 16.5523 13 16C13 15.4477 12.5523 15 12 15C11.4477 15 11 15.4477 11 16Z\" />\n\t\t\t\t\t\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12ZM19 12C19 15.866 15.866 19 12 19C8.13401 19 5 15.866 5 12C5 8.13401 8.13401 5 12 5C15.866 5 19 8.13401 19 12Z\" />";
199
+ };
200
+ readonly 'circle-information': {
201
+ readonly box: 24;
202
+ readonly svg: "<path d=\"M12 17C11.4477 17 11 16.5523 11 16V11C11 10.4477 11.4477 10 12 10C12.5523 10 13 10.4477 13 11V16C13 16.5523 12.5523 17 12 17Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M11 8C11 8.55228 11.4477 9 12 9C12.5523 9 13 8.55228 13 8C13 7.44772 12.5523 7 12 7C11.4477 7 11 7.44772 11 8Z\" />\n\t\t\t\t\t\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12ZM19 12C19 15.866 15.866 19 12 19C8.13401 19 5 15.866 5 12C5 8.13401 8.13401 5 12 5C15.866 5 19 8.13401 19 12Z\" />";
203
+ };
204
+ readonly 'circle-minus': {
205
+ readonly box: 24;
206
+ readonly svg: "<path d=\"M17 12C17 12.5523 16.5523 13 16 13H8C7.44772 13 7 12.5523 7 12C7 11.4477 7.44771 11 8 11H16C16.5523 11 17 11.4477 17 12Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21ZM19 12C19 15.866 15.866 19 12 19C8.13401 19 5 15.866 5 12C5 8.13401 8.13401 5 12 5C15.866 5 19 8.13401 19 12Z\" />";
207
+ };
208
+ readonly 'circle-plus': {
209
+ readonly box: 24;
210
+ readonly svg: "<path d=\"M11 16C11 16.5523 11.4477 17 12 17C12.5523 17 13 16.5523 13 16V13H16C16.5523 13 17 12.5523 17 12C17 11.4477 16.5523 11 16 11H13V8C13 7.44771 12.5523 7 12 7C11.4477 7 11 7.44772 11 8V11H8C7.44771 11 7 11.4477 7 12C7 12.5523 7.44772 13 8 13H11V16Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12ZM12 19C15.866 19 19 15.866 19 12C19 8.13401 15.866 5 12 5C8.13401 5 5 8.13401 5 12C5 15.866 8.13401 19 12 19Z\" />";
211
+ };
212
+ readonly 'circle-tick': {
213
+ readonly box: 24;
214
+ readonly svg: "<path d=\"M18.9463 11.1286C18.9817 11.4141 19 11.7049 19 12C19 15.866 15.866 19 12 19C8.13401 19 5 15.866 5 12C5 8.13401 8.13401 5 12 5C13.315 5 14.5453 5.3626 15.5964 5.99327L17.0443 4.54538C15.6055 3.56988 13.8693 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 11.1118 20.8713 10.2537 20.6317 9.44328L18.9463 11.1286Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M8.78313 11.4497C9.17366 11.0592 9.80682 11.0592 10.1973 11.4497L11.6164 12.8688L17.8217 6.66361C18.2122 6.27309 18.8454 6.27309 19.2359 6.66361C19.6264 7.05414 19.6264 7.6873 19.2359 8.07783L12.364 14.9497C12.1584 15.1553 11.8857 15.2526 11.6164 15.2418C11.3472 15.2527 11.0745 15.1553 10.8689 14.9497L8.78313 12.864C8.39261 12.4734 8.39261 11.8403 8.78313 11.4497Z\" />";
215
+ };
216
+ readonly 'circle-valid': {
217
+ readonly box: 24;
218
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12ZM19 12C19 15.866 15.866 19 12 19C8.13401 19 5 15.866 5 12C5 8.13401 8.13401 5 12 5C15.866 5 19 8.13401 19 12Z\" />\n\t\t\t\t\t\t\t\t\t\t<path d=\"M9.86619 9.50017C9.59005 9.02187 8.97846 8.858 8.50017 9.13414C8.02187 9.41028 7.858 10.0219 8.13414 10.5002L11.1255 15.6813C11.1701 15.7619 11.2261 15.8369 11.2929 15.9036C11.3796 15.9905 11.4804 16.0592 11.5894 16.1081C11.7217 16.1679 11.8616 16.1966 11.9999 16.1965C12.1386 16.1967 12.2788 16.1679 12.4114 16.1079C12.5202 16.059 12.6208 15.9903 12.7074 15.9036C12.7742 15.8369 12.8303 15.7619 12.8749 15.6813L15.8662 10.5002C16.1423 10.0219 15.9785 9.41028 15.5002 9.13414C15.0219 8.858 14.4103 9.02187 14.1341 9.50017L12.0002 13.1963L9.86619 9.50017Z\" />";
219
+ };
220
+ readonly circle: {
221
+ readonly box: 24;
222
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21ZM12 19C15.866 19 19 15.866 19 12C19 8.13401 15.866 5 12 5C8.13401 5 5 8.13401 5 12C5 15.866 8.13401 19 12 19Z\" />";
223
+ };
224
+ readonly 'clean-3': {
225
+ readonly box: 24;
226
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.99275 7.00725L7.25 5L6.50725 7.00725L4.5 7.75L6.50725 8.49275L7.25 10.5L7.99275 8.49275L10 7.75L7.99275 7.00725ZM7.58761 7.41239L7.25 6.5L6.91239 7.41239L6 7.75L6.91239 8.08761L7.25 9L7.58761 8.08761L8.5 7.75L7.58761 7.41239Z\" />\n\t\t\t\t\t\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.25 6C9.94036 6 10.5 5.44036 10.5 4.75C10.5 4.05964 9.94036 3.5 9.25 3.5C8.55964 3.5 8 4.05964 8 4.75C8 5.44036 8.55964 6 9.25 6ZM9.25 5.58333C9.71024 5.58333 10.0833 5.21024 10.0833 4.75C10.0833 4.28976 9.71024 3.91667 9.25 3.91667C8.78976 3.91667 8.41667 4.28976 8.41667 4.75C8.41667 5.21024 8.78976 5.58333 9.25 5.58333Z\" />\n\t\t\t\t\t\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7 3.5C7.55228 3.5 8 3.05228 8 2.5C8 1.94772 7.55228 1.5 7 1.5C6.44772 1.5 6 1.94772 6 2.5C6 3.05228 6.44772 3.5 7 3.5ZM7 3C7.27614 3 7.5 2.77614 7.5 2.5C7.5 2.22386 7.27614 2 7 2C6.72386 2 6.5 2.22386 6.5 2.5C6.5 2.77614 6.72386 3 7 3Z\" />\n\t\t\t\t\t\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 10C3.55228 10 4 9.55228 4 9C4 8.44772 3.55228 8 3 8C2.44772 8 2 8.44772 2 9C2 9.55228 2.44772 10 3 10ZM3 9.5C3.27614 9.5 3.5 9.27614 3.5 9C3.5 8.72386 3.27614 8.5 3 8.5C2.72386 8.5 2.5 8.72386 2.5 9C2.5 9.27614 2.72386 9.5 3 9.5Z\" />\n\t\t\t\t\t\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.99275 3.50725L4.25 1.5L3.50725 3.50725L1.5 4.25L3.50725 4.99275L4.25 7L4.99275 4.99275L7 4.25L4.99275 3.50725ZM4.58761 3.91239L4.25 3L3.91239 3.91239L3 4.25L3.91239 4.58761L4.25 5.5L4.58761 4.58761L5.5 4.25L4.58761 3.91239Z\" />";
227
+ };
228
+ readonly clean: {
229
+ readonly box: 12;
230
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 1.5L7.21541 4.78459L10.5 6L7.21541 7.21541L6 10.5L4.78459 7.21541L1.5 6L4.78459 4.78459L6 1.5ZM6 4L6.54018 5.45982L8 6L6.54018 6.54018L6 8L5.45982 6.54018L4 6L5.45982 5.45982L6 4Z\" />\n\t\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.5 2.5C9.5 1.94772 9.05228 1.5 8.5 1.5C7.94772 1.5 7.5 1.94772 7.5 2.5C7.5 3.05228 7.94772 3.5 8.5 3.5C8.5 4.05228 8.94772 4.5 9.5 4.5C10.0523 4.5 10.5 4.05228 10.5 3.5C10.5 2.94772 10.0523 2.5 9.5 2.5ZM9.35317 3.02191C9.19511 3.07039 9.07039 3.19511 9.02191 3.35317C9.00766 3.3996 9 3.4489 9 3.5C9 3.77614 9.22386 4 9.5 4C9.77614 4 10 3.77614 10 3.5C10 3.22386 9.77614 3 9.5 3C9.4489 3 9.3996 3.00766 9.35317 3.02191ZM8.97809 2.64683C8.92961 2.80489 8.80489 2.92961 8.64683 2.97809C8.6004 2.99234 8.5511 3 8.5 3C8.22386 3 8 2.77614 8 2.5C8 2.22386 8.22386 2 8.5 2C8.77614 2 9 2.22386 9 2.5C9 2.5511 8.99234 2.6004 8.97809 2.64683Z\" />";
231
+ };
232
+ readonly clock: {
233
+ readonly box: 12;
234
+ readonly svg: "<path d=\"M6 3C5.72386 3 5.5 3.22386 5.5 3.5V5.94097C5.34656 6.0783 5.25 6.27787 5.25 6.5C5.25 6.91421 5.58579 7.25 6 7.25C6.11212 7.25 6.21849 7.2254 6.31402 7.1813L7.61603 7.93301C7.85517 8.07108 8.16097 7.98915 8.29904 7.75C8.43711 7.51085 8.35517 7.20506 8.11603 7.06699L6.70893 6.2546C6.66676 6.13276 6.59407 6.02517 6.5 5.94097V3.5C6.5 3.22386 6.27614 3 6 3Z\" />\n\t\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 10.5C8.48528 10.5 10.5 8.48528 10.5 6C10.5 3.51472 8.48528 1.5 6 1.5C3.51472 1.5 1.5 3.51472 1.5 6C1.5 8.48528 3.51472 10.5 6 10.5ZM6 9.5C7.933 9.5 9.5 7.933 9.5 6C9.5 4.067 7.933 2.5 6 2.5C4.067 2.5 2.5 4.067 2.5 6C2.5 7.933 4.067 9.5 6 9.5Z\" />";
235
+ };
236
+ readonly 'close-menu-cross': {
237
+ readonly box: 12;
238
+ readonly svg: "<path d=\"M1.64645 2.36069C1.45118 2.16543 1.45118 1.84884 1.64645 1.65358C1.84171 1.45832 2.15829 1.45832 2.35355 1.65358L6.01283 5.31286L9.67211 1.65358C9.86737 1.45832 10.184 1.45832 10.3792 1.65358C10.5745 1.84884 10.5745 2.16542 10.3792 2.36069L6.71994 6.01997L10.3792 9.67924C10.5745 9.87451 10.5745 10.1911 10.3792 10.3864C10.184 10.5816 9.86737 10.5816 9.67211 10.3864L6.01283 6.72707L2.35355 10.3864C2.15829 10.5816 1.84171 10.5816 1.64645 10.3863C1.45118 10.1911 1.45118 9.87451 1.64645 9.67924L5.30572 6.01997L1.64645 2.36069Z\" />";
239
+ };
240
+ readonly cluster: {
241
+ readonly box: 24;
242
+ readonly svg: "<path fill-rule=\"evenodd\" d=\"M5 3a1 1 0 0 1 2 0v2h10V3a1 1 0 1 1 2 0v15c0 .6-.4 1-1 1H6a1 1 0 0 1-1-1V3Zm2 6V6h10v3H7Zm0 1v3h10v-3H7Zm10 4H7v3h10v-3Z\" clip-rule=\"evenodd\"/><path d=\"M7.5 19a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm9 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Z\"/>";
243
+ };
244
+ readonly colours: {
245
+ readonly box: 12;
246
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.5 6C10.5 8.48528 8.48528 10.5 6 10.5C3.51472 10.5 1.5 8.48528 1.5 6C1.5 3.51472 3.51472 1.5 6 1.5C8.48528 1.5 10.5 3.51472 10.5 6ZM9.5 6C9.5 7.933 7.933 9.5 6 9.5C5.87282 9.5 5.74723 9.49322 5.62357 9.47999L9.47999 5.62357C9.49322 5.74723 9.5 5.87282 9.5 6ZM9.36443 5.03203L5.03203 9.36443C4.53945 9.22296 4.09139 8.97625 3.71376 8.6502L8.6502 3.71376C8.97625 4.09139 9.22296 4.53945 9.36443 5.03203ZM8.29738 3.35947C7.91743 3.02862 7.4654 2.77843 6.96796 2.63557L2.63557 6.96796C2.77843 7.4654 3.02862 7.91743 3.35947 8.29738L8.29738 3.35947ZM6 2.5C6.12717 2.5 6.25276 2.50678 6.37642 2.52001L2.52001 6.37642C2.50678 6.25276 2.5 6.12717 2.5 6C2.5 4.067 4.067 2.5 6 2.5Z\" />";
247
+ };
248
+ readonly columns: {
249
+ readonly box: 24;
250
+ readonly svg: "<path fill-rule=\"evenodd\" d=\"M2 5c0-1.1.9-2 2-2h16a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5Zm14 0h4v14h-4V5Zm-2 0h-4v14h4V5ZM8 19V5H4v14h4Z\" clip-rule=\"evenodd\"/>";
251
+ };
252
+ readonly 'compact-rows': {
253
+ readonly box: 12;
254
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1 2.5C1 1.94772 1.44772 1.5 2 1.5H10C10.5523 1.5 11 1.94772 11 2.5V9.5C11 10.0523 10.5523 10.5 10 10.5H2C1.44772 10.5 1 10.0523 1 9.5V2.5ZM2 2.5H10V3.5H2V2.5ZM2 4V5H10V4H2ZM10 5.5H2V6.5H10V5.5ZM10 7H2V8H10V7ZM10 8.5H2V9.5H10V8.5Z\" />";
255
+ };
256
+ readonly 'container-2': {
257
+ readonly box: 24;
258
+ readonly svg: "<path fill-rule=\"evenodd\" d=\"M9 7a1 1 0 0 0-1 1v2c0 .6.4 1 1 1h6c.6 0 1-.4 1-1V8c0-.6-.4-1-1-1H9Zm.5 1c-.3 0-.5.2-.5.5v1c0 .3.2.5.5.5h5c.3 0 .5-.2.5-.5v-1c0-.3-.2-.5-.5-.5h-5Z\" clip-rule=\"evenodd\"/><path fill-rule=\"evenodd\" d=\"M5 3a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5Zm1 2a1 1 0 0 0-1 1v12c0 .6.4 1 1 1h12c.6 0 1-.4 1-1V6c0-.6-.4-1-1-1H6Z\" clip-rule=\"evenodd\"/>";
259
+ };
260
+ readonly copy: {
261
+ readonly box: 12;
262
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 8C10 8.55228 9.55228 9 9 9L8 9.01346V10C8 10.5523 7.55228 11 7 11H3C2.44772 11 2 10.5523 2 10V4C2 3.44772 2.44772 3 3 3H4V2C4 1.44772 4.44772 1 5 1H9C9.55228 1 10 1.44772 10 2V8ZM8 4V8.01337L8.99327 8H9V2H5V2.9771C5.15674 2.97417 5.32141 2.97141 5.48625 2.96914C5.86328 2.96396 6.24949 2.96121 6.545 2.96528C6.68974 2.96727 6.82929 2.97107 6.93971 2.97866C6.98925 2.98207 7.06533 2.98824 7.14234 3.00201C7.17235 3.00738 7.26056 3.02348 7.36192 3.06392C7.40819 3.08237 7.52194 3.13063 7.64061 3.23021C7.75685 3.32774 8 3.58315 8 4ZM3 4L3 10H7V4H3Z\" />";
263
+ };
264
+ readonly 'countries-3': {
265
+ readonly box: 12;
266
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 10.5C8.48528 10.5 10.5 8.48528 10.5 6C10.5 3.51472 8.48528 1.5 6 1.5C3.51472 1.5 1.5 3.51472 1.5 6C1.5 8.48528 3.51472 10.5 6 10.5ZM6.6849 9.43302C6.62383 9.44514 6.56218 9.45566 6.5 9.46456V6.75H7.46192C7.34363 7.92121 6.97318 8.88241 6.6849 9.43302ZM7.49573 5.75H6.5V2.53544C6.56218 2.54434 6.62383 2.55487 6.6849 2.56698C7.01324 3.19412 7.4482 4.35393 7.49573 5.75ZM8.49483 5.75C8.45067 4.67961 8.13007 3.71685 7.77339 2.98189C8.73908 3.55054 9.40789 4.56944 9.49121 5.75H8.49483ZM8.454 6.75H9.41946C9.20873 7.71518 8.59976 8.5315 7.77339 9.01811C8.07358 8.39955 8.34821 7.61963 8.454 6.75ZM5.5 5.75V2.53544C5.43782 2.54434 5.37617 2.55487 5.3151 2.56698C4.98676 3.19412 4.5518 4.35393 4.50427 5.75H5.5ZM3.50517 5.75C3.54933 4.67961 3.86993 3.71685 4.22661 2.98189C3.26092 3.55054 2.59211 4.56944 2.50879 5.75H3.50517ZM2.58054 6.75C2.79127 7.71518 3.40024 8.5315 4.22661 9.01811C3.92642 8.39955 3.65179 7.61963 3.546 6.75H2.58054ZM4.53808 6.75H5.5V9.46456C5.43782 9.45566 5.37617 9.44514 5.3151 9.43302C5.02682 8.88241 4.65637 7.92121 4.53808 6.75Z\" />";
267
+ };
268
+ readonly countries: {
269
+ readonly box: 12;
270
+ readonly svg: "<path d=\"M4.42392 8.28986C4.73278 8.57818 5 7.87085 5 7.51981C5 7.29015 4.8726 7.10396 4.25 7.10396C4.13555 7.10396 4.02708 7.07221 3.93003 7.0438C3.67586 6.9694 3.5 6.91792 3.5 7.51981C3.5 7.82009 3.67508 7.94742 3.92834 7.995C4.12158 8.03131 4.28019 8.15568 4.42392 8.28986Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.5 6C10.5 8.48528 8.48528 10.5 6 10.5C3.51472 10.5 1.5 8.48528 1.5 6C1.5 3.51472 3.51472 1.5 6 1.5C8.48528 1.5 10.5 3.51472 10.5 6ZM9.5 6C9.5 7.72714 8.24898 9.1621 6.60366 9.44814L6.60746 9.44267C6.71927 9.27764 7.04892 8.79803 7.26339 8.55891C7.29927 8.51891 7.3438 8.48837 7.3904 8.46159C7.8427 8.2017 8.06885 7.73778 8.06885 7.5C8.06885 7.375 8.13135 7.3125 8.19385 7.25C8.25635 7.1875 8.31885 7.125 8.31885 7C8.31885 6.86193 8.20708 6.74126 8.07193 6.71299C7.93277 6.68388 7.72744 6.63187 7.43792 6.53897C7.36684 6.51616 7.31885 6.44965 7.31885 6.375C7.31885 6.30035 7.27086 6.2341 7.20025 6.20986C7.14648 6.1914 7.09717 6.17416 7.05134 6.15813C6.74983 6.05271 6.59907 6 6.31885 6C6.04641 6 5.92242 6 5.82554 6.04044C5.82414 6.00556 5.81341 5.97011 5.79159 5.93738L5.5 5.5C5.25 5 5.9 4.5 6.5 4.5C7.10849 4.5 7.88154 3.51263 8.01809 3.14004C8.91462 3.77383 9.5 4.81855 9.5 6ZM6.12954 9.26432C6.11789 9.35751 6.15498 9.43966 6.21633 9.49342C6.14478 9.49779 6.07265 9.5 6 9.5C4.067 9.5 2.5 7.933 2.5 6C2.5 5.05207 2.87685 4.19215 3.4889 3.56189C3.5921 3.70426 3.61985 3.87212 3.65171 4.06482C3.67374 4.19807 3.69774 4.34321 3.75 4.5C3.87052 4.86156 4.16533 5.04881 4.49441 5.25783C4.82203 5.46593 5.18362 5.69561 5.44096 6.14033C5.47357 6.19669 5.52874 6.23684 5.59165 6.2473C5.56627 6.28973 5.54816 6.33641 5.53864 6.38538C5.40139 7.09174 5.66187 7.42152 5.81883 7.5L6.00242 7.59179C6.19203 7.6866 6.30125 7.89067 6.27495 8.10103L6.12954 9.26432Z\" />";
271
+ };
272
+ readonly courier: {
273
+ readonly box: 12;
274
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1 4C1 3.5 1.5 3 2 3H7C7.5 3 8 3.5 8 4H10C10.5 4 11 4.5 11 5V7.5C11 8 10.5 8.5 10 8.5C10 9.32843 9.32843 10 8.5 10C7.67157 10 7 9.32843 7 8.5H5.5C5.5 9.32843 4.82843 10 4 10C3.17157 10 2.5 9.32843 2.5 8.5H2C1.5 8.5 1 8 1 7.5V4ZM10 7C10 7 10 7.4237 9.60996 7.49103C9.33558 7.18937 8.93991 7 8.5 7C8.32468 7 8.15639 7.03008 8 7.08535V5H9.5C9.5 5 10 5 10 5.5V7ZM7 4.5C7 4 6.5 4 6.5 4H2.5C2 4 2 4.5 2 4.5V7C2 7.5 2.5 7.5 2.5 7.5H2.88195C3.15661 7.19313 3.55575 7 4 7C4.44425 7 4.84339 7.19313 5.11805 7.5H7V4.5ZM4.5 8.5C4.5 8.77614 4.27614 9 4 9C3.72386 9 3.5 8.77614 3.5 8.5C3.5 8.22386 3.72386 8 4 8C4.27614 8 4.5 8.22386 4.5 8.5ZM8.5 9C8.77614 9 9 8.77614 9 8.5C9 8.22386 8.77614 8 8.5 8C8.22386 8 8 8.22386 8 8.5C8 8.77614 8.22386 9 8.5 9Z\" />";
275
+ };
276
+ readonly 'create-assessment': {
277
+ readonly box: 12;
278
+ readonly svg: "<path d=\"M3.5 1C3.22386 1 3 1.22386 3 1.5V3H1.5C1.22386 3 1 3.22386 1 3.5C1 3.77614 1.22386 4 1.5 4H3V5.5C3 5.77614 3.22386 6 3.5 6C3.77614 6 4 5.77614 4 5.5V4H5.5C5.77614 4 6 3.77614 6 3.5C6 3.22386 5.77614 3 5.5 3H4V1.5C4 1.22386 3.77614 1 3.5 1Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7 10C7.69036 10 8.25 9.44036 8.25 8.75C8.25 8.05964 7.69036 7.5 7 7.5C6.30964 7.5 5.75 8.05964 5.75 8.75C5.75 9.44036 6.30964 10 7 10ZM7.75 8.75C7.75 9.16421 7.41421 9.5 7 9.5C6.58579 9.5 6.25 9.16421 6.25 8.75C6.25 8.33579 6.58579 8 7 8C7.41421 8 7.75 8.33579 7.75 8.75Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7 6.5C5 6.5 3 8.75 3 8.75C3 8.75 5 11 7 11C9 11 11 8.75 11 8.75C11 8.75 9 6.5 7 6.5ZM7 7.25C5.5 7.25 4 8.75 4 8.75C4 8.75 5.5 10.25 7 10.25C8.5 10.25 10 8.75 10 8.75C10 8.75 8.5 7.25 7 7.25Z\" />";
279
+ };
280
+ readonly 'create-attribute': {
281
+ readonly box: 12;
282
+ readonly svg: "<path d=\"M3 1.5C3 1.22386 3.22386 1 3.5 1C3.77614 1 4 1.22386 4 1.5V3H5.5C5.77614 3 6 3.22386 6 3.5C6 3.77614 5.77614 4 5.5 4H4V5.5C4 5.77614 3.77614 6 3.5 6C3.22386 6 3 5.77614 3 5.5V4H1.5C1.22386 4 1 3.77614 1 3.5C1 3.22386 1.22386 3 1.5 3H3V1.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.5 3C9.22386 3 9 3.22386 9 3.5V5.5C9 5.52826 9.00234 5.55597 9.00685 5.58295C8.42068 5.78692 8 6.34433 8 7C8 7.65567 8.42068 8.21308 9.00685 8.41705C9.00234 8.44403 9 8.47174 9 8.5V10.5C9 10.7761 9.22386 11 9.5 11C9.77614 11 10 10.7761 10 10.5V8.5C10 8.47174 9.99766 8.44403 9.99315 8.41705C10.5793 8.21308 11 7.65567 11 7C11 6.34433 10.5793 5.78692 9.99315 5.58295C9.99766 5.55597 10 5.52826 10 5.5V3.5C10 3.22386 9.77614 3 9.5 3ZM9.5 7.5C9.77614 7.5 10 7.27614 10 7C10 6.72386 9.77614 6.5 9.5 6.5C9.22386 6.5 9 6.72386 9 7C9 7.27614 9.22386 7.5 9.5 7.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 6.5C5.72386 6.5 5.5 6.72386 5.5 7V8C5.5 8.02826 5.50234 8.05597 5.50685 8.08295C4.92068 8.28692 4.5 8.84433 4.5 9.5C4.5 10.3284 5.17157 11 6 11C6.82843 11 7.5 10.3284 7.5 9.5C7.5 8.84433 7.07932 8.28692 6.49315 8.08295C6.49766 8.05597 6.5 8.02826 6.5 8V7C6.5 6.72386 6.27614 6.5 6 6.5ZM6.5 9.5C6.5 9.77614 6.27614 10 6 10C5.72386 10 5.5 9.77614 5.5 9.5C5.5 9.22386 5.72386 9 6 9C6.27614 9 6.5 9.22386 6.5 9.5Z\" />";
283
+ };
284
+ readonly 'create-case': {
285
+ readonly box: 12;
286
+ readonly svg: "<path d=\"M8 1.5C8 1.22386 8.22386 1 8.5 1C8.77614 1 9 1.22386 9 1.5V3H10.5C10.7761 3 11 3.22386 11 3.5C11 3.77614 10.7761 4 10.5 4H9V5.5C9 5.77614 8.77614 6 8.5 6C8.22386 6 8 5.77614 8 5.5V4H6.5C6.22386 4 6 3.77614 6 3.5C6 3.22386 6.22386 3 6.5 3H8V1.5Z\" />\n\t\t\t\t\t<path d=\"M2.75 8.5C2.61193 8.5 2.5 8.61193 2.5 8.75C2.5 8.88807 2.61193 9 2.75 9H6.25C6.38807 9 6.5 8.88807 6.5 8.75C6.5 8.61193 6.38807 8.5 6.25 8.5H2.75Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1 6.5C1 5.94772 1.44772 5.5 2 5.5H4C4.58579 5.5 4.82843 5.84315 5.02944 6.12742C5.17157 6.32843 5.29289 6.5 5.5 6.5H7C8 6.5 8 7.5 8 7.5V10C8 10 8 11 7 11H2C1.44772 11 1 10.5523 1 10V6.5ZM2 7C2 7 2 6.5 2.5 6.5H4C4.20711 6.5 4.32843 6.67157 4.47056 6.87258C4.67157 7.15685 4.91421 7.5 5.5 7.5H6.5C6.5 7.5 7 7.5 7 8V9.5C7 9.5 7 10 6.5 10H2.5C2.5 10 2 10 2 9.5V7Z\" />";
287
+ };
288
+ readonly 'create-customer': {
289
+ readonly box: 12;
290
+ readonly svg: "<path d=\"M3 1.5C3 1.22386 3.22386 1 3.5 1C3.77614 1 4 1.22386 4 1.5V3H5.5C5.77614 3 6 3.22386 6 3.5C6 3.77614 5.77614 4 5.5 4H4V5.5C4 5.77614 3.77614 6 3.5 6C3.22386 6 3 5.77614 3 5.5V4H1.5C1.22386 4 1 3.77614 1 3.5C1 3.22386 1.22386 3 1.5 3H3V1.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 4.75C10 5.7165 9.2165 6.5 8.25 6.5C7.2835 6.5 6.5 5.7165 6.5 4.75C6.5 3.7835 7.2835 3 8.25 3C9.2165 3 10 3.7835 10 4.75ZM9 4.75C9 5.16421 8.66421 5.5 8.25 5.5C7.83579 5.5 7.5 5.16421 7.5 4.75C7.5 4.33579 7.83579 4 8.25 4C8.66421 4 9 4.33579 9 4.75Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.5 7C6.39543 7 5.5 7.89543 5.5 9V10.5C5.5 10.7761 5.72386 11 6 11H10.5C10.7761 11 11 10.7761 11 10.5V9C11 7.89543 10.1046 7 9 7H7.5ZM7.5 8C6.94772 8 6.5 8.44771 6.5 9V10H10V9C10 8.44771 9.55229 8 9 8H7.5Z\" />";
291
+ };
292
+ readonly 'create-database': {
293
+ readonly box: 12;
294
+ readonly svg: "<path d=\"M8.5 1C8.22386 1 8 1.22386 8 1.5V3H6.5C6.22386 3 6 3.22386 6 3.5C6 3.77614 6.22386 4 6.5 4H8V5.5C8 5.77614 8.22386 6 8.5 6C8.77614 6 9 5.77614 9 5.5V4H10.5C10.7761 4 11 3.77614 11 3.5C11 3.22386 10.7761 3 10.5 3H9V1.5C9 1.22386 8.77614 1 8.5 1Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1 7.5C1 6.875 1.875 6 3.5 6C5.125 6 6 6.875 6 7.5V9.5C6 10.125 5.125 11 3.5 11C1.875 11 1 10.125 1 9.5V7.5ZM2 7.5C2 7.25 2.5 7 3.5 7C4.5 7 5 7.25 5 7.5C5 7.75 4.5 8 3.5 8C2.5 8 2 7.75 2 7.5ZM2 8.69262C2.39111 8.87802 2.89328 9 3.5 9C4.10672 9 4.60889 8.87802 5 8.69262V9.5C5 9.75 4.5 10 3.5 10C2.5 10 2 9.75 2 9.5V8.69262Z\" />";
295
+ };
296
+ readonly 'create-invoice': {
297
+ readonly box: 12;
298
+ readonly svg: "<path d=\"M3 1.5C3 1.22386 3.22386 1 3.5 1C3.77614 1 4 1.22386 4 1.5V3H5.5C5.77614 3 6 3.22386 6 3.5C6 3.77614 5.77614 4 5.5 4H4V5.5C4 5.77614 3.77614 6 3.5 6C3.22386 6 3 5.77614 3 5.5V4H1.5C1.22386 4 1 3.77614 1 3.5C1 3.22386 1.22386 3 1.5 3H3V1.5Z\" />\n\t\t\t\t\t<path d=\"M7 8H6V9H7V8Z\" />\n\t\t\t\t\t<path d=\"M7.5 9V8H9.5V9H7.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.5 7.5C4.5 6.94772 4.94772 6.5 5.5 6.5H10C10.5523 6.5 11 6.94772 11 7.5V10C11 10.5523 10.5523 11 10 11H5.5C4.94772 11 4.5 10.5523 4.5 10V7.5ZM5.5 7.5H10V10H5.5V7.5Z\" />";
299
+ };
300
+ readonly 'create-product-group': {
301
+ readonly box: 12;
302
+ readonly svg: "<path d=\"M8.5 1C8.22386 1 8 1.22386 8 1.5V3H6.5C6.22386 3 6 3.22386 6 3.5C6 3.77614 6.22386 4 6.5 4H8V5.5C8 5.77614 8.22386 6 8.5 6C8.77614 6 9 5.77614 9 5.5V4H10.5C10.7761 4 11 3.77614 11 3.5C11 3.22386 10.7761 3 10.5 3H9V1.5C9 1.22386 8.77614 1 8.5 1Z\" />\n\t\t\t\t\t<path d=\"M1.5 3.5H4.5V4.5H2.5V6.5H1.5V3.5Z\" />\n\t\t\t\t\t<path d=\"M2.5 7.5H1.5V10.5H4.5V9.5H2.5V7.5Z\" />\n\t\t\t\t\t<path d=\"M7.5 9.5V7.5H8.5V10.5H5.5V9.5H7.5Z\" />";
303
+ };
304
+ readonly 'create-product': {
305
+ readonly box: 12;
306
+ readonly svg: "<path d=\"M3.5 1C3.22386 1 3 1.22386 3 1.5V3H1.5C1.22386 3 1 3.22386 1 3.5C1 3.77614 1.22386 4 1.5 4H3V5.5C3 5.77614 3.22386 6 3.5 6C3.77614 6 4 5.77614 4 5.5V4H5.5C5.77614 4 6 3.77614 6 3.5C6 3.22386 5.77614 3 5.5 3H4V1.5C4 1.22386 3.77614 1 3.5 1Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.5 5C8.22386 5 8 5.22386 8 5.5V10.5C8 10.7761 8.22386 11 8.5 11H10.5C10.7761 11 11 10.7761 11 10.5V5.5C11 5.22386 10.7761 5 10.5 5H8.5ZM10 6H9V10H10V6Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 7.5C1.72386 7.5 1.5 7.72386 1.5 8V10.5C1.5 10.7761 1.72386 11 2 11H6.5C6.77614 11 7 10.7761 7 10.5V8C7 7.72386 6.77614 7.5 6.5 7.5H2ZM6 8.5H2.5V10H6V8.5Z\" />";
307
+ };
308
+ readonly 'create-repair': {
309
+ readonly box: 12;
310
+ readonly svg: "<path d=\"M9.5 4.99998V10.5C9.5 10.7761 9.27614 11 9 11C8.72386 11 8.5 10.7761 8.5 10.5V4.99998L7 3.74998L7.00355 1.84642L7.7106 1.13938C7.90586 0.944121 8.22244 0.944121 8.4177 1.13938C8.61296 1.33465 8.61296 1.65123 8.4177 1.84649L8 2.26419V3.24998L9 3.99998L10 3.24998V2.26419L9.5823 1.84649C9.38704 1.65123 9.38704 1.33464 9.5823 1.13938C9.77756 0.94412 10.0941 0.94412 10.2894 1.13938L10.9964 1.84642L11 3.74998L9.5 4.99998Z\" />\n\t\t\t\t\t<path d=\"M3 6.49998C3 6.22383 3.22386 5.99998 3.5 5.99998C3.77614 5.99998 4 6.22383 4 6.49998V7.99998H5.5C5.77614 7.99998 6 8.22383 6 8.49998C6 8.77612 5.77614 8.99998 5.5 8.99998H4V10.5C4 10.7761 3.77614 11 3.5 11C3.22386 11 3 10.7761 3 10.5V8.99998H1.5C1.22386 8.99998 1 8.77612 1 8.49998C1 8.22383 1.22386 7.99998 1.5 7.99998H3V6.49998Z\" />";
311
+ };
312
+ readonly 'create-retailer': {
313
+ readonly box: 12;
314
+ readonly svg: "<path d=\"M3.5 1C3.22386 1 3 1.22386 3 1.5V3H1.5C1.22386 3 1 3.22386 1 3.5C1 3.77614 1.22386 4 1.5 4H3V5.5C3 5.77614 3.22386 6 3.5 6C3.77614 6 4 5.77614 4 5.5V4H5.5C5.77614 4 6 3.77614 6 3.5C6 3.22386 5.77614 3 5.5 3H4V1.5C4 1.22386 3.77614 1 3.5 1Z\" />\n\t\t\t\t\t<path d=\"M5.5 7.50837C5.5 7.50837 5.73714 8.51152 6.5109 8.51152C7.47776 8.51152 7.5 8 7.5 8C7.5 8 7.51184 8.7593 8.26261 8.7593C9.01338 8.7593 9 8 9 8C9 8 9.04812 8.51152 10.0135 8.51152C10.5136 8.51152 11 7.50837 11 7.50837L9.51338 6.008H7.00121L5.5 7.50837Z\" />\n\t\t\t\t\t<path d=\"M7 9H6V11H10.5V9H9.5V10H7V9Z\" />";
315
+ };
316
+ readonly 'create-return': {
317
+ readonly box: 12;
318
+ readonly svg: "<path d=\"M3 1.5C3 1.22386 3.22386 1 3.5 1C3.77614 1 4 1.22386 4 1.5V3H5.5C5.77614 3 6 3.22386 6 3.5C6 3.77614 5.77614 4 5.5 4H4V5.5C4 5.77614 3.77614 6 3.5 6C3.22386 6 3 5.77614 3 5.5V4H1.5C1.22386 4 1 3.77614 1 3.5C1 3.22386 1.22386 3 1.5 3H3V1.5Z\" />\n\t\t\t\t\t<path d=\"M8 10.0087C8 10.0087 11.0015 10.0144 11.0015 7.0072C11.0015 4 8 4 8 4V5.00831C8 5.00831 10.0035 5.01016 10.0035 7.0118C10.0035 9.01344 8 9.01344 8 9.01344V8.0016L6 9.50753L8 11.0023V10.0087Z\" />";
319
+ };
320
+ readonly 'create-tenants': {
321
+ readonly box: 12;
322
+ readonly svg: "<path d=\"M3 1.5C3 1.22386 3.22386 1 3.5 1C3.77614 1 4 1.22386 4 1.5V3H5.5C5.77614 3 6 3.22386 6 3.5C6 3.77614 5.77614 4 5.5 4H4V5.5C4 5.77614 3.77614 6 3.5 6C3.22386 6 3 5.77614 3 5.5V4H1.5C1.22386 4 1 3.77614 1 3.5C1 3.22386 1.22386 3 1.5 3H3V1.5Z\" />\n\t\t\t\t\t<path d=\"M8 6H9.5V5H8V6Z\" />\n\t\t\t\t\t<path d=\"M9.5 7.5H8V6.5H9.5V7.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 11V8C3 7.44772 3.44772 7 4 7H6.5V4.5C6.5 3.94772 6.94772 3.5 7.5 3.5H10C10.5523 3.5 11 3.94772 11 4.5V11H3ZM6.5 10H6V9.25C6 9.11193 5.88807 9 5.75 9H4.75C4.61193 9 4.5 9.11193 4.5 9.25V10H4V8.5C4 8.22386 4.22386 8 4.5 8H6C6.27614 8 6.5 8.22386 6.5 8.5V10ZM7.5 10H8V9.25C8 9.11193 8.11193 9 8.25 9H9.25C9.38807 9 9.5 9.11193 9.5 9.25V10H10V5C10 4.72386 9.77614 4.5 9.5 4.5H8C7.72386 4.5 7.5 4.72386 7.5 5V10Z\" />";
323
+ };
324
+ readonly create: {
325
+ readonly box: 12;
326
+ readonly svg: "<path d=\"M5.25 9.75C5.25 10.1642 5.58579 10.5 6 10.5C6.41421 10.5 6.75 10.1642 6.75 9.75V6.75H9.75C10.1642 6.75 10.5 6.41421 10.5 6C10.5 5.58579 10.1642 5.25 9.75 5.25H6.75V2.25C6.75 1.83579 6.41421 1.5 6 1.5C5.58579 1.5 5.25 1.83579 5.25 2.25V5.25H2.25C1.83579 5.25 1.5 5.58579 1.5 6C1.5 6.41421 1.83579 6.75 2.25 6.75H5.25V9.75Z\" />";
327
+ };
328
+ readonly 'credential-login': {
329
+ readonly box: 24;
330
+ readonly svg: "<path d=\"M7 6a1 1 0 0 0 0 2h9a1 1 0 1 0 0-2H7Z\"/><path fill-rule=\"evenodd\" d=\"M3 3h18v8H3V3Zm2 2h14v4H5V5Z\" clip-rule=\"evenodd\"/><path d=\"M8 17a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm2 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm4-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\"/><path fill-rule=\"evenodd\" d=\"M3 13h18v8H3v-8Zm2 2h14v4H5v-4Z\" clip-rule=\"evenodd\"/>";
331
+ };
332
+ readonly cross: {
333
+ readonly box: 12;
334
+ readonly svg: "<path d=\"M3.7115 2.29735C3.32098 1.90682 2.68781 1.90682 2.29729 2.29735C1.90676 2.68787 1.90676 3.32104 2.29729 3.71156L4.5954 6.00967L2.29732 8.30776C1.90679 8.69828 1.90679 9.33145 2.29732 9.72197C2.68784 10.1125 3.32101 10.1125 3.71153 9.72197L6.00961 7.42389L8.3077 9.72197C8.69822 10.1125 9.33138 10.1125 9.72191 9.72197C10.1124 9.33145 10.1124 8.69828 9.72191 8.30776L7.42383 6.00967L9.72194 3.71156C10.1125 3.32104 10.1125 2.68787 9.72194 2.29735C9.33141 1.90683 8.69825 1.90682 8.30772 2.29735L6.00961 4.59546L3.7115 2.29735Z\" />";
335
+ };
336
+ readonly customers: {
337
+ readonly box: 12;
338
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 6.5C3.17157 6.5 2.5 7.17157 2.5 8V10.5C2.5 10.7761 2.72386 11 3 11H9C9.27614 11 9.5 10.7761 9.5 10.5V8C9.5 7.17157 8.82843 6.5 8 6.5H4ZM4.5 7.5C3.94772 7.5 3.5 7.94772 3.5 8.5V10H8.5V8.5C8.5 7.94772 8.05229 7.5 7.5 7.5H4.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 6C7.38071 6 8.5 4.88071 8.5 3.5C8.5 2.11929 7.38071 1 6 1C4.61929 1 3.5 2.11929 3.5 3.5C3.5 4.88071 4.61929 6 6 6ZM6 5C6.82843 5 7.5 4.32843 7.5 3.5C7.5 2.67157 6.82843 2 6 2C5.17157 2 4.5 2.67157 4.5 3.5C4.5 4.32843 5.17157 5 6 5Z\" />";
339
+ };
340
+ readonly 'customise-columns': {
341
+ readonly box: 12;
342
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1 2.5C1 1.94772 1.44772 1.5 2 1.5H10C10.5523 1.5 11 1.94772 11 2.5V9.5C11 10.0523 10.5523 10.5 10 10.5H2C1.44772 10.5 1 10.0523 1 9.5V2.5ZM8 2.5H10V9.5H8V2.5ZM7 2.5H5V9.5H7V2.5ZM4 9.5V2.5H2V9.5H4Z\" />";
343
+ };
344
+ readonly dashboard: {
345
+ readonly box: 12;
346
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.5 1.5C1.94772 1.5 1.5 1.94772 1.5 2.5V9.5C1.5 10.0523 1.94772 10.5 2.5 10.5H9.5C10.0523 10.5 10.5 10.0523 10.5 9.5V2.5C10.5 1.94772 10.0523 1.5 9.5 1.5H2.5ZM9.5 2.5H2.5V9.5H9.5V2.5Z\" />\n\t\t\t\t\t<path d=\"M7.5 4C7.5 3.72386 7.72386 3.5 8 3.5C8.27614 3.5 8.5 3.72386 8.5 4V8C8.5 8.27614 8.27614 8.5 8 8.5C7.72386 8.5 7.5 8.27614 7.5 8V4Z\" />\n\t\t\t\t\t<path d=\"M5.5 5C5.5 4.72386 5.72386 4.5 6 4.5C6.27614 4.5 6.5 4.72386 6.5 5V8C6.5 8.27614 6.27614 8.5 6 8.5C5.72386 8.5 5.5 8.27614 5.5 8V5Z\" />\n\t\t\t\t\t<path d=\"M3.5 6C3.5 5.72386 3.72386 5.5 4 5.5C4.27614 5.5 4.5 5.72386 4.5 6V8C4.5 8.27614 4.27614 8.5 4 8.5C3.72386 8.5 3.5 8.27614 3.5 8V6Z\" />";
347
+ };
348
+ readonly 'database-download': {
349
+ readonly box: 12;
350
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.5 3.9787C7.88937 4.27911 6.94012 4.5 5.5 4.5C4.05988 4.5 3.11063 4.27911 2.5 3.9787V5.25C2.5 5.5 3.25 6 5.5 6C6.3822 6 7.03379 5.92313 7.5 5.81461V6.8136C6.97199 6.92934 6.31451 7 5.5 7C4.05988 7 3.11063 6.77911 2.5 6.4787V7.75C2.5 8 3.25 8.5 5.5 8.5C5.55794 8.5 5.61489 8.49967 5.67086 8.49902L6.64767 9.44622C6.30503 9.48087 5.92377 9.5 5.5 9.5C2.25 9.5 1.5 8.375 1.5 7.75V2.75C1.5 2.125 2.25 1 5.5 1C8.75 1 9.5 2.125 9.5 2.75V5H8.5V3.9787ZM5.5 2C3.25 2 2.5 2.5 2.5 2.75C2.5 3 3.25 3.5 5.5 3.5C7.75 3.5 8.5 3 8.5 2.75C8.5 2.5 7.75 2 5.5 2Z\" />\n\t\t\t\t\t<path d=\"M11 9L9 11L7 9H8.5V6H9.5V9H11Z\" />";
351
+ };
352
+ readonly 'database-search': {
353
+ readonly box: 12;
354
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.5 3.9787C7.88937 4.27911 6.94012 4.5 5.5 4.5C4.05988 4.5 3.11063 4.27911 2.5 3.9787V5.25C2.5 5.49999 3.24996 5.99997 5.49982 6C5.28294 6.28873 5.12713 6.62595 5.05155 6.99249C3.85932 6.95149 3.04486 6.74675 2.5 6.4787V7.75C2.5 7.98881 3.18435 8.45573 5.20674 8.49706C5.37863 8.89185 5.64947 9.23362 5.98794 9.49107C5.83192 9.49695 5.66935 9.5 5.5 9.5C2.25 9.5 1.5 8.375 1.5 7.75V2.75C1.5 2.125 2.25 1 5.5 1C8.75 1 9.5 2.125 9.5 2.75V5.99976C9.24219 5.65661 8.89813 5.38197 8.5 5.20802V3.9787ZM5.5 2C3.25 2 2.5 2.5 2.5 2.75C2.5 3 3.25 3.5 5.5 3.5C7.75 3.5 8.5 3 8.5 2.75C8.5 2.5 7.75 2 5.5 2Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.56694 9.19194C8.25816 9.38707 7.89227 9.5 7.5 9.5C6.39543 9.5 5.5 8.60457 5.5 7.5C5.5 6.39543 6.39543 5.5 7.5 5.5C8.60457 5.5 9.5 6.39543 9.5 7.5C9.5 7.84941 9.4104 8.17788 9.25292 8.46371L10.6428 9.85355C10.838 10.0488 10.838 10.3654 10.6428 10.5607C10.4475 10.7559 10.1309 10.7559 9.93566 10.5607L8.56694 9.19194ZM7.5 8.5C8.05228 8.5 8.5 8.05228 8.5 7.5C8.5 6.94772 8.05228 6.5 7.5 6.5C6.94772 6.5 6.5 6.94772 6.5 7.5C6.5 8.05228 6.94772 8.5 7.5 8.5Z\" />";
355
+ };
356
+ readonly database: {
357
+ readonly box: 12;
358
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11 3C11 2.375 9.75 1 6 1C2.25 1 1 2.375 1 3V9C1 9.625 2.25 11 6 11C9.75 11 11 9.625 11 9V3ZM2 3C2 2.75 2.75 2 6 2C9.25 2 10 2.75 10 3C10 3.25 9.25 4 6 4C2.75 4 2 3.25 2 3ZM10 4.1821C9.22646 4.62748 7.95188 5 6 5C4.04812 5 2.77354 4.62748 2 4.1821V5C2 5.25 2.75 6 6 6C9.25 6 10 5.25 10 5V4.1821ZM10 6.1821C9.22646 6.62748 7.95188 7 6 7C4.04812 7 2.77354 6.62748 2 6.1821V7C2 7.25 2.75 8 6 8C9.25 8 10 7.25 10 7V6.1821ZM10 8.1821C9.22646 8.62748 7.95188 9 6 9C4.04812 9 2.77354 8.62748 2 8.1821V9C2 9.25 2.75 10 6 10C9.25 10 10 9.25 10 9V8.1821Z\" />";
359
+ };
360
+ readonly door: {
361
+ readonly box: 12;
362
+ readonly svg: "<path d=\"M6 6C6 6.27614 5.77614 6.5 5.5 6.5C5.22386 6.5 5 6.27614 5 6C5 5.72386 5.22386 5.5 5.5 5.5C5.77614 5.5 6 5.72386 6 6Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3.5 2C3 2 2.5 2.5 2.5 3V9C2.5 9.5 3 10 3.5 10L6.5 10.5C6.87014 10.5 7.19331 10.2989 7.36622 10H8.5C9.05228 10 9.5 9.55228 9.5 9V3C9.5 2.44772 9.05228 2 8.5 2H7.36622C7.19331 1.7011 6.87014 1.5 6.5 1.5L3.5 2ZM6.5 2.5L3.5 3V9L6.5 9.5V2.5ZM7.5 9V3H8.5V9H7.5Z\" />";
363
+ };
364
+ readonly 'dropdown-menu': {
365
+ readonly box: 12;
366
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 1.5C2.44772 1.5 2 1.94772 2 2.5V9.5C2 10.0523 2.44772 10.5 3 10.5H9C9.55229 10.5 10 10.0523 10 9.5V2.5C10 1.94772 9.55229 1.5 9 1.5H3ZM9 2.5H3V9.5H9V2.5Z\" />";
367
+ };
368
+ readonly dropdown: {
369
+ readonly box: 12;
370
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1 3H11L6 9L1 3Z\" />";
371
+ };
372
+ readonly edit: {
373
+ readonly box: 12;
374
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.01194 10.5068H1.50348V7.99852L2.49984 7.00158L7.01197 2.50199L9.49434 5.00538L5.00522 9.49931L4.01194 10.5068ZM2.50004 9.50289H4.00447L2.50004 7.99786V9.50289ZM7.02537 3.50366L3.52634 7.01245L4.01603 7.5127L7.51859 4.02893L7.02537 3.50366Z\" />\n\t\t\t\t\t<path d=\"M10.0087 4.4905L7.51244 2.00292L8.01676 1.5C8.01676 1.5 9.267 1.76241 9.76737 2.26587C10.2677 2.76933 10.5 3.9986 10.5 3.9986L10.0087 4.4905Z\" />";
375
+ };
376
+ readonly ellipsis: {
377
+ readonly box: 12;
378
+ readonly svg: "<circle cx=\"6\" cy=\"6\" r=\"1.5\"/><circle cx=\"1.5\" cy=\"6\" r=\"1.5\"/><circle cx=\"10.5\" cy=\"6\" r=\"1.5\"/>";
379
+ };
380
+ readonly eraser: {
381
+ readonly box: 24;
382
+ readonly svg: "<path fill-rule=\"evenodd\" d=\"M15.6 3.7a1 1 0 0 0-1.5 0l-9.7 9.7a2 2 0 0 0 0 2.9L8 19.8V21h13v-1H10.2L20.3 9.9c.4-.4.4-1 0-1.4l-4.7-4.8ZM5.8 14.8l2.2-2 3.3 3.2-2.1 2.2-3.4-3.4Zm3.6-3.5 3.3 3.3 5.5-5.4-3.4-3.4-5.4 5.5Z\" clip-rule=\"evenodd\"/>";
383
+ };
384
+ readonly error: {
385
+ readonly box: 12;
386
+ readonly svg: "<path d=\"M6,1.2A4.8,4.8,0,1,1,1.2,6,4.8,4.8,0,0,1,6,1.2Zm0-1A5.76,5.76,0,1,0,11.76,6,5.76,5.76,0,0,0,6,.24ZM5.52,3.06h1V6.9h-1ZM6,9a.6.6,0,1,1,.6-.6A.6.6,0,0,1,6,9Z\"/>";
387
+ };
388
+ readonly 'external-link': {
389
+ readonly box: 12;
390
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.5 1C6.22386 1 6 1.22386 6 1.5C6 1.77614 6.22386 2 6.5 2H8.2907C8.28536 2.0049 8.2801 2.00994 8.27492 2.01512L6.1536 4.13644C5.95834 4.3317 5.95834 4.64828 6.1536 4.84354C6.34886 5.03881 6.66545 5.03881 6.86071 4.84354L8.98203 2.72222C8.98822 2.71604 8.99421 2.70973 9 2.70331V4.5C9 4.77614 9.22386 5 9.5 5C9.77614 5 10 4.77614 10 4.5V1.5C10 1.22386 9.77614 1 9.5 1H6.5Z\" />\n\t\t\t\t\t<path d=\"M2 10.5V1.5C2 1.22386 2.22386 1 2.5 1H4.5C4.77614 1 5 1.22386 5 1.5C5 1.77614 4.77614 2 4.5 2H3V10H9V6.5C9 6.22386 9.22386 6 9.5 6C9.77614 6 10 6.22386 10 6.5V10.5C10 10.7761 9.77614 11 9.5 11H2.5C2.22386 11 2 10.7761 2 10.5Z\" />";
391
+ };
392
+ readonly 'file-dismiss': {
393
+ readonly box: 12;
394
+ readonly svg: "<path d=\"M4.23234 7.06059C4.03707 7.25585 4.037 7.5725 4.23226 7.76777C4.42752 7.96303 4.74411 7.96303 4.93937 7.76777L6.00003 6.70711L7.0604 7.76747C7.25566 7.96273 7.57253 7.96303 7.7678 7.76777C7.96306 7.5725 7.96306 7.25592 7.7678 7.06066L6.70714 6L7.7678 4.93934C7.96306 4.74408 7.96306 4.42749 7.7678 4.23223C7.57253 4.03697 7.25595 4.03697 7.06069 4.23223L6.00003 5.29289L4.93937 4.23223C4.74411 4.03697 4.42752 4.03697 4.23226 4.23223C4.037 4.42749 4.037 4.74408 4.23226 4.93934L5.29292 6L4.23234 7.06059Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.5 6C10.5 8.48528 8.48528 10.5 6 10.5C3.51472 10.5 1.5 8.48528 1.5 6C1.5 3.51472 3.51472 1.5 6 1.5C8.48528 1.5 10.5 3.51472 10.5 6ZM9.5 6C9.5 7.933 7.933 9.5 6 9.5C4.067 9.5 2.5 7.933 2.5 6C2.5 4.067 4.067 2.5 6 2.5C7.933 2.5 9.5 4.067 9.5 6Z\" />";
395
+ };
396
+ readonly file: {
397
+ readonly box: 12;
398
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 1C2.44772 1 2 1.44772 2 2V10C2 10.5523 2.44772 11 3 11H9C9.55228 11 10 10.5523 10 10V3.5L7.5 1H3ZM7 2V4H9L7 2ZM9 5V10H3V2H6V5H9Z\" />";
399
+ };
400
+ readonly filter: {
401
+ readonly box: 12;
402
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3.5 7C4.05228 7 4.5 6.55228 4.5 6C4.5 5.44772 4.05228 5 3.5 5C2.94772 5 2.5 5.44772 2.5 6C2.5 6.55228 2.94772 7 3.5 7Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 7C6.55228 7 7 6.55228 7 6C7 5.44772 6.55228 5 6 5C5.44772 5 5 5.44772 5 6C5 6.55228 5.44772 7 6 7Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.5 7C9.05228 7 9.5 6.55228 9.5 6C9.5 5.44772 9.05228 5 8.5 5C7.94772 5 7.5 5.44772 7.5 6C7.5 6.55228 7.94772 7 8.5 7Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 1.5C1.44772 1.5 1 1.94772 1 2.5V9.5C1 10.0523 1.44772 10.5 2 10.5H10C10.5523 10.5 11 10.0523 11 9.5V2.5C11 1.94772 10.5523 1.5 10 1.5H2ZM10 2.5H2V9.5H10V2.5Z\" />";
403
+ };
404
+ readonly 'filter-2': {
405
+ readonly box: 24;
406
+ readonly svg: "<path d=\"M3 5c0-.6.4-1 1-1h16a1 1 0 1 1 0 2H4a1 1 0 0 1-1-1Zm3 7c0-.6.4-1 1-1h10a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1Zm4 6a1 1 0 1 0 0 2h4a1 1 0 1 0 0-2h-4Z\"/>";
407
+ };
408
+ readonly 'filter-bars': {
409
+ readonly box: 12;
410
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 2C10.2761 2 10.5 2.22386 10.5 2.5C10.5 2.77614 10.2761 3 10 3H8.91465C8.70873 3.5826 8.15311 4 7.5 4C6.84689 4 6.29127 3.5826 6.08535 3L2.5 3C2.22386 3 2 2.77614 2 2.5C2 2.22386 2.22386 2 2.5 2L6.08535 2C6.29127 1.4174 6.84689 1 7.5 1C8.15311 1 8.70873 1.4174 8.91465 2L10 2ZM7 2.5C7 2.22386 7.22386 2 7.5 2C7.77614 2 8 2.22386 8 2.5C8 2.53452 7.9965 2.56822 7.98984 2.60077C7.94322 2.82861 7.74163 3 7.5 3C7.22386 3 7 2.77614 7 2.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.5 6C10.5 5.72386 10.2761 5.5 10 5.5H6.41465C6.20873 4.9174 5.65311 4.5 5 4.5C4.34689 4.5 3.79127 4.9174 3.58535 5.5H2.5C2.22386 5.5 2 5.72386 2 6C2 6.27614 2.22386 6.5 2.5 6.5H3.58535C3.79127 7.0826 4.34689 7.5 5 7.5C5.65311 7.5 6.20873 7.0826 6.41465 6.5H10C10.2761 6.5 10.5 6.27614 10.5 6ZM5 6.5C5.25888 6.5 5.47181 6.30325 5.49742 6.05112C5.49913 6.03431 5.5 6.01726 5.5 6C5.5 5.72386 5.27614 5.5 5 5.5C4.72386 5.5 4.5 5.72386 4.5 6C4.5 6.01726 4.50087 6.03431 4.50258 6.05112C4.52819 6.30325 4.74112 6.5 5 6.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.5 9.5C10.5 9.22386 10.2761 9 10 9H8.91465C8.70873 8.4174 8.15311 8 7.5 8C6.84689 8 6.29127 8.4174 6.08535 9H2.5C2.22386 9 2 9.22386 2 9.5C2 9.77614 2.22386 10 2.5 10H6.08535C6.29127 10.5826 6.84689 11 7.5 11C8.15311 11 8.70873 10.5826 8.91465 10H10C10.2761 10 10.5 9.77614 10.5 9.5ZM7.5 10C7.77614 10 8 9.77614 8 9.5C8 9.24112 7.80325 9.02819 7.55112 9.00258C7.53431 9.00087 7.51726 9 7.5 9C7.22386 9 7 9.22386 7 9.5C7 9.77614 7.22386 10 7.5 10Z\" />";
411
+ };
412
+ readonly 'filter-copy': {
413
+ readonly box: 24;
414
+ readonly svg: "<path d=\"M1 0l9 15.094v5.906l4 3v-8.906l9-15.094h-22zm18.479 2l-2.981 5h-8.996l-2.981-5h14.958z\"/>";
415
+ };
416
+ readonly float: {
417
+ readonly box: 12;
418
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.5 6C10.5 8.48528 8.48528 10.5 6 10.5C3.51472 10.5 1.5 8.48528 1.5 6C1.5 3.51472 3.51472 1.5 6 1.5C8.48528 1.5 10.5 3.51472 10.5 6ZM8.09607 8.80321C7.51178 9.2408 6.78616 9.5 6 9.5C5.21385 9.5 4.48823 9.24081 3.90395 8.80322L4.98406 7.72311C5.2818 7.89904 5.62911 8 6 8C6.3709 8 6.71821 7.89904 7.01596 7.7231L8.09607 8.80321ZM4.27693 7.01602L3.19684 8.09612C2.75921 7.51183 2.5 6.78618 2.5 6C2.5 5.21384 2.7592 4.48822 3.1968 3.90393L4.2769 4.98403C4.10096 5.28178 4 5.6291 4 6C4 6.37092 4.10097 6.71826 4.27693 7.01602ZM8.80318 8.0961C9.24079 7.51181 9.5 6.78618 9.5 6C9.5 5.21385 9.24081 4.48823 8.80321 3.90394L7.72311 4.98405C7.89904 5.2818 8 5.62911 8 6C8 6.37091 7.89903 6.71824 7.72308 7.016L8.80318 8.0961ZM8.09612 3.19683L7.01602 4.27693C6.71825 4.10097 6.37092 4 6 4C5.62909 4 5.28176 4.10097 4.984 4.27692L3.9039 3.19682C4.48819 2.75921 5.21383 2.5 6 2.5C6.78618 2.5 7.51182 2.75921 8.09612 3.19683ZM7.25 6C7.25 6.69036 6.69036 7.25 6 7.25C5.30964 7.25 4.75 6.69036 4.75 6C4.75 5.30964 5.30964 4.75 6 4.75C6.69036 4.75 7.25 5.30964 7.25 6Z\" />";
419
+ };
420
+ readonly 'forward-triple': {
421
+ readonly box: 12;
422
+ readonly svg: "<path d=\"M10.0788 6.38043L8.56622 7.83627C8.07718 8.33686 7.31482 7.57669 7.81106 7.08401L8.46532 6.50012L8.97793 6.00019L8.45242 5.4991L7.81472 4.90655C7.3209 4.40464 8.0778 3.66779 8.57332 4.16488L10.0788 5.61444C10.2869 5.82269 10.3906 5.9121 10.39 6.00083C10.3894 6.08917 10.2856 6.17684 10.0788 6.38043Z\" />\n\t\t\t\t\t<path d=\"M5.56622 7.83627L7.07876 6.38043C7.10634 6.35328 7.13209 6.32819 7.15601 6.30488C7.31144 6.15344 7.3895 6.07739 7.38999 6.00084C7.39049 5.9236 7.31203 5.84586 7.15443 5.68968C7.13096 5.66643 7.10574 5.64143 7.07876 5.61444L5.57332 4.16488C5.0778 3.6678 4.3209 4.40465 4.81472 4.90655L5.45242 5.4991L5.97794 6.00019L5.46532 6.50013L4.81106 7.08401C4.31482 7.5767 5.07718 8.33686 5.56622 7.83627Z\" />\n\t\t\t\t\t<path d=\"M2.56622 7.83627L4.07876 6.38043C4.10634 6.35328 4.13209 6.32819 4.15601 6.30488C4.31144 6.15345 4.3895 6.07739 4.38999 6.00084C4.39049 5.9236 4.31203 5.84586 4.15443 5.68969C4.13096 5.66643 4.10574 5.64143 4.07876 5.61444L2.57332 4.16488C2.0778 3.6678 1.3209 4.40465 1.81472 4.90655L2.45242 5.4991L2.97794 6.00019L2.46532 6.50013L1.81106 7.08401C1.31482 7.5767 2.07718 8.33686 2.56622 7.83627Z\" />";
423
+ };
424
+ readonly 'full-screen': {
425
+ readonly box: 12;
426
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.00307 1.50299C5.50474 1.50299 5.50474 2.51002 5.00307 2.51002H3.21671L5.38552 4.63225C5.78649 5.00199 5.04968 5.76296 4.67367 5.41231L2.49774 3.28297V5.00539C2.49774 5.5099 1.50195 5.5099 1.50195 5.00539V2.50093C1.50195 1.50299 1.50045 1.50299 2.50047 1.50381L5.00307 1.50299Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.00047 1.50299C6.4988 1.50299 6.4988 2.51002 7.00047 2.51002H8.78683L6.61802 4.63225C6.21705 5.00199 6.95386 5.76296 7.32987 5.41231L9.5058 3.28297V5.00539C9.5058 5.5099 10.5016 5.5099 10.5016 5.00539V2.50093C10.5016 1.50299 10.5031 1.50299 9.50307 1.50381L7.00047 1.50299Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.00307 10.5024C5.50474 10.5024 5.50474 9.49535 5.00307 9.49535H3.21671L5.38552 7.37312C5.78649 7.00338 5.04968 6.24241 4.67367 6.59305L2.49774 8.7224V6.99998C2.49774 6.49547 1.50195 6.49547 1.50195 6.99998V9.50444C1.50195 10.5024 1.50045 10.5024 2.50047 10.5016L5.00307 10.5024Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.00047 10.5024C6.4988 10.5024 6.4988 9.49535 7.00047 9.49535H8.78683L6.61802 7.37312C6.21705 7.00338 6.95386 6.24241 7.32987 6.59305L9.5058 8.7224V6.99998C9.5058 6.49547 10.5016 6.49547 10.5016 6.99998V9.50444C10.5016 10.5024 10.5031 10.5024 9.50307 10.5016L7.00047 10.5024Z\" />";
427
+ };
428
+ readonly 'goods-in': {
429
+ readonly box: 12;
430
+ readonly svg: "<path d=\"M1 4.31302L5.76314 1.56302C5.76314 1.56302 6.00441 1.42123 6.25 1.56302L11.0131 4.31302L10.5131 5.17904L10 4.88278V10H9V4.30543L6.00657 2.57717L3 4.31302V10H2V4.89037L1.5 5.17904L1 4.31302Z\" />\n\t\t\t\t\t<path d=\"M5.63953 6.22716L3.94122 7.3311C3.35726 7.68803 4.24403 8.24446 4.81877 7.88227L5.49991 7.40475L6.08311 7.03061L6.66766 7.41416L7.3589 7.87959C7.9444 8.24001 8.80397 7.68758 8.22409 7.32592L6.5331 6.22716C6.50162 6.20747 6.47246 6.18906 6.44533 6.17193C6.26274 6.05665 6.17205 5.99939 6.08176 6C5.99266 6.00061 5.90394 6.05758 5.72767 6.17077C5.70048 6.18823 5.67121 6.20703 5.63953 6.22716Z\" />\n\t\t\t\t\t<path d=\"M3.94122 9.3311L5.63953 8.22716C5.67121 8.20703 5.70048 8.18823 5.72767 8.17077C5.90394 8.05758 5.99266 8.00061 6.08176 8C6.17205 7.99939 6.26274 8.05665 6.44533 8.17193C6.47246 8.18906 6.50162 8.20747 6.5331 8.22716L8.22409 9.32592C8.80397 9.68758 7.9444 10.24 7.3589 9.87959L6.66766 9.41416L6.08311 9.03061L5.49991 9.40475L4.81877 9.88227C4.24403 10.2445 3.35726 9.68803 3.94122 9.3311Z\" />";
431
+ };
432
+ readonly 'goods-out': {
433
+ readonly box: 12;
434
+ readonly svg: "<path d=\"M1 4.31302L5.76314 1.56302C5.76314 1.56302 6.00441 1.42123 6.25 1.56302L11.0131 4.31302L10.5131 5.17904L10 4.88278V10H9V4.30543L6.00657 2.57717L3 4.31302V10H2V4.89037L1.5 5.17904L1 4.31302Z\" />\n\t\t\t\t\t<path d=\"M6.52713 9.77284L8.22544 8.6689C8.80941 8.31197 7.92264 7.75554 7.34789 8.11773L6.66676 8.59525L6.08356 8.96939L5.49901 8.58584L4.80777 8.12041C4.22227 7.75999 3.3627 8.31241 3.94257 8.67408L5.63356 9.77284C5.66505 9.79253 5.69421 9.81094 5.72134 9.82807C5.90393 9.94335 5.99461 10.0006 6.08491 10C6.17401 9.99939 6.26272 9.94242 6.43898 9.82924C6.46615 9.81179 6.49549 9.79295 6.52713 9.77284Z\" />\n\t\t\t\t\t<path d=\"M8.22544 6.6689L6.52713 7.77284C6.49545 7.79297 6.46618 7.81177 6.43899 7.82923C6.26273 7.94242 6.17401 7.99939 6.08491 7.99999C5.99461 8.00061 5.90392 7.94335 5.72134 7.82807C5.69421 7.81094 5.66505 7.79253 5.63356 7.77284L3.94257 6.67408C3.3627 6.31241 4.22227 5.75999 4.80777 6.12041L5.49901 6.58584L6.08356 6.96939L6.66676 6.59525L7.34789 6.11773C7.92264 5.75554 8.80941 6.31197 8.22544 6.6689Z\" />";
435
+ };
436
+ readonly hamburger: {
437
+ readonly box: 12;
438
+ readonly svg: " <style>\n\t\t\t\t\t\t\t\t\t\t.hamburger__top {\n\t\t\t\t\t\t\t\t\t\ttransition: transform 0.2s ease;\n\t\t\t\t\t\t\t\t\t\ttransform-origin: left top;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t.icn--active .hamburger__top {\n\t\t\t\t\t\t\t\t\t\ttransform: translate(2px, 2px) rotate(45deg);\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t.hamburger__middle {\n\t\t\t\t\t\t\t\t\t\ttransition: opacity 0.2s ease;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t.icn--active .hamburger__middle {\n\t\t\t\t\t\t\t\t\t\topacity: 0;\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t.hamburger__bottom {\n\t\t\t\t\t\t\t\t\t\ttransition: transform 0.2s ease;\n\t\t\t\t\t\t\t\t\t\ttransform-origin: left bottom;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t.icn--active .hamburger__bottom {\n\t\t\t\t\t\t\t\t\t\ttransform: translate(2px, -1px) rotate(-45deg);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t</style>\n\n\t\t\t\t\t\t\t\t\t<rect class=\"hamburger__top\" x=\"0\" y=\"0\" width=\"12\" height=\"1\" />\n\t\t\t\t\t\t\t\t\t<rect class=\"hamburger__middle\" x=\"0\" y=\"5.5\" width=\"12\" height=\"1\" />\n\t\t\t\t\t\t\t\t\t<rect class=\"hamburger__bottom\" x=\"0\" y=\"11\" width=\"12\" height=\"1\" />";
439
+ };
440
+ readonly handle: {
441
+ readonly box: 18;
442
+ readonly svg: "<path d=\"M2 8H0V10H2V8Z\" fill=\"#C0C8CE\"/>\n\t\t\t\t\t<path d=\"M8 16V18H10V16H8Z\" fill=\"#C0C8CE\"/>\n\t\t\t\t\t<path d=\"M16 10H18V8H16V10Z\" fill=\"#C0C8CE\"/>\n\t\t\t\t\t<path d=\"M10 2V0H8V2H10Z\" fill=\"#C0C8CE\"/>\n\t\t\t\t\t<path d=\"M4 4H6V6H4V4Z\" fill=\"#C0C8CE\"/>\n\t\t\t\t\t<path d=\"M8 4H10V6H8V4Z\" fill=\"#C0C8CE\"/>\n\t\t\t\t\t<path d=\"M14 4H12V6H14V4Z\" fill=\"#C0C8CE\"/>\n\t\t\t\t\t<path d=\"M4 8H6V10H4V8Z\" fill=\"#C0C8CE\"/>\n\t\t\t\t\t<path d=\"M10 8H8V10H10V8Z\" fill=\"#C0C8CE\"/>\n\t\t\t\t\t<path d=\"M12 8H14V10H12V8Z\" fill=\"#C0C8CE\"/>\n\t\t\t\t\t<path d=\"M6 12H4V14H6V12Z\" fill=\"#C0C8CE\"/>\n\t\t\t\t\t<path d=\"M8 12H10V14H8V12Z\" fill=\"#C0C8CE\"/>\n\t\t\t\t\t<path d=\"M14 12H12V14H14V12Z\" fill=\"#C0C8CE\"/>";
443
+ };
444
+ readonly heart: {
445
+ readonly box: 12;
446
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 2.26389C5.46924 1.78885 4.76835 1.5 4 1.5C2.34315 1.5 1 2.84315 1 4.5C1 5.31713 1.32669 6.05795 1.85658 6.59899L4.46361 9.70593C4.48569 9.73348 4.50843 9.7606 4.53182 9.78722L4.55834 9.81882C4.57458 9.83818 4.59199 9.856 4.61036 9.87227C4.97018 10.243 5.46011 10.5 6 10.5C6.54613 10.5 7.04113 10.245 7.40206 9.87149C7.42011 9.85544 7.43722 9.83787 7.45321 9.81882L7.48647 9.77918C7.50144 9.76188 7.51613 9.74437 7.53054 9.72666L10.2865 6.44224C10.295 6.43225 10.3034 6.42221 10.3118 6.41211L10.3892 6.31986C10.4103 6.29473 10.4285 6.26813 10.4438 6.24048C10.794 5.74966 11 5.14889 11 4.5C11 2.84315 9.65685 1.5 8 1.5C7.23165 1.5 6.53076 1.78885 6 2.26389ZM6.94956 8.86332L9.54843 5.76611L9.5548 5.75812C9.83321 5.41448 10 4.97672 10 4.5C10 3.39543 9.10457 2.5 8 2.5C7.49278 2.5 7.02965 2.68882 6.67709 3H6.67566L5.99926 3.62532L5.32168 2.99891C4.96926 2.68838 4.50663 2.5 4 2.5C2.89543 2.5 2 3.39543 2 4.5C2 4.92726 2.13397 5.32322 2.3622 5.64817C2.37123 5.65739 2.37997 5.66702 2.3884 5.67707L5.07959 8.88431C5.26201 9.07142 5.71436 9.50374 6 9.50374C6.30278 9.50374 6.79338 9.02429 6.94956 8.86332Z\" />";
447
+ };
448
+ readonly help: {
449
+ readonly box: 12;
450
+ readonly svg: "<path d=\"M4.5 5C4.5 4 5 3.5 6 3.5C7 3.5 7.5 4 7.5 5C7.5 5.58579 7.15685 6 6.87258 6.34315C6.67157 6.58579 6.5 6.79289 6.5 7H5.5C5.5 7 5.5 6.5 6 6C6.5 5.5 6.5 5 6.5 5C6.5 4.5 6.16667 4.5 6 4.5C5.83333 4.5 5.5 4.5 5.5 5H4.5Z\" />\n\t\t\t\t\t<path d=\"M5.5 8C5.5 8.27614 5.72386 8.5 6 8.5C6.27614 8.5 6.5 8.27614 6.5 8C6.5 7.72386 6.27614 7.5 6 7.5C5.72386 7.5 5.5 7.72386 5.5 8Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.5 6C10.5 8.48528 8.48528 10.5 6 10.5C3.51472 10.5 1.5 8.48528 1.5 6C1.5 3.51472 3.51472 1.5 6 1.5C8.48528 1.5 10.5 3.51472 10.5 6ZM9.5 6C9.5 7.933 7.933 9.5 6 9.5C4.067 9.5 2.5 7.933 2.5 6C2.5 4.067 4.067 2.5 6 2.5C7.933 2.5 9.5 4.067 9.5 6Z\" />";
451
+ };
452
+ readonly home: {
453
+ readonly box: 12;
454
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 10.5C2.44772 10.5 2 10.0523 2 9.5V5.96433C1.78932 6.1191 1.49177 6.08558 1.32134 5.88247C1.14386 5.67096 1.17142 5.35562 1.3829 5.17811L5.62232 1.61952C5.73131 1.52804 5.86893 1.5 6 1.5C6.13348 1.5 6.27783 1.52791 6.38897 1.62129L10.6225 5.17808C10.8338 5.35563 10.8613 5.67085 10.6839 5.8823C10.512 6.08711 10.211 6.11948 10 5.96026V9.5C10 10.0523 9.55228 10.5 9 10.5H3ZM7 9.5V7C7 6.44771 6.55228 6 6 6C5.44771 6 5 6.44771 5 7V9.5L3 9.5V5.12631L6.00448 2.60434L9 5.12102V9.5L7 9.5Z\" />";
455
+ };
456
+ readonly image: {
457
+ readonly box: 12;
458
+ readonly svg: "<path d=\"M3 8.5H9V6L8 5L6.5 6.75L5 6L3 8.5Z\" />\n\t\t\t\t\t<path d=\"M4 5.5C4.55228 5.5 5 5.05228 5 4.5C5 3.94772 4.55228 3.5 4 3.5C3.44772 3.5 3 3.94772 3 4.5C3 5.05228 3.44772 5.5 4 5.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 1.5C1.44772 1.5 1 1.94772 1 2.5V9.5C1 10.0523 1.44772 10.5 2 10.5H10C10.5523 10.5 11 10.0523 11 9.5V2.5C11 1.94772 10.5523 1.5 10 1.5H2ZM10 2.5H2V9.5H10V2.5Z\" />";
459
+ };
460
+ readonly info: {
461
+ readonly box: 12;
462
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11 6C11 8.76142 8.76142 11 6 11C3.23858 11 1 8.76142 1 6C1 3.23858 3.23858 1 6 1C8.76142 1 11 3.23858 11 6ZM10 6C10 8.20914 8.20914 10 6 10C3.79086 10 2 8.20914 2 6C2 3.79086 3.79086 2 6 2C8.20914 2 10 3.79086 10 6Z\" />\n\t\t\t\t\t<path d=\"M5.5 5.5C5.5 5.22386 5.72386 5 6 5C6.27614 5 6.5 5.22386 6.5 5.5V8.5C6.5 8.77614 6.27614 9 6 9C5.72386 9 5.5 8.77614 5.5 8.5V5.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 4.5C6.41421 4.5 6.75 4.16421 6.75 3.75C6.75 3.33579 6.41421 3 6 3C5.58579 3 5.25 3.33579 5.25 3.75C5.25 4.16421 5.58579 4.5 6 4.5Z\" />";
463
+ };
464
+ readonly information: {
465
+ readonly box: 12;
466
+ readonly svg: "<path d=\"M6 8.5C5.72386 8.5 5.5 8.27614 5.5 8V5.5C5.5 5.22386 5.72386 5 6 5C6.27614 5 6.5 5.22386 6.5 5.5V8C6.5 8.27614 6.27614 8.5 6 8.5Z\" />\n\t\t\t\t\t<path d=\"M5.5 4C5.5 4.27614 5.72386 4.5 6 4.5C6.27614 4.5 6.5 4.27614 6.5 4C6.5 3.72386 6.27614 3.5 6 3.5C5.72386 3.5 5.5 3.72386 5.5 4Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.5 6C10.5 8.48528 8.48528 10.5 6 10.5C3.51472 10.5 1.5 8.48528 1.5 6C1.5 3.51472 3.51472 1.5 6 1.5C8.48528 1.5 10.5 3.51472 10.5 6ZM9.5 6C9.5 7.933 7.933 9.5 6 9.5C4.067 9.5 2.5 7.933 2.5 6C2.5 4.067 4.067 2.5 6 2.5C7.933 2.5 9.5 4.067 9.5 6Z\" />";
467
+ };
468
+ readonly invoices: {
469
+ readonly box: 12;
470
+ readonly svg: "<path d=\"M3 4.5H4.5V6H3V4.5Z\" />\n\t\t\t\t\t<path d=\"M5.5 4.5H9V6H5.5V4.5Z\" />\n\t\t\t\t\t<path d=\"M3 7H9V7.5H3V7Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 2.5C1.44772 2.5 1 2.94772 1 3.5V8.5C1 9.05228 1.44772 9.5 2 9.5H10C10.5523 9.5 11 9.05229 11 8.5V3.5C11 2.94772 10.5523 2.5 10 2.5H2ZM10 3.5H2V8.5H10V3.5Z\" />";
471
+ };
472
+ readonly 'jump-next': {
473
+ readonly box: 12;
474
+ readonly svg: "<path d=\"M4.51645 4.16392L6.02898 5.61976C6.05657 5.64691 6.08232 5.672 6.10624 5.69531C6.26167 5.84675 6.33972 5.9228 6.34022 5.99935C6.34071 6.07659 6.26226 6.15433 6.10466 6.31051C6.08119 6.33376 6.05596 6.35876 6.02898 6.38575L4.52355 7.83531C4.02802 8.33239 3.27113 7.59554 3.76495 7.09364L4.40265 6.50109L4.92816 6L4.41554 5.50006L3.76128 4.91618C3.26504 4.42349 4.02741 3.66333 4.51645 4.16392Z\" />\n\t\t\t\t\t<path d=\"M7.01645 4.16392L8.52898 5.61976C8.55657 5.64691 8.58232 5.672 8.60624 5.69531C8.76167 5.84675 8.83972 5.9228 8.84022 5.99935C8.84071 6.07659 8.76226 6.15433 8.60466 6.31051C8.58119 6.33376 8.55596 6.35876 8.52898 6.38575L7.02354 7.83531C6.52802 8.33239 5.77113 7.59554 6.26495 7.09364L6.90265 6.50109L7.42816 6L6.91554 5.50006L6.26128 4.91618C5.76504 4.42349 6.52741 3.66333 7.01645 4.16392Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.5 6C10.5 8.48528 8.48528 10.5 6 10.5C3.51472 10.5 1.5 8.48528 1.5 6C1.5 3.51472 3.51472 1.5 6 1.5C8.48528 1.5 10.5 3.51472 10.5 6ZM9.5 6C9.5 7.933 7.933 9.5 6 9.5C4.067 9.5 2.5 7.933 2.5 6C2.5 4.067 4.067 2.5 6 2.5C7.933 2.5 9.5 4.067 9.5 6Z\" />";
475
+ };
476
+ readonly 'jump-previous': {
477
+ readonly box: 12;
478
+ readonly svg: "<path d=\"M4.92375 7.83627L3.41121 6.38043C3.38363 6.35328 3.35788 6.32819 3.33396 6.30488C3.17853 6.15345 3.10047 6.07739 3.09998 6.00084C3.09948 5.9236 3.17794 5.84586 3.33554 5.68968C3.35901 5.66643 3.38423 5.64143 3.41121 5.61444L4.91665 4.16488C5.41217 3.6678 6.16907 4.40465 5.67525 4.90655L5.03755 5.4991L4.51203 6.00019L5.02465 6.50013L5.67891 7.08401C6.17515 7.5767 5.41279 8.33686 4.92375 7.83627Z\" />\n\t\t\t\t\t<path d=\"M7.42375 7.83627L5.91121 6.38043C5.88363 6.35328 5.85788 6.32819 5.83396 6.30488C5.67853 6.15345 5.60047 6.07739 5.59998 6.00084C5.59948 5.9236 5.67794 5.84586 5.83554 5.68968C5.85901 5.66643 5.88423 5.64143 5.91121 5.61444L7.41665 4.16488C7.91217 3.6678 8.66907 4.40465 8.17525 4.90655L7.53755 5.4991L7.01203 6.00019L7.52465 6.50013L8.17891 7.08401C8.67515 7.5767 7.91279 8.33686 7.42375 7.83627Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.5 6C10.5 8.48528 8.48528 10.5 6 10.5C3.51472 10.5 1.5 8.48528 1.5 6C1.5 3.51472 3.51472 1.5 6 1.5C8.48528 1.5 10.5 3.51472 10.5 6ZM9.5 6C9.5 7.933 7.933 9.5 6 9.5C4.067 9.5 2.5 7.933 2.5 6C2.5 4.067 4.067 2.5 6 2.5C7.933 2.5 9.5 4.067 9.5 6Z\" />";
479
+ };
480
+ readonly kitting: {
481
+ readonly box: 24;
482
+ readonly svg: "<path d=\"m15 6-3 4-3-4h2V3h2v3h2Z\"/><path d=\"M7.06 6H5a2 2 0 0 0-2 2v11c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-2.06l-1.41 2H18a1 1 0 0 1 1 1v9a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1h2.47L7.06 6Z\"/><path fill-rule=\"evenodd\" d=\"M8 11a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1H8Zm1.5 2a.5.5 0 0 0-.5.5v1c0 .28.22.5.5.5h5a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-5Z\" clip-rule=\"evenodd\"/>";
483
+ };
484
+ readonly 'large-rows': {
485
+ readonly box: 12;
486
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1 2.5C1 1.94772 1.44772 1.5 2 1.5H10C10.5523 1.5 11 1.94772 11 2.5V9.5C11 10.0523 10.5523 10.5 10 10.5H2C1.44772 10.5 1 10.0523 1 9.5V2.5ZM2 2.5H10V4.5H2V2.5ZM2 5V7H10V5H2ZM10 7.5H2V9.5H10V7.5Z\" />";
487
+ };
488
+ readonly 'left-close': {
489
+ readonly box: 12;
490
+ readonly svg: "<path d=\"M4.72833 5.99456L8.31931 9.58555C8.51457 9.78081 8.51457 10.0974 8.31931 10.2927C8.12405 10.4879 7.80746 10.4879 7.6122 10.2927L3.72311 6.40356C3.61134 6.29179 3.52667 6.14845 3.52667 6.00001C3.52667 5.85157 3.61139 5.69729 3.72313 5.58554L7.61222 1.69646C7.80748 1.5012 8.12406 1.5012 8.31932 1.69646C8.51459 1.89172 8.51459 2.2083 8.31932 2.40356L4.72833 5.99456Z\" />";
491
+ };
492
+ readonly link: {
493
+ readonly box: 12;
494
+ readonly svg: "<path d=\"M4.7937 6.82042C4.84567 6.88772 4.90251 6.95247 4.96423 7.01419C5.74528 7.79524 7.01161 7.79524 7.79265 7.01419L9.91397 4.89287C10.695 4.11182 10.695 2.84549 9.91397 2.06444C9.13293 1.28339 7.8666 1.28339 7.08555 2.06444L5.35206 3.79793C5.77755 3.70321 6.22799 3.74881 6.62946 3.93474L7.79265 2.77155C8.18318 2.38102 8.81634 2.38102 9.20687 2.77155C9.59739 3.16207 9.59739 3.79524 9.20687 4.18576L7.08555 6.30708C6.69502 6.6976 6.06186 6.6976 5.67133 6.30708C5.60957 6.24532 5.55758 6.17748 5.51535 6.1055C5.49029 6.12611 5.46599 6.14813 5.44257 6.17155L4.7937 6.82042Z\" />\n\t\t\t\t\t<path d=\"M2.11423 7.08577C1.33318 7.86682 1.33318 9.13315 2.11423 9.9142C2.89528 10.6952 4.16161 10.6952 4.94266 9.9142L6.50975 8.3471C6.11616 8.37283 5.7164 8.28269 5.36595 8.07669L4.23555 9.20709C3.84502 9.59761 3.21186 9.59761 2.82134 9.20709C2.43081 8.81656 2.43081 8.1834 2.82134 7.79288L4.94263 5.67156C4.96606 5.64814 4.99035 5.62612 5.01541 5.60551C5.40823 5.28243 5.98976 5.30445 6.35687 5.67156C6.41863 5.73332 6.47062 5.80115 6.51285 5.87313C6.53791 5.85252 6.5622 5.83051 6.58561 5.80709L7.23449 5.15821C7.18253 5.09091 7.12569 5.02616 7.06398 4.96445C6.28293 4.1834 5.0166 4.1834 4.23555 4.96445L2.11423 7.08577Z\" />";
495
+ };
496
+ readonly loading: {
497
+ readonly box: 12;
498
+ readonly svg: "<path class=\"loading__body\" d=\"M7.79779 10.1337C5.72474 11.0438 3.25495 10.2668 2.09668 8.26065C0.854038 6.10834 1.59148 3.35618 3.74379 2.11354C5.89611 0.870899 8.64827 1.60834 9.89091 3.76065C10.62 5.02345 10.6674 6.49272 10.1475 7.74247L10.1353 7.76701L10.111 7.80899C9.97297 8.04814 9.66717 8.13007 9.42803 7.992C9.19462 7.85725 9.11 7.56328 9.23443 7.32691C9.24057 7.31526 9.24643 7.30343 9.25127 7.29119C9.62691 6.33382 9.57907 5.22054 9.02488 4.26065C8.05838 2.58663 5.91782 2.01307 4.24379 2.97957C2.56977 3.94606 1.99621 6.08663 2.9627 7.76065C3.84458 9.28811 5.70393 9.89937 7.29445 9.26049C7.55069 9.15756 7.85572 9.23561 7.99379 9.47476C8.13186 9.7139 8.05064 10.0227 7.79779 10.1337Z\" />";
499
+ };
500
+ readonly 'location-full': {
501
+ readonly box: 12;
502
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 1.5C4.20507 1.5 2.75 2.9103 2.75 4.65C2.75 4.78174 2.75834 4.91159 2.77455 5.03909C2.81777 5.37914 2.9169 5.70241 3.06276 6L5.19565 10.05C5.35621 10.319 5.6563 10.5 6 10.5C6.3437 10.5 6.64379 10.319 6.80434 10.05L8.93724 6C9.13779 5.59084 9.25 5.13312 9.25 4.65C9.25 2.9103 7.79493 1.5 6 1.5ZM6 6C6.82843 6 7.5 5.32843 7.5 4.5C7.5 3.67157 6.82843 3 6 3C5.17157 3 4.5 3.67157 4.5 4.5C4.5 5.32843 5.17157 6 6 6Z\" />";
503
+ };
504
+ readonly location: {
505
+ readonly box: 12;
506
+ readonly svg: "<path d=\"M6 6C6.55228 6 7 5.55228 7 5C7 4.44772 6.55228 4 6 4C5.44772 4 5 4.44772 5 5C5 5.55228 5.44772 6 6 6Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 1.5C4.20507 1.5 2.75 2.9103 2.75 4.65C2.75 4.78174 2.75834 4.91159 2.77455 5.03909C2.81777 5.37914 2.9169 5.70241 3.06276 6L5.19565 10.05C5.35621 10.319 5.6563 10.5 6 10.5C6.3437 10.5 6.64379 10.319 6.80434 10.05L8.93724 6C9.13779 5.59084 9.25 5.13312 9.25 4.65C9.25 2.9103 7.79493 1.5 6 1.5ZM5.99998 2.5C4.89541 2.5 3.8075 3.51855 3.8075 4.775C3.8075 4.87015 3.81263 4.96393 3.8226 5.05601C3.8492 5.3016 3.9102 5.53507 3.99996 5.75L5.5 8.75C5.5988 8.94429 5.78347 9.075 5.99498 9.075C6.20649 9.075 6.39116 8.94429 6.48996 8.75L8.00002 5.75C8.12343 5.45449 8.19249 5.12392 8.19249 4.775C8.19249 3.51855 7.10455 2.5 5.99998 2.5Z\" />";
507
+ };
508
+ readonly 'lock-closed': {
509
+ readonly box: 12;
510
+ readonly svg: "<path d=\"M7 7.5C7 7.87014 6.7989 8.19331 6.5 8.36622V8.5C6.5 8.77614 6.27614 9 6 9C5.72386 9 5.5 8.77614 5.5 8.5V8.36622C5.2011 8.19331 5 7.87014 5 7.5C5 6.94772 5.44772 6.5 6 6.5C6.55228 6.5 7 6.94772 7 7.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 4.5V5C9.55228 5 10 5.44772 10 6V9.5C10 10.0523 9.55228 10.5 9 10.5H3C2.44772 10.5 2 10.0523 2 9.5V6C2 5.44772 2.44772 5 3 5V4.5C3 2.84315 4.34315 1.5 6 1.5C7.65685 1.5 9 2.84315 9 4.5ZM4 5H8V4.5C8 3.39543 7.10457 2.5 6 2.5C4.89543 2.5 4 3.39543 4 4.5V5ZM3 9.5V6H9V9.5H3Z\" />";
511
+ };
512
+ readonly lock: {
513
+ readonly box: 12;
514
+ readonly svg: "<path d=\"M6 6.75C5.58579 6.75 5.25 7.08579 5.25 7.5C5.25 7.76814 5.39072 8.00342 5.60233 8.13601L5.5 8.75H6.5L6.39767 8.13601C6.60928 8.00342 6.75 7.76814 6.75 7.5C6.75 7.08579 6.41421 6.75 6 6.75Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 4.5V5C9.55228 5 10 5.44772 10 6V9.5C10 10.0523 9.55228 10.5 9 10.5H3C2.44772 10.5 2 10.0523 2 9.5V6C2 5.44772 2.44772 5 3 5V4.5C3 2.84315 4.34315 1.5 6 1.5C7.65685 1.5 9 2.84315 9 4.5ZM4 4.5C4 3.39543 4.89543 2.5 6 2.5C7.10457 2.5 8 3.39543 8 4.5V5H4V4.5ZM3.5 6C3.22386 6 3 6.22386 3 6.5V9C3 9.27614 3.22386 9.5 3.5 9.5H8.5C8.77614 9.5 9 9.27614 9 9V6.5C9 6.22386 8.77614 6 8.5 6H3.5Z\" />";
515
+ };
516
+ readonly lorry: {
517
+ readonly box: 24;
518
+ readonly svg: "<path fill-rule=\"evenodd\" d=\"M2 8c0-1 1-2 2-2h10c1 0 2 1 2 2h4c1 0 2 1 2 2v5c0 1-1 2-2 2a3 3 0 1 1-6 0h-3a3 3 0 1 1-6 0H4c-1 0-2-1-2-2V8Zm17.2 7c.8-.2.8-1 .8-1v-3c0-1-1-1-1-1h-3v4.2a3 3 0 0 1 3.2.8ZM13 8s1 0 1 1v6h-3.8a3 3 0 0 0-4.4 0H5s-1 0-1-1V9s0-1 1-1h8ZM8 18a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm10-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z\" clip-rule=\"evenodd\"/>";
519
+ };
520
+ readonly 'manage-assessment': {
521
+ readonly box: 12;
522
+ readonly svg: "<path d=\"M1.5 1C1.22386 1 1 1.22386 1 1.5C1 1.77614 1.22386 2 1.5 2H5.5C5.77614 2 6 1.77614 6 1.5C6 1.22386 5.77614 1 5.5 1H1.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.25 8.75C8.25 9.44036 7.69036 10 7 10C6.30964 10 5.75 9.44036 5.75 8.75C5.75 8.05964 6.30964 7.5 7 7.5C7.69036 7.5 8.25 8.05964 8.25 8.75ZM7 9.5C7.41421 9.5 7.75 9.16421 7.75 8.75C7.75 8.33579 7.41421 8 7 8C6.58579 8 6.25 8.33579 6.25 8.75C6.25 9.16421 6.58579 9.5 7 9.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 8.75C3 8.75 5 6.5 7 6.5C9 6.5 11 8.75 11 8.75C11 8.75 9 11 7 11C5 11 3 8.75 3 8.75ZM4 8.75C4 8.75 5.5 7.25 7 7.25C8.5 7.25 10 8.75 10 8.75C10 8.75 8.5 10.25 7 10.25C5.5 10.25 4 8.75 4 8.75Z\" />\n\t\t\t\t\t<path d=\"M1 3.5C1 3.22386 1.22386 3 1.5 3H5.5C5.77614 3 6 3.22386 6 3.5C6 3.77614 5.77614 4 5.5 4H1.5C1.22386 4 1 3.77614 1 3.5Z\" />\n\t\t\t\t\t<path d=\"M1.5 5C1.22386 5 1 5.22386 1 5.5C1 5.77614 1.22386 6 1.5 6H5.5C5.77614 6 6 5.77614 6 5.5C6 5.22386 5.77614 5 5.5 5H1.5Z\" />";
523
+ };
524
+ readonly 'manage-attribute': {
525
+ readonly box: 12;
526
+ readonly svg: "<path d=\"M1.5 1C1.22386 1 1 1.22386 1 1.5C1 1.77614 1.22386 2 1.5 2H5.5C5.77614 2 6 1.77614 6 1.5C6 1.22386 5.77614 1 5.5 1H1.5Z\" />\n\t\t\t\t\t<path d=\"M1.5 3C1.22386 3 1 3.22386 1 3.5C1 3.77614 1.22386 4 1.5 4H5.5C5.77614 4 6 3.77614 6 3.5C6 3.22386 5.77614 3 5.5 3H1.5Z\" />\n\t\t\t\t\t<path d=\"M1 5.5C1 5.22386 1.22386 5 1.5 5H5.5C5.77614 5 6 5.22386 6 5.5C6 5.77614 5.77614 6 5.5 6H1.5C1.22386 6 1 5.77614 1 5.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.5 3C9.22386 3 9 3.22386 9 3.5V5.5C9 5.52826 9.00234 5.55597 9.00685 5.58295C8.42068 5.78692 8 6.34433 8 7C8 7.65567 8.42068 8.21308 9.00685 8.41705C9.00234 8.44403 9 8.47174 9 8.5V10.5C9 10.7761 9.22386 11 9.5 11C9.77614 11 10 10.7761 10 10.5V8.5C10 8.47174 9.99766 8.44403 9.99315 8.41705C10.5793 8.21308 11 7.65567 11 7C11 6.34433 10.5793 5.78692 9.99315 5.58295C9.99766 5.55597 10 5.52826 10 5.5V3.5C10 3.22386 9.77614 3 9.5 3ZM9.5 7.5C9.77614 7.5 10 7.27614 10 7C10 6.72386 9.77614 6.5 9.5 6.5C9.22386 6.5 9 6.72386 9 7C9 7.27614 9.22386 7.5 9.5 7.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 6.5C5.72386 6.5 5.5 6.72386 5.5 7V8C5.5 8.02826 5.50234 8.05597 5.50685 8.08295C4.92068 8.28692 4.5 8.84433 4.5 9.5C4.5 10.3284 5.17157 11 6 11C6.82843 11 7.5 10.3284 7.5 9.5C7.5 8.84433 7.07932 8.28692 6.49315 8.08295C6.49766 8.05597 6.5 8.02826 6.5 8V7C6.5 6.72386 6.27614 6.5 6 6.5ZM6.5 9.5C6.5 9.77614 6.27614 10 6 10C5.72386 10 5.5 9.77614 5.5 9.5C5.5 9.22386 5.72386 9 6 9C6.27614 9 6.5 9.22386 6.5 9.5Z\" />";
527
+ };
528
+ readonly 'manage-case': {
529
+ readonly box: 12;
530
+ readonly svg: "<path d=\"M6.5 1C6.22386 1 6 1.22386 6 1.5C6 1.77614 6.22386 2 6.5 2H10.5C10.7761 2 11 1.77614 11 1.5C11 1.22386 10.7761 1 10.5 1H6.5Z\" />\n\t\t\t\t\t<path d=\"M2.5 8.75C2.5 8.61193 2.61193 8.5 2.75 8.5H6.25C6.38807 8.5 6.5 8.61193 6.5 8.75C6.5 8.88807 6.38807 9 6.25 9H2.75C2.61193 9 2.5 8.88807 2.5 8.75Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 5.5C1.44772 5.5 1 5.94772 1 6.5V10C1 10.5523 1.44772 11 2 11H7C8 11 8 10 8 10V7.5C8 7.5 8 6.5 7 6.5H5.5C5.29289 6.5 5.17157 6.32843 5.02944 6.12742C4.82843 5.84315 4.58579 5.5 4 5.5H2ZM2.5 6.5C2 6.5 2 7 2 7V9.5C2 10 2.5 10 2.5 10H6.5C7 10 7 9.5 7 9.5V8C7 7.5 6.5 7.5 6.5 7.5H5.5C4.91421 7.5 4.67157 7.15685 4.47056 6.87258C4.32843 6.67157 4.20711 6.5 4 6.5H2.5Z\" />\n\t\t\t\t\t<path d=\"M6 3.5C6 3.22386 6.22386 3 6.5 3H10.5C10.7761 3 11 3.22386 11 3.5C11 3.77614 10.7761 4 10.5 4H6.5C6.22386 4 6 3.77614 6 3.5Z\" />\n\t\t\t\t\t<path d=\"M6.5 5C6.22386 5 6 5.22386 6 5.5C6 5.77614 6.22386 6 6.5 6H10.5C10.7761 6 11 5.77614 11 5.5C11 5.22386 10.7761 5 10.5 5H6.5Z\" />";
531
+ };
532
+ readonly 'manage-customer': {
533
+ readonly box: 12;
534
+ readonly svg: "<path d=\"M1 1.5C1 1.22386 1.22386 1 1.5 1H5.5C5.77614 1 6 1.22386 6 1.5C6 1.77614 5.77614 2 5.5 2H1.5C1.22386 2 1 1.77614 1 1.5Z\" />\n\t\t\t\t\t<path d=\"M1 3.5C1 3.22386 1.22386 3 1.5 3H5.5C5.77614 3 6 3.22386 6 3.5C6 3.77614 5.77614 4 5.5 4H1.5C1.22386 4 1 3.77614 1 3.5Z\" />\n\t\t\t\t\t<path d=\"M1.5 5C1.22386 5 1 5.22386 1 5.5C1 5.77614 1.22386 6 1.5 6H5.5C5.77614 6 6 5.77614 6 5.5C6 5.22386 5.77614 5 5.5 5H1.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.5 7C6.39543 7 5.5 7.89543 5.5 9V10.5C5.5 10.7761 5.72386 11 6 11H10.5C10.7761 11 11 10.7761 11 10.5V9C11 7.89543 10.1046 7 9 7H7.5ZM7.5 8C6.94772 8 6.5 8.44771 6.5 9V10H10V9C10 8.44771 9.55229 8 9 8H7.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 4.75C10 5.7165 9.2165 6.5 8.25 6.5C7.2835 6.5 6.5 5.7165 6.5 4.75C6.5 3.7835 7.2835 3 8.25 3C9.2165 3 10 3.7835 10 4.75ZM9 4.75C9 5.16421 8.66421 5.5 8.25 5.5C7.83579 5.5 7.5 5.16421 7.5 4.75C7.5 4.33579 7.83579 4 8.25 4C8.66421 4 9 4.33579 9 4.75Z\" />";
535
+ };
536
+ readonly 'manage-database': {
537
+ readonly box: 12;
538
+ readonly svg: "<path d=\"M6.5 1C6.22386 1 6 1.22386 6 1.5C6 1.77614 6.22386 2 6.5 2H10.5C10.7761 2 11 1.77614 11 1.5C11 1.22386 10.7761 1 10.5 1H6.5Z\" />\n\t\t\t\t\t<path d=\"M6.5 3C6.22386 3 6 3.22386 6 3.5C6 3.77614 6.22386 4 6.5 4H10.5C10.7761 4 11 3.77614 11 3.5C11 3.22386 10.7761 3 10.5 3H6.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3.5 6C1.875 6 1 6.875 1 7.5V9.5C1 10.125 1.875 11 3.5 11C5.125 11 6 10.125 6 9.5V7.5C6 6.875 5.125 6 3.5 6ZM3.5 7C2.5 7 2 7.25 2 7.5C2 7.75 2.5 8 3.5 8C4.5 8 5 7.75 5 7.5C5 7.25 4.5 7 3.5 7ZM3.5 9C2.89328 9 2.39111 8.87802 2 8.69262V9.5C2 9.75 2.5 10 3.5 10C4.5 10 5 9.75 5 9.5V8.69262C4.60889 8.87802 4.10672 9 3.5 9Z\" />\n\t\t\t\t\t<path d=\"M6 5.5C6 5.22386 6.22386 5 6.5 5H10.5C10.7761 5 11 5.22386 11 5.5C11 5.77614 10.7761 6 10.5 6H6.5C6.22386 6 6 5.77614 6 5.5Z\" />";
539
+ };
540
+ readonly 'manage-invoice': {
541
+ readonly box: 12;
542
+ readonly svg: "<path d=\"M1.5 1C1.22386 1 1 1.22386 1 1.5C1 1.77614 1.22386 2 1.5 2H5.5C5.77614 2 6 1.77614 6 1.5C6 1.22386 5.77614 1 5.5 1H1.5Z\" />\n\t\t\t\t\t<path d=\"M1.5 3C1.22386 3 1 3.22386 1 3.5C1 3.77614 1.22386 4 1.5 4H5.5C5.77614 4 6 3.77614 6 3.5C6 3.22386 5.77614 3 5.5 3H1.5Z\" />\n\t\t\t\t\t<path d=\"M1 5.5C1 5.22386 1.22386 5 1.5 5H5.5C5.77614 5 6 5.22386 6 5.5C6 5.77614 5.77614 6 5.5 6H1.5C1.22386 6 1 5.77614 1 5.5Z\" />\n\t\t\t\t\t<path d=\"M6 8H7V9H6V8Z\" />\n\t\t\t\t\t<path d=\"M7.5 8V9H9.5V8H7.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.5 7.5C4.5 6.94772 4.94772 6.5 5.5 6.5H10C10.5523 6.5 11 6.94772 11 7.5V10C11 10.5523 10.5523 11 10 11H5.5C4.94772 11 4.5 10.5523 4.5 10V7.5ZM5.5 7.5H10V10H5.5V7.5Z\" />";
543
+ };
544
+ readonly 'manage-product-group': {
545
+ readonly box: 12;
546
+ readonly svg: "<path d=\"M6.5 1C6.22386 1 6 1.22386 6 1.5C6 1.77614 6.22386 2 6.5 2H10.5C10.7761 2 11 1.77614 11 1.5C11 1.22386 10.7761 1 10.5 1H6.5Z\" />\n\t\t\t\t\t<path d=\"M6.5 3C6.22386 3 6 3.22386 6 3.5C6 3.77614 6.22386 4 6.5 4H10.5C10.7761 4 11 3.77614 11 3.5C11 3.22386 10.7761 3 10.5 3H6.5Z\" />\n\t\t\t\t\t<path d=\"M4.5 3.5H1.5V6.5H2.5V4.5H4.5V3.5Z\" />\n\t\t\t\t\t<path d=\"M1.5 7.5H2.5V9.5H4.5V10.5H1.5V7.5Z\" />\n\t\t\t\t\t<path d=\"M8.5 7.5H7.5V9.5H5.5V10.5H8.5V7.5Z\" />\n\t\t\t\t\t<path d=\"M6 5.5C6 5.22386 6.22386 5 6.5 5H10.5C10.7761 5 11 5.22386 11 5.5C11 5.77614 10.7761 6 10.5 6H6.5C6.22386 6 6 5.77614 6 5.5Z\" />";
547
+ };
548
+ readonly 'manage-product': {
549
+ readonly box: 12;
550
+ readonly svg: "<path d=\"M1.5 1C1.22386 1 1 1.22386 1 1.5C1 1.77614 1.22386 2 1.5 2H5.5C5.77614 2 6 1.77614 6 1.5C6 1.22386 5.77614 1 5.5 1H1.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.5 5C8.22386 5 8 5.22386 8 5.5V10.5C8 10.7761 8.22386 11 8.5 11H10.5C10.7761 11 11 10.7761 11 10.5V5.5C11 5.22386 10.7761 5 10.5 5H8.5ZM10 6H9V10H10V6Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 7.5C1.72386 7.5 1.5 7.72386 1.5 8V10.5C1.5 10.7761 1.72386 11 2 11H6.5C6.77614 11 7 10.7761 7 10.5V8C7 7.72386 6.77614 7.5 6.5 7.5H2ZM6 8.5H2.5V10H6V8.5Z\" />\n\t\t\t\t\t<path d=\"M1 5.5C1 5.22386 1.22386 5 1.5 5H5.5C5.77614 5 6 5.22386 6 5.5C6 5.77614 5.77614 6 5.5 6H1.5C1.22386 6 1 5.77614 1 5.5Z\" />\n\t\t\t\t\t<path d=\"M1.5 3C1.22386 3 1 3.22386 1 3.5C1 3.77614 1.22386 4 1.5 4H5.5C5.77614 4 6 3.77614 6 3.5C6 3.22386 5.77614 3 5.5 3H1.5Z\" />";
551
+ };
552
+ readonly 'manage-profile': {
553
+ readonly box: 12;
554
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 6C6.82843 6 7.5 5.32843 7.5 4.5C7.5 3.67157 6.82843 3 6 3C5.17157 3 4.5 3.67157 4.5 4.5C4.5 5.32843 5.17157 6 6 6Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 11C8.76142 11 11 8.76142 11 6C11 3.23858 8.76142 1 6 1C3.23858 1 1 3.23858 1 6C1 8.76142 3.23858 11 6 11ZM6 2C8.20914 2 10 3.79086 10 6C10 7.26319 9.41446 8.38962 8.5 9.12269V8.50011C8.5 7.39554 7.60457 6.50011 6.5 6.50011H5.5C4.39543 6.50011 3.5 7.39554 3.5 8.50011V9.12269C2.58554 8.38962 2 7.26319 2 6C2 3.79086 3.79086 2 6 2ZM6 6C6.82843 6 7.5 5.32843 7.5 4.5C7.5 3.67157 6.82843 3 6 3C5.17157 3 4.5 3.67157 4.5 4.5C4.5 5.32843 5.17157 6 6 6Z\" />";
555
+ };
556
+ readonly 'manage-repair': {
557
+ readonly box: 12;
558
+ readonly svg: "<path d=\"M9.5 4.99998V10.5C9.5 10.7761 9.27614 11 9 11C8.72386 11 8.5 10.7761 8.5 10.5V4.99998L7 3.74998L7.00355 1.84642L7.7106 1.13938C7.90586 0.944121 8.22244 0.944121 8.4177 1.13938C8.61296 1.33465 8.61296 1.65123 8.4177 1.84649L8 2.26419V3.24998L9 3.99998L10 3.24998V2.26419L9.5823 1.84649C9.38704 1.65123 9.38704 1.33464 9.5823 1.13938C9.77756 0.94412 10.0941 0.94412 10.2894 1.13938L10.9964 1.84642L11 3.74998L9.5 4.99998Z\" />\n\t\t\t\t\t<path d=\"M1 6.49998C1 6.22383 1.22386 5.99998 1.5 5.99998H5.5C5.77614 5.99998 6 6.22383 6 6.49998C6 6.77612 5.77614 6.99998 5.5 6.99998H1.5C1.22386 6.99998 1 6.77612 1 6.49998Z\" />\n\t\t\t\t\t<path d=\"M1 8.49998C1 8.22383 1.22386 7.99998 1.5 7.99998H5.5C5.77614 7.99998 6 8.22383 6 8.49998C6 8.77612 5.77614 8.99998 5.5 8.99998H1.5C1.22386 8.99998 1 8.77612 1 8.49998Z\" />\n\t\t\t\t\t<path d=\"M1 10.5C1 10.2238 1.22386 9.99998 1.5 9.99998H5.5C5.77614 9.99998 6 10.2238 6 10.5C6 10.7761 5.77614 11 5.5 11H1.5C1.22386 11 1 10.7761 1 10.5Z\" />";
559
+ };
560
+ readonly 'manage-retailer': {
561
+ readonly box: 12;
562
+ readonly svg: "<path d=\"M1 1.5C1 1.22386 1.22386 1 1.5 1H5.5C5.77614 1 6 1.22386 6 1.5C6 1.77614 5.77614 2 5.5 2H1.5C1.22386 2 1 1.77614 1 1.5Z\" />\n\t\t\t\t\t<path d=\"M1.5 5C1.22386 5 1 5.22386 1 5.5C1 5.77614 1.22386 6 1.5 6H5.5C5.77614 6 6 5.77614 6 5.5C6 5.22386 5.77614 5 5.5 5H1.5Z\" />\n\t\t\t\t\t<path d=\"M1.5 3C1.22386 3 1 3.22386 1 3.5C1 3.77614 1.22386 4 1.5 4H5.5C5.77614 4 6 3.77614 6 3.5C6 3.22386 5.77614 3 5.5 3H1.5Z\" />\n\t\t\t\t\t<path d=\"M5.5 7.50837C5.5 7.50837 5.73714 8.51152 6.5109 8.51152C7.47776 8.51152 7.5 8 7.5 8C7.5 8 7.51184 8.7593 8.26261 8.7593C9.01338 8.7593 9 8 9 8C9 8 9.04812 8.51152 10.0135 8.51152C10.5136 8.51152 11 7.50837 11 7.50837L9.51338 6.008H7.00121L5.5 7.50837Z\" />\n\t\t\t\t\t<path d=\"M6 9H7V10H9.5V9H10.5V11H6V9Z\" />";
563
+ };
564
+ readonly 'manage-return': {
565
+ readonly box: 12;
566
+ readonly svg: "<path d=\"M1.5 1C1.22386 1 1 1.22386 1 1.5C1 1.77614 1.22386 2 1.5 2H5.5C5.77614 2 6 1.77614 6 1.5C6 1.22386 5.77614 1 5.5 1H1.5Z\" />\n\t\t\t\t\t<path d=\"M11.0015 7.0072C11.0015 10.0144 8 10.0087 8 10.0087V11.0023L6 9.50753L8 8.0016V9.01344C8 9.01344 10.0035 9.01344 10.0035 7.0118C10.0035 5.01016 8 5.00831 8 5.00831V4C8 4 11.0015 4 11.0015 7.0072Z\" />\n\t\t\t\t\t<path d=\"M1 3.5C1 3.22386 1.22386 3 1.5 3H5.5C5.77614 3 6 3.22386 6 3.5C6 3.77614 5.77614 4 5.5 4H1.5C1.22386 4 1 3.77614 1 3.5Z\" />\n\t\t\t\t\t<path d=\"M1.5 5C1.22386 5 1 5.22386 1 5.5C1 5.77614 1.22386 6 1.5 6H5.5C5.77614 6 6 5.77614 6 5.5C6 5.22386 5.77614 5 5.5 5H1.5Z\" />";
567
+ };
568
+ readonly 'manage-tenants': {
569
+ readonly box: 12;
570
+ readonly svg: "<path d=\"M1 1.5C1 1.22386 1.22386 1 1.5 1H5.5C5.77614 1 6 1.22386 6 1.5C6 1.77614 5.77614 2 5.5 2H1.5C1.22386 2 1 1.77614 1 1.5Z\" />\n\t\t\t\t\t<path d=\"M1 3.5C1 3.22386 1.22386 3 1.5 3H5.5C5.77614 3 6 3.22386 6 3.5C6 3.77614 5.77614 4 5.5 4H1.5C1.22386 4 1 3.77614 1 3.5Z\" />\n\t\t\t\t\t<path d=\"M1.5 5C1.22386 5 1 5.22386 1 5.5C1 5.77614 1.22386 6 1.5 6H5.5C5.77614 6 6 5.77614 6 5.5C6 5.22386 5.77614 5 5.5 5H1.5Z\" />\n\t\t\t\t\t<path d=\"M9.5 6H8V5H9.5V6Z\" />\n\t\t\t\t\t<path d=\"M8 7.5H9.5V6.5H8V7.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 11V8C3 7.44772 3.44772 7 4 7H6.5V4.5C6.5 3.94772 6.94772 3.5 7.5 3.5H10C10.5523 3.5 11 3.94772 11 4.5V11H3ZM6.5 10H6V9.25C6 9.11193 5.88807 9 5.75 9H4.75C4.61193 9 4.5 9.11193 4.5 9.25V10H4V8.5C4 8.22386 4.22386 8 4.5 8H6C6.27614 8 6.5 8.22386 6.5 8.5V10ZM7.5 10H8V9.25C8 9.11193 8.11193 9 8.25 9H9.25C9.38807 9 9.5 9.11193 9.5 9.25V10H10V5C10 4.72386 9.77614 4.5 9.5 4.5H8C7.72386 4.5 7.5 4.72386 7.5 5V10Z\" />";
571
+ };
572
+ readonly manage: {
573
+ readonly box: 12;
574
+ readonly svg: "<path d=\"M1.5 6C1.5 5.58579 1.83579 5.25 2.25 5.25H9.75C10.1642 5.25 10.5 5.58579 10.5 6C10.5 6.41421 10.1642 6.75 9.75 6.75H2.25C1.83579 6.75 1.5 6.41421 1.5 6Z\" />\n\t\t\t\t\t<path d=\"M1.5 3.5C1.5 3.08579 1.83579 2.75 2.25 2.75H9.75C10.1642 2.75 10.5 3.08579 10.5 3.5C10.5 3.91421 10.1642 4.25 9.75 4.25H2.25C1.83579 4.25 1.5 3.91421 1.5 3.5Z\" />\n\t\t\t\t\t<path d=\"M1.5 8.5C1.5 8.08579 1.83579 7.75 2.25 7.75H9.75C10.1642 7.75 10.5 8.08579 10.5 8.5C10.5 8.91421 10.1642 9.25 9.75 9.25H2.25C1.83579 9.25 1.5 8.91421 1.5 8.5Z\" />";
575
+ };
576
+ readonly manufacturer: {
577
+ readonly box: 12;
578
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.5 2C8.22386 2 8 2.22386 8 2.5V9.5H7.5V6C7.5 5.44772 7.05228 5 6.5 5H2C1.44772 5 1 5.44772 1 6V10.5H11V2.5C11 2.22386 10.7761 2 10.5 2H8.5ZM2 6.4375C2 6.4375 2 6 2.5 6H6C6 6 6.5 6 6.5 6.4375V9.5H5V8.25C5 8.11193 4.88807 8 4.75 8H3.75C3.61193 8 3.5 8.11193 3.5 8.25V9.5H2V6.4375ZM9.25 3C9.11193 3 9 3.11193 9 3.25V9.5H10V3.25C10 3.11193 9.88807 3 9.75 3H9.25Z\" />";
579
+ };
580
+ readonly 'map-3': {
581
+ readonly box: 12;
582
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.25 2C1.75 2 1.5 2 1.5 2.5V9C1.5 9.27614 1.72386 9.5 2 9.5L4.5 10.5L7.5 9L10 9.5C10.2761 9.5 10.5 9.27614 10.5 9V2.5C10.5 2.22386 10.2761 2 10 2L7.5 1.5L4.5 3C4.5 3 2.75 2 2.25 2ZM8 2.625V8.125L9.5 8.5V3L8 2.625ZM7 8.25V2.75L5 3.75V9.25L7 8.25ZM2.5 3L4 3.75V9.25L2.5 8.5V3Z\" />";
583
+ };
584
+ readonly map: {
585
+ readonly box: 12;
586
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.25 6C6.25 6.82843 5.57843 7.5 4.75 7.5C3.92157 7.5 3.25 6.82843 3.25 6C3.25 5.17157 3.92157 4.5 4.75 4.5C5.57843 4.5 6.25 5.17157 6.25 6ZM5.5 6C5.5 6.41421 5.16421 6.75 4.75 6.75C4.33579 6.75 4 6.41421 4 6C4 5.58579 4.33579 5.25 4.75 5.25C5.16421 5.25 5.5 5.58579 5.5 6Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.5 2.5C1.5 1.94772 1.94772 1.5 2.5 1.5H9.5C10.0523 1.5 10.5 1.94772 10.5 2.5V5.11091L10.5104 5.12132L10.5 5.13173V9.5C10.5 10.0523 10.0523 10.5 9.5 10.5H2.5C1.94772 10.5 1.5 10.0523 1.5 9.5V2.5ZM2.5 2.5H4.29294L8.00523 6.21229L4.71751 9.5H2.5V2.5ZM5.70715 2.5L8.71233 5.50518L9.5 4.71751V2.5H5.70715ZM6.13173 9.5L9.5 6.13173V9.5H6.13173Z\" />";
587
+ };
588
+ readonly mhe: {
589
+ readonly box: 12;
590
+ readonly svg: "<path d=\"M2 1.5C1.72386 1.5 1.5 1.72386 1.5 2V3.5C1.5 3.77614 1.72386 4 2 4H2.5C2.77614 4 3 3.77614 3 3.5V3C3 2.72386 3.22386 2.5 3.5 2.5H4.5C4.77614 2.5 5 2.72386 5 3V3.5C5 3.77614 5.22386 4 5.5 4H6.5C6.77614 4 7 3.77614 7 3.5V3C7 2.72386 7.22386 2.5 7.5 2.5H8.5C8.77614 2.5 9 2.72386 9 3V3.5C9 3.77614 9.22386 4 9.5 4H10C10.2761 4 10.5 3.77614 10.5 3.5V2C10.5 1.72386 10.2761 1.5 10 1.5H2Z\" />\n\t\t\t\t\t<path d=\"M7.7147 5.23772L6.62293 6.39296C6.24752 6.76647 6.81759 7.34875 7.18707 6.96974L7.62494 6.47003V8.21893C7.6262 8.22911 7.62685 8.23948 7.62685 8.25V9.25C7.62685 9.38807 7.51492 9.5 7.37685 9.5H4.6257C4.48763 9.5 4.3757 9.38807 4.3757 9.25L4.37564 6.47988L4.82001 6.96694C5.1964 7.34411 5.74898 6.76601 5.3762 6.38754L4.28914 5.23772C4.26891 5.21713 4.25017 5.19786 4.23274 5.17994C4.11562 5.05958 4.0573 4.99963 3.99938 5C3.94197 5.00037 3.88494 5.05999 3.77136 5.17871C3.75391 5.19695 3.73503 5.21669 3.7147 5.23772L2.62293 6.39296C2.24752 6.76647 2.81759 7.34875 3.18707 6.96974L3.62494 6.47003V10.25C3.62494 10.3881 3.73687 10.5 3.87494 10.5H8.12564C8.26371 10.5 8.37564 10.3881 8.37564 10.25V9.25C8.37564 9.24456 8.37546 9.23916 8.37512 9.23381C8.37546 9.22826 8.37564 9.22262 8.37564 9.2169V6.47988L8.82001 6.96694C9.1964 7.34411 9.74898 6.76601 9.3762 6.38754L8.28914 5.23772C8.2689 5.21711 8.25015 5.19784 8.23271 5.17992C8.1156 5.05956 8.0573 4.99963 7.99938 5C7.94197 5.00037 7.88493 5.06 7.77135 5.17872C7.75388 5.19698 7.73506 5.21665 7.7147 5.23772Z\" />";
591
+ };
592
+ readonly 'mobile-device': {
593
+ readonly box: 24;
594
+ readonly svg: "<path fill-rule=\"evenodd\" d=\"M16 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h8Zm-4 15a1 1 0 1 0 0 2 1 1 0 0 0 0-2ZM9 6a1 1 0 0 0-1 1v9c0 .6.4 1 1 1h6c.6 0 1-.4 1-1V7c0-.6-.4-1-1-1H9Zm.5-2a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5Z\" clip-rule=\"evenodd\"/>";
595
+ };
596
+ readonly more: {
597
+ readonly box: 12;
598
+ readonly svg: "<path d=\"M3 7C3.55228 7 4 6.55228 4 6C4 5.44772 3.55228 5 3 5C2.44772 5 2 5.44772 2 6C2 6.55228 2.44772 7 3 7Z\" />\n\t\t\t\t\t<path d=\"M9 7C9.55228 7 10 6.55228 10 6C10 5.44772 9.55228 5 9 5C8.44772 5 8 5.44772 8 6C8 6.55228 8.44772 7 9 7Z\" />\n\t\t\t\t\t<path d=\"M7 6C7 6.55228 6.55228 7 6 7C5.44772 7 5 6.55228 5 6C5 5.44772 5.44772 5 6 5C6.55228 5 7 5.44772 7 6Z\" />";
599
+ };
600
+ readonly 'move-gaps': {
601
+ readonly box: 12;
602
+ readonly svg: "<mask id=\"path-1-inside-1\" >\n\t\t\t\t\t<path d=\"M5.50088 2.71236L4.94204 3.2712C4.74678 3.46646 4.4302 3.46646 4.23493 3.2712C4.03967 3.07594 4.03967 2.75936 4.23493 2.56409L5.64915 1.14988C5.84441 0.954618 6.16099 0.954618 6.35625 1.14988L7.77047 2.56409C7.96573 2.75936 7.96573 3.07594 7.77047 3.2712C7.57521 3.46646 7.25862 3.46646 7.06336 3.2712L6.50088 2.70872V4.50117C6.50088 4.77732 6.27702 5.00117 6.00088 5.00117C5.72473 5.00117 5.50088 4.77732 5.50088 4.50117V2.71236Z\"/>\n\t\t\t\t\t<path d=\"M8.73301 4.2344C8.92828 4.03914 9.24486 4.03914 9.44012 4.2344L10.8543 5.64862C11.0496 5.84388 11.0496 6.16046 10.8543 6.35573L9.44012 7.76994C9.24486 7.9652 8.92828 7.9652 8.73301 7.76994C8.53775 7.57468 8.53775 7.25809 8.73301 7.06283L9.29191 6.50394H7.50019C7.22404 6.50394 7.00019 6.28008 7.00019 6.00394C7.00019 5.7278 7.22404 5.50394 7.50019 5.50394H9.29544L8.73301 4.94151C8.53775 4.74625 8.53775 4.42967 8.73301 4.2344Z\"/>\n\t\t\t\t\t<path d=\"M7.77203 8.73373C7.96729 8.92899 7.96729 9.24557 7.77203 9.44084L6.35781 10.8551C6.16255 11.0503 5.84597 11.0503 5.65071 10.8551L4.23649 9.44084C4.04123 9.24557 4.04123 8.92899 4.23649 8.73373C4.43175 8.53847 4.74834 8.53847 4.9436 8.73373L5.50249 9.29262V7.5009C5.50249 7.22476 5.72635 7.0009 6.00249 7.0009C6.27863 7.0009 6.50249 7.22476 6.50249 7.5009V9.29616L7.06492 8.73373C7.26018 8.53847 7.57676 8.53847 7.77203 8.73373Z\"/>\n\t\t\t\t\t<path d=\"M2.56347 4.23414L1.14925 5.64835C0.953992 5.84362 0.953992 6.1602 1.14925 6.35546L2.56347 7.76967C2.75873 7.96494 3.07531 7.96494 3.27057 7.76967C3.46584 7.57441 3.46584 7.25783 3.27057 7.06257L2.70538 6.49738H4.50211C4.77825 6.49738 5.00211 6.27352 5.00211 5.99738C5.00211 5.72123 4.77825 5.49738 4.50211 5.49738H2.71445L3.27057 4.94125C3.46584 4.74598 3.46584 4.4294 3.27057 4.23414C3.07531 4.03888 2.75873 4.03888 2.56347 4.23414Z\"/>\n\t\t\t\t\t</mask>\n\t\t\t\t\t<path d=\"M5.50088 2.71236H6.50088V0.298151L4.79377 2.00526L5.50088 2.71236ZM4.94204 3.2712L5.64915 3.97831L5.64915 3.97831L4.94204 3.2712ZM4.23493 3.2712L3.52783 3.97831L3.52783 3.97831L4.23493 3.2712ZM4.23493 2.56409L3.52783 1.85699L3.52783 1.85699L4.23493 2.56409ZM5.64915 1.14988L6.35625 1.85699L6.35625 1.85699L5.64915 1.14988ZM6.35625 1.14988L7.06336 0.442773L7.06336 0.442773L6.35625 1.14988ZM7.77047 2.56409L7.06336 3.2712L7.06336 3.2712L7.77047 2.56409ZM7.77047 3.2712L8.47757 3.97831L8.47757 3.97831L7.77047 3.2712ZM7.06336 3.2712L6.35625 3.97831L6.35625 3.97831L7.06336 3.2712ZM6.50088 2.70872L7.20798 2.00161L5.50088 0.294502V2.70872H6.50088ZM9.44012 4.2344L8.73301 4.94151L8.73301 4.94151L9.44012 4.2344ZM8.73301 4.2344L8.02591 3.5273L8.02591 3.5273L8.73301 4.2344ZM10.8543 5.64862L10.1472 6.35572L10.1472 6.35573L10.8543 5.64862ZM10.8543 6.35573L10.1472 5.64862L10.1472 5.64862L10.8543 6.35573ZM8.73301 7.76994L8.02591 8.47705L8.02591 8.47705L8.73301 7.76994ZM8.73301 7.06283L8.02591 6.35573L8.02591 6.35573L8.73301 7.06283ZM9.29191 6.50394L9.99901 7.21105L11.7061 5.50394H9.29191V6.50394ZM9.29544 5.50394V6.50394H11.7097L10.0025 4.79683L9.29544 5.50394ZM8.73301 4.94151L9.44012 4.2344L9.44012 4.2344L8.73301 4.94151ZM7.77203 9.44084L7.06492 8.73373L7.06492 8.73373L7.77203 9.44084ZM7.77203 8.73373L8.47913 8.02662L8.47913 8.02662L7.77203 8.73373ZM6.35781 10.8551L5.65071 10.1479L5.65071 10.1479L6.35781 10.8551ZM5.65071 10.8551L6.35781 10.1479L6.35781 10.1479L5.65071 10.8551ZM4.23649 8.73373L3.52939 8.02662L3.52938 8.02662L4.23649 8.73373ZM4.9436 8.73373L5.65071 8.02662L5.65071 8.02662L4.9436 8.73373ZM5.50249 9.29262L4.79538 9.99973L6.50249 11.7068V9.29262H5.50249ZM6.50249 9.29616H5.50249V11.7104L7.2096 10.0033L6.50249 9.29616ZM7.06492 8.73373L7.77203 9.44084L7.77203 9.44084L7.06492 8.73373ZM1.14925 5.64835L1.85636 6.35546L1.85636 6.35546L1.14925 5.64835ZM2.56347 4.23414L3.27057 4.94125L3.27057 4.94125L2.56347 4.23414ZM1.14925 6.35546L0.442147 7.06257L0.442147 7.06257L1.14925 6.35546ZM2.56347 7.76967L1.85636 8.47678L1.85636 8.47678L2.56347 7.76967ZM3.27057 7.76967L3.97768 8.47678L3.97768 8.47678L3.27057 7.76967ZM3.27057 7.06257L3.97768 6.35546L3.97768 6.35546L3.27057 7.06257ZM2.70538 6.49738V5.49738H0.291168L1.99828 7.20448L2.70538 6.49738ZM2.71445 5.49738L2.00734 4.79027L0.300233 6.49738H2.71445V5.49738ZM3.27057 4.94125L2.56347 4.23414L2.56347 4.23414L3.27057 4.94125ZM4.79377 2.00526L4.23493 2.56409L5.64915 3.97831L6.20798 3.41947L4.79377 2.00526ZM4.23493 2.56409C4.4302 2.36883 4.74678 2.36883 4.94204 2.56409L3.52783 3.97831C4.11361 4.56409 5.06336 4.56409 5.64915 3.97831L4.23493 2.56409ZM4.94204 2.56409C5.1373 2.75936 5.1373 3.07594 4.94204 3.2712L3.52783 1.85699C2.94204 2.44277 2.94204 3.39252 3.52783 3.97831L4.94204 2.56409ZM4.94204 3.2712L6.35625 1.85699L4.94204 0.442773L3.52783 1.85699L4.94204 3.2712ZM6.35625 1.85699C6.16099 2.05225 5.84441 2.05225 5.64915 1.85699L7.06336 0.442773C6.47757 -0.143013 5.52783 -0.143014 4.94204 0.442773L6.35625 1.85699ZM5.64915 1.85699L7.06336 3.2712L8.47757 1.85699L7.06336 0.442773L5.64915 1.85699ZM7.06336 3.2712C6.8681 3.07594 6.8681 2.75936 7.06336 2.56409L8.47757 3.97831C9.06336 3.39252 9.06336 2.44277 8.47757 1.85699L7.06336 3.2712ZM7.06336 2.56409C7.25862 2.36883 7.57521 2.36883 7.77047 2.56409L6.35625 3.97831C6.94204 4.56409 7.89179 4.56409 8.47757 3.97831L7.06336 2.56409ZM7.77047 2.56409L7.20798 2.00161L5.79377 3.41582L6.35625 3.97831L7.77047 2.56409ZM5.50088 2.70872V4.50117H7.50088V2.70872H5.50088ZM5.50088 4.50117C5.50088 4.22503 5.72473 4.00117 6.00088 4.00117V6.00117C6.8293 6.00117 7.50088 5.3296 7.50088 4.50117H5.50088ZM6.00088 4.00117C6.27702 4.00117 6.50088 4.22503 6.50088 4.50117H4.50088C4.50088 5.3296 5.17245 6.00117 6.00088 6.00117V4.00117ZM6.50088 4.50117V2.71236H4.50088V4.50117H6.50088ZM10.1472 3.5273C9.56144 2.94151 8.61169 2.94151 8.02591 3.5273L9.44012 4.94151C9.24486 5.13677 8.92828 5.13677 8.73301 4.94151L10.1472 3.5273ZM11.5614 4.94151L10.1472 3.5273L8.73301 4.94151L10.1472 6.35572L11.5614 4.94151ZM11.5614 7.06283C12.1472 6.47705 12.1472 5.5273 11.5614 4.94151L10.1472 6.35573C9.95197 6.16046 9.95196 5.84388 10.1472 5.64862L11.5614 7.06283ZM10.1472 8.47705L11.5614 7.06283L10.1472 5.64862L8.73301 7.06283L10.1472 8.47705ZM8.02591 8.47705C8.61169 9.06283 9.56144 9.06283 10.1472 8.47705L8.73301 7.06283C8.92828 6.86757 9.24486 6.86757 9.44012 7.06283L8.02591 8.47705ZM8.02591 6.35573C7.44012 6.94151 7.44012 7.89126 8.02591 8.47705L9.44012 7.06283C9.63538 7.25809 9.63538 7.57468 9.44012 7.76994L8.02591 6.35573ZM8.5848 5.79683L8.02591 6.35573L9.44012 7.76994L9.99901 7.21105L8.5848 5.79683ZM9.29191 5.50394H7.50019V7.50394H9.29191V5.50394ZM7.50019 5.50394C7.77633 5.50394 8.00019 5.7278 8.00019 6.00394H6.00019C6.00019 6.83236 6.67176 7.50394 7.50019 7.50394V5.50394ZM8.00019 6.00394C8.00019 6.28008 7.77633 6.50394 7.50019 6.50394V4.50394C6.67176 4.50394 6.00019 5.17551 6.00019 6.00394H8.00019ZM7.50019 6.50394H9.29544V4.50394H7.50019V6.50394ZM8.02591 5.64862L8.58833 6.21105L10.0025 4.79683L9.44012 4.2344L8.02591 5.64862ZM8.02591 3.5273C7.44012 4.11308 7.44012 5.06283 8.02591 5.64862L9.44012 4.2344C9.63538 4.42967 9.63538 4.74625 9.44012 4.94151L8.02591 3.5273ZM8.47913 10.1479C9.06492 9.56216 9.06492 8.61241 8.47913 8.02662L7.06492 9.44084C6.86966 9.24557 6.86966 8.92899 7.06492 8.73373L8.47913 10.1479ZM7.06492 11.5622L8.47913 10.1479L7.06492 8.73373L5.65071 10.1479L7.06492 11.5622ZM4.9436 11.5622C5.52939 12.1479 6.47913 12.1479 7.06492 11.5622L5.65071 10.1479C5.84597 9.95268 6.16255 9.95268 6.35781 10.1479L4.9436 11.5622ZM3.52939 10.1479L4.9436 11.5622L6.35781 10.1479L4.9436 8.73373L3.52939 10.1479ZM3.52938 8.02662C2.9436 8.61241 2.9436 9.56216 3.52939 10.1479L4.9436 8.73373C5.13886 8.92899 5.13886 9.24557 4.9436 9.44084L3.52938 8.02662ZM5.65071 8.02662C5.06492 7.44084 4.11517 7.44084 3.52939 8.02662L4.9436 9.44084C4.74834 9.6361 4.43175 9.6361 4.23649 9.44084L5.65071 8.02662ZM6.2096 8.58552L5.65071 8.02662L4.23649 9.44084L4.79538 9.99973L6.2096 8.58552ZM6.50249 9.29262V7.5009H4.50249V9.29262H6.50249ZM6.50249 7.5009C6.50249 7.77705 6.27863 8.0009 6.00249 8.0009V6.0009C5.17407 6.0009 4.50249 6.67247 4.50249 7.5009H6.50249ZM6.00249 8.0009C5.72635 8.0009 5.50249 7.77704 5.50249 7.5009H7.50249C7.50249 6.67248 6.83092 6.0009 6.00249 6.0009V8.0009ZM5.50249 7.5009V9.29616H7.50249V7.5009H5.50249ZM6.35781 8.02662L5.79538 8.58905L7.2096 10.0033L7.77203 9.44084L6.35781 8.02662ZM8.47913 8.02662C7.89335 7.44084 6.9436 7.44084 6.35781 8.02662L7.77203 9.44084C7.57676 9.6361 7.26018 9.6361 7.06492 9.44084L8.47913 8.02662ZM1.85636 6.35546L3.27057 4.94125L1.85636 3.52703L0.442147 4.94125L1.85636 6.35546ZM1.85636 5.64835C2.05162 5.84362 2.05162 6.1602 1.85636 6.35546L0.442148 4.94125C-0.143639 5.52703 -0.143639 6.47678 0.442147 7.06257L1.85636 5.64835ZM3.27057 7.06257L1.85636 5.64835L0.442147 7.06257L1.85636 8.47678L3.27057 7.06257ZM2.56347 7.06257C2.75873 6.86731 3.07531 6.86731 3.27057 7.06257L1.85636 8.47678C2.44215 9.06257 3.39189 9.06257 3.97768 8.47678L2.56347 7.06257ZM2.56347 7.76967C2.36821 7.57441 2.36821 7.25783 2.56347 7.06257L3.97768 8.47678C4.56347 7.89099 4.56347 6.94125 3.97768 6.35546L2.56347 7.76967ZM1.99828 7.20448L2.56347 7.76967L3.97768 6.35546L3.41249 5.79027L1.99828 7.20448ZM4.50211 5.49738H2.70538V7.49738H4.50211V5.49738ZM4.00211 5.99738C4.00211 5.72123 4.22597 5.49738 4.50211 5.49738V7.49738C5.33054 7.49738 6.00211 6.8258 6.00211 5.99738H4.00211ZM4.50211 6.49738C4.22597 6.49738 4.00211 6.27352 4.00211 5.99738H6.00211C6.00211 5.16895 5.33054 4.49738 4.50211 4.49738V6.49738ZM2.71445 6.49738H4.50211V4.49738H2.71445V6.49738ZM2.56347 4.23414L2.00734 4.79027L3.42155 6.20448L3.97768 5.64835L2.56347 4.23414ZM2.56347 4.94125C2.36821 4.74598 2.36821 4.4294 2.56347 4.23414L3.97768 5.64835C4.56347 5.06257 4.56347 4.11282 3.97768 3.52703L2.56347 4.94125ZM3.27057 4.94125C3.07531 5.13651 2.75873 5.13651 2.56347 4.94125L3.97768 3.52703C3.39189 2.94125 2.44215 2.94125 1.85636 3.52703L3.27057 4.94125Z\" mask=\"url(#path-1-inside-1)\"/>";
603
+ };
604
+ readonly move: {
605
+ readonly box: 12;
606
+ readonly svg: "<path d=\"M5.61957 1.33065L4.16373 2.84318C3.66314 3.33222 4.4233 4.09459 4.91599 3.59835L5.49987 2.94409V5.50004H2.92467L3.57894 4.91615C4.07518 4.42347 3.31281 3.6633 2.82377 4.16389L1.31124 5.61973C1.10442 5.82332 1.00057 5.91099 1 5.99932C0.999431 6.08806 1.10307 6.17747 1.31124 6.38572L2.81667 7.83528C3.3122 8.33237 4.06909 7.59552 3.57527 7.09361L2.93757 6.50106H5.49987V9.02258L4.91599 8.36831C4.4233 7.87208 3.66314 8.63444 4.16373 9.12348L5.61957 10.636C5.64672 10.6636 5.67181 10.6894 5.69512 10.7133C5.84656 10.8687 5.92261 10.9468 5.99916 10.9473C6.0764 10.9477 6.15414 10.8693 6.31032 10.7117C6.33357 10.6882 6.35857 10.663 6.38556 10.636L7.83512 9.13058C8.3322 8.63506 7.59535 7.87816 7.09345 8.37198L6.5009 9.00968V6.50106H8.99027L8.35257 7.09361C7.85875 7.59552 8.61564 8.33237 9.11117 7.83528L10.6166 6.38572C10.6436 6.35873 10.6688 6.33374 10.6923 6.31048C10.8499 6.1543 10.9283 6.07656 10.9278 5.99932C10.9273 5.92277 10.8493 5.84672 10.6939 5.69528C10.6699 5.67198 10.6442 5.64688 10.6166 5.61973L9.10407 4.16389C8.61503 3.6633 7.85266 4.42347 8.3489 4.91615L9.00317 5.50004H6.5009V2.95698L7.09345 3.59469C7.59535 4.0885 8.3322 3.33161 7.83512 2.83609L6.38556 1.33065C6.35862 1.30372 6.33367 1.27854 6.31045 1.25511C6.15427 1.09751 6.0764 1.01892 5.99916 1.01942C5.92261 1.01991 5.84656 1.09797 5.69512 1.25339C5.67181 1.27731 5.64672 1.30307 5.61957 1.33065Z\" />";
607
+ };
608
+ readonly 'new-order': {
609
+ readonly box: 12;
610
+ readonly svg: "<path d=\"M3 1C2.44772 1 2 1.44772 2 2V10C2 10.5523 2.44772 11 3 11H9C9.55228 11 10 10.5523 10 10V6L9 6.5V10H3V2H6L6.5 1H3Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.4268 1.20126C8.45313 1.14775 8.49236 1.10173 8.54043 1.06726C8.59946 1.02492 8.67182 1 8.75 1C8.82818 1 8.90054 1.02492 8.95957 1.06726C9.00765 1.10173 9.04688 1.14776 9.07321 1.20127L9.07388 1.20094L9.37978 1.73078L9.97008 1.57279C10.0265 1.55357 10.0868 1.54877 10.1452 1.55838C10.2169 1.57019 10.2856 1.60373 10.3409 1.65902C10.3962 1.7143 10.4298 1.78309 10.4416 1.85477C10.4512 1.91314 10.4464 1.97342 10.4272 2.02988L10.4279 2.03012L10.2695 2.62103L10.7987 2.92678C10.8523 2.95311 10.8983 2.99234 10.9327 3.04041C10.9751 3.09944 11 3.1718 11 3.24998C11 3.32817 10.9751 3.40053 10.9327 3.45956C10.8983 3.50763 10.8522 3.54686 10.7987 3.57319L10.7991 3.57386L10.2692 3.87977L10.4272 4.47013C10.4464 4.52658 10.4512 4.58686 10.4416 4.64523C10.4298 4.7169 10.3963 4.78569 10.341 4.84097C10.2857 4.89626 10.2169 4.9298 10.1452 4.94161C10.0869 4.95122 10.0266 4.94642 9.97011 4.9272L9.96987 4.9279L9.37893 4.76956L9.0732 5.29875C9.04687 5.35225 9.00764 5.39827 8.95957 5.43274C8.90054 5.47508 8.82818 5.5 8.75 5.5C8.67182 5.5 8.59946 5.47508 8.54043 5.43274C8.49235 5.39827 8.45312 5.35224 8.42679 5.29873L8.42612 5.29906L8.1202 4.76919L7.52983 4.92719C7.47337 4.94641 7.4131 4.95121 7.35473 4.9416C7.28306 4.92979 7.21427 4.89625 7.15898 4.84097C7.1037 4.78568 7.07015 4.71689 7.05835 4.64522C7.04873 4.58685 7.05354 4.52656 7.07276 4.47011L7.07205 4.46986L7.2304 3.87889L6.70125 3.57318C6.64775 3.54685 6.60173 3.50762 6.56726 3.45956C6.52492 3.40053 6.5 3.32817 6.5 3.24998C6.5 3.1718 6.52492 3.09944 6.56726 3.04041C6.60173 2.99234 6.64775 2.95311 6.70127 2.92678L6.70094 2.92611L7.2308 2.62019L7.0728 2.02984C7.05358 1.97338 7.04878 1.91311 7.05839 1.85474C7.0702 1.78307 7.10374 1.71428 7.15903 1.65899C7.21431 1.60371 7.2831 1.57016 7.35477 1.55836C7.41314 1.54874 7.47343 1.55355 7.52989 1.57277L7.53013 1.57206L8.12109 1.73041L8.4268 1.20126ZM8.75 2C8.7017 2 8.65979 2.0274 8.63898 2.0675L8.41842 2.44943L7.99237 2.3353C7.9493 2.32167 7.9003 2.33193 7.86615 2.36608C7.832 2.40024 7.82174 2.44924 7.83538 2.49231L7.94949 2.91835L7.56749 3.13894C7.52739 3.15976 7.5 3.20166 7.5 3.24996C7.5 3.29826 7.5274 3.34016 7.5675 3.36098L7.94944 3.58154L7.83531 4.00762C7.82168 4.05069 7.83194 4.09969 7.86609 4.13384C7.90024 4.16799 7.94925 4.17825 7.99232 4.16461L8.41834 4.05051L8.63893 4.43251C8.65974 4.47261 8.70164 4.5 8.74994 4.5C8.79824 4.5 8.84015 4.4726 8.86096 4.4325L9.08154 4.05054L9.50763 4.16467C9.5507 4.1783 9.5997 4.16804 9.63385 4.13389C9.668 4.09974 9.67826 4.05073 9.66462 4.00766L9.55051 3.58162L9.93251 3.36103C9.97261 3.34021 10 3.29831 10 3.25002C10 3.20171 9.9726 3.15981 9.9325 3.139L9.55056 2.91843L9.66469 2.49236C9.67832 2.44929 9.66806 2.40029 9.63391 2.36614C9.59976 2.33199 9.55075 2.32173 9.50768 2.33537L9.0816 2.44949L8.86101 2.06749C8.8402 2.02739 8.7983 2 8.75 2Z\" />\n\t\t\t\t\t<path d=\"M4 8.5H8V9H4V8.5Z\" />\n\t\t\t\t\t<path d=\"M4 7H8V7.5H4V7Z\" />\n\t\t\t\t\t<path d=\"M4 4.5H6V5H4V4.5Z\" />\n\t\t\t\t\t<path d=\"M4 3H5.5V3.5H4V3Z\" />";
611
+ };
612
+ readonly next: {
613
+ readonly box: 12;
614
+ readonly svg: "<path d=\"M7.42901 5.61976L5.91647 4.16392C5.42743 3.66333 4.66507 4.42349 5.16131 4.91618L5.81557 5.50006L6.32819 6L5.80267 6.50109L5.16497 7.09364C4.67115 7.59554 5.42805 8.33239 5.92357 7.83531L7.42901 6.38575C7.63717 6.17749 7.74081 6.08809 7.74024 5.99935C7.73967 5.91102 7.63583 5.82335 7.42901 5.61976Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 10.5C8.48528 10.5 10.5 8.48528 10.5 6C10.5 3.51472 8.48528 1.5 6 1.5C3.51472 1.5 1.5 3.51472 1.5 6C1.5 8.48528 3.51472 10.5 6 10.5ZM6 9.5C7.933 9.5 9.5 7.933 9.5 6C9.5 4.067 7.933 2.5 6 2.5C4.067 2.5 2.5 4.067 2.5 6C2.5 7.933 4.067 9.5 6 9.5Z\" />";
615
+ };
616
+ readonly nothing: {
617
+ readonly box: 12;
618
+ readonly svg: "";
619
+ };
620
+ readonly 'number-list': {
621
+ readonly box: 12;
622
+ readonly svg: "<mask id=\"path-1-inside-1\" >\n\t\t\t\t\t\t\t\t<path d=\"M2.35107 3.5H2.92871V1.01172H2.87573L1.78369 1.3894V1.8269L2.35107 1.66113V3.5Z\"/>\n\t\t\t\t\t\t\t\t<path d=\"M2.4502 9.01489H2.17847V9.44385H2.45874C2.56926 9.44385 2.65584 9.47005 2.71851 9.52246C2.78117 9.57487 2.8125 9.66374 2.8125 9.78906C2.8125 9.87679 2.78231 9.94885 2.72192 10.0052C2.66154 10.0616 2.58065 10.0898 2.47925 10.0898C2.38924 10.0898 2.31348 10.0619 2.25195 10.0061C2.19043 9.95028 2.15967 9.8842 2.15967 9.80786H1.58032C1.58032 9.948 1.61621 10.073 1.68799 10.183C1.75977 10.2929 1.86544 10.3789 2.005 10.441C2.14457 10.5031 2.29582 10.5342 2.45874 10.5342C2.73674 10.5342 2.96118 10.4675 3.13208 10.3342C3.30298 10.2009 3.38843 10.0232 3.38843 9.80103C3.38843 9.65747 3.35083 9.53699 3.27563 9.43958C3.20044 9.34216 3.09676 9.26953 2.9646 9.22168C3.08993 9.16243 3.18534 9.08525 3.25085 8.99011C3.31637 8.89498 3.34912 8.79386 3.34912 8.68677C3.34912 8.46574 3.26994 8.29199 3.11157 8.16553C2.95321 8.03906 2.7356 7.97583 2.45874 7.97583C2.30379 7.97583 2.16166 8.0046 2.03235 8.06213C1.90303 8.11967 1.80192 8.19971 1.729 8.30225C1.65609 8.40479 1.61963 8.52156 1.61963 8.65259H2.19556C2.19556 8.58651 2.22375 8.53125 2.28015 8.48682C2.33655 8.44238 2.40291 8.42017 2.47925 8.42017C2.57267 8.42017 2.64502 8.44609 2.69629 8.49792C2.74756 8.54976 2.77319 8.6167 2.77319 8.69873C2.77319 8.90951 2.66553 9.01489 2.4502 9.01489Z\"/>\n\t\t\t\t\t\t\t\t<path d=\"M3.38843 7H1.6521V6.62402L2.4519 5.7832C2.64901 5.55876 2.74756 5.38045 2.74756 5.24829C2.74756 5.14119 2.7242 5.05973 2.67749 5.00391C2.63078 4.94808 2.56299 4.92017 2.47412 4.92017C2.38639 4.92017 2.31519 4.95748 2.2605 5.0321C2.20581 5.10673 2.17847 5.19987 2.17847 5.31152H1.60083C1.60083 5.15885 1.639 5.01786 1.71533 4.88855C1.79167 4.75924 1.89762 4.65812 2.0332 4.58521C2.16878 4.51229 2.32031 4.47583 2.48779 4.47583C2.75667 4.47583 2.96374 4.53792 3.10901 4.66211C3.25427 4.7863 3.3269 4.9646 3.3269 5.19702C3.3269 5.295 3.30868 5.39042 3.27222 5.48328C3.23576 5.57613 3.17908 5.67354 3.10217 5.77551C3.02527 5.87748 2.90137 6.01392 2.73047 6.18481L2.40918 6.55566H3.38843V7Z\"/>\n\t\t\t\t\t\t\t\t<path d=\"M5 2C4.72386 2 4.5 2.22386 4.5 2.5C4.5 2.77614 4.72386 3 5 3H10C10.2761 3 10.5 2.77614 10.5 2.5C10.5 2.22386 10.2761 2 10 2H5Z\"/>\n\t\t\t\t\t\t\t\t<path d=\"M4.5 6C4.5 5.72386 4.72386 5.5 5 5.5H10C10.2761 5.5 10.5 5.72386 10.5 6C10.5 6.27614 10.2761 6.5 10 6.5H5C4.72386 6.5 4.5 6.27614 4.5 6Z\"/>\n\t\t\t\t\t\t\t\t<path d=\"M5 9C4.72386 9 4.5 9.22386 4.5 9.5C4.5 9.77614 4.72386 10 5 10H10C10.2761 10 10.5 9.77614 10.5 9.5C10.5 9.22386 10.2761 9 10 9H5Z\"/>\n\t\t\t\t\t\t\t\t</mask>\n\t\t\t\t\t\t\t\t<path d=\"M2.92871 3.5V5.5H4.92871V3.5H2.92871ZM2.35107 3.5H0.351074V5.5H2.35107V3.5ZM2.92871 1.01172H4.92871V-0.988281H2.92871V1.01172ZM2.87573 1.01172V-0.988281H2.53965L2.22202 -0.878429L2.87573 1.01172ZM1.78369 1.3894L1.12998 -0.500744L-0.216309 -0.0351264V1.3894H1.78369ZM1.78369 1.8269H-0.216309V4.49486L2.34458 3.74665L1.78369 1.8269ZM2.35107 1.66113H4.35107V-1.00682L1.79019 -0.258608L2.35107 1.66113ZM2.17847 9.01489V7.01489H0.178467V9.01489H2.17847ZM2.17847 9.44385H0.178467V11.4438H2.17847V9.44385ZM2.15967 9.80786H4.15967V7.80786H2.15967V9.80786ZM1.58032 9.80786V7.80786H-0.419678V9.80786H1.58032ZM2.9646 9.22168L2.10984 7.41354L-2.23341 9.46671L2.28372 11.1022L2.9646 9.22168ZM2.03235 8.06213L1.21932 6.23484L1.21932 6.23484L2.03235 8.06213ZM1.61963 8.65259H-0.380371V10.6526H1.61963V8.65259ZM2.19556 8.65259V10.6526H4.19556V8.65259H2.19556ZM1.6521 7H-0.3479V9H1.6521V7ZM3.38843 7V9H5.38843V7H3.38843ZM1.6521 6.62402L0.202983 5.2456L-0.3479 5.82473V6.62402H1.6521ZM2.4519 5.7832L3.90102 7.16163L3.92844 7.1328L3.95469 7.10291L2.4519 5.7832ZM2.17847 5.31152V7.31152H4.17847V5.31152H2.17847ZM1.60083 5.31152H-0.39917V7.31152H1.60083V5.31152ZM1.71533 4.88855L-0.00697371 3.87186L-0.00697449 3.87186L1.71533 4.88855ZM2.73047 6.18481L1.31625 4.7706L1.26569 4.82117L1.21886 4.87522L2.73047 6.18481ZM2.40918 6.55566L0.897572 5.24607L-1.96973 8.55566H2.40918V6.55566ZM3.38843 6.55566H5.38843V4.55566H3.38843V6.55566ZM2.92871 1.5H2.35107V5.5H2.92871V1.5ZM0.928711 1.01172V3.5H4.92871V1.01172H0.928711ZM2.87573 3.01172H2.92871V-0.988281H2.87573V3.01172ZM2.4374 3.27955L3.52945 2.90187L2.22202 -0.878429L1.12998 -0.500744L2.4374 3.27955ZM3.78369 1.8269V1.3894H-0.216309V1.8269H3.78369ZM1.79019 -0.258608L1.2228 -0.0928364L2.34458 3.74665L2.91196 3.58087L1.79019 -0.258608ZM4.35107 3.5V1.66113H0.351074V3.5H4.35107ZM2.17847 11.0149H2.4502V7.01489H2.17847V11.0149ZM4.17847 9.44385V9.01489H0.178467V9.44385H4.17847ZM2.45874 7.44385H2.17847V11.4438H2.45874V7.44385ZM4.00162 7.98831C3.46967 7.54341 2.87256 7.44385 2.45874 7.44385V11.4438C2.26595 11.4438 1.84201 11.3967 1.43539 11.0566L4.00162 7.98831ZM4.8125 9.78906C4.8125 9.39028 4.71668 8.58636 4.00162 7.98831L1.43539 11.0566C0.845663 10.5634 0.8125 9.93719 0.8125 9.78906H4.8125ZM4.08705 11.4669C4.57964 11.0068 4.8125 10.3925 4.8125 9.78906H0.8125C0.8125 9.60011 0.845892 9.37312 0.945216 9.13605C1.04568 8.89627 1.19236 8.69717 1.3568 8.54359L4.08705 11.4669ZM2.47925 12.0898C2.96635 12.0898 3.57635 11.9439 4.08705 11.4669L1.3568 8.54359C1.74673 8.17941 2.19494 8.08984 2.47925 8.08984V12.0898ZM0.907973 11.4872C1.36954 11.9061 1.93741 12.0898 2.47925 12.0898V8.08984C2.64326 8.08984 2.83889 8.1158 3.04633 8.19222C3.25635 8.2696 3.44219 8.38547 3.59593 8.52498L0.907973 11.4872ZM0.159668 9.80786C0.159668 10.5018 0.469985 11.0898 0.907973 11.4872L3.59593 8.52498C3.73501 8.65118 3.88423 8.83073 3.9959 9.07061C4.10941 9.31445 4.15967 9.56854 4.15967 9.80786H0.159668ZM1.58032 11.8079H2.15967V7.80786H1.58032V11.8079ZM3.36269 9.08965C3.51767 9.32704 3.58032 9.58709 3.58032 9.80786H-0.419678C-0.419678 10.3089 -0.285249 10.819 0.0132847 11.2763L3.36269 9.08965ZM2.81798 8.61373C2.9716 8.68207 3.19131 8.82714 3.36269 9.08965L0.0132847 11.2763C0.32822 11.7587 0.759274 12.0758 1.19203 12.2684L2.81798 8.61373ZM2.45874 8.53418C2.55696 8.53418 2.68487 8.55451 2.81798 8.61373L1.19203 12.2684C1.60428 12.4518 2.03468 12.5342 2.45874 12.5342V8.53418ZM1.90201 8.75723C2.17129 8.54719 2.41842 8.53418 2.45874 8.53418V12.5342C3.05505 12.5342 3.75107 12.3879 4.36215 11.9112L1.90201 8.75723ZM1.38843 9.80103C1.38843 9.65029 1.41897 9.44833 1.52184 9.23436C1.62545 9.01884 1.7689 8.86106 1.90201 8.75723L4.36215 11.9112C5.03297 11.388 5.38843 10.6214 5.38843 9.80103H1.38843ZM1.69245 10.6617C1.45402 10.3528 1.38843 10.023 1.38843 9.80103H5.38843C5.38843 9.2919 5.24764 8.72117 4.85882 8.21747L1.69245 10.6617ZM2.28372 11.1022C2.11076 11.0396 1.88105 10.906 1.69245 10.6617L4.85882 8.21747C4.51982 7.77832 4.08276 7.49947 3.64548 7.34115L2.28372 11.1022ZM1.60363 7.8558C1.77483 7.60719 1.98013 7.47485 2.10984 7.41354L3.81936 11.0298C4.19972 10.85 4.59585 10.5633 4.89807 10.1244L1.60363 7.8558ZM1.34912 8.68677C1.34912 8.35656 1.45835 8.06678 1.60363 7.8558L4.89807 10.1244C5.17438 9.72318 5.34912 9.23117 5.34912 8.68677H1.34912ZM1.86355 9.72836C1.71261 9.60782 1.56856 9.43674 1.46982 9.22009C1.37345 9.00862 1.34912 8.81757 1.34912 8.68677H5.34912C5.34912 7.92059 5.04037 7.14634 4.35959 6.60269L1.86355 9.72836ZM2.45874 9.97583C2.44678 9.97583 2.16984 9.97295 1.86355 9.72836L4.35959 6.60269C3.73657 6.10517 3.02441 5.97583 2.45874 5.97583V9.97583ZM2.84537 9.88942C2.69537 9.95617 2.55711 9.97583 2.45874 9.97583V5.97583C2.05047 5.97583 1.62796 6.05303 1.21932 6.23484L2.84537 9.88942ZM3.35891 9.46129C3.19928 9.68578 3.00148 9.81997 2.84537 9.88942L1.21932 6.23484C0.804592 6.41937 0.404561 6.71363 0.0990934 7.1432L3.35891 9.46129ZM3.61963 8.65259C3.61963 8.91869 3.53712 9.21069 3.35891 9.46129L0.0990934 7.1432C-0.224944 7.59888 -0.380371 8.12444 -0.380371 8.65259H3.61963ZM2.19556 6.65259H1.61963V10.6526H2.19556V6.65259ZM1.04241 6.91583C0.552473 7.30184 0.195557 7.91534 0.195557 8.65259H4.19556C4.19556 8.91444 4.13702 9.19855 3.99815 9.47067C3.86183 9.73781 3.68107 9.92924 3.51789 10.0578L1.04241 6.91583ZM2.47925 6.42017C1.98428 6.42017 1.4747 6.57524 1.04241 6.91583L3.51789 10.0578C3.1984 10.3095 2.82154 10.4202 2.47925 10.4202V6.42017ZM4.11829 7.09154C3.59329 6.56071 2.9492 6.42017 2.47925 6.42017V10.4202C2.19615 10.4202 1.69674 10.3315 1.27428 9.9043L4.11829 7.09154ZM4.77319 8.69873C4.77319 8.16188 4.58746 7.56592 4.11829 7.09154L1.27428 9.9043C1.10854 9.73671 0.974272 9.53213 0.886254 9.3023C0.799944 9.07694 0.773193 8.8673 0.773193 8.69873H4.77319ZM2.4502 11.0149C2.85553 11.0149 3.52892 10.9157 4.09145 10.3651C4.6619 9.80673 4.77319 9.12337 4.77319 8.69873H0.773193C0.773193 8.48486 0.830654 7.95958 1.29344 7.5066C1.7483 7.06136 2.2602 7.01489 2.4502 7.01489V11.0149ZM1.6521 9H3.38843V5H1.6521V9ZM-0.3479 6.62402V7H3.6521V6.62402H-0.3479ZM1.00279 4.40478L0.202983 5.2456L3.10122 8.00245L3.90102 7.16163L1.00279 4.40478ZM0.747559 5.24829C0.747559 5.03478 0.786859 4.86423 0.822815 4.75096C0.858832 4.63749 0.899215 4.55709 0.923225 4.51366C0.96762 4.43333 0.992331 4.41429 0.949116 4.4635L3.95469 7.10291C4.10858 6.92767 4.28112 6.70725 4.42407 6.44862C4.55616 6.20964 4.74756 5.78784 4.74756 5.24829H0.747559ZM1.14362 6.28735C0.775388 5.84727 0.747559 5.39575 0.747559 5.24829H4.74756C4.74756 4.88664 4.67302 4.27219 4.21136 3.72046L1.14362 6.28735ZM2.47412 6.92017C2.31137 6.92017 2.08318 6.89466 1.83011 6.79046C1.56675 6.68202 1.32964 6.50967 1.14362 6.28735L4.21136 3.72046C3.70136 3.11094 3.01178 2.92017 2.47412 2.92017V6.92017ZM3.8737 6.2143C3.74792 6.38594 3.55592 6.57677 3.2832 6.71967C3.00684 6.86449 2.72346 6.92017 2.47412 6.92017V2.92017C1.70933 2.92017 1.05458 3.29415 0.647297 3.84991L3.8737 6.2143ZM4.17847 5.31152C4.17847 5.535 4.11877 5.87987 3.8737 6.2143L0.647297 3.84991C0.292847 4.33359 0.178467 4.86473 0.178467 5.31152H4.17847ZM1.60083 7.31152H2.17847V3.31152H1.60083V7.31152ZM-0.00697449 3.87186C-0.268272 4.31451 -0.39917 4.8075 -0.39917 5.31152H3.60083C3.60083 5.51021 3.54627 5.72122 3.43764 5.90524L-0.00697449 3.87186ZM1.08589 2.82379C0.637371 3.06501 0.259749 3.42002 -0.00697371 3.87186L3.43764 5.90524C3.32359 6.09845 3.15788 6.25124 2.98052 6.34662L1.08589 2.82379ZM2.48779 2.47583C2.01945 2.47583 1.53781 2.58074 1.08589 2.82379L2.98052 6.34662C2.79976 6.44384 2.62117 6.47583 2.48779 6.47583V2.47583ZM4.40863 3.14191C3.77792 2.60272 3.04117 2.47583 2.48779 2.47583V6.47583C2.47218 6.47583 2.14957 6.47312 1.80939 6.1823L4.40863 3.14191ZM5.3269 5.19702C5.3269 4.51807 5.09366 3.72755 4.40863 3.14191L1.80939 6.1823C1.63748 6.03534 1.50341 5.84772 1.42021 5.64348C1.34097 5.44896 1.3269 5.2872 1.3269 5.19702H5.3269ZM5.13386 6.21423C5.26005 5.89283 5.3269 5.54975 5.3269 5.19702H1.3269C1.3269 5.04026 1.3573 4.88801 1.41057 4.75233L5.13386 6.21423ZM4.69895 6.97979C4.85629 6.77117 5.01549 6.51571 5.13386 6.21423L1.41057 4.75233C1.45603 4.63656 1.50186 4.57591 1.50539 4.57123L4.69895 6.97979ZM4.14468 7.59903C4.33432 7.40939 4.53686 7.19471 4.69895 6.97979L1.50539 4.57123C1.5156 4.55769 1.50828 4.56868 1.47099 4.60974C1.43602 4.64825 1.38555 4.7013 1.31625 4.7706L4.14468 7.59903ZM3.92079 7.86526L4.24208 7.49441L1.21886 4.87522L0.897572 5.24607L3.92079 7.86526ZM3.38843 4.55566H2.40918V8.55566H3.38843V4.55566ZM5.38843 7V6.55566H1.38843V7H5.38843ZM6.5 2.5C6.5 3.32843 5.82843 4 5 4V0C3.61929 0 2.5 1.11929 2.5 2.5H6.5ZM5 1C5.82843 1 6.5 1.67157 6.5 2.5H2.5C2.5 3.88071 3.61929 5 5 5V1ZM10 1H5V5H10V1ZM8.5 2.5C8.5 1.67157 9.17157 1 10 1V5C11.3807 5 12.5 3.88071 12.5 2.5H8.5ZM10 4C9.17157 4 8.5 3.32843 8.5 2.5H12.5C12.5 1.11929 11.3807 0 10 0V4ZM5 4H10V0H5V4ZM5 3.5C3.61929 3.5 2.5 4.61929 2.5 6H6.5C6.5 6.82843 5.82843 7.5 5 7.5V3.5ZM10 3.5H5V7.5H10V3.5ZM12.5 6C12.5 4.61929 11.3807 3.5 10 3.5V7.5C9.17157 7.5 8.5 6.82843 8.5 6H12.5ZM10 8.5C11.3807 8.5 12.5 7.38071 12.5 6H8.5C8.5 5.17157 9.17157 4.5 10 4.5V8.5ZM5 8.5H10V4.5H5V8.5ZM2.5 6C2.5 7.38071 3.61929 8.5 5 8.5V4.5C5.82843 4.5 6.5 5.17157 6.5 6H2.5ZM6.5 9.5C6.5 10.3284 5.82843 11 5 11V7C3.61929 7 2.5 8.11929 2.5 9.5H6.5ZM5 8C5.82843 8 6.5 8.67157 6.5 9.5H2.5C2.5 10.8807 3.61929 12 5 12V8ZM10 8H5V12H10V8ZM8.5 9.5C8.5 8.67157 9.17157 8 10 8V12C11.3807 12 12.5 10.8807 12.5 9.5H8.5ZM10 11C9.17157 11 8.5 10.3284 8.5 9.5H12.5C12.5 8.11929 11.3807 7 10 7V11ZM5 11H10V7H5V11Z\" mask=\"url(#path-1-inside-1)\"/>";
623
+ };
624
+ readonly order: {
625
+ readonly box: 12;
626
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 1C2.44772 1 2 1.44772 2 2V10C2 10.5523 2.44772 11 3 11H9C9.55228 11 10 10.5523 10 10V3.5L7.5 1H3ZM3 10V2H7L9 4V10H3Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 5H8V5.5V8H4V7.5V5ZM4.5 7.5V5.5H6V7.5H4.5ZM6.5 7.5V5.5H7.5V7.5H6.5Z\" />\n\t\t\t\t\t<path d=\"M4 4H6.5V4.5H4V4Z\" />\n\t\t\t\t\t<path d=\"M4 8.5H8V9H4V8.5Z\" />\n\t\t\t\t\t<path d=\"M4 3H6.5V3.5H4V3Z\" />";
627
+ };
628
+ readonly 'packing-1': {
629
+ readonly box: 12;
630
+ readonly svg: "<path d=\"M7.5 3.00001L6 5.00001L4.5 3.00001H5.5V1.49999L6.5 1.49999V3.00001H7.5Z\" />\n\t\t\t\t\t<path d=\"M3.5294 3H2.5C1.94772 3 1.5 3.44771 1.5 4V9.5C1.5 10.0523 1.94772 10.5 2.5 10.5H9.5C10.0523 10.5 10.5 10.0523 10.5 9.5V4C10.5 3.44771 10.0523 3 9.5 3H8.4706L7.76471 4H9C9.27614 4 9.5 4.22385 9.5 4.5V9C9.5 9.27614 9.27614 9.5 9 9.5H3C2.72386 9.5 2.5 9.27614 2.5 9V4.5C2.5 4.22385 2.72386 4 3 4H4.23528L3.5294 3Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 5.5C3.72386 5.5 3.5 5.72385 3.5 6V8C3.5 8.27614 3.72386 8.5 4 8.5H8C8.27614 8.5 8.5 8.27614 8.5 8V6C8.5 5.72385 8.27614 5.5 8 5.5H4ZM4.75 6.5C4.61193 6.5 4.5 6.61193 4.5 6.75V7.25C4.5 7.38807 4.61193 7.5 4.75 7.5H7.25C7.38807 7.5 7.5 7.38807 7.5 7.25V6.75C7.5 6.61193 7.38807 6.5 7.25 6.5H4.75Z\" />";
631
+ };
632
+ readonly packing: {
633
+ readonly box: 12;
634
+ readonly svg: "<path d=\"M1.35357 4.182C1.15831 3.98674 1.15831 3.67016 1.35357 3.4749L3.47489 1.35358C3.67015 1.15831 3.98673 1.15831 4.182 1.35358C4.37726 1.54884 4.37726 1.86542 4.182 2.06068L2.06068 4.182C1.86541 4.37727 1.54883 4.37727 1.35357 4.182Z\" />\n\t\t\t\t\t<path d=\"M7.85357 10.682C7.65831 10.4867 7.65831 10.1702 7.85357 9.97489L9.97489 7.85357C10.1702 7.65831 10.4867 7.65831 10.682 7.85357C10.8773 8.04884 10.8773 8.36542 10.682 8.56068L8.56068 10.682C8.36541 10.8773 8.04883 10.8773 7.85357 10.682Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.50002 6.00002C1.50002 5.44774 1.94773 5.00002 2.50002 5.00002H4.50002V3.00002C4.50002 2.44774 4.94773 2.00002 5.50002 2.00002H9.00002C9.5523 2.00002 10 2.44774 10 3.00002V6.00002C10 6.55231 9.5523 7.00002 9.00002 7.00002H7.50002V9.00002C7.50002 9.55231 7.0523 10 6.50002 10H2.50002C1.94773 10 1.50002 9.55231 1.50002 9.00002V6.00002ZM7.50002 6.00002C7.50002 5.44774 7.0523 5.00002 6.50002 5.00002H5.50002V3.00002H9.00002V6.00002H7.50002ZM6.50002 6.00002H2.50002V9.00002H6.50002V6.00002Z\" />";
635
+ };
636
+ readonly paper: {
637
+ readonly box: 12;
638
+ readonly svg: "<path d=\"M4 4H7.5V4.5H4V4Z\" />\n\t\t\t\t\t<path d=\"M8 5.5H4V6H8V5.5Z\" />\n\t\t\t\t\t<path d=\"M4 7H8V7.5H4V7Z\" />\n\t\t\t\t\t<path d=\"M8 8.5H4V9H8V8.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 1C2.44772 1 2 1.44772 2 2V10C2 10.5523 2.44772 11 3 11H9C9.55228 11 10 10.5523 10 10V3.5L7.5 1H3ZM9 4L7 2H3V10H9V4Z\" />";
639
+ };
640
+ readonly pause: {
641
+ readonly box: 12;
642
+ readonly svg: "<path d=\"M5 8C4.72386 8 4.5 7.77614 4.5 7.5V4.5C4.5 4.22386 4.72386 4 5 4C5.27614 4 5.5 4.22386 5.5 4.5V7.5C5.5 7.77614 5.27614 8 5 8Z\" />\n\t\t\t\t\t<path d=\"M6.5 7.5C6.5 7.77614 6.72386 8 7 8C7.27614 8 7.5 7.77614 7.5 7.5V4.5C7.5 4.22386 7.27614 4 7 4C6.72386 4 6.5 4.22386 6.5 4.5V7.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.5 6C10.5 8.48528 8.48528 10.5 6 10.5C3.51472 10.5 1.5 8.48528 1.5 6C1.5 3.51472 3.51472 1.5 6 1.5C8.48528 1.5 10.5 3.51472 10.5 6ZM9.5 6C9.5 7.933 7.933 9.5 6 9.5C4.067 9.5 2.5 7.933 2.5 6C2.5 4.067 4.067 2.5 6 2.5C7.933 2.5 9.5 4.067 9.5 6Z\" />";
643
+ };
644
+ readonly 'pick-wave': {
645
+ readonly box: 12;
646
+ readonly svg: "<path d=\"M1.5 1.5V4.5H2.5V2.5H4.5V1.5H1.5Z\" />\n\t\t\t\t\t<path d=\"M9.5 7.5H10.5V10.5H7.5V9.5H9.5V7.5Z\" />\n\t\t\t\t\t<path d=\"M1.5 7.5H2.5V9.5H4.5V10.5H1.5V7.5Z\" />\n\t\t\t\t\t<path d=\"M8 1.5C9 1.5 10.5 2 10.5 3.5C10.5 5 9 5.5 8 5.5H5.5C5 5.5 4 5.60503 4 6.5C4 7.39497 5 7.5 5.5 7.5H6.5V6.5L8.5 8L6.5 9.5V8.5H5.5C4.5 8.5 3 8 3 6.5C3 5 4.5 4.5 5.5 4.5H8C8.5 4.5 9.5 4.39374 9.5 3.5C9.5 2.60626 8.5 2.5 8 2.5H5.5V1.5H8Z\" />";
647
+ };
648
+ readonly picking: {
649
+ readonly box: 12;
650
+ readonly svg: "<path d=\"M4.68526 6.49999C4.60629 6.49999 4.55185 6.51288 4.51841 6.5208C4.51142 6.52245 4.50518 6.52393 4.5 6.52498C4.01022 6.6244 3.62443 7.01019 3.525 7.49997C3.525 7.49997 3.5 7.558 3.5 7.65717L3.5 8.49999H4.5L3 10.5L1.5 8.49999H2.5V7.74997C2.5 6.59184 3.37501 5.62435 4.5 5.49999H4.74064L4.75 5.49997L4.75936 5.49999H5.5V4.68525C5.5 4.60628 5.48711 4.55183 5.4792 4.51839C5.47756 4.51146 5.47606 4.50513 5.47502 4.49998C5.37559 4.0102 4.9898 3.62441 4.50002 3.52499C4.50002 3.52499 4.44199 3.49998 4.34283 3.49998H3.5V4.49998L1.5 2.99998L3.5 1.49998V2.49998H4.25002C5.40816 2.49998 6.37564 3.375 6.5 4.49998V4.74062L6.50002 4.74998L6.5 4.75935V5.49997H7.31474C7.39371 5.49997 7.44816 5.48708 7.48159 5.47917C7.48858 5.47751 7.49482 5.47604 7.5 5.47498C7.98978 5.37556 8.37558 4.98977 8.475 4.49999C8.475 4.49999 8.5 4.44196 8.5 4.3428V3.49997H7.5L9 1.49997L10.5 3.49997L9.5 3.49997V4.24999C9.5 5.40813 8.62499 6.37561 7.5 6.49997H7.25936L7.25 6.49999L7.24064 6.49997L4.68526 6.49999Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.5 10.5H5.5L5.5 7.49998L10.5 7.49998L10.5 10.5ZM6.5 9.49998V8.49998H9.5V9.49998H6.5Z\" />";
651
+ };
652
+ readonly 'pin-left': {
653
+ readonly box: 24;
654
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.98 7.311L12.8241 3.17952C12.1324 2.78017 11.2747 3.31286 11.3261 4.1099L11.4184 5.54119C11.4311 5.7382 11.3853 5.93457 11.2865 6.10555L9.17212 9.76784C9.02373 10.0249 8.77011 10.2023 8.48301 10.2774C7.5452 10.523 5.36305 11.2583 3.90746 13.0472C3.55889 13.4756 3.72759 14.0935 4.20588 14.3696L8.53602 16.8696L7.03602 19.4677C6.75988 19.946 6.92376 20.5576 7.40205 20.8337C7.88034 21.1099 8.49193 20.946 8.76808 20.4677L10.2681 17.8696L14.5982 20.3696C15.0765 20.6458 15.6939 20.4834 15.923 19.9809C16.9066 17.8244 16.8434 15.9149 16.3103 14.81C16.111 14.3967 16.0271 13.8947 16.2565 13.4973L18.2147 10.1055C18.3135 9.93457 18.4606 9.79664 18.6375 9.70914L19.9232 9.07344C20.6392 8.71943 20.6717 7.71035 19.98 7.311ZM16.9547 7.87375L13.8493 6.08086C13.4636 5.85813 13.0011 6.21301 13.1164 6.64328C13.1507 6.77137 13.1327 6.90785 13.0664 7.02269L10.3245 11.7719C10.2298 11.9359 10.0511 12.0326 9.86199 12.0423C9.28751 12.0719 8.0372 12.2528 7.22379 13.2275C7.04686 13.4396 7.13179 13.7495 7.37094 13.8876L13.4331 17.3876C13.6723 17.5256 13.9831 17.4442 14.0783 17.185C14.5157 15.9932 14.0473 14.8199 13.7856 14.3076C13.6994 14.139 13.6942 13.9353 13.7889 13.7713L16.5305 9.0228C16.5968 8.90796 16.706 8.82405 16.8341 8.78973C17.2644 8.67444 17.3405 8.09648 16.9547 7.87375Z\"/>";
655
+ };
656
+ readonly 'pin-right': {
657
+ readonly box: 24;
658
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3.84712 7.311L11.0031 3.17952C11.6947 2.78017 12.5524 3.31286 12.501 4.1099L12.4087 5.54119C12.396 5.7382 12.4419 5.93457 12.5406 6.10555L14.655 9.76784C14.8034 10.0249 15.057 10.2023 15.3441 10.2774C16.2819 10.523 18.4641 11.2583 19.9197 13.0472C20.2682 13.4756 20.0995 14.0935 19.6212 14.3696L15.2911 16.8696L16.7911 19.4677C17.0672 19.946 16.9034 20.5576 16.4251 20.8337C15.9468 21.1099 15.3352 20.946 15.059 20.4677L13.559 17.8696L9.22894 20.3696C8.75064 20.6458 8.13326 20.4834 7.90408 19.9809C6.92054 17.8244 6.98374 15.9149 7.51677 14.81C7.71615 14.3967 7.80003 13.8947 7.5706 13.4973L5.61237 10.1055C5.51366 9.93457 5.36655 9.79664 5.18958 9.70914L3.90389 9.07344C3.18793 8.71943 3.15543 7.71035 3.84712 7.311ZM6.8724 7.87375L9.97778 6.08086C10.3636 5.85813 10.826 6.21301 10.7107 6.64328C10.6764 6.77137 10.6944 6.90785 10.7607 7.02269L13.5026 11.7719C13.5973 11.9359 13.776 12.0326 13.9651 12.0423C14.5396 12.0719 15.7899 12.2528 16.6033 13.2275C16.7803 13.4396 16.6953 13.7495 16.4562 13.8876L10.394 17.3876C10.1549 17.5256 9.84399 17.4442 9.74884 17.185C9.31139 15.9932 9.77986 14.8199 10.0415 14.3076C10.1277 14.139 10.1329 13.9353 10.0382 13.7713L7.29666 9.0228C7.23035 8.90796 7.12108 8.82405 6.99299 8.78973C6.56272 8.67444 6.48663 8.09648 6.8724 7.87375Z\"/>";
659
+ };
660
+ readonly plus: {
661
+ readonly box: 12;
662
+ readonly svg: "<path d=\"M5.25 9.75C5.25 10.1642 5.58579 10.5 6 10.5C6.41421 10.5 6.75 10.1642 6.75 9.75V6.75H9.75C10.1642 6.75 10.5 6.41421 10.5 6C10.5 5.58579 10.1642 5.25 9.75 5.25H6.75V2.25C6.75 1.83579 6.41421 1.5 6 1.5C5.58579 1.5 5.25 1.83579 5.25 2.25V5.25H2.25C1.83579 5.25 1.5 5.58579 1.5 6C1.5 6.41421 1.83579 6.75 2.25 6.75H5.25V9.75Z\" />";
663
+ };
664
+ readonly minus: {
665
+ readonly box: 24;
666
+ readonly svg: "<path d=\"M19.5 14C20.3284 14 21 13.3284 21 12.5C21 11.6716 20.3284 11 19.5 11H4.5C3.67157 11 3 11.6716 3 12.5C3 13.3284 3.67157 14 4.5 14H19.5Z\"/>";
667
+ };
668
+ readonly pod: {
669
+ readonly box: 12;
670
+ readonly svg: "<path d=\"M2.5 1.5C1.94772 1.5 1.5 1.94772 1.5 2.5V9.5C1.5 10.0523 1.94772 10.5 2.5 10.5H9.5C10.0523 10.5 10.5 10.0523 10.5 9.5V2.5C10.5 1.94772 10.0523 1.5 9.5 1.5V9C9.5 9.27614 9.27614 9.5 9 9.5H3C2.72386 9.5 2.5 9.27614 2.5 9V1.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 1.5C3.72386 1.5 3.5 1.72386 3.5 2V4C3.5 4.27614 3.72386 4.5 4 4.5H8C8.27614 4.5 8.5 4.27614 8.5 4V2C8.5 1.72386 8.27614 1.5 8 1.5H4ZM4.75 2.5C4.61193 2.5 4.5 2.61193 4.5 2.75V3.25C4.5 3.38807 4.61193 3.5 4.75 3.5H7.25C7.38807 3.5 7.5 3.38807 7.5 3.25V2.75C7.5 2.61193 7.38807 2.5 7.25 2.5H4.75Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 5.5C3.72386 5.5 3.5 5.72386 3.5 6V8C3.5 8.27614 3.72386 8.5 4 8.5H8C8.27614 8.5 8.5 8.27614 8.5 8V6C8.5 5.72386 8.27614 5.5 8 5.5H4ZM4.75 6.5C4.61193 6.5 4.5 6.61193 4.5 6.75V7.25C4.5 7.38807 4.61193 7.5 4.75 7.5H7.25C7.38807 7.5 7.5 7.38807 7.5 7.25V6.75C7.5 6.61193 7.38807 6.5 7.25 6.5H4.75Z\" />";
671
+ };
672
+ readonly previous: {
673
+ readonly box: 12;
674
+ readonly svg: "<path d=\"M4.81124 6.38063L6.32377 7.83646C6.81281 8.33706 7.57518 7.57689 7.07894 7.0842L6.42467 6.50032L5.91206 6.00039L6.43757 5.49929L7.07527 4.90675C7.56909 4.40484 6.8122 3.66799 6.31668 4.16508L4.81124 5.61464C4.60307 5.82289 4.49943 5.9123 4.5 6.00103C4.50057 6.08937 4.60442 6.17704 4.81124 6.38063Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.5 6C10.5 8.48528 8.48528 10.5 6 10.5C3.51472 10.5 1.5 8.48528 1.5 6C1.5 3.51472 3.51472 1.5 6 1.5C8.48528 1.5 10.5 3.51472 10.5 6ZM9.5 6C9.5 7.933 7.933 9.5 6 9.5C4.067 9.5 2.5 7.933 2.5 6C2.5 4.067 4.067 2.5 6 2.5C7.933 2.5 9.5 4.067 9.5 6Z\" />";
675
+ };
676
+ readonly price: {
677
+ readonly box: 12;
678
+ readonly svg: "<path d=\"M10 3C10 3.55228 8.20914 4 6 4C3.79086 4 2 3.55228 2 3C2 2.44772 3.79086 2 6 2C8.20914 2 10 2.44772 10 3Z\" />\n\t\t\t\t\t<path d=\"M9.66716 3.75C9.04992 4.19148 7.64025 4.5 6 4.5C4.35974 4.5 2.95008 4.19148 2.33283 3.75C2.11876 3.90312 2 4.07222 2 4.25C2 4.94036 3.79086 5.5 6 5.5C8.20914 5.5 10 4.94036 10 4.25C10 4.07222 9.88124 3.90312 9.66716 3.75Z\" />\n\t\t\t\t\t<path d=\"M6 6C7.64025 6 9.04992 5.69148 9.66716 5.25C9.88124 5.40312 10 5.57222 10 5.75C10 6.44036 8.20914 7 6 7C3.79086 7 2 6.44036 2 5.75C2 5.57222 2.11876 5.40312 2.33283 5.25C2.95008 5.69148 4.35974 6 6 6Z\" />\n\t\t\t\t\t<path d=\"M9.66716 6.75C9.04992 7.19148 7.64025 7.5 6 7.5C4.35974 7.5 2.95008 7.19148 2.33283 6.75C2.11876 6.90312 2 7.07222 2 7.25C2 7.94036 3.79086 8.5 6 8.5C8.20914 8.5 10 7.94036 10 7.25C10 7.07222 9.88124 6.90312 9.66716 6.75Z\" />\n\t\t\t\t\t<path d=\"M9.66716 8.25C9.04992 8.69148 7.64025 9 6 9C4.35974 9 2.95008 8.69148 2.33283 8.25C2.11876 8.40312 2 8.57222 2 8.75C2 9.44036 3.79086 10 6 10C8.20914 10 10 9.44036 10 8.75C10 8.57222 9.88124 8.40312 9.66716 8.25Z\" />";
679
+ };
680
+ readonly prices: {
681
+ readonly box: 12;
682
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.5 3C1.5 2.17157 3.51472 1.5 6 1.5C8.48528 1.5 10.5 2.17157 10.5 3C10.5 3.38418 10.0667 3.73462 9.35416 4C10.0667 4.26538 10.5 4.61582 10.5 5C10.5 5.38418 10.0667 5.73462 9.35416 6C10.0667 6.26538 10.5 6.61582 10.5 7C10.5 7.38418 10.0667 7.73462 9.35416 8C10.0667 8.26538 10.5 8.61582 10.5 9C10.5 9.82843 8.48528 10.5 6 10.5C3.51472 10.5 1.5 9.82843 1.5 9C1.5 8.61582 1.93328 8.26538 2.64584 8C1.93328 7.73462 1.5 7.38418 1.5 7C1.5 6.61582 1.93328 6.26538 2.64584 6C1.93328 5.73462 1.5 5.38418 1.5 5C1.5 4.61582 1.93328 4.26538 2.64584 4C1.93328 3.73462 1.5 3.38418 1.5 3ZM6 2.25C4.067 2.25 2.5 2.72386 2.5 3C2.5 3.18471 3.20108 3.45787 4.24384 3.61852C4.76003 3.69805 5.35995 3.75 6 3.75C6.64005 3.75 7.23997 3.69805 7.75616 3.61852C8.79891 3.45787 9.5 3.18471 9.5 3C9.5 2.72386 7.933 2.25 6 2.25ZM9.5 5C9.5 4.81529 8.79892 4.54213 7.75616 4.38148C7.21657 4.45779 6.62307 4.5 6 4.5C5.37693 4.5 4.78343 4.45779 4.24384 4.38148C3.20108 4.54213 2.5 4.81529 2.5 5C2.5 5.18471 3.20108 5.45787 4.24384 5.61852C4.76003 5.69805 5.35995 5.75 6 5.75C6.64005 5.75 7.23997 5.69805 7.75616 5.61852C8.79892 5.45787 9.5 5.18471 9.5 5ZM6 6.5C6.62307 6.5 7.21657 6.45779 7.75616 6.38148C8.79892 6.54213 9.5 6.81529 9.5 7C9.5 7.18471 8.79892 7.45787 7.75616 7.61852C7.23997 7.69805 6.64005 7.75 6 7.75C5.35995 7.75 4.76003 7.69805 4.24384 7.61852C3.20108 7.45787 2.5 7.18471 2.5 7C2.5 6.81529 3.20108 6.54213 4.24384 6.38148C4.78343 6.45779 5.37693 6.5 6 6.5ZM6 9.75C7.933 9.75 9.5 9.27614 9.5 9C9.5 8.81529 8.79892 8.54213 7.75616 8.38148C7.21657 8.45779 6.62307 8.5 6 8.5C5.37692 8.5 4.78343 8.45779 4.24384 8.38148C3.20108 8.54213 2.5 8.81529 2.5 9C2.5 9.27614 4.067 9.75 6 9.75Z\" />";
683
+ };
684
+ readonly print: {
685
+ readonly box: 12;
686
+ readonly svg: "<path d=\"M7.5 9.25C7.5 9.38807 7.38807 9.5 7.25 9.5H4.75C4.61193 9.5 4.5 9.38807 4.5 9.25C4.5 9.11193 4.61193 9 4.75 9H7.25C7.38807 9 7.5 9.11193 7.5 9.25Z\" />\n\t\t\t\t\t<path d=\"M7.25 8.5C7.38807 8.5 7.5 8.38807 7.5 8.25C7.5 8.11193 7.38807 8 7.25 8H4.75C4.61193 8 4.5 8.11193 4.5 8.25C4.5 8.38807 4.61193 8.5 4.75 8.5H7.25Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.5 2.5C2.5 1.94772 2.94772 1.5 3.5 1.5H8.5C9.05229 1.5 9.5 1.94772 9.5 2.5V3.5H10C10.5523 3.5 11 3.94772 11 4.5V7.5C11 8.05228 10.5523 8.5 10 8.5H9V10C9 10.5523 8.55228 11 8 11H4C3.44772 11 3 10.5523 3 10V8.5H2C1.44772 8.5 1 8.05228 1 7.5V4.5C1 3.94772 1.44772 3.5 2 3.5H2.5V2.5ZM10 4.5V7.5H9V6.5H3V7.5H2V4.5H10ZM8.5 2.5H3.5V3.5H8.5V2.5ZM8 7.5H4V10H8V7.5Z\" />";
687
+ };
688
+ readonly processes: {
689
+ readonly box: 12;
690
+ readonly svg: "<path d=\"M8.5 3.5C9.05228 3.5 9.5 3.05228 9.5 2.5C9.5 1.94772 9.05228 1.5 8.5 1.5C7.94772 1.5 7.5 1.94772 7.5 2.5C7.5 3.05228 7.94772 3.5 8.5 3.5Z\" />\n\t\t\t\t\t<path d=\"M4.0072 1.5C6.0144 1.5 6.0087 4.50151 6.0087 4.50151H7.00232L5.50753 6.50151L4.0016 4.50151L5.01344 4.50151C5.01344 4.50151 5.01344 2.49802 4.0118 2.49802C3.01016 2.49802 3.00831 4.50151 3.00831 4.50151L3.00831 7.5H2L2 4.50151C2 4.50151 2 1.5 4.0072 1.5Z\" />\n\t\t\t\t\t<path d=\"M9.00716 7.57514C9.00875 7.52673 9.0087 6.5 9.0087 6.5H10.0023L8.50753 4.5L7.0016 6.5H8.01344C8.01344 6.5 8.01344 7.52715 8.01186 7.57514C7.99986 7.93932 7.89683 9.50349 7.0118 9.50349C6.01016 9.50349 6.00831 7.5 6.00831 7.5H5C5 7.5 5 10.5015 7.0072 10.5015C8.82499 10.5015 8.99185 8.03974 9.00716 7.57514Z\" />\n\t\t\t\t\t<path d=\"M3.5 9.5C3.5 10.0523 3.05228 10.5 2.5 10.5C1.94772 10.5 1.5 10.0523 1.5 9.5C1.5 8.94772 1.94772 8.5 2.5 8.5C3.05228 8.5 3.5 8.94772 3.5 9.5Z\" />";
691
+ };
692
+ readonly 'product-group': {
693
+ readonly box: 12;
694
+ readonly svg: "<path d=\"M8 1H11V4H10V2H8V1Z\" />\n\t\t\t\t\t<path d=\"M2.5 7.5H1.5V10.5H4.5V9.5H2.5V7.5Z\" />\n\t\t\t\t\t<path d=\"M1.5 1H4.5V2H2.5V4H1.5V1Z\" />\n\t\t\t\t\t<path d=\"M10 7.5H11V10.5H8V9.5H10V7.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 6C9 5.72386 8.77614 5.5 8.5 5.5H7V3.5C7 3.22386 6.77614 3 6.5 3H4C3.72386 3 3.5 3.22386 3.5 3.5V6V8C3.5 8.27614 3.72386 8.5 4 8.5H8.5C8.77614 8.5 9 8.27614 9 8V6ZM8 6.5H4.5V7.5H8V6.5ZM4.5 4V5.5H6V4H4.5Z\" />";
695
+ };
696
+ readonly products: {
697
+ readonly box: 12;
698
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.5 5C8.22386 5 8 5.22386 8 5.5V10.5C8 10.7761 8.22386 11 8.5 11H10.5C10.7761 11 11 10.7761 11 10.5V5.5C11 5.22386 10.7761 5 10.5 5H8.5ZM10 6H9V10H10V6Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 7.5C1.72386 7.5 1.5 7.72386 1.5 8V10.5C1.5 10.7761 1.72386 11 2 11H6.5C6.77614 11 7 10.7761 7 10.5V8C7 7.72386 6.77614 7.5 6.5 7.5H2ZM6 8.5H2.5V10H6V8.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3 1C2.44772 1 2 1.44772 2 2V5.5C2 6.05228 2.44772 6.5 3 6.5H5C5.55228 6.5 6 6.05228 6 5.5V2C6 1.44772 5.55228 1 5 1H3ZM5 2H3V5.5H5V2Z\" />";
699
+ };
700
+ readonly 'purchase-order': {
701
+ readonly box: 12;
702
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8 4.5H4V7.5H8V4.5ZM7.5 7V5H6.5V7H7.5ZM6 5H4.5V7H6V5Z\" />\n\t\t\t\t\t<path d=\"M8 8.5V9H4V8.5H8Z\" />\n\t\t\t\t\t<path d=\"M6.5 3H4V3.5H6.5V3Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 2C2 1.44772 2.44772 1 3 1H7.5L10 3.5V10C10 10.5523 9.55228 11 9 11H3C2.44772 11 2 10.5523 2 10V2ZM9 4V10H3V2H7L9 4Z\" />";
703
+ };
704
+ readonly putaway: {
705
+ readonly box: 12;
706
+ readonly svg: "<path d=\"M1.5 1.5H4.5V2.5H2.5V4.5H1.5V1.5Z\" />\n\t\t\t\t\t<path d=\"M2.5 7.5H1.5V10.5H4.5V9.5H2.5V7.5Z\" />\n\t\t\t\t\t<path d=\"M9.5 7.5H10.5V10.5H7.5V9.5H9.5V7.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7 6.5087C7 6.5087 10.0015 7.0144 10.0015 4.0072C10.0015 1.5 7 1.5 7 1.5V2.50831C7 2.50831 9.00349 2.51016 9.00349 4.0118C9.00349 6.01344 7 5.51344 7 5.51344V4.5016L5 6.00753L7 7.50232V6.5087Z\" />";
707
+ };
708
+ readonly 'quick-kitting': {
709
+ readonly box: 24;
710
+ readonly svg: "<path d=\"M12 2c-.5523 0-1 .4477-1 1s.4477 1 1 1h1v2.0619c-2.8539.3559-5.241 2.215-6.3438 4.76-.2226.5135.1029 1.0783.6434 1.2231.524.1404 1.0601-.167 1.2964-.6552C9.5668 9.3836 11.6218 8 14 8c3.3137 0 6 2.6863 6 6 0 2.9745-2.1644 5.4434-5.0042 5.9177-.5447.091-.9958.53-.9958 1.0823s.45 1.0066.998.9384C18.9453 21.4471 22 18.0803 22 14c0-4.0796-3.0537-7.446-7-7.9381V4h1c.5523 0 1-.4477 1-1s-.4477-1-1-1h-4Z\"/><path d=\"M2 15c0-.5523.4477-1 1-1h7c.5523 0 1 .4477 1 1s-.4477 1-1 1H3c-.5523 0-1-.4477-1-1Zm2 3c0-.5523.4477-1 1-1h5c.5523 0 1 .4477 1 1s-.4477 1-1 1H5c-.5523 0-1-.4477-1-1Zm3 2c-.5523 0-1 .4477-1 1s.4477 1 1 1h3c.5523 0 1-.4477 1-1s-.4477-1-1-1H7Zm5.5065-6.9208c-.3905.3906-.3905 1.0237 0 1.4143.3906.3905 1.0237.3905 1.4142 0l2.8285-2.8285c.3905-.3905.3905-1.0237 0-1.4142-.3906-.3905-1.0237-.3905-1.4142 0l-2.8285 2.8284Z\"/>";
711
+ };
712
+ readonly refresh: {
713
+ readonly box: 24;
714
+ readonly svg: "<path d=\"M2 12c0-4.97 4.09-9 9.13-9a9.07 9.07 0 0 1 8.9 11.01v.07L22 15.2l-5.25 2.21-.68-5.58 1.87 1.07a7 7 0 1 0-3.59 5.25l1.14 1.76A9.2 9.2 0 0 1 11.13 21 9.07 9.07 0 0 1 2 12Z\"/>";
715
+ };
716
+ readonly repairs: {
717
+ readonly box: 12;
718
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 2.49998V5.49998C4 6.02732 3.72788 6.4911 3.31639 6.75856C3.13872 6.87405 3 7.0563 3 7.26821V10.5L2.5 11L2 10.5V7.26821C2 7.0563 1.86128 6.87405 1.68361 6.75856C1.27212 6.4911 1 6.02732 1 5.49998V2.49998C1 1.67155 1.67157 0.999977 2.5 0.999977C3.32843 0.999977 4 1.67155 4 2.49998ZM2.5 1.99998C2.22386 1.99998 2 2.22383 2 2.49998V5.49998C2 5.77612 2.22386 5.99998 2.5 5.99998C2.77614 5.99998 3 5.77612 3 5.49998V2.49998C3 2.22383 2.77614 1.99998 2.5 1.99998Z\" />\n\t\t\t\t\t<path d=\"M9.5 4.99998V10.5C9.5 10.7761 9.27614 11 9 11C8.72386 11 8.5 10.7761 8.5 10.5V4.99998L7 3.74998L7.00355 1.84642L7.7106 1.13938C7.90586 0.944121 8.22244 0.944121 8.4177 1.13938C8.61296 1.33465 8.61296 1.65123 8.4177 1.84649L8 2.26419V3.24998L9 3.99998L10 3.24998V2.26419L9.5823 1.84649C9.38704 1.65123 9.38704 1.33464 9.5823 1.13938C9.77756 0.94412 10.0941 0.94412 10.2894 1.13938L10.9964 1.84642L11 3.74998L9.5 4.99998Z\" />";
719
+ };
720
+ readonly replenishments: {
721
+ readonly box: 12;
722
+ readonly svg: "<path d=\"M6 11C8.48528 11 10.5 8.9554 10.5 6.43326C10.5 3.91112 8.48528 1.86652 6 1.86652C5.65401 1.86652 5.31714 1.90614 4.99355 1.98117L4.96151 1.98873L4.39901 1L3.2942 3.62478L6.08651 3.96619L5.55069 3.02857C5.6978 3.00972 5.84776 3 6 3C7.933 3 9.5 4.567 9.5 6.5C9.5 8.433 7.933 10 6 10C4.067 10 2.5 8.433 2.5 6.5C2.5 5.91657 2.64275 5.36647 2.89524 4.88275C2.90577 4.86258 2.91649 4.84252 2.9274 4.82258L2.04389 4.25504C1.69704 4.90246 1.5 5.64451 1.5 6.43326C1.5 8.9554 3.51472 11 6 11Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 5C3.72386 5 3.5 5.22386 3.5 5.5V7.5C3.5 7.77614 3.72386 8 4 8H8C8.27614 8 8.5 7.77614 8.5 7.5V5.5C8.5 5.22386 8.27614 5 8 5H4ZM4.75 6C4.61193 6 4.5 6.11193 4.5 6.25V6.75C4.5 6.88807 4.61193 7 4.75 7H7.25C7.38807 7 7.5 6.88807 7.5 6.75V6.25C7.5 6.11193 7.38807 6 7.25 6H4.75Z\" />";
723
+ };
724
+ readonly retailers: {
725
+ readonly box: 12;
726
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 2L1 3.5C1 5.5 3.5 5.5 3.5 4C3.5 5.5 6 5.5 6 4C6 5.5 8.5 5.5 8.5 4C8.5 5.5 11 5.5 11 3.5L10 2H2Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 5.5H3V10H5V7.5H7V10H9V5.5H10V11H2V5.5ZM5.5 8V10H6.5V8H5.5Z\" />";
727
+ };
728
+ readonly returns: {
729
+ readonly box: 12;
730
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.5 9.0087C7.5 9.0087 10.5015 9.0144 10.5015 6.0072C10.5015 3 7.5 3 7.5 3V4.00831C7.5 4.00831 9.50349 4.01016 9.50349 6.0118C9.50349 8.01344 7.5 8.01344 7.5 8.01344V7.0016L5.5 8.50753L7.5 10.0023V9.0087Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.5015 2.99362C4.5015 2.99362 1.5 2.98792 1.5 5.99512C1.5 9.00232 4.5015 9.00232 4.5015 9.00232V7.99401C4.5015 7.99401 2.49802 7.99216 2.49802 5.99052C2.49802 3.98888 4.5015 3.98888 4.5015 3.98888V5.00072L6.5015 3.49479L4.5015 2V2.99362Z\" />";
731
+ };
732
+ readonly 'right-close': {
733
+ readonly box: 12;
734
+ readonly svg: "<path d=\"M7.27338 5.94455L3.6824 9.53553C3.48714 9.7308 3.48714 10.0474 3.6824 10.2426C3.87766 10.4379 4.19424 10.4379 4.38951 10.2426L8.27859 6.35355C8.39037 6.24178 8.47504 6.09844 8.47504 5.95C8.47504 5.80156 8.39032 5.64728 8.27858 5.53553L4.38949 1.64645C4.19423 1.45118 3.87765 1.45118 3.68239 1.64645C3.48712 1.84171 3.48712 2.15829 3.68239 2.35355L7.27338 5.94455Z\" />";
735
+ };
736
+ readonly 'role-3': {
737
+ readonly box: 12;
738
+ readonly svg: "<path d=\"M7.20218 6C7.20218 5.25 6.75 4.75 6 4.75C5.25 4.75 4.72388 5.25 4.72388 6C4.72388 6.28503 4.84313 6.54221 5.03446 6.72437L5.0411 6.73064C5.09489 6.91514 4.85203 6.98709 4.72388 7C4.44773 7 4.22388 7.22386 4.22388 7.5V8.25C4.22388 8.38807 4.33581 8.5 4.47388 8.5C4.61195 8.5 4.72388 8.38807 4.72388 8.25V7.5C5.52388 7.3 5.72388 6.73064 5.42606 6.40167C5.30498 6.26793 5.22388 6.16456 5.22388 6C5.22388 5.5 5.5 5.25 6 5.25C6.5 5.25 6.70218 5.5 6.70218 6C6.70218 6.16456 6.62967 6.25 6.5 6.40167C6.20218 6.75 6.40218 7.5 7.20218 7.5V8.25C7.20218 8.38807 7.31411 8.5 7.45218 8.5C7.59025 8.5 7.70218 8.38807 7.70218 8.25V7.5C7.70218 7.22386 7.47833 7 7.20218 7C7.07403 6.98709 6.83117 6.91514 6.88496 6.73064C7.08017 6.54814 7.20218 6.28832 7.20218 6Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.5 1.5C5.22386 1.5 5 1.72386 5 2V3H3.5C2.94772 3 2.5 3.44772 2.5 4V9.5C2.5 10.0523 2.94772 10.5 3.5 10.5H8.5C9.05228 10.5 9.5 10.0523 9.5 9.5V4C9.5 3.44772 9.05228 3 8.5 3H7V2C7 1.72386 6.77614 1.5 6.5 1.5H5.5ZM6.5 2.5C6.5 2.77614 6.27614 3 6 3C5.72386 3 5.5 2.77614 5.5 2.5C5.5 2.22386 5.72386 2 6 2C6.27614 2 6.5 2.22386 6.5 2.5ZM3.5 4V9.5H8.5V4H3.5Z\" />";
739
+ };
740
+ readonly role: {
741
+ readonly box: 12;
742
+ readonly svg: "<path d=\"M5.5 6V5H4.5V6H5.5Z\" />\n\t\t\t\t\t<path d=\"M6 5H7.5V6H6V5Z\" />\n\t\t\t\t\t<path d=\"M5 6.5H4.5V7H5V6.5Z\" />\n\t\t\t\t\t<path d=\"M7 6.5H7.5V7H7V6.5Z\" />\n\t\t\t\t\t<path d=\"M6.5 7V6.5H5.5V7H6.5Z\" />\n\t\t\t\t\t<path d=\"M7.5 7.5V8.5H6.5V7.5H7.5Z\" />\n\t\t\t\t\t<path d=\"M6 7.5H4.5V8.5H6V7.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.5 1.5C5.22386 1.5 5 1.72386 5 2V3H3.5C2.94772 3 2.5 3.44772 2.5 4V9.5C2.5 10.0523 2.94772 10.5 3.5 10.5H8.5C9.05228 10.5 9.5 10.0523 9.5 9.5V4C9.5 3.44772 9.05228 3 8.5 3H7V2C7 1.72386 6.77614 1.5 6.5 1.5H5.5ZM6.5 2.5C6.5 2.77614 6.27614 3 6 3C5.72386 3 5.5 2.77614 5.5 2.5C5.5 2.22386 5.72386 2 6 2C6.27614 2 6.5 2.22386 6.5 2.5ZM3.5 4V9.5H8.5V4H3.5Z\" />";
743
+ };
744
+ readonly 'search-1': {
745
+ readonly box: 12;
746
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.27468 7.62089C5.81999 7.86288 5.30101 8 4.75 8C2.95507 8 1.5 6.54493 1.5 4.75C1.5 2.95507 2.95507 1.5 4.75 1.5C6.54493 1.5 8 2.95507 8 4.75C8 5.30063 7.86306 5.81928 7.62139 6.27375C7.71142 6.32004 7.7959 6.3809 7.87132 6.45633L10.207 8.79198C10.5975 9.18251 10.5975 9.81567 10.207 10.2062C9.81645 10.5967 9.18328 10.5967 8.79276 10.2062L6.45711 7.87054C6.38176 7.7952 6.32095 7.71082 6.27468 7.62089ZM7 4.75C7 5.99264 5.99264 7 4.75 7C3.50736 7 2.5 5.99264 2.5 4.75C2.5 3.50736 3.50736 2.5 4.75 2.5C5.99264 2.5 7 3.50736 7 4.75Z\" />";
747
+ };
748
+ readonly search: {
749
+ readonly box: 12;
750
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.5 1C6.433 1 8 2.567 8 4.5C8 5.20657 7.79063 5.86424 7.43054 6.41435C7.681 6.41841 7.93021 6.516 8.12132 6.70711L10.5962 9.18198C10.9867 9.5725 10.9867 10.2057 10.5962 10.5962C10.2057 10.9867 9.5725 10.9867 9.18198 10.5962L6.70711 8.12132C6.516 7.93021 6.41841 7.681 6.41435 7.43054C5.86424 7.79063 5.20657 8 4.5 8C2.567 8 1 6.433 1 4.5C1 2.567 2.567 1 4.5 1ZM4.5 7C5.88071 7 7 5.88071 7 4.5C7 3.11929 5.88071 2 4.5 2C3.11929 2 2 3.11929 2 4.5C2 5.88071 3.11929 7 4.5 7Z\" />";
751
+ };
752
+ readonly 'setting-cog': {
753
+ readonly box: 12;
754
+ readonly svg: "<path d=\"M6 7C6.55228 7 7 6.55228 7 6C7 5.44772 6.55228 5 6 5C5.44772 5 5 5.44772 5 6C5 6.55228 5.44772 7 6 7Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.5 1.5C5.22386 1.5 5 1.72386 5 2V3C5 3.05649 5.00937 3.11079 5.02663 3.16143C4.90392 3.2035 4.7848 3.25331 4.66985 3.31026C4.64544 3.25067 4.60905 3.19483 4.56066 3.14645L3.85355 2.43934C3.65829 2.24408 3.34171 2.24408 3.14645 2.43934L2.43934 3.14645C2.24408 3.34171 2.24408 3.65829 2.43934 3.85355L3.14645 4.56066C3.19483 4.60904 3.25067 4.64544 3.31026 4.66985C3.25331 4.7848 3.2035 4.90392 3.16143 5.02663C3.11079 5.00937 3.05649 5 3 5H2C1.72386 5 1.5 5.22386 1.5 5.5V6.5C1.5 6.77614 1.72386 7 2 7H3C3.05649 7 3.11079 6.99063 3.16143 6.97336C3.2035 7.09608 3.25331 7.2152 3.31026 7.33015C3.25067 7.35456 3.19483 7.39095 3.14645 7.43934L2.43934 8.14645C2.24408 8.34171 2.24408 8.65829 2.43934 8.85355L3.14645 9.56066C3.34171 9.75592 3.65829 9.75592 3.85355 9.56066L4.56066 8.85355C4.60905 8.80517 4.64544 8.74933 4.66985 8.68974C4.7848 8.74669 4.90392 8.7965 5.02664 8.83857C5.00937 8.88921 5 8.94351 5 9V10C5 10.2761 5.22386 10.5 5.5 10.5H6.5C6.77614 10.5 7 10.2761 7 10V9C7 8.94351 6.99063 8.88921 6.97336 8.83857C7.09608 8.7965 7.2152 8.74669 7.33015 8.68974C7.35456 8.74933 7.39095 8.80517 7.43934 8.85355L8.14645 9.56066C8.34171 9.75592 8.65829 9.75592 8.85355 9.56066L9.56066 8.85355C9.75592 8.65829 9.75592 8.34171 9.56066 8.14645L8.85355 7.43934C8.80517 7.39095 8.74933 7.35456 8.68974 7.33015C8.74669 7.2152 8.7965 7.09608 8.83857 6.97336C8.88921 6.99063 8.94351 7 9 7H10C10.2761 7 10.5 6.77614 10.5 6.5V5.5C10.5 5.22386 10.2761 5 10 5H9C8.94351 5 8.88921 5.00937 8.83857 5.02664C8.7965 4.90392 8.74669 4.7848 8.68974 4.66984C8.74933 4.64544 8.80517 4.60904 8.85355 4.56066L9.56066 3.85355C9.75592 3.65829 9.75592 3.34171 9.56066 3.14645L8.85355 2.43934C8.65829 2.24408 8.34171 2.24408 8.14645 2.43934L7.43934 3.14645C7.39095 3.19483 7.35456 3.25067 7.33015 3.31026C7.2152 3.25331 7.09608 3.2035 6.97337 3.16143C6.99063 3.11079 7 3.05649 7 3V2C7 1.72386 6.77614 1.5 6.5 1.5H5.5ZM6 8C7.10457 8 8 7.10457 8 6C8 4.89543 7.10457 4 6 4C4.89543 4 4 4.89543 4 6C4 7.10457 4.89543 8 6 8Z\" />";
755
+ };
756
+ readonly 'settings-toggle': {
757
+ readonly box: 12;
758
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2 1.5C2 1.22386 2.22386 1 2.5 1C2.77614 1 3 1.22386 3 1.5V4.08535C3.5826 4.29127 4 4.84689 4 5.5C4 6.15311 3.5826 6.70873 3 6.91465V10.5C3 10.7761 2.77614 11 2.5 11C2.22386 11 2 10.7761 2 10.5V6.91465C1.4174 6.70873 1 6.15311 1 5.5C1 4.84689 1.4174 4.29127 2 4.08535V1.5ZM3 5.5C3 5.77614 2.77614 6 2.5 6C2.22386 6 2 5.77614 2 5.5C2 5.22386 2.22386 5 2.5 5C2.77614 5 3 5.22386 3 5.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6 1C5.72386 1 5.5 1.22386 5.5 1.5V6.58535C4.9174 6.79127 4.5 7.34689 4.5 8C4.5 8.65311 4.9174 9.20873 5.5 9.41465V10.5C5.5 10.7761 5.72386 11 6 11C6.27614 11 6.5 10.7761 6.5 10.5V9.41465C7.0826 9.20873 7.5 8.65311 7.5 8C7.5 7.34689 7.0826 6.79127 6.5 6.58535V1.5C6.5 1.22386 6.27614 1 6 1ZM6 8.5C6.27614 8.5 6.5 8.27614 6.5 8C6.5 7.72386 6.27614 7.5 6 7.5C5.72386 7.5 5.5 7.72386 5.5 8C5.5 8.27614 5.72386 8.5 6 8.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9 1.5C9 1.22386 9.22386 1 9.5 1C9.77614 1 10 1.22386 10 1.5V3.08535C10.5826 3.29127 11 3.84689 11 4.5C11 5.15311 10.5826 5.70873 10 5.91465V10.5C10 10.7761 9.77614 11 9.5 11C9.22386 11 9 10.7761 9 10.5V5.91465C8.4174 5.70873 8 5.15311 8 4.5C8 3.84689 8.4174 3.29127 9 3.08535V1.5ZM9.5 5C9.77614 5 10 4.77614 10 4.5C10 4.22386 9.77614 4 9.5 4C9.22386 4 9 4.22386 9 4.5C9 4.77614 9.22386 5 9.5 5Z\" />";
759
+ };
760
+ readonly shipment: {
761
+ readonly box: 24;
762
+ readonly svg: "<path d=\"M3 4C3 2.89543 3.89543 2 5 2H11C11.5523 2 12 2.44772 12 3C12 3.55228 11.5523 4 11 4H5V20H17V15C17 14.4477 17.4477 14 18 14C18.5523 14 19 14.4477 19 15V20C19 21.1046 18.1046 22 17 22H5C3.89543 22 3 21.1046 3 20V4Z\" /><path d=\"M7 11H13V12H7V11Z\" /><path d=\"M13 14H7V15H13V14Z\" /><path d=\"M15 17V18H7V17H15Z\" /><path d=\"M20.3778 7.24019L16.0033 3.00111C15.0252 1.99992 13.5005 3.52025 14.493 4.50563L17.1509 7.0008L7.74319 7.00082C6.75235 6.99625 6.75717 9.00287 7.74319 9.00287L17.1251 9.00285L14.4861 11.5178C13.4985 12.5216 15.0123 13.9953 16.0033 13.0011L20.3778 8.77217C20.7941 8.35566 21.0014 8.17685 21.0002 7.99938C20.9991 7.82271 20.7914 7.64737 20.3778 7.24019Z\" />";
763
+ };
764
+ readonly 'sign-out': {
765
+ readonly box: 12;
766
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1 11.0001V9.71439C1 8.76762 1.80589 8.00011 2.8 8.00011H3.7C4.69411 8.00011 5.5 8.76762 5.5 9.71439V11.0001\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M3.25 7.5C3.94036 7.5 4.5 6.94036 4.5 6.25C4.5 5.55964 3.94036 5 3.25 5C2.55964 5 2 5.55964 2 6.25C2 6.94036 2.55964 7.5 3.25 7.5Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.60407 3.66392L9.1166 5.11976C9.53118 5.52786 9.53199 5.47018 9.1166 5.88575L7.61117 7.33531C7.11564 7.83239 6.35875 7.09554 6.85257 6.59364L7.49027 6.00109L8.01578 5.5L7.50317 5.00006L6.8489 4.41618C6.35266 3.92349 7.11503 3.16333 7.60407 3.66392Z\" />\n\t\t\t\t\t<path d=\"M5 1H10.5C10.7761 1 11 1.22386 11 1.5V9.5C11 9.77614 10.7761 10 10.5 10H7.5C7.22386 10 7 9.77614 7 9.5C7 9.22386 7.22386 9 7.5 9H9.5C9.77614 9 10 8.77614 10 8.5V2.5C10 2.22386 9.77614 2 9.5 2H6C5.72386 2 5.5 2.22386 5.5 2.5V3.5C5.5 3.77614 5.27614 4 5 4C4.72386 4 4.5 3.77614 4.5 3.5V1.5C4.5 1.22386 4.72386 1 5 1Z\" />";
767
+ };
768
+ readonly 'sort-1': {
769
+ readonly box: 12;
770
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.16368 3.34318L5.61951 1.83065C6.02762 1.41607 5.96993 1.41526 6.3855 1.83065L7.83506 3.33609C8.33215 3.83161 7.5953 4.5885 7.0934 4.09469L6.50085 3.45698V5.07659C6.50085 5.5696 5.49754 5.57201 5.49982 5.07659V3.44409L4.91594 4.09835C4.42325 4.59459 3.66309 3.83222 4.16368 3.34318Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.16368 8.62348L5.61951 10.136C6.02762 10.5506 5.96993 10.5514 6.3855 10.136L7.83506 8.63058C8.33215 8.13506 7.5953 7.37816 7.0934 7.87198L6.50085 8.50968V6.89007C6.50085 6.39706 5.49754 6.39465 5.49982 6.89007V8.52258L4.91594 7.86831C4.42325 7.37207 3.66309 8.13444 4.16368 8.62348Z\" />";
771
+ };
772
+ readonly 'sort-asc': {
773
+ readonly box: 12;
774
+ readonly svg: "<path style=\"fill:#259ABF\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.16368 3.34318L5.61951 1.83065C6.02762 1.41607 5.96993 1.41526 6.3855 1.83065L7.83506 3.33609C8.33215 3.83161 7.5953 4.5885 7.0934 4.09469L6.50085 3.45698V5.07659C6.50085 5.5696 5.49754 5.57201 5.49982 5.07659V3.44409L4.91594 4.09835C4.42325 4.59459 3.66309 3.83222 4.16368 3.34318Z\" />\n\t\t\t\t<path style=\"fill:#C0C8CE\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.16368 8.62348L5.61951 10.136C6.02762 10.5506 5.96993 10.5514 6.3855 10.136L7.83506 8.63058C8.33215 8.13506 7.5953 7.37816 7.0934 7.87198L6.50085 8.50968V6.89007C6.50085 6.39706 5.49754 6.39465 5.49982 6.89007V8.52258L4.91594 7.86831C4.42325 7.37207 3.66309 8.13444 4.16368 8.62348Z\" />";
775
+ };
776
+ readonly 'sort-desc': {
777
+ readonly box: 12;
778
+ readonly svg: "<path style=\"fill:#C0C8CE\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.16368 3.34318L5.61951 1.83065C6.02762 1.41607 5.96993 1.41526 6.3855 1.83065L7.83506 3.33609C8.33215 3.83161 7.5953 4.5885 7.0934 4.09469L6.50085 3.45698V5.07659C6.50085 5.5696 5.49754 5.57201 5.49982 5.07659V3.44409L4.91594 4.09835C4.42325 4.59459 3.66309 3.83222 4.16368 3.34318Z\" />\n\t\t\t\t<path style=\"fill:#259ABF\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.16368 8.62348L5.61951 10.136C6.02762 10.5506 5.96993 10.5514 6.3855 10.136L7.83506 8.63058C8.33215 8.13506 7.5953 7.37816 7.0934 7.87198L6.50085 8.50968V6.89007C6.50085 6.39706 5.49754 6.39465 5.49982 6.89007V8.52258L4.91594 7.86831C4.42325 7.37207 3.66309 8.13444 4.16368 8.62348Z\" />";
779
+ };
780
+ readonly 'sort-none': {
781
+ readonly box: 12;
782
+ readonly svg: "<path style=\"fill:#C0C8CE\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.16368 3.34318L5.61951 1.83065C6.02762 1.41607 5.96993 1.41526 6.3855 1.83065L7.83506 3.33609C8.33215 3.83161 7.5953 4.5885 7.0934 4.09469L6.50085 3.45698V5.07659C6.50085 5.5696 5.49754 5.57201 5.49982 5.07659V3.44409L4.91594 4.09835C4.42325 4.59459 3.66309 3.83222 4.16368 3.34318Z\" />\n\t\t\t\t\t<path style=\"fill:#C0C8CE\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.16368 8.62348L5.61951 10.136C6.02762 10.5506 5.96993 10.5514 6.3855 10.136L7.83506 8.63058C8.33215 8.13506 7.5953 7.37816 7.0934 7.87198L6.50085 8.50968V6.89007C6.50085 6.39706 5.49754 6.39465 5.49982 6.89007V8.52258L4.91594 7.86831C4.42325 7.37207 3.66309 8.13444 4.16368 8.62348Z\" />";
783
+ };
784
+ readonly sort: {
785
+ readonly box: 12;
786
+ readonly svg: "<path d=\"M6 2.25L3.375 5.25L8.625 5.25L6 2.25Z\" />\n\t\t\t\t\t<path d=\"M6 9.75L8.625 6.75H3.375L6 9.75Z\" />";
787
+ };
788
+ readonly 'split-pack': {
789
+ readonly box: 24;
790
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11 3H13V5H11V3ZM11 7H13V9H11V7ZM11 11H13V13H11V11ZM11 15H13V17H11V15ZM11 19H13V21H11V19ZM4 5C2.89543 5 2 5.89543 2 7V17C2 18.1046 2.89543 19 4 19H9V17H4V7H9V5H4ZM20 19C21.1046 19 22 18.1046 22 17V7C22 5.89543 21.1046 5 20 5H15V7H20V17H15V19H20ZM4.99996 12L8.99996 15V13H9V11H8.99996V9L4.99996 12ZM15 9L19 12L15 15V13H15V11H15V9Z\"/>";
791
+ };
792
+ readonly 'star-banner': {
793
+ readonly box: 24;
794
+ readonly svg: "<path d=\"M12.9 9.8 12 7l-.9 2.8H8.2l2.3 1.7-.9 2.7 2.4-1.7 2.4 1.7-1-2.7 2.4-1.7h-2.9Z\"/><path fill-rule=\"evenodd\" d=\"M5 3h14v18l-7-3-7 3V3Zm2 2h10v13l-5-2-5 2V5Z\" clip-rule=\"evenodd\"/>";
795
+ };
796
+ readonly statuses: {
797
+ readonly box: 12;
798
+ readonly svg: "<path d=\"M6 4.50001C5.72386 4.50001 5.5 4.72387 5.5 5.00001V7.00001C5.5 7.27615 5.72386 7.50001 6 7.50001C6.27614 7.50001 6.5 7.27615 6.5 7.00001V5.00001C6.5 4.72387 6.27614 4.50001 6 4.50001Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.79006 1.32434C5.88857 1.1721 6.11131 1.1721 6.20983 1.32434L6.97115 2.50079C7.03545 2.60014 7.16059 2.6408 7.271 2.59822L8.57843 2.09394C8.74762 2.02869 8.92781 2.15961 8.91803 2.34068L8.84246 3.73994C8.83607 3.85811 8.91342 3.96457 9.02777 3.99501L10.3819 4.35553C10.5571 4.40218 10.626 4.61402 10.5116 4.75476L9.62802 5.84237C9.5534 5.93421 9.5534 6.0658 9.62802 6.15765L10.5116 7.24525C10.626 7.38599 10.5571 7.59783 10.3819 7.64448L9.02777 8.005C8.91342 8.03544 8.83607 8.1419 8.84246 8.26007L8.91803 9.65934C8.92781 9.8404 8.74762 9.97132 8.57843 9.90607L7.271 9.40179C7.16059 9.35921 7.03545 9.39987 6.97115 9.49922L6.20983 10.6757C6.11131 10.8279 5.88857 10.8279 5.79006 10.6757L5.02873 9.49922C4.96444 9.39987 4.83929 9.35921 4.72888 9.40179L3.42145 9.90607C3.25227 9.97132 3.07207 9.8404 3.08185 9.65934L3.15743 8.26007C3.16381 8.1419 3.08647 8.03544 2.97211 8.005L1.61797 7.64448C1.44275 7.59783 1.37392 7.38599 1.48826 7.24525L2.37187 6.15765C2.44649 6.0658 2.44649 5.93421 2.37187 5.84236L1.48826 4.75476C1.37392 4.61402 1.44275 4.40218 1.61797 4.35553L2.97211 3.99501C3.08647 3.96457 3.16381 3.85811 3.15743 3.73994L3.08185 2.34068C3.07207 2.15961 3.25227 2.02869 3.42145 2.09394L4.72888 2.59822C4.83929 2.6408 4.96444 2.60014 5.02873 2.50079L5.79006 1.32434ZM5.79006 2.82434C5.88857 2.6721 6.11131 2.6721 6.20983 2.82434L6.64669 3.4994C6.71098 3.59875 6.83613 3.63941 6.94654 3.59683L7.69675 3.30747C7.86594 3.24221 8.04614 3.37313 8.03636 3.5542L7.99299 4.35712C7.98661 4.47529 8.06395 4.58174 8.17831 4.61219L8.95533 4.81906C9.13055 4.86571 9.19938 5.07754 9.08504 5.21828L8.57802 5.84236C8.5034 5.93421 8.5034 6.0658 8.57802 6.15765L9.08504 6.78173C9.19938 6.92247 9.13055 7.1343 8.95533 7.18095L8.17831 7.38783C8.06395 7.41827 7.98661 7.52473 7.99299 7.64289L8.03636 8.44581C8.04614 8.62688 7.86594 8.7578 7.69675 8.69254L6.94654 8.40319C6.83613 8.3606 6.71098 8.40126 6.64669 8.50061L6.20983 9.17568C6.11131 9.32791 5.88857 9.32791 5.79006 9.17568L5.3532 8.50061C5.28891 8.40126 5.16376 8.3606 5.05335 8.40318L4.30313 8.69254C4.13395 8.7578 3.95375 8.62688 3.96353 8.44581L4.0069 7.64289C4.01328 7.52473 3.93594 7.41827 3.82158 7.38783L3.04456 7.18095C2.86933 7.1343 2.8005 6.92247 2.91484 6.78173L3.42187 6.15765C3.49649 6.0658 3.49649 5.93421 3.42187 5.84236L2.91484 5.21828C2.8005 5.07754 2.86933 4.86571 3.04456 4.81906L3.82158 4.61219C3.93594 4.58174 4.01328 4.47529 4.0069 4.35712L3.96353 3.5542C3.95375 3.37314 4.13395 3.24221 4.30313 3.30747L5.05335 3.59683C5.16376 3.63941 5.28891 3.59875 5.3532 3.4994L5.79006 2.82434Z\" />";
799
+ };
800
+ readonly 'stock-transfer': {
801
+ readonly box: 12;
802
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.00302 1.50299C5.5047 1.50299 5.5047 2.51002 5.00302 2.51002H3.21667L5.38548 4.63225C5.78644 5.00199 5.04963 5.76296 4.67362 5.41231L2.49769 3.28297V5.00539C2.49769 5.5099 1.50191 5.5099 1.50191 5.00539V2.50093C1.50191 1.50299 1.5004 1.50299 2.50043 1.50381L5.00302 1.50299Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.00043 10.5024C6.49875 10.5024 6.49875 9.49535 7.00043 9.49535H8.78678L6.61797 7.37312C6.217 7.00338 6.95382 6.24241 7.32983 6.59305L9.50575 8.7224V6.99998C9.50575 6.49547 10.5015 6.49547 10.5015 6.99998V9.50444C10.5015 10.5024 10.503 10.5024 9.50302 10.5016L7.00043 10.5024Z\" />";
803
+ };
804
+ readonly success: {
805
+ readonly box: 12;
806
+ readonly svg: "<path d=\"M9.47315 5.56432C9.49087 5.70706 9.5 5.85246 9.5 6C9.5 7.933 7.933 9.5 6 9.5C4.067 9.5 2.5 7.933 2.5 6C2.5 4.067 4.067 2.5 6 2.5C6.6575 2.5 7.27265 2.6813 7.79819 2.99663L8.52214 2.27269C7.80273 1.78494 6.93464 1.5 6 1.5C3.51472 1.5 1.5 3.51472 1.5 6C1.5 8.48528 3.51472 10.5 6 10.5C8.48528 10.5 10.5 8.48528 10.5 6C10.5 5.55592 10.4357 5.12686 10.3158 4.72164L9.47315 5.56432Z\" />\n\t\t\t\t\t<path d=\"M4.39157 5.72487C4.58683 5.52961 4.90341 5.52961 5.09867 5.72487L5.80822 6.43442L8.91083 3.33181C9.1061 3.13654 9.42268 3.13654 9.61794 3.33181C9.8132 3.52707 9.8132 3.84365 9.61794 4.03891L6.18198 7.47487C6.07921 7.57764 5.94283 7.62632 5.80822 7.62091C5.67361 7.62633 5.53723 7.57765 5.43446 7.47487L4.39157 6.43198C4.1963 6.23672 4.1963 5.92014 4.39157 5.72487Z\" />";
807
+ };
808
+ readonly 'supplier-1': {
809
+ readonly box: 12;
810
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.5 2.5C7.5 1.94772 7.94772 1.5 8.5 1.5H10C10.5523 1.5 11 1.94772 11 2.5V10.5H1V6.5C1 5.94772 1.44772 5.5 2 5.5H7.5V2.5ZM8.5 9.5H10V3C10 2.72386 9.77614 2.5 9.5 2.5H9C8.72386 2.5 8.5 2.72386 8.5 3V9.5ZM7.5 7C7.5 6.72386 7.27614 6.5 7 6.5H2.5C2.22386 6.5 2 6.72386 2 7V9.5H7.5V7Z\" />";
811
+ };
812
+ readonly supplier: {
813
+ readonly box: 12;
814
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.5 1.5C2.5 1.22386 2.72386 1 3 1H9.5C9.77614 1 10 1.22386 10 1.5V3.5C10 3.77614 9.77614 4 9.5 4H3C2.72386 4 2.5 3.77614 2.5 3.5V1.5ZM3.75 2C3.61193 2 3.5 2.11193 3.5 2.25V2.75C3.5 2.88807 3.61193 3 3.75 3H8.75C8.88807 3 9 2.88807 9 2.75V2.25C9 2.11193 8.88807 2 8.75 2H3.75Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.5 5C6.5 4.72386 6.72386 4.5 7 4.5H9.5C9.77614 4.5 10 4.72386 10 5V7C10 7.27614 9.77614 7.5 9.5 7.5H7C6.72386 7.5 6.5 7.27614 6.5 7V5ZM7.75 5.5C7.61193 5.5 7.5 5.61193 7.5 5.75V6.25C7.5 6.38807 7.61193 6.5 7.75 6.5H8.75C8.88807 6.5 9 6.38807 9 6.25V5.75C9 5.61193 8.88807 5.5 8.75 5.5H7.75Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.5 8.5C1.5 8.22386 1.72386 8 2 8H10.5C10.7761 8 11 8.22386 11 8.5V10.5C11 10.7761 10.7761 11 10.5 11H2C1.72386 11 1.5 10.7761 1.5 10.5V8.5ZM2.5 9.25C2.5 9.11193 2.61193 9 2.75 9H5.5V10H2.75C2.61193 10 2.5 9.88807 2.5 9.75V9.25ZM7 10H9.75C9.88807 10 10 9.88807 10 9.75V9.25C10 9.11193 9.88807 9 9.75 9H7V10Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.5 5C2.5 4.72386 2.72386 4.5 3 4.5H5.5C5.77614 4.5 6 4.72386 6 5V7C6 7.27614 5.77614 7.5 5.5 7.5H3C2.72386 7.5 2.5 7.27614 2.5 7V5ZM3.75 5.5C3.61193 5.5 3.5 5.61193 3.5 5.75V6.25C3.5 6.38807 3.61193 6.5 3.75 6.5H4.75C4.88807 6.5 5 6.38807 5 6.25V5.75C5 5.61193 4.88807 5.5 4.75 5.5H3.75Z\" />";
815
+ };
816
+ readonly 'table-columns': {
817
+ readonly box: 12;
818
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1 2.5C1 1.94772 1.44772 1.5 2 1.5H10C10.5523 1.5 11 1.94772 11 2.5V9.5C11 10.0523 10.5523 10.5 10 10.5H2C1.44772 10.5 1 10.0523 1 9.5V2.5ZM8 2.5H10V9.5H8V2.5ZM7 2.5H5V9.5H7V2.5ZM4 9.5V2.5H2V9.5H4Z\" />";
819
+ };
820
+ readonly tags: {
821
+ readonly box: 12;
822
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.4616 5.94329C10.4097 6.09029 10.2875 6.21248 9.99999 6.5L5.99999 10.5C5.49999 11 4.99999 10.5 4.99999 10.5L1.49999 7C1.49999 7 0.999993 6.5 1.49999 6L5.49999 2C5.78752 1.71248 5.9097 1.59029 6.0567 1.53837C6.16533 1.5 6.28752 1.5 6.49999 1.5H9.99999C9.99999 1.5 10.5 1.5 10.5 2V5.5C10.5 5.71248 10.5 5.83466 10.4616 5.94329ZM6.99999 2.5H8.99999C8.99999 2.5 9.49999 2.5 9.49999 3V5C9.49999 5.2121 9.49999 5.33422 9.46169 5.44284C9.4097 5.59029 9.28714 5.71285 8.99821 6.00178L6.00367 8.99632C5.49999 9.5 5.00574 9.00575 5.00574 9.00575L2.99008 6.99008C2.99008 6.99008 2.49999 6.5 3.00056 5.99943L6.00645 2.99354C6.28889 2.7111 6.4097 2.59029 6.55508 2.53862C6.66374 2.5 6.78613 2.5 6.99999 2.5Z\" />\n\t\t\t\t\t<path d=\"M7.49999 5.5C8.05227 5.5 8.49999 5.05228 8.49999 4.5C8.49999 3.94772 8.05227 3.5 7.49999 3.5C6.9477 3.5 6.49999 3.94772 6.49999 4.5C6.49999 5.05228 6.9477 5.5 7.49999 5.5Z\" />";
823
+ };
824
+ readonly 'tax-rates': {
825
+ readonly box: 12;
826
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 6.25C4 5.83579 4.33579 5.5 4.75 5.5C5.16421 5.5 5.5 5.83579 5.5 6.25V6.75C5.5 7.16421 5.16421 7.5 4.75 7.5C4.33579 7.5 4 7.16421 4 6.75V6.25ZM4.5 6.25C4.5 6.11193 4.61193 6 4.75 6C4.88807 6 5 6.11193 5 6.25V6.75C5 6.88807 4.88807 7 4.75 7C4.61193 7 4.5 6.88807 4.5 6.75V6.25Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.25 7C6.83579 7 6.5 7.33579 6.5 7.75V8.25C6.5 8.66421 6.83579 9 7.25 9C7.66421 9 8 8.66421 8 8.25V7.75C8 7.33579 7.66421 7 7.25 7ZM7.25 7.5C7.11193 7.5 7 7.61193 7 7.75V8.25C7 8.38807 7.11193 8.5 7.25 8.5C7.38807 8.5 7.5 8.38807 7.5 8.25V7.75C7.5 7.61193 7.38807 7.5 7.25 7.5Z\" />\n\t\t\t\t\t<path d=\"M4.875 8.40849C4.80596 8.52807 4.84693 8.68096 4.96651 8.75L5.18301 8.875C5.30259 8.94404 5.45548 8.90307 5.52452 8.78349L7.27452 5.7524C7.34355 5.63283 7.30259 5.47993 7.18301 5.4109L6.96651 5.2859C6.84693 5.21686 6.69404 5.25783 6.625 5.3774L4.875 8.40849Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.5 8.5C1.5 10.1 3.5 10.5 4.5 10.5H7.5C8.5 10.5 10.5 10.1 10.5 8.5C10.5 6.27282 9.24338 5.23612 8.14423 4.32933C8.0096 4.21826 7.87731 4.10912 7.75 4L8.5 1.5H3.5L4.25 4C4.12271 4.10911 3.99046 4.21821 3.85584 4.32927C2.7567 5.23606 1.5 6.27282 1.5 8.5ZM2.5 8.5C2.5 9.25 3.5 9.5 4.5 9.5H7.5C8.5 9.5 9.5 9.25 9.5 8.5C9.5 6.59552 8.0643 5.37112 6.9198 4.39505L6.91878 4.39418C6.86173 4.34552 6.80539 4.29748 6.75 4.25L7.25 2.25H4.75L5.25 4.25C5.1945 4.29757 5.13806 4.34571 5.08088 4.39447L5.08039 4.39489C3.93589 5.37096 2.5 6.59552 2.5 8.5Z\" />";
827
+ };
828
+ readonly tenants: {
829
+ readonly box: 12;
830
+ readonly svg: "<path d=\"M4 3.5H2.5V2.5H4V3.5Z\" />\n\t\t\t\t\t<path d=\"M6 3.5H4.5V2.5H6V3.5Z\" />\n\t\t\t\t\t<path d=\"M4 5H2.5V4H4V5Z\" />\n\t\t\t\t\t<path d=\"M6 5H4.5V4H6V5Z\" />\n\t\t\t\t\t<path d=\"M9.5 6H8V5H9.5V6Z\" />\n\t\t\t\t\t<path d=\"M9.5 7.5H8V6.5H9.5V7.5Z\" />\n\t\t\t\t\t<path d=\"M4 6.5H2.5V5.5H4V6.5Z\" />\n\t\t\t\t\t<path d=\"M6 6.5H4.5V5.5H6V6.5Z\" />\n\t\t\t\t\t<path d=\"M4 8H2.5V7H4V8Z\" />\n\t\t\t\t\t<path d=\"M6 8H4.5V7H6V8Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1 2C1 1.44772 1.44772 1 2 1H6.5C7.05228 1 7.5 1.44772 7.5 2V3.5H10C10 3.5 11 3.5 11 4.5V11H1V2ZM2.5 2C2 2 2 2.5 2 2.5V10H3.5V8.75C3.5 8.61193 3.61193 8.5 3.75 8.5H4.75C4.88807 8.5 5 8.61193 5 8.75V10H6.5V2.5C6.5 2 6 2 6 2H2.5ZM10 10V5C10 4.5 9.5 4.5 9.5 4.5H7.5V10H8V8.75C8 8.61193 8.11193 8.5 8.25 8.5H9.25C9.38807 8.5 9.5 8.61193 9.5 8.75V10H10Z\" />";
831
+ };
832
+ readonly text: {
833
+ readonly box: 12;
834
+ readonly svg: "<path d=\"M9 3C9 3.27614 8.77614 3.5 8.5 3.5H6.5V9C6.5 9.27614 6.27614 9.5 6 9.5C5.72386 9.5 5.5 9.27614 5.5 9V3.5H3.5C3.22386 3.5 3 3.27614 3 3C3 2.72386 3.22386 2.5 3.5 2.5H8.5C8.77614 2.5 9 2.72386 9 3Z\" />";
835
+ };
836
+ readonly tick: {
837
+ readonly box: 12;
838
+ readonly svg: "<path d=\"M10,1.44,4.56,7,2,4.59.24,6.37l4.32,4.19,7.2-7.34Z\"/>";
839
+ };
840
+ readonly 'unit-of-measure': {
841
+ readonly box: 12;
842
+ readonly svg: "<path d=\"M5.625 5.5C5.55596 5.5 5.5 5.55596 5.5 5.625V6.375C5.5 6.44404 5.55596 6.5 5.625 6.5H6.375C6.44404 6.5 6.5 6.44404 6.5 6.375V5.625C6.5 5.55596 6.44404 5.5 6.375 5.5H5.625Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4 3.5C3.72386 3.5 3.5 3.72386 3.5 4V8C3.5 8.27614 3.72386 8.5 4 8.5H8C8.27614 8.5 8.5 8.27614 8.5 8V4C8.5 3.72386 8.27614 3.5 8 3.5H4ZM4.75 4.5C4.61193 4.5 4.5 4.61193 4.5 4.75V7.25C4.5 7.38807 4.61193 7.5 4.75 7.5H7.25C7.38807 7.5 7.5 7.38807 7.5 7.25V4.75C7.5 4.61193 7.38807 4.5 7.25 4.5H4.75Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.5 1.5C1.94772 1.5 1.5 1.94772 1.5 2.5V9.5C1.5 10.0523 1.94772 10.5 2.5 10.5H9.5C10.0523 10.5 10.5 10.0523 10.5 9.5V2.5C10.5 1.94772 10.0523 1.5 9.5 1.5H2.5ZM3 2.5C2.72386 2.5 2.5 2.72386 2.5 3V9C2.5 9.27614 2.72386 9.5 3 9.5H9C9.27614 9.5 9.5 9.27614 9.5 9V3C9.5 2.72386 9.27614 2.5 9 2.5H3Z\" />";
843
+ };
844
+ readonly upload: {
845
+ readonly box: 12;
846
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.93692 1.3575C5.78884 1.33878 5.63399 1.38627 5.52028 1.49998L3.64645 3.37381C3.45118 3.56907 3.45118 3.88566 3.64645 4.08092C3.84171 4.27618 4.15829 4.27618 4.35355 4.08092L5.50492 2.92955C5.50168 2.95256 5.5 2.97607 5.5 2.99998V7.99998C5.5 8.27612 5.72386 8.49998 6 8.49998C6.27614 8.49998 6.5 8.27612 6.5 7.99998V3.06063L7.52029 4.08092C7.71555 4.27618 8.03213 4.27618 8.22739 4.08092C8.42266 3.88566 8.42266 3.56907 8.22739 3.37381L6.35356 1.49998C6.23985 1.38627 6.085 1.33878 5.93692 1.3575ZM5.94261 2.50324L5.93692 2.49755L5.92957 2.5049C5.9339 2.50429 5.93824 2.50373 5.94261 2.50324Z\" />\n\t\t\t\t\t<path d=\"M11 2.49998C11 2.22384 10.7761 1.99998 10.5 1.99998C10.2239 1.99998 10 2.22384 10 2.49998V9.49998C10 9.77612 9.77614 9.99998 9.5 9.99998H2.5C2.22386 9.99998 2 9.77612 2 9.49998V2.49998H1V9.49998C1 10.3284 1.67157 11 2.5 11H9.5C10.3284 11 11 10.3284 11 9.49998V2.49998Z\" />";
847
+ };
848
+ readonly 'use-type': {
849
+ readonly box: 12;
850
+ readonly svg: "<path d=\"M4 1.5H1.5V4H2.5V2.5H4V1.5Z\" />\n\t\t\t\t\t<path d=\"M1.5 5V7.5H4V6.5H2.5L2.5 5H1.5Z\" />\n\t\t\t\t\t<path d=\"M7.5 1.5H5V2.5H6.5V4H7.5V1.5Z\" />\n\t\t\t\t\t<path d=\"M8.5 4.5H10.5V7H9.5V5.5H8.5V4.5Z\" />\n\t\t\t\t\t<path d=\"M7.5 7.5V5H6.5V6.5H5V7.5H7.5Z\" />\n\t\t\t\t\t<path d=\"M10.5 8V10.5H6.5V9.5H9.5V8H10.5Z\" />\n\t\t\t\t\t<path d=\"M3 10.5H5.5V9.5H4V8.5H3L3 10.5Z\" />";
851
+ };
852
+ readonly 'user-3': {
853
+ readonly box: 12;
854
+ readonly svg: "<path d=\"M10.5 8.50011V10.5001C10.5 10.7763 10.2761 11.0001 10 11.0001C9.72386 11.0001 9.5 10.7763 9.5 10.5001V8.5C9.5 7.94772 9.05228 7.5 8.5 7.5C7.77593 7.5 6.83141 6.80095 6.75 5.62783C6.76253 5.33382 6.81066 5.18493 6.99559 5C7.24559 4.75 7.5 4.25 7.5 3.5C7.5 2.67157 6.82843 2 6 2C5.17157 2 4.5 2.67157 4.5 3.5C4.5 4.25 4.75441 4.75 5.00441 5C5.18934 5.18493 5.23747 5.33382 5.25 5.62783C5.16859 6.80095 4.22407 7.5 3.5 7.5C2.94772 7.5 2.5 7.94772 2.5 8.5V10.5C2.5 10.7761 2.27614 11.0001 2 11.0001C1.72386 11.0001 1.5 10.7763 1.5 10.5001V8.50011C1.5 7.39554 2.39543 6.50011 3.5 6.50011C4.25 6.5 4.42144 5.62783 4.25441 5.5C3.65743 5.04313 3.5 4.3098 3.5 3.5C3.5 2.11929 4.61929 1 6 1C7.38071 1 8.5 2.11929 8.5 3.5C8.5 4.31264 8.34615 5.04357 7.74559 5.50018C7.5 5.62783 7.99559 6.5 8.74559 6.50011C9.85016 6.50011 10.5 7.39554 10.5 8.50011Z\" />";
855
+ };
856
+ readonly user: {
857
+ readonly box: 12;
858
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.5 8.50011V10.5001C10.5 10.7763 10.2761 11.0001 10 11.0001H2C1.72386 11.0001 1.5 10.7763 1.5 10.5001V8.50011C1.5 7.39554 2.39543 6.50011 3.5 6.50011C4.25 6.5 4.42144 5.62783 4.25441 5.5C3.65743 5.04313 3.5 4.3098 3.5 3.5C3.5 2.11929 4.61929 1 6 1C7.38071 1 8.5 2.11929 8.5 3.5C8.5 4.31264 8.34615 5.04357 7.74559 5.50018C7.5 5.62783 7.99559 6.5 8.74559 6.50011C9.85016 6.50011 10.5 7.39554 10.5 8.50011ZM9.5 8.5C9.5 7.94772 9.05228 7.5 8.5 7.5C7.77593 7.5 6.83141 6.80095 6.75 5.62783C6.76253 5.33382 6.81066 5.18493 6.99559 5C7.24559 4.75 7.5 4.25 7.5 3.5C7.5 2.67157 6.82843 2 6 2C5.17157 2 4.5 2.67157 4.5 3.5C4.5 4.25 4.75441 4.75 5.00441 5C5.18934 5.18493 5.23747 5.33382 5.25 5.62783C5.16859 6.80095 4.22407 7.5 3.5 7.5C2.94772 7.5 2.5 7.94772 2.5 8.5V9.75C2.5 9.88807 2.61193 10 2.75 10H9.25C9.38807 10 9.5 9.88807 9.5 9.75V8.5Z\" />";
859
+ };
860
+ readonly video: {
861
+ readonly box: 12;
862
+ readonly svg: "<path d=\"M9.5 3H9V3.5H9.5V3Z\" />\n\t\t\t\t\t<path d=\"M9 4H9.5V4.5H9V4Z\" />\n\t\t\t\t\t<path d=\"M9.5 5H9V5.5H9.5V5Z\" />\n\t\t\t\t\t<path d=\"M9 6H9.5V6.5H9V6Z\" />\n\t\t\t\t\t<path d=\"M9.5 7H9V7.5H9.5V7Z\" />\n\t\t\t\t\t<path d=\"M9 8H9.5V8.5H9V8Z\" />\n\t\t\t\t\t<path d=\"M3 3H2.5V3.5H3V3Z\" />\n\t\t\t\t\t<path d=\"M2.5 4H3V4.5H2.5V4Z\" />\n\t\t\t\t\t<path d=\"M3 5H2.5V5.5H3V5Z\" />\n\t\t\t\t\t<path d=\"M2.5 6H3V6.5H2.5V6Z\" />\n\t\t\t\t\t<path d=\"M3 7H2.5V7.5H3V7Z\" />\n\t\t\t\t\t<path d=\"M2.5 8H3V8.5H2.5V8Z\" />\n\t\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1 2.5C1 1.94772 1.44772 1.5 2 1.5H10C10.5523 1.5 11 1.94772 11 2.5V9.5C11 10.0523 10.5523 10.5 10 10.5H2C1.44772 10.5 1 10.0523 1 9.5V2.5ZM4 2.5H8V5.5H4V2.5ZM4 6.5V9.5H8V6.5H4ZM8.5 2.5H10V9.5H8.5V2.5ZM3.5 2.5H2V9.5H3.5V2.5Z\" />";
863
+ };
864
+ readonly warehouse: {
865
+ readonly box: 12;
866
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.5 4.58235L5.69615 1.58235C5.69615 1.58235 6.00402 1.39706 6.32495 1.58235L11.5211 4.58235L11.0211 5.44838L10.5 5.14752V10.5H1.5V5.1597L1 5.44838L0.5 4.58235ZM2.5 4.58235V9.5H4.25V6.5C4.25 6.22386 4.47386 6 4.75 6H7.25C7.52614 6 7.75 6.22386 7.75 6.5V9.5H9.5V4.57017L6.01055 2.55553L2.5 4.58235ZM6.75 7.25V9.5H5.25V7.25C5.25 7.11193 5.36193 7 5.5 7H6.5C6.63807 7 6.75 7.11193 6.75 7.25Z\" />";
867
+ };
868
+ readonly 'window-switcher': {
869
+ readonly box: 24;
870
+ readonly svg: "<path d=\"M2 4c0-1.10457.89543-2 2-2h11c1.1046 0 2 .89543 2 2v6h-2V4H4v8h2v2H4c-1.10457 0-2-.8954-2-2V4Z\"/><path fill-rule=\"evenodd\" d=\"M7 13c0-1.1046.89543-2 2-2h11c1.1046 0 2 .8954 2 2v7c0 1.1046-.8954 2-2 2H9c-1.10457 0-2-.8954-2-2v-7Zm13 0H9v7h11v-7Z\" clip-rule=\"evenodd\"/><path d=\"M10 14.5c0-.2761.2239-.5.5-.5h8c.2761 0 .5.2239.5.5s-.2239.5-.5.5h-8c-.2761 0-.5-.2239-.5-.5Zm0 2c0-.2761.2239-.5.5-.5h8c.2761 0 .5.2239.5.5s-.2239.5-.5.5h-8c-.2761 0-.5-.2239-.5-.5Zm0 2c0-.2761.2239-.5.5-.5h8c.2761 0 .5.2239.5.5s-.2239.5-.5.5h-8c-.2761 0-.5-.2239-.5-.5Z\"/>";
871
+ };
872
+ readonly zones: {
873
+ readonly box: 12;
874
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.5 1.5H1.5V10.5H10.5V1.5ZM9.5 4.5V2.5H2.5V4.5H9.5ZM5 8V9.5H9.5V8H5ZM2.5 9.5V8H4V9.5H2.5ZM5.5 5.5H2.5V7H5.5V5.5ZM6.5 5.5H9.5V7H6.5V5.5Z\" />";
875
+ };
876
+ readonly tape: {
877
+ readonly box: 24;
878
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M18 11.5C18 12.8807 16.8807 14 15.5 14C14.1193 14 13 12.8807 13 11.5C13 10.1193 14.1193 9 15.5 9C16.8807 9 18 10.1193 18 11.5ZM16.75 11.5C16.75 12.1904 16.1904 12.75 15.5 12.75C14.8096 12.75 14.25 12.1904 14.25 11.5C14.25 10.8096 14.8096 10.25 15.5 10.25C16.1904 10.25 16.75 10.8096 16.75 11.5Z\"/>\n\t\t\t\t<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.5 18C19.0899 18 22 15.0899 22 11.5C22 7.91015 19.0899 5 15.5 5C11.9101 5 9 7.91015 9 11.5C9 11.6682 9.00639 11.835 9.01894 12H4.83191L3 16V18H15V17.9811C15.165 17.9936 15.3318 18 15.5 18ZM6 14H9.49816C9.80993 14.7476 10.2573 15.4245 10.8096 16H5L6 14ZM15.5 15.8333C17.8932 15.8333 19.8333 13.8932 19.8333 11.5C19.8333 9.10677 17.8932 7.16667 15.5 7.16667C13.1068 7.16667 11.1667 9.10677 11.1667 11.5C11.1667 13.8932 13.1068 15.8333 15.5 15.8333Z\"/>";
879
+ };
880
+ readonly 'taped-box': {
881
+ readonly box: 24;
882
+ readonly svg: "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M17.4338 3C17.7851 3 18.1106 3.1843 18.2913 3.4855L20.8575 7.76249C20.9507 7.9179 21 8.09574 21 8.27698V20C21 20.5523 20.5523 21 20 21H4C3.44772 21 3 20.5523 3 20V8.27698C3 8.09574 3.04926 7.9179 3.14251 7.76249L5.7087 3.4855C5.88942 3.1843 6.21493 3 6.56619 3H17.4338ZM14.5 5H17.2L19 8H15.5L14.5 5ZM12.5 5H11.5L10.5 8V13H13.5V8L12.5 5ZM9.5 5H6.8L5 8H8.5L9.5 5ZM8.5 10H5V19H19V10H15.5V14C15.5 14.5523 15.0523 15 14.5 15H9.5C8.94772 15 8.5 14.5523 8.5 14V10Z\"/>";
883
+ };
884
+ };
885
+ declare const Icon: import("svelte").Component<IconProps, {}, "">;
886
+ type Icon = ReturnType<typeof Icon>;
887
+ export default Icon;