@apple-pie/slice 0.0.1 → 0.0.2

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 (218) hide show
  1. package/dist/cjs/chunks/Avatar-8-wPWe0V.js +68 -0
  2. package/dist/cjs/chunks/AvatarGroup-CVKmgBbD.js +39 -0
  3. package/dist/cjs/chunks/Badge-CMapJCij.js +41 -0
  4. package/dist/cjs/chunks/CheckBox-7AACxrdZ.js +76 -0
  5. package/dist/cjs/chunks/DivInput-BKKJTFeV.js +204 -0
  6. package/dist/cjs/chunks/DocIcons-BRWOzK96.js +41 -0
  7. package/dist/cjs/chunks/Dot-Dnr9M9na.js +80 -0
  8. package/dist/cjs/chunks/DrggablePanel-C6TPsDB-.js +302 -0
  9. package/dist/cjs/chunks/DropDown-D9sf_m2I.js +154 -0
  10. package/dist/cjs/chunks/EditorButtonBar-CUNDgRQd.js +244 -0
  11. package/dist/cjs/chunks/ErrorSummary-Dv44onsV.js +42 -0
  12. package/dist/cjs/chunks/FlexDiv-DZBpswHV.js +103 -0
  13. package/dist/cjs/chunks/Grouper-_kd2nU78.js +50 -0
  14. package/dist/cjs/chunks/IconButton-BfsPlKTb.js +84 -0
  15. package/dist/cjs/chunks/Logos-DSlAUz8l.js +119 -0
  16. package/dist/cjs/chunks/MessageInput-CiHFo2j8.js +399 -0
  17. package/dist/cjs/chunks/Overlay-DwCPvGB5.js +45 -0
  18. package/dist/cjs/chunks/Pager-CFtZ0IIW.js +42 -0
  19. package/dist/cjs/chunks/ProgressIndicator-C5oB7Mky.js +121 -0
  20. package/dist/cjs/chunks/RadioButton-e_y2qiPE.js +65 -0
  21. package/dist/cjs/chunks/RadioButtonList-I81UwHmM.js +116 -0
  22. package/dist/cjs/chunks/Slider-C-gn7Sby.js +285 -0
  23. package/dist/cjs/chunks/Spacer-BEY2-_PB.js +16 -0
  24. package/dist/cjs/chunks/Switch-CtkFtogd.js +43 -0
  25. package/dist/cjs/chunks/TabBar-D3bj4pjj.js +176 -0
  26. package/dist/cjs/chunks/TextArea-B1oKK3_b.js +153 -0
  27. package/dist/cjs/chunks/TextField-CiQdPP5E.js +248 -0
  28. package/dist/cjs/chunks/Tip-C2pzExut.js +91 -0
  29. package/dist/cjs/chunks/Toast-DrijUwoL.js +141 -0
  30. package/dist/cjs/chunks/UIButton-CH4p-8yq.js +317 -0
  31. package/dist/cjs/chunks/UIButtonBar-0fHPB0ww.js +58 -0
  32. package/dist/cjs/chunks/UICard-DBDSyT7E.js +36 -0
  33. package/dist/cjs/chunks/UIChip-kjhvRrOV.js +93 -0
  34. package/dist/cjs/chunks/UIFileIcon-ZrbDIeYz.js +54 -0
  35. package/dist/cjs/chunks/UILabel-DkBE2AIt.js +116 -0
  36. package/dist/cjs/chunks/_types-CoWzQFsT.js +714 -0
  37. package/dist/cjs/chunks/sharedTypes-BvTjh6M5.js +9 -0
  38. package/dist/cjs/chunks/style-inject.es-XZHJH68X.js +30 -0
  39. package/dist/cjs/chunks/tipStore-C9oV9SIh.js +23 -0
  40. package/dist/cjs/chunks/toastStore-C-ETP9H6.js +23 -0
  41. package/dist/cjs/chunks/tslib.es6-4H29ixHs.js +48 -0
  42. package/dist/cjs/chunks/utils-CbayehuI.js +126 -0
  43. package/dist/cjs/hooks/useDoubleClick.js +26 -0
  44. package/dist/cjs/hooks/useKeyboardShortcuts.js +42 -0
  45. package/dist/cjs/hooks/useLastUpdated.js +53 -0
  46. package/dist/cjs/hooks/useLocalStore.js +52 -0
  47. package/dist/cjs/hooks/useObserveResize.js +56 -0
  48. package/dist/cjs/hooks/useObserveTheme.js +36 -0
  49. package/dist/cjs/hooks/useTheme.js +85 -0
  50. package/dist/cjs/hooks/useToolTip.js +36 -0
  51. package/dist/cjs/hooks/useTrackRenders.js +38 -0
  52. package/dist/cjs/hooks/useWindow.js +64 -0
  53. package/dist/cjs/hooks.js +32 -0
  54. package/dist/cjs/index.js +121 -0
  55. package/dist/cjs/providers/ThemeProvider.js +51 -0
  56. package/dist/cjs/providers.js +13 -0
  57. package/dist/cjs/stores/tip.js +12 -0
  58. package/dist/cjs/stores/toast.js +12 -0
  59. package/dist/cjs/stores.js +18 -0
  60. package/dist/cjs/theme/colors.js +383 -0
  61. package/dist/cjs/theme/corners.js +14 -0
  62. package/dist/cjs/theme/themes.js +23 -0
  63. package/dist/cjs/theme/type.js +316 -0
  64. package/dist/cjs/theme.js +13 -0
  65. package/dist/cjs/uikit/Avatar.js +11 -0
  66. package/dist/cjs/uikit/AvatarGroup.js +12 -0
  67. package/dist/cjs/uikit/Badge.js +11 -0
  68. package/dist/cjs/uikit/CheckBox.js +21 -0
  69. package/dist/cjs/uikit/DivInput.js +13 -0
  70. package/dist/cjs/uikit/DocIcon.js +17 -0
  71. package/dist/cjs/uikit/Dot.js +12 -0
  72. package/dist/cjs/uikit/DraggablePanel.js +20 -0
  73. package/dist/cjs/uikit/DropDown.js +20 -0
  74. package/dist/cjs/uikit/EditorButtonBar.js +27 -0
  75. package/dist/cjs/uikit/ErrorSummary.js +12 -0
  76. package/dist/cjs/uikit/FlexDiv.js +12 -0
  77. package/dist/cjs/uikit/Grouper.js +22 -0
  78. package/dist/cjs/uikit/Icon.js +22 -0
  79. package/dist/cjs/uikit/IconButton.js +24 -0
  80. package/dist/cjs/uikit/Logos.js +17 -0
  81. package/dist/cjs/uikit/MessageInput.js +29 -0
  82. package/dist/cjs/uikit/Overlay.js +12 -0
  83. package/dist/cjs/uikit/Pager.js +12 -0
  84. package/dist/cjs/uikit/Progress.js +20 -0
  85. package/dist/cjs/uikit/RadioButton.js +25 -0
  86. package/dist/cjs/uikit/RadioButtonList.js +26 -0
  87. package/dist/cjs/uikit/Slider.js +13 -0
  88. package/dist/cjs/uikit/Spacer.js +10 -0
  89. package/dist/cjs/uikit/Switch.js +12 -0
  90. package/dist/cjs/uikit/TabBar.js +25 -0
  91. package/dist/cjs/uikit/TextArea.js +26 -0
  92. package/dist/cjs/uikit/Textfield.js +27 -0
  93. package/dist/cjs/uikit/Tip.js +13 -0
  94. package/dist/cjs/uikit/Toast.js +25 -0
  95. package/dist/cjs/uikit/UIButton.js +25 -0
  96. package/dist/cjs/uikit/UIButtonBar.js +25 -0
  97. package/dist/cjs/uikit/UICard.js +20 -0
  98. package/dist/cjs/uikit/UIChip.js +21 -0
  99. package/dist/cjs/uikit/UIFileIcon.js +17 -0
  100. package/dist/cjs/uikit/UILabel.js +18 -0
  101. package/dist/esm/chunks/Avatar-D_muqPrW.js +66 -0
  102. package/dist/esm/chunks/AvatarGroup-D8Xmrn52.js +37 -0
  103. package/dist/esm/chunks/Badge-PPf5Uvw3.js +39 -0
  104. package/dist/esm/chunks/CheckBox-CswFI0Xc.js +74 -0
  105. package/dist/esm/chunks/DivInput-iKFkeU2F.js +202 -0
  106. package/dist/esm/chunks/DocIcons-CbOX4n8Y.js +39 -0
  107. package/dist/esm/chunks/Dot-B84UVs2e.js +78 -0
  108. package/dist/esm/chunks/DrggablePanel-CYYwTmFd.js +300 -0
  109. package/dist/esm/chunks/DropDown-D4t6EhKL.js +152 -0
  110. package/dist/esm/chunks/EditorButtonBar-FnMa8Zv2.js +242 -0
  111. package/dist/esm/chunks/ErrorSummary-DhU5SKPt.js +40 -0
  112. package/dist/esm/chunks/FlexDiv-CmMpORgn.js +101 -0
  113. package/dist/esm/chunks/Grouper-BbreOXI9.js +48 -0
  114. package/dist/esm/chunks/IconButton-CguHGkBM.js +82 -0
  115. package/dist/esm/chunks/Logos-DwZP-TR2.js +117 -0
  116. package/dist/esm/chunks/MessageInput-DMHzCwjO.js +397 -0
  117. package/dist/esm/chunks/Overlay-CCBy7n7H.js +43 -0
  118. package/dist/esm/chunks/Pager-BsSti93V.js +40 -0
  119. package/dist/esm/chunks/ProgressIndicator-BVukxMU6.js +118 -0
  120. package/dist/esm/chunks/RadioButton-B5BxQI0R.js +63 -0
  121. package/dist/esm/chunks/RadioButtonList-C2z8McAD.js +114 -0
  122. package/dist/esm/chunks/Slider-C-PcWqTz.js +283 -0
  123. package/dist/esm/chunks/Spacer-DbZSG5x3.js +14 -0
  124. package/dist/esm/chunks/Switch-DjfrSiQz.js +41 -0
  125. package/dist/esm/chunks/TabBar-BSBcgTbd.js +174 -0
  126. package/dist/esm/chunks/TextArea-COM0UPo2.js +151 -0
  127. package/dist/esm/chunks/TextField-Bh24bRWs.js +246 -0
  128. package/dist/esm/chunks/Tip-Ct19Ljul.js +89 -0
  129. package/dist/esm/chunks/Toast-BR0oMX6z.js +139 -0
  130. package/dist/esm/chunks/UIButton-DKx-_O8h.js +315 -0
  131. package/dist/esm/chunks/UIButtonBar-BNdA5eVq.js +56 -0
  132. package/dist/esm/chunks/UICard-Dn5f3wg8.js +34 -0
  133. package/dist/esm/chunks/UIChip-DqnGeVyR.js +91 -0
  134. package/dist/esm/chunks/UIFileIcon-qGxIPsJJ.js +52 -0
  135. package/dist/esm/chunks/UILabel-RnbodPCS.js +114 -0
  136. package/dist/esm/chunks/_types-BaYeLEWK.js +712 -0
  137. package/dist/esm/chunks/sharedTypes-BfZzG1KX.js +9 -0
  138. package/dist/esm/chunks/style-inject.es-tgCJW-Cu.js +28 -0
  139. package/dist/esm/chunks/tipStore-nBYJ6tmE.js +17 -0
  140. package/dist/esm/chunks/toastStore-r3pvNa28.js +17 -0
  141. package/dist/esm/chunks/tslib.es6-0pkUdtrF.js +45 -0
  142. package/dist/esm/chunks/utils-BRZK2Drn.js +119 -0
  143. package/dist/esm/hooks/useDoubleClick.js +24 -0
  144. package/dist/esm/hooks/useKeyboardShortcuts.js +40 -0
  145. package/dist/esm/hooks/useLastUpdated.js +51 -0
  146. package/dist/esm/hooks/useLocalStore.js +50 -0
  147. package/dist/esm/hooks/useObserveResize.js +54 -0
  148. package/dist/esm/hooks/useObserveTheme.js +34 -0
  149. package/dist/esm/hooks/useTheme.js +83 -0
  150. package/dist/esm/hooks/useToolTip.js +34 -0
  151. package/dist/esm/hooks/useTrackRenders.js +36 -0
  152. package/dist/esm/hooks/useWindow.js +62 -0
  153. package/dist/esm/hooks.js +14 -0
  154. package/dist/esm/index.js +57 -0
  155. package/dist/esm/providers/ThemeProvider.js +49 -0
  156. package/dist/esm/providers.js +7 -0
  157. package/dist/esm/stores/tip.js +2 -0
  158. package/dist/esm/stores/toast.js +2 -0
  159. package/dist/esm/stores.js +3 -0
  160. package/dist/esm/theme/colors.js +377 -0
  161. package/dist/esm/theme/corners.js +12 -0
  162. package/dist/esm/theme/themes.js +20 -0
  163. package/dist/esm/theme/type.js +312 -0
  164. package/dist/esm/theme.js +4 -0
  165. package/dist/esm/uikit/Avatar.js +5 -0
  166. package/dist/esm/uikit/AvatarGroup.js +6 -0
  167. package/dist/esm/uikit/Badge.js +5 -0
  168. package/dist/esm/uikit/CheckBox.js +15 -0
  169. package/dist/esm/uikit/DivInput.js +7 -0
  170. package/dist/esm/uikit/DocIcon.js +11 -0
  171. package/dist/esm/uikit/Dot.js +6 -0
  172. package/dist/esm/uikit/DraggablePanel.js +14 -0
  173. package/dist/esm/uikit/DropDown.js +14 -0
  174. package/dist/esm/uikit/EditorButtonBar.js +21 -0
  175. package/dist/esm/uikit/ErrorSummary.js +6 -0
  176. package/dist/esm/uikit/FlexDiv.js +6 -0
  177. package/dist/esm/uikit/Grouper.js +16 -0
  178. package/dist/esm/uikit/Icon.js +12 -0
  179. package/dist/esm/uikit/IconButton.js +18 -0
  180. package/dist/esm/uikit/Logos.js +11 -0
  181. package/dist/esm/uikit/MessageInput.js +23 -0
  182. package/dist/esm/uikit/Overlay.js +6 -0
  183. package/dist/esm/uikit/Pager.js +6 -0
  184. package/dist/esm/uikit/Progress.js +13 -0
  185. package/dist/esm/uikit/RadioButton.js +19 -0
  186. package/dist/esm/uikit/RadioButtonList.js +20 -0
  187. package/dist/esm/uikit/Slider.js +7 -0
  188. package/dist/esm/uikit/Spacer.js +4 -0
  189. package/dist/esm/uikit/Switch.js +6 -0
  190. package/dist/esm/uikit/TabBar.js +19 -0
  191. package/dist/esm/uikit/TextArea.js +20 -0
  192. package/dist/esm/uikit/Textfield.js +21 -0
  193. package/dist/esm/uikit/Tip.js +7 -0
  194. package/dist/esm/uikit/Toast.js +15 -0
  195. package/dist/esm/uikit/UIButton.js +19 -0
  196. package/dist/esm/uikit/UIButtonBar.js +19 -0
  197. package/dist/esm/uikit/UICard.js +14 -0
  198. package/dist/esm/uikit/UIChip.js +15 -0
  199. package/dist/esm/uikit/UIFileIcon.js +11 -0
  200. package/dist/esm/uikit/UILabel.js +12 -0
  201. package/dist/types/index.d.ts +1 -1
  202. package/dist/types/stores/index.d.ts +2 -0
  203. package/dist/types/stores/tip/_types.d.ts +8 -0
  204. package/dist/types/stores/tip/index.d.ts +2 -0
  205. package/dist/types/stores/tip/tipStore.d.ts +12 -0
  206. package/dist/types/stores/toast/_types.d.ts +14 -0
  207. package/dist/types/stores/toast/index.d.ts +2 -0
  208. package/dist/types/stores/toast/toastStore.d.ts +12 -0
  209. package/dist/types/uikit/FlexDiv/FlexDiv.d.ts +2 -0
  210. package/dist/types/uikit/FlexDiv/_types.d.ts +1 -0
  211. package/dist/types/uikit/Toast/Toast.d.ts +1 -1
  212. package/dist/types/uikit/Toast/_types.d.ts +7 -1
  213. package/dist/types/uikit/Toast/index.d.ts +1 -1
  214. package/package.json +79 -5
  215. package/dist/index.esm.js +0 -5859
  216. package/dist/index.esm.js.map +0 -1
  217. package/dist/index.js +0 -5911
  218. package/dist/index.js.map +0 -1
@@ -0,0 +1,714 @@
1
+ 'use strict';
2
+
3
+ var tslib_es6 = require('./tslib.es6-4H29ixHs.js');
4
+ var jsxRuntime = require('react/jsx-runtime');
5
+ var React = require('react');
6
+ var hooks_useTheme = require('../hooks/useTheme.js');
7
+ require('../theme/colors.js');
8
+ require('../hooks/useWindow.js');
9
+ var utils = require('./utils-CbayehuI.js');
10
+
11
+ /**
12
+ * Static icon registry created once at module load.
13
+ * Each entry stores only icon line content renderers.
14
+ */
15
+ const STATIC_ICON_REGISTRY = new Map([
16
+ [
17
+ 'task list',
18
+ {
19
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M11 6L21 6", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M11 12L21 12", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M11 18L21 18", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M3 7.39286C3 7.39286 4 8.04466 4.5 9C4.5 9 6 5.25 8 4", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntime.jsx("path", { d: "M3 18.3929C3 18.3929 4 19.0447 4.5 20C4.5 20 6 16.25 8 15", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" })] })),
20
+ },
21
+ ],
22
+ [
23
+ 'highlight',
24
+ {
25
+ line: ({ strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 0 0 L 24 0 L 24 24 L 0 24 Z", fill: "transparent" }), jsxRuntime.jsx("path", { d: "M 20.825 11.376 C 20.713 11.263 20.56 11.199 20.401 11.199 C 20.241 11.199 20.089 11.263 19.976 11.376 L 16.201 15.15 L 9.85 8.799 L 13.626 5.025 C 13.86 4.79 13.86 4.41 13.626 4.176 C 13.391 3.941 13.011 3.942 12.777 4.176 L 9.002 7.951 C 8.629 8.324 8.543 8.897 8.791 9.362 L 7.202 10.951 C 6.734 11.419 6.734 12.179 7.202 12.647 L 7.554 12.999 L 3.178 17.374 C 3.03 17.521 2.969 17.734 3.017 17.937 C 3.065 18.14 3.215 18.303 3.413 18.368 L 8.812 20.168 C 8.95 20.215 9.099 20.209 9.232 20.153 C 9.305 20.123 9.371 20.079 9.427 20.023 L 12.002 17.447 L 12.353 17.799 C 12.822 18.267 13.581 18.267 14.05 17.799 L 15.638 16.211 C 16.104 16.458 16.677 16.372 17.049 15.999 L 20.825 12.224 C 21.06 11.99 21.06 11.61 20.825 11.376 Z M 13.201 16.95 L 8.05 11.799 L 9.602 10.248 L 14.753 15.399 Z", fill: strokeColor })] })),
26
+ },
27
+ ],
28
+ [
29
+ 'bold',
30
+ {
31
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5 6C5 4.58579 5 3.87868 5.43934 3.43934C5.87868 3 6.58579 3 8 3H12.5789C15.0206 3 17 5.01472 17 7.5C17 9.98528 15.0206 12 12.5789 12H5V6Z", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntime.jsx("path", { d: "M12.4286 12H13.6667C16.0599 12 18 14.0147 18 16.5C18 18.9853 16.0599 21 13.6667 21H8C6.58579 21 5.87868 21 5.43934 20.5607C5 20.1213 5 19.4142 5 18V12", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" })] })),
32
+ },
33
+ ],
34
+ [
35
+ 'italic',
36
+ {
37
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M12 4H19", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntime.jsx("path", { d: "M8 20L16 4", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntime.jsx("path", { d: "M5 20H12", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" })] })),
38
+ },
39
+ ],
40
+ [
41
+ 'underline',
42
+ {
43
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M5.5 3V11.5C5.5 15.0899 8.41015 18 12 18C15.5899 18 18.5 15.0899 18.5 11.5V3", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntime.jsx("path", { d: "M3 21H21", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round" })] })),
44
+ },
45
+ ],
46
+ [
47
+ 'strike',
48
+ {
49
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M4 12H20", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntime.jsx("path", { d: "M17.5 7.66667C17.5 5.08934 15.0376 3 12 3C8.96243 3 6.5 5.08934 6.5 7.66667C6.5 8.15279 6.55336 8.59783 6.6668 9M6 16.3333C6 18.9107 8.68629 21 12 21C15.3137 21 18 19.6667 18 16.3333C18 13.9404 16.9693 12.5782 14.9079 12", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round" })] })),
50
+ },
51
+ ],
52
+ [
53
+ 'link',
54
+ {
55
+ line: ({ strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 0 0 L 24 0 L 24 24 L 0 24 Z", fill: "transparent" }), jsxRuntime.jsx("path", { d: "M 12.251 18.425 C 15.169 18.425 17.041 16.923 17.041 14.629 C 17.041 12.8 15.925 11.834 13.323 11.219 L 11.891 10.876 C 10.106 10.445 9.35 9.9 9.35 8.924 C 9.35 7.694 10.562 6.824 12.241 6.824 C 13.753 6.824 14.834 7.509 15.265 8.722 C 15.405 9.056 15.616 9.214 15.968 9.214 C 16.425 9.214 16.706 8.951 16.706 8.511 C 16.706 8.379 16.688 8.239 16.653 8.107 C 16.26 6.507 14.501 5.4 12.242 5.4 C 9.597 5.4 7.69 6.912 7.69 9.039 C 7.69 10.77 8.78 11.781 11.17 12.343 L 12.788 12.73 C 14.616 13.17 15.381 13.767 15.381 14.822 C 15.381 16.087 14.089 17.01 12.252 17.01 C 10.626 17.01 9.404 16.263 8.956 15.015 C 8.798 14.637 8.605 14.47 8.236 14.47 C 7.761 14.47 7.471 14.76 7.471 15.217 C 7.471 15.376 7.497 15.543 7.541 15.71 C 8.007 17.37 9.835 18.425 12.252 18.425 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 5.36 11.75 L 19.15 11.75 C 19.352 11.75 19.51 11.592 19.51 11.39 C 19.511 11.294 19.474 11.202 19.406 11.134 C 19.338 11.066 19.246 11.029 19.15 11.03 L 5.36 11.03 C 5.264 11.029 5.172 11.066 5.104 11.134 C 5.037 11.202 4.999 11.294 5 11.39 C 5 11.592 5.158 11.75 5.36 11.75 Z", fill: strokeColor })] })),
56
+ },
57
+ ],
58
+ [
59
+ 'bullet list',
60
+ {
61
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M8 5L20 5", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M4 5H4.00898", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntime.jsx("path", { d: "M4 12H4.00898", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntime.jsx("path", { d: "M4 19H4.00898", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntime.jsx("path", { d: "M8 12L20 12", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M8 19L20 19", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round" })] })),
62
+ },
63
+ ],
64
+ [
65
+ 'numbered list',
66
+ {
67
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M11 6L21 6", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M11 12L21 12", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M11 18L21 18", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round" }), jsxRuntime.jsx("path", { d: "M3 15H4.5C4.77879 15 4.91819 15 5.03411 15.0231C5.51014 15.1177 5.88225 15.4899 5.97694 15.9659C6 16.0818 6 16.2212 6 16.5C6 16.7788 6 16.9182 5.97694 17.0341C5.88225 17.5101 5.51014 17.8823 5.03411 17.9769C4.91819 18 4.77879 18 4.5 18C4.22121 18 4.08181 18 3.96589 18.0231C3.48986 18.1177 3.11775 18.4899 3.02306 18.9659C3 19.0818 3 19.2212 3 19.5V20.4C3 20.6828 3 20.8243 3.08787 20.9121C3.17574 21 3.31716 21 3.6 21H6", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntime.jsx("path", { d: "M3 3H4.2C4.36569 3 4.5 3.13431 4.5 3.3V9M4.5 9H3M4.5 9H6", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" })] })),
68
+ },
69
+ ],
70
+ [
71
+ 'sink',
72
+ {
73
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M15 4.5H20", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntime.jsx("path", { d: "M15 9.5H18", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntime.jsx("path", { d: "M15 14.5H20", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntime.jsx("path", { d: "M15 19.5H18", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntime.jsx("path", { d: "M11 3V21", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntime.jsx("path", { d: "M4 8.5L5.54218 9.74227C6.84739 10.7937 7.5 11.3193 7.5 12C7.5 12.6807 6.84739 13.2063 5.54218 14.2577L4 15.5", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" })] })),
74
+ },
75
+ ],
76
+ [
77
+ 'lift',
78
+ {
79
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M4 4.5H9", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntime.jsx("path", { d: "M6 9.5H9", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntime.jsx("path", { d: "M4 14.5H9", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntime.jsx("path", { d: "M6 19.5H9", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntime.jsx("path", { d: "M13 3V21", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntime.jsx("path", { d: "M20 8.5L18.4578 9.74227C17.1526 10.7937 16.5 11.3193 16.5 12C16.5 12.6807 17.1526 13.2063 18.4578 14.2577L20 15.5", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" })] })),
80
+ },
81
+ ],
82
+ [
83
+ 'code',
84
+ {
85
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M17 8L18.8398 9.85008C19.6133 10.6279 20 11.0168 20 11.5C20 11.9832 19.6133 12.3721 18.8398 13.1499L17 15", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntime.jsx("path", { d: "M7 8L5.16019 9.85008C4.38673 10.6279 4 11.0168 4 11.5C4 11.9832 4.38673 12.3721 5.16019 13.1499L7 15", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntime.jsx("path", { d: "M14.5 4L9.5 20", stroke: strokeColor, strokeWidth: stroke, strokeLinecap: "round", strokeLinejoin: "round" })] })),
86
+ },
87
+ ],
88
+ [
89
+ 'like',
90
+ {
91
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsx("path", { d: "M 13.447 16.354 C 13.167 16.759 12.706 17 12.214 17 L 3.5 17 C 2.672 17 2 16.328 2 15.5 L 2 8.5 C 2 7.672 2.672 7 3.5 7 L 4.343 7 C 4.762 7 5.161 6.825 5.445 6.517 L 9.265 2.379 C 9.883 1.71 11 2.147 11 3.058 L 11 7 L 16 7 C 16.828 7 17.5 7.672 17.5 8.5 L 17.5 10.031 C 17.5 10.336 17.407 10.634 17.233 10.885 Z M 5 6.5 L 5 17", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeMiterlimit: "10", strokeDasharray: "" })),
92
+ },
93
+ ],
94
+ [
95
+ 'unlike',
96
+ {
97
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsx("path", { d: "M 6.053 4.646 C 6.333 4.241 6.794 4 7.286 4 L 16 4 C 16.828 4 17.5 4.672 17.5 5.5 L 17.5 12.5 C 17.5 13.328 16.828 14 16 14 L 15.157 14 C 14.738 14 14.339 14.175 14.055 14.483 L 10.235 18.621 C 9.617 19.29 8.5 18.853 8.5 17.942 L 8.5 14 L 3.5 14 C 2.672 14 2 13.328 2 12.5 L 2 10.969 C 2 10.664 2.093 10.366 2.267 10.115 Z M 14.5 14.5 L 14.5 4", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeMiterlimit: "10", strokeDasharray: "" })),
98
+ },
99
+ ],
100
+ [
101
+ 'stop',
102
+ {
103
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { d: "M 3 7.5 C 3 5.015 5.015 3 7.5 3 L 12.5 3 C 14.985 3 17 5.015 17 7.5 L 17 12.5 C 17 14.985 14.985 17 12.5 17 L 7.5 17 C 5.015 17 3 14.985 3 12.5 Z", fill: strokeColor })),
104
+ },
105
+ ],
106
+ [
107
+ 'copy',
108
+ {
109
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 0 0 L 20 0 L 20 20 L 0 20 Z", fill: "transparent" }), jsxRuntime.jsx("path", { d: "M 5 15 L 3.5 15 C 2.672 15 2 14.328 2 13.5 L 2 3.5 C 2 2.672 2.672 2 3.5 2 L 13.5 2 C 14.328 2 15 2.672 15 3.5 L 15 5", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeLinejoin: "round", strokeMiterlimit: '10' }), jsxRuntime.jsx("path", { d: "M 5 6.5 C 5 5.672 5.672 5 6.5 5 L 16.5 5 C 17.328 5 18 5.672 18 6.5 L 18 16.5 C 18 17.328 17.328 18 16.5 18 L 6.5 18 C 5.672 18 5 17.328 5 16.5 Z", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeLinejoin: "round", strokeMiterlimit: '10' })] })),
110
+ },
111
+ ],
112
+ [
113
+ 'font smaller',
114
+ {
115
+ line: ({ strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 0 0 L 20 0 L 20 20 L 0 20 Z", fill: "transparent" }), jsxRuntime.jsx("path", { d: "M 9.081 5 L 10.746 5 L 14.321 14.824 L 14.321 15.015 L 12.833 15.015 L 11.919 12.232 L 7.854 12.232 L 6.899 15.015 L 5.5 15.015 L 5.5 14.824 Z M 11.503 11.017 L 9.913 6.542 L 9.858 6.542 L 8.282 11.017 L 11.502 11.017 Z", fill: strokeColor })] })),
116
+ },
117
+ ],
118
+ [
119
+ 'font larger',
120
+ {
121
+ line: ({ strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 0 0 L 20 0 L 20 20 L 0 20 Z", fill: "transparent" }), jsxRuntime.jsx("path", { d: "M 8.872 3 L 11.137 3 L 16 16.733 L 16 17 L 13.976 17 L 12.733 13.109 L 7.202 13.109 L 5.903 17 L 4 17 L 4 16.733 Z M 12.167 11.411 L 10.004 5.155 L 9.929 5.155 L 7.785 11.411 L 12.166 11.411 Z", fill: strokeColor })] })),
122
+ },
123
+ ],
124
+ [
125
+ 'bar chart',
126
+ {
127
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 0 0 L 20 0 L 20 20 L 0 20 Z", fill: "transparent" }), jsxRuntime.jsx("path", { d: "M 2 2.5 L 2 17 L 18.5 17", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeLinejoin: "round" }), jsxRuntime.jsx("path", { d: "M 6.5 9 L 6.5 14", fill: "transparent", strokeWidth: stroke, stroke: strokeColor }), jsxRuntime.jsx("path", { d: "M 10.451 5 L 10.451 14", fill: "transparent", strokeWidth: stroke, stroke: strokeColor }), jsxRuntime.jsx("path", { d: "M 14.5 7 L 14.5 14", fill: "transparent", strokeWidth: stroke, stroke: strokeColor })] })),
128
+ },
129
+ ],
130
+ [
131
+ 'briefcase',
132
+ {
133
+ line: ({ strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 5 12 C 5 12.552 5.448 13 6 13 C 6.552 13 7 12.552 7 12 C 7 11.448 6.552 11 6 11 C 5.448 11 5 11.448 5 12 Z M 14 13 C 13.448 13 13 12.552 13 12 C 13 11.448 13.448 11 14 11 C 14.552 11 15 11.448 15 12 C 15 12.552 14.552 13 14 13 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 5.25 5 L 5.25 3.5 C 5.25 2.257 6.257 1.25 7.5 1.25 L 12.5 1.25 C 13.743 1.25 14.75 2.257 14.75 3.5 L 14.75 5 L 17.5 5 C 18.328 5 19 5.672 19 6.5 L 19 15.5 C 19 16.328 18.328 17 17.5 17 L 2.5 17 C 1.672 17 1 16.328 1 15.5 L 1 6.5 C 1 5.672 1.672 5 2.5 5 Z M 6.75 5 L 13.25 5 L 13.25 3.5 C 13.25 3.086 12.914 2.75 12.5 2.75 L 7.5 2.75 C 7.086 2.75 6.75 3.086 6.75 3.5 Z M 2.5 6.5 L 2.5 15.5 L 17.5 15.5 L 17.5 6.5 L 14.75 6.5 L 14.75 9 L 13.25 9 L 13.25 6.5 L 6.75 6.5 L 6.75 9 L 5.25 9 L 5.25 6.5 Z", fill: strokeColor })] })),
134
+ },
135
+ ],
136
+ [
137
+ 'globe location',
138
+ {
139
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs("g", { transform: "translate(2 2.5)", children: [jsxRuntime.jsx("path", { d: "M 7.619 15.238 C 3.411 15.238 0 11.827 0 7.619 C -0.003 5.575 0.819 3.616 2.278 2.185 M 2.921 13.601 C 2.663 12.725 3.136 12.29 3.812 12.007 C 4.85 11.57 4.85 11.57 5.63 10.534 C 6.412 9.497 7.393 9.476 9.239 11.547 C 10.068 12.479 11.796 11.666 12.728 13.066 M 7.619 15.238 C 9.503 15.238 11.228 14.554 12.558 13.421 C 13.222 12.855 13.789 12.176 14.227 11.414 C 14.446 11.033 14.634 10.631 14.785 10.213 C 14.861 10.003 14.928 9.79 14.985 9.572 M 1.785 2.916 C 2.6 2.938 3.261 3.5 3.132 4.374 C 2.921 5.801 4.248 5.459 4.199 6.75 C 4.167 7.611 3.509 8.55 1.892 8.936 C 1.041 9.139 0.559 9.279 0.176 9.806 M 6.874 0.036 C 6.628 0.06 6.383 0.095 6.142 0.143 C 5.658 0.238 5.187 0.38 4.733 0.566 C 3.825 0.937 2.99 1.484 2.278 2.185", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeLinejoin: "round", strokeDasharray: "" }), jsxRuntime.jsx("path", { d: "M 12.19 0 C 14.252 0 16 1.69 16 3.741 C 16 5.823 14.224 7.285 12.583 8.279 C 12.339 8.415 12.042 8.415 11.798 8.279 C 10.16 7.276 8.381 5.831 8.381 3.741 C 8.381 1.691 10.129 0 12.19 0 Z", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeLinejoin: "round", strokeDasharray: "" }), jsxRuntime.jsx("path", { d: "M 12.952 3.81 C 12.952 4.23 12.611 4.571 12.19 4.571 C 11.77 4.571 11.429 4.23 11.429 3.81 C 11.429 3.389 11.77 3.048 12.19 3.048 C 12.611 3.048 12.952 3.389 12.952 3.81 Z", fill: strokeColor })] })),
140
+ },
141
+ ],
142
+ [
143
+ 'focus',
144
+ {
145
+ line: ({ strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 0 0 L 20 0 L 20 20 L 0 20 Z", fill: "transparent" }), jsxRuntime.jsx("path", { d: "M 9.75 2.641 C 13.666 2.641 16.859 5.834 16.859 9.75 C 16.859 13.666 13.666 16.859 9.75 16.859 C 5.834 16.859 2.641 13.666 2.641 9.75 C 2.641 5.834 5.834 2.641 9.75 2.641 M 9.75 1 C 4.916 1 1 4.916 1 9.75 C 1 14.584 4.916 18.5 9.75 18.5 C 14.584 18.5 18.5 14.584 18.5 9.75 C 18.5 4.916 14.584 1 9.75 1 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 5.492 12.657 L 6.03 11.706 L 13.892 16.157 L 13.353 17.109 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 5.112 7.527 L 6.206 7.519 L 6.282 16.553 L 5.188 16.562 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 1.573 9.2 L 9.36 4.62 L 9.914 5.563 L 2.127 10.144 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 5.605 3.344 L 6.143 2.392 L 14.005 6.844 L 13.465 7.795 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 13.223 2.953 L 14.316 2.945 L 14.392 11.979 L 13.298 11.988 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 9.579 13.946 L 17.366 9.365 L 17.92 10.308 L 10.133 14.888 Z", fill: strokeColor })] })),
146
+ },
147
+ ],
148
+ [
149
+ 'chart arrow',
150
+ {
151
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 0 0 L 20 0 L 20 20 L 0 20 Z", fill: "transparent" }), jsxRuntime.jsxs("g", { transform: "translate(3.5 6)", children: [jsxRuntime.jsx("path", { d: "M 0 8 L 4.5 3.5 L 7.5 6 L 12.5 0.5", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeLinecap: "square", strokeMiterlimit: "10", strokeDasharray: "" }), jsxRuntime.jsx("path", { d: "M 0.876 5.957 L 3.387 2.87 L 0 0", transform: "translate(10.018 -1.785) rotate(-40 1.694 2.978)", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeLinecap: "square", strokeMiterlimit: "10", strokeDasharray: "" })] })] })),
152
+ },
153
+ ],
154
+ [
155
+ 'document editor',
156
+ {
157
+ line: ({ strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsxs("g", { children: [jsxRuntime.jsxs("defs", { children: [jsxRuntime.jsx("path", { d: "M 3 3 C 3 1.895 3.895 1 5 1 L 15 1 C 16.105 1 17 1.895 17 3 L 17 17 C 17 18.105 16.105 19 15 19 L 5 19 C 3.895 19 3 18.105 3 17 Z", id: "a1000z" }), jsxRuntime.jsx("clipPath", { id: "a1001z", children: jsxRuntime.jsx("use", { xlinkHref: "#a1000z" }) })] }), jsxRuntime.jsx("use", { xlinkHref: "#a1000z", fill: "transparent", clipPath: "url(#a1001z)", strokeWidth: "3.1", stroke: strokeColor })] }), jsxRuntime.jsxs("g", { transform: "translate(7 9.25)", children: [jsxRuntime.jsx("path", { d: "M 0 1.5 L 4.5 1.5 L 4.5 0 L 0 0 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 6 5.5 L 0 5.5 L 0 4 L 6 4 Z", fill: strokeColor })] })] })),
158
+ },
159
+ ],
160
+ [
161
+ 'settings',
162
+ {
163
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 2 5.25 L 4.07 5.25 C 4.024 5.493 4 5.744 4 6 C 4 6.256 4.024 6.507 4.07 6.75 L 2 6.75 Z M 18 5.25 L 18 6.75 L 11.93 6.75 C 11.976 6.507 12 6.256 12 6 C 12 5.744 11.976 5.493 11.93 5.25 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 2 13.25 L 8.07 13.25 C 8.024 13.493 8 13.744 8 14 C 8 14.256 8.024 14.507 8.07 14.75 L 2 14.75 Z M 18 13.25 L 18 14.75 L 15.93 14.75 C 15.976 14.507 16 14.256 16 14 C 16 13.744 15.976 13.493 15.93 13.25 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 12 12 C 12.966 12 13.75 12.784 13.75 13.75 C 13.75 14.716 12.966 15.5 12 15.5 C 11.034 15.5 10.25 14.716 10.25 13.75 C 10.25 12.784 11.034 12 12 12 Z", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeMiterlimit: "10", strokeDasharray: "" }), jsxRuntime.jsx("path", { d: "M 8 4.25 C 8.966 4.25 9.75 5.034 9.75 6 C 9.75 6.966 8.966 7.75 8 7.75 C 7.034 7.75 6.25 6.966 6.25 6 C 6.25 5.034 7.034 4.25 8 4.25 Z", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeMiterlimit: "10", strokeDasharray: "" })] })),
164
+ },
165
+ ],
166
+ [
167
+ 'light bulb',
168
+ {
169
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 5.05 13.95 C 3.784 12.683 3 10.933 3 9 C 3 7.067 3.784 5.317 5.05 4.05 C 6.317 2.784 8.067 2 10 2 C 11.933 2 13.683 2.784 14.95 4.05 C 16.216 5.317 17 7.067 17 9 C 17 10.933 16.216 12.683 14.95 13.95", fill: "transparent", strokeWidth: stroke, stroke: strokeColor }), jsxRuntime.jsx("path", { d: "M 10 10 C 10.552 10 11 9.552 11 9 C 11 8.448 10.552 8 10 8 C 9.448 8 9 8.448 9 9 C 9 9.552 9.448 10 10 10 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 6.5 15 L 13.5 15", fill: "transparent", strokeWidth: stroke, stroke: strokeColor }), jsxRuntime.jsx("path", { d: "M 7.5 18 L 12.5 18", fill: "transparent", strokeWidth: stroke, stroke: strokeColor })] })),
170
+ },
171
+ ],
172
+ [
173
+ 'issue',
174
+ {
175
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 10 11.667 L 10.008 11.667", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntime.jsx("path", { d: "M 10 9.167 L 10 5.833", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntime.jsx("path", { d: "M 2 4.503 C 2 3.581 2.748 2.833 3.67 2.833 L 16.33 2.833 C 17.252 2.833 18 3.581 18 4.503 L 18 13.163 C 18 14.086 17.252 14.833 16.33 14.833 L 3.67 14.833 C 2.748 14.833 2 14.086 2 13.163 Z", fill: "transparent", strokeWidth: stroke, stroke: strokeColor }), jsxRuntime.jsx("path", { d: "M 3.383 18.336 C 5.417 17.476 7.653 17 10 17 C 12.347 17 14.583 17.476 16.617 18.336", fill: "transparent", strokeWidth: stroke, stroke: strokeColor })] })),
176
+ },
177
+ ],
178
+ [
179
+ 'chart',
180
+ {
181
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 0 0 L 20 0 L 20 20 L 0 20 Z", fill: "transparent" }), jsxRuntime.jsx("path", { d: "M 5 12 L 9 8 L 12.5 11.5 L 16.5 7.5", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeLinecap: "square", strokeMiterlimit: "10", strokeDasharray: "" }), jsxRuntime.jsx("path", { d: "M 2 2.5 L 2 17 L 18.5 17", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeLinejoin: "round" })] })),
182
+ },
183
+ ],
184
+ [
185
+ 'chat',
186
+ {
187
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { d: "M 17.75 5 C 17.75 2.929 16.071 1.25 14 1.25 L 6 1.25 C 3.929 1.25 2.25 2.929 2.25 5 L 2.25 19 L 3.75 19 C 3.75 17.757 4.757 16.75 6 16.75 L 14 16.75 C 16.071 16.75 17.75 15.071 17.75 13 Z M 3.75 16 L 3.75 5 C 3.75 3.757 4.757 2.75 6 2.75 L 14 2.75 C 15.243 2.75 16.25 3.757 16.25 5 L 16.25 13 C 16.25 14.243 15.243 15.25 14 15.25 L 6 15.25 C 5.156 15.25 4.377 15.529 3.75 16 Z", fill: strokeColor })),
188
+ },
189
+ ],
190
+ [
191
+ 'exclamation',
192
+ {
193
+ line: ({ strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 1 1 L 19 1 L 19 19 L 1 19 Z", fill: "transparent" }), jsxRuntime.jsxs("g", { transform: "translate(8.75 4)", children: [jsxRuntime.jsx("path", { d: "M 2.471 7.765 L 2.471 0 L 0.353 0 L 0.353 7.765 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 2.824 10.588 C 2.824 11.368 2.191 12 1.412 12 C 0.632 12 0 11.368 0 10.588 C 0 9.809 0.632 9.176 1.412 9.176 C 2.191 9.176 2.824 9.809 2.824 10.588 Z", fill: strokeColor })] })] })),
194
+ },
195
+ ],
196
+ [
197
+ 'undo',
198
+ {
199
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 13.5 2 L 15.5 2 L 11.5 2 L 11.5 6", fill: "transparent", strokeWidth: stroke, stroke: strokeColor }), jsxRuntime.jsx("path", { d: "M 18 10 C 18 14.418 14.418 18 10 18 C 5.582 18 2 14.418 2 10 C 2 8.543 2.39 7.177 3.07 6 L 4.876 6 C 4.014 7.103 3.5 8.491 3.5 10 C 3.5 13.59 6.41 16.5 10 16.5 C 13.59 16.5 16.5 13.59 16.5 10 C 16.5 7.108 14.611 4.657 12 3.813 L 12 2.252 C 15.45 3.14 18 6.272 18 10 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 11 10 C 11 10.552 10.552 11 10 11 C 9.448 11 9 10.552 9 10 C 9 9.448 9.448 9 10 9 C 10.552 9 11 9.448 11 10 Z", fill: strokeColor })] })),
200
+ },
201
+ ],
202
+ [
203
+ 'character beam',
204
+ {
205
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 0 0 L 24 0 L 24 24 L 0 24 Z", fill: "transparent" }), jsxRuntime.jsxs("g", { transform: "translate(2 3.5)", children: [jsxRuntime.jsx("path", { d: "M 3.987 1.4 L 5.841 1.4 L 9.821 12.338 L 9.821 12.55 L 8.165 12.55 L 7.147 9.452 L 2.621 9.452 L 1.558 12.55 L 0 12.55 L 0 12.338 Z M 6.684 8.099 L 4.913 3.116 L 4.852 3.116 L 3.098 8.099 L 6.683 8.099 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 10.733 0 L 16.333 0 M 10.733 14 L 16.333 14 M 13.533 0 L 13.533 14", fill: "transparent", strokeWidth: stroke, stroke: strokeColor })] })] })),
206
+ },
207
+ ],
208
+ [
209
+ 'edit',
210
+ {
211
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M14.0272 0.966797L14.5303 1.46995L16.5303 3.46995L17.0893 4.02893L16.5017 4.55775L6.50172 13.5577L6.2878 13.7503H6H4H3.25V13.0003V11.0003V10.6663L3.49828 10.4428L13.4983 1.44281L14.0272 0.966797ZM4.75 11.3343V12.2503H5.7122L14.9107 3.97163L13.9728 3.03376L4.75 11.3343ZM17 16.7503H5V15.2503H17V16.7503ZM2 17.0003C2.55228 17.0003 3 16.5526 3 16.0003C3 15.448 2.55228 15.0003 2 15.0003C1.44772 15.0003 1 15.448 1 16.0003C1 16.5526 1.44772 17.0003 2 17.0003Z", fill: strokeColor })),
212
+ },
213
+ ],
214
+ [
215
+ 'compliance check',
216
+ {
217
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M3 3.313a1.5 1.5 0 0 1 1.302-1.487L10.5 1l5.228.804A1.5 1.5 0 0 1 17 3.287v10.875a1.5 1.5 0 0 1-.714 1.277L10.5 19l-6.706-3.576A1.5 1.5 0 0 1 3 14.1V3.313Z", stroke: strokeColor, strokeWidth: stroke }), jsxRuntime.jsx("path", { d: "M7.385 9.25a4.48 4.48 0 0 0 2.865-2.865 4.48 4.48 0 0 0 2.865 2.865 4.48 4.48 0 0 0-2.865 2.865A4.48 4.48 0 0 0 7.385 9.25Z", stroke: strokeColor, strokeWidth: stroke })] })),
218
+ },
219
+ ],
220
+ [
221
+ 'text document',
222
+ {
223
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { d: "M 12.5 5.5 L 12.5 2.5 L 4.5 2.5 L 4.5 17.5 L 15.5 17.5 L 15.5 5.5 Z M 15.5 19 L 4.5 19 C 3.672 19 3 18.328 3 17.5 L 3 2.5 C 3 1.672 3.672 1 4.5 1 L 12.5 1 C 13.328 1 14 1.672 14 2.5 L 14 4 L 15.5 4 C 16.328 4 17 4.672 17 5.5 L 17 17.5 C 17 18.328 16.328 19 15.5 19 Z M 14 14.75 L 6 14.75 L 6 13.25 L 14 13.25 Z M 6 10.75 L 12 10.75 L 12 9.25 L 6 9.25 Z", fill: strokeColor })),
224
+ },
225
+ ],
226
+ [
227
+ 'mail',
228
+ {
229
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 2 5 C 2 4.448 2.448 4 3 4 L 17 4 C 17.552 4 18 4.448 18 5 L 18 15 C 18 15.552 17.552 16 17 16 L 3 16 C 2.448 16 2 15.552 2 15 Z", fill: "transparent", strokeWidth: stroke, stroke: strokeColor }), jsxRuntime.jsx("path", { d: "M 15.5 8 C 15.5 8.552 15.052 9 14.5 9 C 13.948 9 13.5 8.552 13.5 8 C 13.5 7.448 13.948 7 14.5 7 C 15.052 7 15.5 7.448 15.5 8 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 11.5 8 L 4.5 8", fill: "transparent", strokeWidth: stroke, stroke: strokeColor }), jsxRuntime.jsx("path", { d: "M 9.75 11 L 4.5 11", fill: "transparent", strokeWidth: stroke, stroke: strokeColor })] })),
230
+ },
231
+ ],
232
+ [
233
+ 'concise',
234
+ {
235
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { d: "M 18 7 L 2 7 L 2 8.5 L 18 8.5 Z M 14 12 L 2 12 L 2 13.5 L 14 13.5 Z", fill: strokeColor })),
236
+ },
237
+ ],
238
+ [
239
+ 'moderate',
240
+ {
241
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { d: "M 2 4 L 14 4 L 14 5.5 L 2 5.5 Z M 2 9 L 18 9 L 18 10.5 L 2 10.5 Z M 10 14 L 2 14 L 2 15.5 L 10 15.5 Z", fill: strokeColor })),
242
+ },
243
+ ],
244
+ [
245
+ 'expanded',
246
+ {
247
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { d: "M 2 2 L 14 2 L 14 3.5 L 2 3.5 Z M 18 7 L 2 7 L 2 8.5 L 18 8.5 Z M 16 12 L 2 12 L 2 13.5 L 16 13.5 Z M 10 17 L 2 17 L 2 18.5 L 10 18.5 Z", fill: strokeColor })),
248
+ },
249
+ ],
250
+ [
251
+ 'open circle',
252
+ {
253
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsx("path", { d: "M 17.371 6.886 C 17.776 7.843 18 8.895 18 10 C 18 14.418 14.418 18 10 18 C 5.582 18 2 14.418 2 10 C 2 5.582 5.582 2 10 2", fill: "transparent", strokeWidth: stroke, stroke: strokeColor })),
254
+ },
255
+ ],
256
+ [
257
+ 'view',
258
+ {
259
+ line: ({ strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 1 1 L 19 1 L 19 19 L 1 19 Z", fill: "transparent" }), jsxRuntime.jsx("path", { d: "M 10 2.75 C 5.996 2.75 2.75 5.996 2.75 10 C 2.75 14.004 5.996 17.25 10 17.25 C 14.004 17.25 17.25 14.004 17.25 10 C 17.25 5.996 14.004 2.75 10 2.75 Z M 1.25 10 C 1.25 5.168 5.168 1.25 10 1.25 C 14.832 1.25 18.75 5.168 18.75 10 C 18.75 14.832 14.832 18.75 10 18.75 C 5.168 18.75 1.25 14.832 1.25 10 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 11 10 C 11 10.552 10.552 11 10 11 C 9.448 11 9 10.552 9 10 C 9 9.448 9.448 9 10 9 C 10.552 9 11 9.448 11 10 Z", fill: strokeColor })] })),
260
+ lineOn: ({ strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 1 1 L 19 1 L 19 19 L 1 19 Z", fill: "transparent" }), jsxRuntime.jsx("path", { d: "M 10 2.75 C 5.996 2.75 2.75 5.996 2.75 10 C 2.75 14.004 5.996 17.25 10 17.25 C 14.004 17.25 17.25 14.004 17.25 10 C 17.25 5.996 14.004 2.75 10 2.75 Z M 1.25 10 C 1.25 5.168 5.168 1.25 10 1.25 C 14.832 1.25 18.75 5.168 18.75 10 C 18.75 14.832 14.832 18.75 10 18.75 C 5.168 18.75 1.25 14.832 1.25 10 Z", fill: strokeColor })] })),
261
+ },
262
+ ],
263
+ [
264
+ 'apple',
265
+ {
266
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { d: "M 9.643 5.355 C 10.635 5.355 11.505 4.967 12.253 4.19 C 13.001 3.414 13.376 2.511 13.376 1.482 C 13.376 1.369 13.367 1.208 13.349 1 C 13.218 1.018 13.12 1.033 13.055 1.045 C 12.14 1.176 11.336 1.625 10.641 2.392 C 9.946 3.16 9.599 3.981 9.599 4.855 C 9.599 4.956 9.613 5.123 9.643 5.355 Z M 13.197 19 C 13.904 19 14.685 18.515 15.54 17.545 C 16.395 16.576 17.049 15.436 17.5 14.127 C 15.819 13.259 14.979 12.012 14.979 10.388 C 14.979 9.032 15.659 7.872 17.019 6.908 C 16.075 5.724 14.828 5.132 13.278 5.132 C 12.624 5.132 12.027 5.23 11.487 5.426 L 11.149 5.551 L 10.694 5.73 C 10.397 5.843 10.127 5.899 9.884 5.899 C 9.694 5.899 9.444 5.834 9.135 5.703 L 8.788 5.56 L 8.458 5.426 C 7.977 5.224 7.461 5.123 6.908 5.123 C 5.43 5.123 4.242 5.623 3.345 6.622 C 2.448 7.622 2 8.94 2 10.576 C 2 12.878 2.719 15.005 4.156 16.956 C 5.153 18.319 6.065 19 6.891 19 C 7.241 19 7.588 18.932 7.933 18.795 L 8.369 18.616 L 8.717 18.491 C 9.204 18.319 9.652 18.233 10.062 18.233 C 10.495 18.233 10.994 18.343 11.558 18.563 L 11.834 18.67 C 12.411 18.89 12.865 19 13.197 19 Z", fill: strokeColor })),
267
+ },
268
+ ],
269
+ [
270
+ 'linkedin',
271
+ {
272
+ line: (_props) => (jsxRuntime.jsx("path", { d: "M 16.4 16.259 L 13.766 16.259 L 13.766 12.133 C 13.766 11.15 13.748 9.883 12.396 9.883 C 11.023 9.883 10.813 10.955 10.813 12.061 L 10.813 16.258 L 8.18 16.258 L 8.18 7.775 L 10.709 7.775 L 10.709 8.933 L 10.743 8.933 C 11.259 8.052 12.218 7.525 13.239 7.563 C 15.909 7.563 16.401 9.319 16.401 11.603 L 16.4 16.258 Z M 5.208 6.615 C 4.652 6.63 4.132 6.343 3.849 5.863 C 3.567 5.384 3.567 4.79 3.849 4.311 C 4.132 3.832 4.652 3.544 5.208 3.559 C 6.036 3.581 6.695 4.259 6.695 5.087 C 6.695 5.915 6.036 6.593 5.208 6.615 Z M 6.524 16.259 L 3.888 16.259 L 3.888 7.775 L 6.524 7.775 Z M 17.713 1.111 L 2.564 1.111 C 1.848 1.103 1.261 1.677 1.252 2.393 L 1.252 17.604 C 1.256 17.948 1.396 18.277 1.642 18.518 C 1.888 18.759 2.219 18.892 2.563 18.889 L 17.713 18.889 C 18.431 18.898 19.02 18.324 19.03 17.606 L 19.03 2.392 C 19.02 1.675 18.43 1.102 17.713 1.111", fill: "rgb(10, 102, 194)" })),
273
+ },
274
+ ],
275
+ [
276
+ 'google',
277
+ {
278
+ line: (_props) => (jsxRuntime.jsxs("g", { transform: "translate(1.05 1.197)", children: [jsxRuntime.jsx("path", { d: "M 8.995 3.569 C 10.269 3.549 11.524 4.039 12.446 4.922 L 15.014 2.334 C 13.387 0.804 11.23 -0.019 8.995 0 C 5.583 0 2.485 1.922 0.956 4.961 L 3.936 7.275 C 4.662 5.137 6.642 3.569 8.995 3.569 Z", fill: "rgb(229,67,53)" }), jsxRuntime.jsx("path", { d: "M 3.936 10.726 C 3.564 9.608 3.564 8.392 3.936 7.275 L 0.956 4.961 C -0.319 7.51 -0.319 10.51 0.956 13.039 Z", fill: "rgb(246,183,4)" }), jsxRuntime.jsx("path", { d: "M 8.995 18 C 11.426 18 13.465 17.196 14.956 15.824 L 12.054 13.588 C 11.25 14.137 10.211 14.451 8.995 14.451 C 6.642 14.451 4.662 12.863 3.936 10.745 L 0.956 13.039 C 2.485 16.078 5.583 18 8.995 18 Z", fill: "rgb(52,163,83)" }), jsxRuntime.jsx("path", { d: "M 17.642 9.216 C 17.642 8.608 17.583 7.981 17.485 7.392 L 8.995 7.392 L 8.995 10.863 L 13.858 10.863 C 13.662 11.981 13.014 12.961 12.054 13.588 L 14.956 15.843 C 16.661 14.255 17.642 11.941 17.642 9.216 Z", fill: "rgb(66,128,239)" })] })),
279
+ },
280
+ ],
281
+ [
282
+ 'dollar',
283
+ {
284
+ line: ({ strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 1 1 L 19 1 L 19 19 L 1 19 Z", fill: "transparent" }), jsxRuntime.jsx("path", { d: "M 1 10 C 1 5.029 5.029 1 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 Z M 10 17.5 C 14.142 17.5 17.5 14.142 17.5 10 C 17.5 5.858 14.142 2.5 10 2.5 C 5.858 2.5 2.5 5.858 2.5 10 C 2.5 14.142 5.858 17.5 10 17.5 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 10 6.75 C 10.69 6.75 11.25 7.31 11.25 8 L 12.75 8 C 12.75 6.77 11.933 5.689 10.75 5.354 L 10.75 4.5 L 9.25 4.5 L 9.25 5.354 C 7.932 5.731 7.093 7.02 7.281 8.378 C 7.47 9.735 8.629 10.747 10 10.75 C 10.69 10.75 11.25 11.31 11.25 12 C 11.25 12.69 10.69 13.25 10 13.25 C 9.31 13.25 8.75 12.69 8.75 12 L 7.25 12 C 7.25 13.23 8.067 14.311 9.25 14.646 L 9.25 15.5 L 10.75 15.5 L 10.75 14.646 C 12.068 14.269 12.907 12.98 12.719 11.622 C 12.53 10.265 11.371 9.253 10 9.25 C 9.31 9.25 8.75 8.69 8.75 8 C 8.75 7.31 9.31 6.75 10 6.75 Z", fill: strokeColor })] })),
285
+ },
286
+ ],
287
+ [
288
+ 'trash bin',
289
+ {
290
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { d: "M 17 0.5 L 3 0.5 L 3 2 L 17 2 Z M 5.5 16.75 L 14.5 16.75 L 14.5 5.75 L 5.5 5.75 Z M 14.8 18.25 L 5.2 18.25 C 4.537 18.25 4 17.713 4 17.05 L 4 5.45 C 4 4.787 4.537 4.25 5.2 4.25 L 14.8 4.25 C 15.463 4.25 16 4.787 16 5.45 L 16 17.05 C 16 17.713 15.463 18.25 14.8 18.25 Z M 7.25 14.25 L 7.25 8.25 L 8.75 8.25 L 8.75 14.25 Z M 11.25 8.25 L 11.25 14.25 L 12.75 14.25 L 12.75 8.25 Z", fill: strokeColor })),
291
+ },
292
+ ],
293
+ [
294
+ 'recent chats',
295
+ {
296
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { d: "M 2 4.25 L 10 4.25 L 10 5.75 L 2 5.75 Z M 18 9.25 L 18 10.75 L 2 10.75 L 2 9.25 Z M 14 14.25 L 2 14.25 L 2 15.75 L 14 15.75 Z", fill: strokeColor })),
297
+ },
298
+ ],
299
+ [
300
+ 'refresh',
301
+ {
302
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { d: "M 9 1.25 L 5 1.25 L 5 2.75 L 7.255 2.75 C 4.108 3.943 2.089 7.03 2.259 10.391 C 2.429 13.753 4.748 16.621 8 17.49 L 8 15.923 C 5.415 15.048 3.695 12.598 3.753 9.869 C 3.81 7.14 5.63 4.764 8.25 3.998 L 8.25 6 L 9.75 6 L 9.75 1.25 Z M 12.745 17.25 C 15.892 16.057 17.911 12.97 17.741 9.609 C 17.571 6.247 15.252 3.379 12 2.51 L 12 4.077 C 14.585 4.952 16.305 7.402 16.247 10.131 C 16.19 12.86 14.37 15.236 11.75 16.002 L 11.75 14 L 10.25 14 L 10.25 18.75 L 15 18.75 L 15 17.25 Z M 11 10 C 11 10.552 10.552 11 10 11 C 9.448 11 9 10.552 9 10 C 9 9.448 9.448 9 10 9 C 10.552 9 11 9.448 11 10 Z", fill: strokeColor })),
303
+ },
304
+ ],
305
+ [
306
+ 'document',
307
+ {
308
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsx("path", { d: "M 13.25 4 L 13.25 4.75 L 15.5 4.75 C 15.914 4.75 16.25 5.086 16.25 5.5 L 16.25 17.5 C 16.25 17.914 15.914 18.25 15.5 18.25 L 4.5 18.25 C 4.086 18.25 3.75 17.914 3.75 17.5 L 3.75 2.5 C 3.75 2.086 4.086 1.75 4.5 1.75 L 12.5 1.75 C 12.914 1.75 13.25 2.086 13.25 2.5 Z", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeMiterlimit: "10", strokeDasharray: "" })),
309
+ },
310
+ ],
311
+ [
312
+ 'navigate',
313
+ {
314
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs("g", { transform: "translate(2 4)", children: [jsxRuntime.jsx("path", { d: "M 0 0 L 16 0 L 16 11.207 L 0 11.207 Z", fill: "transparent" }), jsxRuntime.jsx("path", { d: "M 14.113 4.78 L 6.176 4.78 C 3.227 4.78 0.838 7.28 0.838 10.369 L 0.838 11.179", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeMiterlimit: "10", strokeDasharray: "" }), jsxRuntime.jsx("path", { d: "M 10.62 8.972 L 14.81 4.78 L 10.62 0.588", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeMiterlimit: "10", strokeDasharray: "" })] })),
315
+ },
316
+ ],
317
+ [
318
+ 'arrow right',
319
+ {
320
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { d: "M 10.53 3.469 L 16.53 9.469 L 17.06 9.999 L 16.53 10.529 L 10.53 16.529 L 9.47 15.469 L 14.19 10.749 L 4 10.749 L 4 9.249 L 14.19 9.249 L 9.47 4.53 L 10.53 3.47 Z", fill: strokeColor })),
321
+ },
322
+ ],
323
+ [
324
+ 'arrow left',
325
+ {
326
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { d: "M 9.47 3.469 L 3.47 9.469 L 2.94 9.999 L 3.47 10.529 L 9.47 16.529 L 10.53 15.469 L 5.81 10.749 L 16 10.749 L 16 9.249 L 5.81 9.249 L 10.53 4.529 Z", fill: strokeColor })),
327
+ },
328
+ ],
329
+ [
330
+ '',
331
+ {
332
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { d: "M 10.53 3.469 L 16.53 9.469 L 17.06 9.999 L 16.53 10.529 L 10.53 16.529 L 9.47 15.469 L 14.19 10.749 L 4 10.749 L 4 9.249 L 14.19 9.249 L 9.47 4.53 L 10.53 3.47 Z", fill: strokeColor })),
333
+ },
334
+ ],
335
+ [
336
+ 'arrow up',
337
+ {
338
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { d: "M 16.53 9.47 L 10.53 3.47 L 10 2.94 L 9.469 3.47 L 3.469 9.47 L 4.529 10.53 L 9.249 5.81 L 9.249 16 L 10.749 16 L 10.749 5.81 L 15.469 10.53 L 16.529 9.47 Z", fill: strokeColor })),
339
+ },
340
+ ],
341
+ [
342
+ 'notification',
343
+ {
344
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 1 3.5 C 1 2.119 2.119 1 3.5 1 L 16.5 1 C 17.881 1 19 2.119 19 3.5 L 19 16.5 C 19 17.881 17.881 19 16.5 19 L 3.5 19 C 2.119 19 1 17.881 1 16.5 Z", strokeWidth: stroke, stroke: strokeColor }), jsxRuntime.jsx("path", { d: "M 14 12 L 6 12", fill: "transparent", strokeWidth: stroke, stroke: strokeColor }), jsxRuntime.jsx("path", { d: "M 12 8 L 6 8", fill: "transparent", strokeWidth: stroke, stroke: strokeColor })] })),
345
+ },
346
+ ],
347
+ [
348
+ 'alert',
349
+ {
350
+ line: ({ strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 10.25 3 C 6.246 3 3 6.246 3 10.25 C 3 14.254 6.246 17.5 10.25 17.5 C 14.254 17.5 17.5 14.254 17.5 10.25 C 17.5 6.246 14.254 3 10.25 3 Z M 1.5 10.25 C 1.5 5.418 5.418 1.5 10.25 1.5 C 15.082 1.5 19 5.418 19 10.25 C 19 15.082 15.082 19 10.25 19 C 5.418 19 1.5 15.082 1.5 10.25 Z M 11.25 13.25 C 11.25 13.802 10.802 14.25 10.25 14.25 C 9.698 14.25 9.25 13.802 9.25 13.25 C 9.25 12.698 9.698 12.25 10.25 12.25 C 10.802 12.25 11.25 12.698 11.25 13.25 Z M 11 11.25 L 11 5.75 L 9.5 5.75 L 9.5 11.25 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 1 1 L 19 1 L 19 19 L 1 19 Z", fill: "transparent" })] })),
351
+ },
352
+ ],
353
+ [
354
+ 'message',
355
+ {
356
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { d: "M 17.75 5 C 17.75 2.929 16.071 1.25 14 1.25 L 6 1.25 C 3.929 1.25 2.25 2.929 2.25 5 L 2.25 19 L 3.75 19 C 3.75 17.757 4.757 16.75 6 16.75 L 14 16.75 C 16.071 16.75 17.75 15.071 17.75 13 Z M 3.75 16 L 3.75 5 C 3.75 3.757 4.757 2.75 6 2.75 L 14 2.75 C 15.243 2.75 16.25 3.757 16.25 5 L 16.25 13 C 16.25 14.243 15.243 15.25 14 15.25 L 6 15.25 C 5.156 15.25 4.377 15.529 3.75 16 Z", fill: strokeColor })),
357
+ },
358
+ ],
359
+ [
360
+ 'blank',
361
+ {
362
+ line: (_props) => jsxRuntime.jsx(jsxRuntime.Fragment, {}),
363
+ },
364
+ ],
365
+ [
366
+ 'check',
367
+ {
368
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { d: "M 14.5 6 L 8.53 11.97 L 6.06 9.5 L 5 10.56 L 8 13.56 L 8.53 14.09 L 9.06 13.56 L 15.56 7.06 Z", fill: strokeColor })),
369
+ },
370
+ ],
371
+ [
372
+ 'help',
373
+ {
374
+ line: ({ strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 10 18 C 14.418 18 18 14.418 18 10 C 18 5.582 14.418 2 10 2 C 5.582 2 2 5.582 2 10 C 2 14.418 5.582 18 10 18 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 11 13 C 11 13.552 10.552 14 10 14 C 9.448 14 9 13.552 9 13 C 9 12.448 9.448 12 10 12 C 10.552 12 11 12.448 11 13 Z M 8.75 8 C 8.75 7.31 9.31 6.75 10 6.75 C 10.69 6.75 11.25 7.31 11.25 8 C 11.25 8.69 10.69 9.25 10 9.25 L 9.25 9.25 L 9.25 11 L 10.75 11 L 10.75 10.646 C 12.118 10.259 12.966 8.893 12.706 7.496 C 12.446 6.098 11.163 5.129 9.748 5.26 C 8.332 5.39 7.249 6.578 7.25 8 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 1 10 C 1 5.029 5.029 1 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 Z M 10 17.5 C 14.142 17.5 17.5 14.142 17.5 10 C 17.5 5.858 14.142 2.5 10 2.5 C 5.858 2.5 2.5 5.858 2.5 10 C 2.5 14.142 5.858 17.5 10 17.5 Z", fill: strokeColor })] })),
375
+ },
376
+ ],
377
+ [
378
+ 'menu',
379
+ {
380
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M18 6.25H2v1.5h16v-1.5Zm0 6H2v1.5h16v-1.5Z", fill: strokeColor })),
381
+ },
382
+ ],
383
+ [
384
+ 'attach',
385
+ {
386
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("g", { clipPath: "url(#a)", children: jsxRuntime.jsx("path", { d: "m8 13 4-4a1.414 1.414 0 1 0-2-2l-6 6a2.828 2.828 0 1 0 4 4l7.5-7.5a4.243 4.243 0 1 0-6-6L4 9", stroke: strokeColor, strokeWidth: stroke }) }), jsxRuntime.jsx("defs", { children: jsxRuntime.jsx("clipPath", { id: "a", children: jsxRuntime.jsx("path", { fill: "transparent", transform: "translate(1 1)", d: "M0 0h18v18H0z" }) }) })] })),
387
+ },
388
+ ],
389
+ [
390
+ 'ctrl key',
391
+ {
392
+ line: ({ strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 0 0 L 33 0 L 33 24 L 0 24 Z", fill: "transparent" }), jsxRuntime.jsxs("g", { transform: "translate(3 2.998)", children: [jsxRuntime.jsx("path", { d: "M 8.646 12.49 C 9.898 12.49 10.445 11.717 10.879 11.717 C 11.125 11.717 11.288 11.911 11.288 12.213 C 11.288 12.757 10.107 13.409 8.646 13.409 C 6.239 13.409 5 11.268 5 9.032 C 5 6.795 6.239 4.654 8.705 4.654 C 10.178 4.654 11.112 5.475 11.112 5.911 C 11.112 6.188 10.949 6.42 10.691 6.42 C 10.224 6.42 9.99 5.574 8.705 5.574 C 6.86 5.574 6.098 7.387 6.098 9.032 C 6.098 10.677 6.882 12.49 8.644 12.49 Z M 13.062 5.513 C 13.062 5.163 13.262 4.944 13.576 4.944 C 13.89 4.944 14.089 5.161 14.089 5.513 L 14.089 6.904 L 14.511 6.904 C 14.849 6.904 15.024 7.072 15.024 7.362 C 15.024 7.652 14.849 7.82 14.511 7.82 L 14.089 7.82 L 14.089 12.838 C 14.089 13.188 13.89 13.407 13.576 13.407 C 13.262 13.407 13.062 13.19 13.062 12.838 L 13.062 7.823 L 12.641 7.823 C 12.303 7.823 12.127 7.654 12.127 7.364 C 12.127 7.075 12.303 6.906 12.641 6.906 L 13.062 6.906 L 13.062 5.516 Z M 16.263 7.4 C 16.263 7.05 16.463 6.83 16.777 6.83 C 17.091 6.83 17.29 7.047 17.29 7.4 L 17.29 7.944 L 17.315 7.944 C 17.549 7.448 18.121 6.83 18.717 6.83 C 19.08 6.83 19.289 7.072 19.289 7.375 C 19.289 7.677 19.08 7.871 18.646 7.954 C 18.038 8.062 17.29 8.533 17.29 9.78 L 17.29 12.84 C 17.29 13.19 17.091 13.409 16.777 13.409 C 16.463 13.409 16.263 13.193 16.263 12.84 Z M 21.463 12.84 C 21.463 13.19 21.263 13.409 20.949 13.409 C 20.635 13.409 20.436 13.193 20.436 12.84 L 20.436 4.571 C 20.436 4.221 20.635 4.002 20.949 4.002 C 21.263 4.002 21.463 4.219 21.463 4.571 Z", fill: strokeColor, strokeWidth: "0.5", stroke: strokeColor, strokeMiterlimit: "10", strokeDasharray: "" }), jsxRuntime.jsx("path", { d: "M 0 14.98 L 0 3.032 C 0 1.018 1.026 0.001 3.07 0 L 7 0 L 7 0.002 L 21.965 0 L 23.93 0 C 25.983 0 27 1.017 27 3.031 L 27 14.981 C 27 16.994 25.984 18.001 23.93 18.001 L 21.965 18.001 L 7 18.002 L 7 18.001 L 3.07 18.001 C 1.026 18.001 0 16.994 0 14.98 Z M 3.09 1.576 C 2.112 1.576 1.574 2.104 1.574 3.12 L 1.574 14.891 C 1.574 15.909 2.112 16.426 3.09 16.426 L 7 16.427 L 7 16.43 L 21.955 16.428 L 23.91 16.428 C 24.878 16.428 25.426 15.909 25.426 14.893 L 25.426 3.12 C 25.426 2.104 24.878 1.576 23.91 1.576 L 21.955 1.576 L 7 1.58 L 7 1.576 Z", fill: strokeColor })] })] })),
393
+ },
394
+ ],
395
+ [
396
+ 'g key',
397
+ {
398
+ line: ({ strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 0 0 L 24 0 L 24 24 L 0 24 Z", fill: "transparent" }), jsxRuntime.jsxs("g", { transform: "translate(3 2.998)", children: [jsxRuntime.jsx("path", { d: "M 3.07 18.001 L 14.93 18.001 C 16.984 18.001 18 16.994 18 14.981 L 18 3.031 C 18 1.017 16.983 0 14.93 0 L 3.07 0 C 1.026 0.001 0 1.018 0 3.032 L 0 14.98 C 0 16.994 1.026 18.001 3.07 18.001 Z M 3.09 16.426 C 2.112 16.426 1.574 15.909 1.574 14.891 L 1.574 3.12 C 1.574 2.104 2.112 1.576 3.09 1.576 L 14.91 1.576 C 15.878 1.576 16.426 2.104 16.426 3.12 L 16.426 14.893 C 16.426 15.909 15.878 16.428 14.91 16.428 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 9.044 13.581 C 11.43 13.581 12.847 12.184 12.847 10.169 L 12.847 9.456 C 12.847 8.927 12.534 8.615 12.026 8.615 L 9.513 8.615 C 9.152 8.615 8.937 8.849 8.937 9.182 C 8.937 9.475 9.152 9.739 9.513 9.739 L 11.293 9.739 L 11.293 10.375 C 11.293 11.528 10.54 12.291 9.063 12.291 C 7.49 12.291 6.444 10.952 6.444 8.908 C 6.444 6.884 7.48 5.515 9.034 5.515 C 10.139 5.515 10.961 6.043 11.362 7.011 C 11.527 7.344 11.713 7.481 12.016 7.481 C 12.417 7.481 12.681 7.226 12.681 6.816 C 12.681 6.649 12.662 6.522 12.593 6.365 C 12.134 5.134 10.833 4.224 9.014 4.224 C 6.483 4.224 4.859 6.053 4.859 8.908 C 4.859 11.773 6.483 13.581 9.044 13.581 Z", fill: strokeColor })] })] })),
399
+ },
400
+ ],
401
+ [
402
+ 'cmd key',
403
+ {
404
+ line: ({ strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 0 0 L 24 0 L 24 24 L 0 24 Z", fill: "transparent" }), jsxRuntime.jsxs("g", { transform: "translate(3 2.998)", children: [jsxRuntime.jsx("path", { d: "M 3.07 18.001 L 14.93 18.001 C 16.984 18.001 18 16.994 18 14.981 L 18 3.031 C 18 1.017 16.983 0 14.93 0 L 3.07 0 C 1.026 0.001 0 1.018 0 3.032 L 0 14.98 C 0 16.994 1.026 18.001 3.07 18.001 Z M 3.09 16.426 C 2.112 16.426 1.574 15.909 1.574 14.891 L 1.574 3.12 C 1.574 2.104 2.112 1.576 3.09 1.576 L 14.91 1.576 C 15.878 1.576 16.426 2.104 16.426 3.12 L 16.426 14.893 C 16.426 15.909 15.878 16.428 14.91 16.428 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 6.708 8.096 L 6.708 9.905 L 5.974 9.905 C 5.426 9.901 4.9 10.116 4.511 10.501 C 4.122 10.886 3.902 11.411 3.901 11.959 C 3.898 12.51 4.115 13.04 4.504 13.431 C 4.893 13.823 5.422 14.042 5.974 14.041 C 7.119 14.033 8.044 13.104 8.047 11.959 L 8.047 11.216 L 9.826 11.216 L 9.826 11.959 C 9.826 13.105 10.753 14.036 11.899 14.041 C 12.45 14.04 12.979 13.82 13.367 13.43 C 13.756 13.039 13.974 12.51 13.972 11.959 C 13.972 10.824 13.043 9.906 11.899 9.906 L 11.157 9.906 L 11.157 8.096 L 11.899 8.096 C 12.448 8.097 12.975 7.881 13.364 7.494 C 13.752 7.107 13.971 6.581 13.972 6.032 C 13.971 4.888 13.044 3.961 11.899 3.96 C 10.756 3.963 9.83 4.889 9.826 6.032 L 9.826 6.776 L 8.047 6.776 L 8.047 6.033 C 8.04 4.891 7.116 3.967 5.974 3.96 C 5.424 3.958 4.896 4.176 4.507 4.566 C 4.118 4.955 3.9 5.483 3.901 6.033 C 3.9 6.582 4.119 7.109 4.508 7.497 C 4.897 7.884 5.425 8.1 5.974 8.096 Z M 8.047 9.915 L 8.047 8.086 L 9.826 8.086 L 9.826 9.914 Z M 5.974 6.787 C 5.774 6.788 5.581 6.709 5.44 6.568 C 5.298 6.426 5.219 6.233 5.221 6.033 C 5.221 5.633 5.563 5.281 5.974 5.281 C 6.374 5.281 6.708 5.633 6.708 6.033 L 6.708 6.787 Z M 11.899 6.787 L 11.157 6.787 L 11.157 6.033 C 11.157 5.633 11.499 5.281 11.899 5.281 C 12.3 5.281 12.652 5.633 12.652 6.033 C 12.652 6.454 12.31 6.787 11.899 6.787 Z M 5.974 11.196 L 6.708 11.196 L 6.708 11.949 C 6.708 12.359 6.375 12.692 5.965 12.692 C 5.554 12.692 5.221 12.359 5.221 11.949 C 5.221 11.548 5.563 11.196 5.974 11.196 Z M 11.899 11.196 C 12.3 11.196 12.652 11.548 12.652 11.949 C 12.652 12.369 12.31 12.702 11.899 12.702 C 11.487 12.697 11.155 12.361 11.157 11.949 L 11.157 11.196 Z", fill: strokeColor })] })] })),
405
+ },
406
+ ],
407
+ [
408
+ 'person',
409
+ {
410
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12.5 5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0ZM14 5a4 4 0 1 1-8 0 4 4 0 0 1 8 0ZM3.5 13v-.5h13v.5a4.5 4.5 0 0 1-4.5 4.5H8A4.5 4.5 0 0 1 3.5 13ZM2 13v-.5A1.5 1.5 0 0 1 3.5 11h13a1.5 1.5 0 0 1 1.5 1.5v.5a6 6 0 0 1-6 6H8a6 6 0 0 1-6-6Z", fill: strokeColor })),
411
+ },
412
+ ],
413
+ [
414
+ 'upload',
415
+ {
416
+ line: ({ strokeColor }) => (jsxRuntime.jsxs("g", { transform: "translate(1 0.94)", children: [jsxRuntime.jsx("path", { d: "M 0 0.06 L 18 0.06 L 18 18.06 L 0 18.06 Z", fill: "transparent" }), jsxRuntime.jsx("path", { d: "M 9.53 0.53 L 14.53 5.53 L 13.47 6.59 L 9.75 2.87 L 9.75 13.06 L 8.25 13.06 L 8.25 2.87 L 4.53 6.59 L 3.47 5.53 L 8.47 0.53 L 9 0 Z M 1 13.06 L 1 15.56 C 1 16.388 1.672 17.06 2.5 17.06 L 15.5 17.06 C 16.328 17.06 17 16.388 17 15.56 L 17 13.06 L 15.5 13.06 L 15.5 15.56 L 2.5 15.56 L 2.5 13.06 Z", fill: strokeColor })] })),
417
+ },
418
+ ],
419
+ [
420
+ 'download',
421
+ {
422
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "m10.75 12.19 3.72-3.72 1.06 1.06-5 5-.53.53-.53-.53-5-5 1.06-1.06 3.72 3.72V2h1.5v10.19ZM2 14v2.5A1.5 1.5 0 0 0 3.5 18h13a1.5 1.5 0 0 0 1.5-1.5V14h-1.5v2.5h-13V14H2Z", fill: strokeColor })),
423
+ },
424
+ ],
425
+ [
426
+ 'check circle',
427
+ {
428
+ line: ({ strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 1 1 L 19 1 L 19 19 L 1 19 Z", fill: "transparent" }), jsxRuntime.jsx("path", { d: "M 12.97 6.97 L 9 10.94 L 7.03 8.97 L 5.97 10.03 L 8.47 12.53 L 9 13.06 L 9.53 12.53 L 14.03 8.03 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 C 1 5.029 5.029 1 10 1 C 14.971 1 19 5.029 19 10 Z M 10 2.5 C 5.858 2.5 2.5 5.858 2.5 10 C 2.5 14.142 5.858 17.5 10 17.5 C 14.142 17.5 17.5 14.142 17.5 10 C 17.5 5.858 14.142 2.5 10 2.5 Z", fill: strokeColor })] })),
429
+ },
430
+ ],
431
+ [
432
+ 'share',
433
+ {
434
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsx("path", { d: "M11 7c-5.063 0-8 4.03-8 9 1.222-1.2 3-3 8-3v3l6-6-6-6v3Z", stroke: strokeColor, strokeWidth: stroke })),
435
+ },
436
+ ],
437
+ [
438
+ 'g-p assist',
439
+ {
440
+ line: ({ strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsxs("g", { children: [jsxRuntime.jsx("defs", { children: jsxRuntime.jsxs("linearGradient", { id: "iddX7xoI2TUg1057052775", x1: "0.49751243781094523", x2: "0.5024875621890548", y1: "0", y2: "1", children: [jsxRuntime.jsx("stop", { offset: "0", stopColor: strokeColor, stopOpacity: "1" }), jsxRuntime.jsx("stop", { offset: "0.50", stopColor: strokeColor, stopOpacity: "1" }), jsxRuntime.jsx("stop", { offset: "1", stopColor: strokeColor, stopOpacity: "1" })] }) }), jsxRuntime.jsx("path", { d: "M 10.5 0.016 C 10.509 4.815 14.401 8.7 19.2 8.7 L 19.2 10.5 C 14.395 10.5 10.5 14.395 10.5 19.2 L 8.7 19.2 C 8.7 14.401 4.815 10.509 0.016 10.5 L 0 10.5 L 0 8.7 L 0.016 8.7 C 4.808 8.691 8.691 4.808 8.7 0.016 L 8.7 0 L 10.5 0 Z M 9.6 14.94 C 10.659 12.562 12.562 10.659 14.94 9.6 C 12.562 8.541 10.659 6.638 9.6 4.26 C 8.541 6.639 6.639 8.541 4.26 9.6 C 6.638 10.659 8.541 12.562 9.6 14.94 Z", transform: "translate(1.4 1.4) rotate(90 9.6 9.6)", fill: "url(#iddX7xoI2TUg1057052775)" })] }), jsxRuntime.jsx("path", { d: "M 18.2 5 C 18.863 5 19.4 4.463 19.4 3.8 C 19.4 3.137 18.863 2.6 18.2 2.6 C 17.537 2.6 17 3.137 17 3.8 C 17 4.463 17.537 5 18.2 5 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 3.8 19.4 C 4.463 19.4 5 18.863 5 18.2 C 5 17.537 4.463 17 3.8 17 C 3.137 17 2.6 17.537 2.6 18.2 C 2.6 18.863 3.137 19.4 3.8 19.4 Z", fill: strokeColor })] })),
441
+ },
442
+ ],
443
+ [
444
+ 'search',
445
+ {
446
+ line: ({ strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 10 9 C 10 9.552 9.552 10 9 10 C 8.448 10 8 9.552 8 9 C 8 8.448 8.448 8 9 8 C 9.552 8 10 8.448 10 9 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 18.53 17.47 L 17.47 18.531 L 13.392 14.451 C 10.495 16.785 6.278 16.445 3.793 13.677 C 1.307 10.909 1.42 6.681 4.051 4.05 C 6.682 1.419 10.91 1.306 13.678 3.792 C 16.446 6.277 16.786 10.494 14.452 13.391 Z M 9 14.5 C 12.038 14.5 14.5 12.038 14.5 9 C 14.5 5.962 12.038 3.5 9 3.5 C 5.962 3.5 3.5 5.962 3.5 9 C 3.5 12.038 5.962 14.5 9 14.5 Z", fill: strokeColor })] })),
447
+ },
448
+ ],
449
+ [
450
+ 'x',
451
+ {
452
+ line: ({ strokeColor }) => (jsxRuntime.jsxs("g", { transform: "translate(1 1)", children: [jsxRuntime.jsx("path", { d: "M 0 0 L 18 0 L 18 18 L 0 18 Z", fill: "transparent" }), jsxRuntime.jsx("path", { d: "M 7.94 9 L 3.47 13.47 L 4.53 14.53 L 9 10.06 L 13.47 14.53 L 14.53 13.47 L 10.06 9 L 14.53 4.53 L 13.47 3.47 L 9 7.94 L 4.53 3.47 L 3.47 4.53 Z", fill: strokeColor })] })),
453
+ },
454
+ ],
455
+ [
456
+ 'plus',
457
+ {
458
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { d: "M 9.25 10.75 L 9.25 16 L 10.75 16 L 10.75 10.75 L 16 10.75 L 16 9.25 L 10.75 9.25 L 10.75 4 L 9.25 4 L 9.25 9.25 L 4 9.25 L 4 10.75 Z", fill: strokeColor })),
459
+ },
460
+ ],
461
+ [
462
+ 'circle',
463
+ {
464
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { d: "M 1 10 C 1 5.029 5.029 1 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 Z M 10 17.5 C 14.142 17.5 17.5 14.142 17.5 10 C 17.5 5.858 14.142 2.5 10 2.5 C 5.858 2.5 2.5 5.858 2.5 10 C 2.5 14.142 5.858 17.5 10 17.5 Z", fill: strokeColor })),
465
+ },
466
+ ],
467
+ [
468
+ 'circle fill',
469
+ {
470
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { d: "M 1 10 C 1 5.029 5.029 1 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 Z", fill: strokeColor })),
471
+ },
472
+ ],
473
+ [
474
+ 'plus circle',
475
+ {
476
+ line: ({ strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 1 10 C 1 5.029 5.029 1 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 Z M 10 17.5 C 14.142 17.5 17.5 14.142 17.5 10 C 17.5 5.858 14.142 2.5 10 2.5 C 5.858 2.5 2.5 5.858 2.5 10 C 2.5 14.142 5.858 17.5 10 17.5 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 10.75 9.25 L 14 9.25 L 14 10.75 L 10.75 10.75 L 10.75 14 L 9.25 14 L 9.25 10.75 L 6 10.75 L 6 9.25 L 9.25 9.25 L 9.25 6 L 10.75 6 Z", fill: strokeColor })] })),
477
+ },
478
+ ],
479
+ [
480
+ 'chevron down',
481
+ {
482
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsx("path", { d: "m5 8 5 5 5-5", stroke: strokeColor, strokeWidth: stroke })),
483
+ },
484
+ ],
485
+ [
486
+ 'chevron up',
487
+ {
488
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsx("path", { d: "m15 12-5-5-5 5", stroke: strokeColor, strokeWidth: stroke })),
489
+ },
490
+ ],
491
+ [
492
+ 'checked',
493
+ {
494
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3.5 2A1.5 1.5 0 0 0 2 3.5v13A1.5 1.5 0 0 0 3.5 18h13a1.5 1.5 0 0 0 1.5-1.5v-13A1.5 1.5 0 0 0 16.5 2h-13Zm9.47 4.97L9 10.94 7.03 8.97l-1.06 1.06 2.5 2.5.53.53.53-.53 4.5-4.5-1.06-1.06Z", fill: strokeColor })),
495
+ },
496
+ ],
497
+ [
498
+ 'unchecked',
499
+ {
500
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsx("rect", { x: "2.75", y: "2.75", width: "14.5", height: "14.5", rx: ".75", stroke: strokeColor, strokeWidth: stroke })),
501
+ },
502
+ ],
503
+ [
504
+ 'partial',
505
+ {
506
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("rect", { x: "2", y: "2", width: "16", height: "16", rx: "1.5", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M14 10H6", stroke: strokeColor, strokeWidth: stroke })] })),
507
+ },
508
+ ],
509
+ [
510
+ 'search',
511
+ {
512
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M9 14.5a5.5 5.5 0 1 0 0-11 5.5 5.5 0 0 0 0 11Zm5.452-1.109a7 7 0 1 0-1.06 1.06l4.078 4.08 1.06-1.061-4.078-4.079ZM10 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z", fill: strokeColor })),
513
+ },
514
+ ],
515
+ [
516
+ 'filter',
517
+ {
518
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2 4.25h16v1.5H2v-1.5Zm3 5h10v1.5H5v-1.5Zm7 5H8v1.5h4v-1.5Z", fill: strokeColor })),
519
+ },
520
+ ],
521
+ [
522
+ 'more',
523
+ {
524
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { d: "M 4 11.5 C 3.31 11.5 2.75 10.94 2.75 10.25 C 2.75 9.56 3.31 9 4 9 C 4.69 9 5.25 9.56 5.25 10.25 C 5.25 10.94 4.69 11.5 4 11.5 Z M 10 11.5 C 9.31 11.5 8.75 10.94 8.75 10.25 C 8.75 9.56 9.31 9 10 9 C 10.69 9 11.25 9.56 11.25 10.25 C 11.25 10.94 10.69 11.5 10 11.5 Z M 14.75 10.25 C 14.75 10.94 15.31 11.5 16 11.5 C 16.69 11.5 17.25 10.94 17.25 10.25 C 17.25 9.56 16.69 9 16 9 C 15.31 9 14.75 9.56 14.75 10.25 Z", fill: strokeColor })),
525
+ },
526
+ ],
527
+ [
528
+ 'people',
529
+ {
530
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsxs("g", { clipPath: "url(#a)", children: [jsxRuntime.jsx("path", { d: "M11 18v.75V18Zm.003 0v.75V18ZM10 18h-.75v.75H10V18Zm8-4.124.656.364.094-.17v-.194H18Zm-7 4.874h.002v-1.5H11v1.5Zm-1 0h1v-1.5h-1v1.5Zm-.75-6.25V18h1.5v-5.5h-1.5Zm1.25-1.25c-.69 0-1.25.56-1.25 1.25h1.5a.25.25 0 0 1-.25.25v-1.5Zm7 0h-7v1.5h7v-1.5Zm1.25 1.25c0-.69-.56-1.25-1.25-1.25v1.5a.25.25 0 0 1-.25-.25h1.5Zm0 1.376V12.5h-1.5v1.376h1.5Zm-7.747 4.874a8.748 8.748 0 0 0 7.653-4.51l-1.312-.728a7.248 7.248 0 0 1-6.342 3.738v1.5Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M9 18v.75V18Zm-.004 0v.75V18ZM10 18h.75v.75H10V18ZM2 9.5h-.75H2Zm0 4.376-.656.364-.094-.17v-.194H2Zm7 4.874h-.004v-1.5H9v1.5Zm1 0H9v-1.5h1v1.5Zm.75-9.25V18h-1.5V9.5h1.5ZM9.5 8.25c.69 0 1.25.56 1.25 1.25h-1.5c0 .138.112.25.25.25v-1.5Zm-7 0h7v1.5h-7v-1.5ZM1.25 9.5c0-.69.56-1.25 1.25-1.25v1.5a.25.25 0 0 0 .25-.25h-1.5Zm0 4.376V9.5h1.5v4.376h-1.5Zm7.746 4.874a8.748 8.748 0 0 1-7.652-4.51l1.312-.728a7.248 7.248 0 0 0 6.34 3.738v1.5Z", fill: strokeColor }), jsxRuntime.jsx("circle", { cx: "6", cy: "4", r: "2", stroke: strokeColor, strokeWidth: stroke }), jsxRuntime.jsx("circle", { cx: "14", cy: "6", r: "2", stroke: strokeColor, strokeWidth: stroke })] }), jsxRuntime.jsx("defs", { children: jsxRuntime.jsx("clipPath", { id: "a", children: jsxRuntime.jsx("path", { fill: "#fff", transform: "translate(1 1)", d: "M0 0h18v18H0z" }) }) })] })),
531
+ },
532
+ ],
533
+ [
534
+ 'wallet',
535
+ {
536
+ line: ({ stroke, strokeColor, coverUp }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 7 8 C 7.552 8 8 8.448 8 9 C 8 9.552 7.552 10 7 10 C 6.448 10 6 9.552 6 9 C 6 8.448 6.448 8 7 8 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 15.5 2 L 2.5 2 C 2.224 2 2 2.224 2 2.5 L 2 15.5 C 2 15.776 2.224 16 2.5 16 L 15.5 16 C 15.776 16 16 15.776 16 15.5 L 16 2.5 C 16 2.224 15.776 2 15.5 2 Z", fill: "transparent", strokeWidth: stroke, stroke: strokeColor, strokeMiterlimit: "10", strokeDasharray: "" }), jsxRuntime.jsx("path", { d: "M 17 10.6 L 17 7.4 C 17 7.179 16.821 7 16.6 7 L 13 7 C 11.895 7 11 7.895 11 9 C 11 10.105 11.895 11 13 11 L 16.6 11 C 16.821 11 17 10.821 17 10.6 Z", fill: coverUp, strokeWidth: stroke, stroke: strokeColor, strokeMiterlimit: "10", strokeDasharray: "" })] })),
537
+ },
538
+ ],
539
+ [
540
+ 'invoice',
541
+ {
542
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12.5 5.5v-3h-8v15h11v-12h-3Zm3 13.5h-11A1.5 1.5 0 0 1 3 17.5v-15A1.5 1.5 0 0 1 4.5 1h8A1.5 1.5 0 0 1 14 2.5V4h1.5A1.5 1.5 0 0 1 17 5.5v12a1.5 1.5 0 0 1-1.5 1.5Zm-5-4.25H6v-1.5h4.5v1.5Zm-4.5-4h4.5v-1.5H6v1.5Zm8-.75a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm-1 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z", fill: strokeColor })),
543
+ },
544
+ ],
545
+ [
546
+ 'payment',
547
+ {
548
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2.5 4.5h15v2.75h-15V4.5Zm0 4.25v6.75h15V8.75h-15ZM17.5 3h-15A1.5 1.5 0 0 0 1 4.5v11A1.5 1.5 0 0 0 2.5 17h15a1.5 1.5 0 0 0 1.5-1.5v-11A1.5 1.5 0 0 0 17.5 3ZM14 13a1 1 0 1 0 2 0 1 1 0 0 0-2 0Zm-2 1a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z", fill: strokeColor })),
549
+ },
550
+ ],
551
+ [
552
+ 'heart',
553
+ {
554
+ line: ({ stroke, strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsxs("g", { clipPath: "url(#a)", children: [jsxRuntime.jsx("path", { d: "M11 10a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M2 7c0 6 8 11 8 11s8-5 8-11c0-3-1.79-5-4-5a4 4 0 0 0-4 4 4 4 0 0 0-4-4C3.79 2 2 4 2 7Z", stroke: strokeColor, strokeWidth: stroke })] }), jsxRuntime.jsx("defs", { children: jsxRuntime.jsx("clipPath", { id: "a", children: jsxRuntime.jsx("path", { fill: "transparent", transform: "translate(1 1)", d: "M0 0h18v18H0z" }) }) })] })),
555
+ },
556
+ ],
557
+ [
558
+ 'clock',
559
+ {
560
+ line: ({ strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 1 1 L 19 1 L 19 19 L 1 19 Z", fill: "transparent" }), jsxRuntime.jsx("path", { d: "M 10.75 5 L 10.75 9.69 L 13.53 12.47 L 12.47 13.53 L 9.47 10.53 L 9.25 10.31 L 9.25 5 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 C 1 5.029 5.029 1 10 1 C 14.971 1 19 5.029 19 10 Z M 10 2.5 C 5.858 2.5 2.5 5.858 2.5 10 C 2.5 14.142 5.858 17.5 10 17.5 C 14.142 17.5 17.5 14.142 17.5 10 C 17.5 5.858 14.142 2.5 10 2.5 Z", fill: strokeColor })] })),
561
+ },
562
+ ],
563
+ [
564
+ 'book',
565
+ {
566
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2 3.25h-.75v13.5H7A2.25 2.25 0 0 1 9.25 19h1.5A2.25 2.25 0 0 1 13 16.75h5.75V3.25H13a3.744 3.744 0 0 0-3 1.5 3.744 3.744 0 0 0-3-1.5H2ZM9.25 7A2.25 2.25 0 0 0 7 4.75H2.75v10.5H7c.844 0 1.623.279 2.25.75V7Zm1.5 9a3.734 3.734 0 0 1 2.25-.75h4.25V4.75H13A2.25 2.25 0 0 0 10.75 7v9Z", fill: strokeColor })),
567
+ },
568
+ ],
569
+ [
570
+ 'sparkle',
571
+ {
572
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M10.5 2h.5a7 7 0 0 0 7 7v2a7 7 0 0 0-7 7H9a7 7 0 0 0-7-7V9a7 7 0 0 0 7-7h1.5ZM10 4.88A8.525 8.525 0 0 0 15.12 10 8.525 8.525 0 0 0 10 15.12 8.525 8.525 0 0 0 4.88 10 8.524 8.524 0 0 0 10 4.88ZM17 4a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM5 16a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z", fill: strokeColor })),
573
+ },
574
+ ],
575
+ [
576
+ 'inbox',
577
+ {
578
+ line: ({ strokeColor }) => (jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2.5 4.5h15v4.75h-5.25V10a2.25 2.25 0 0 1-4.5 0v-.75H2.5V4.5Zm0 6.25v4.75h15v-4.75h-3.825a3.751 3.751 0 0 1-7.35 0H2.5ZM17.5 3h-15A1.5 1.5 0 0 0 1 4.5v11A1.5 1.5 0 0 0 2.5 17h15a1.5 1.5 0 0 0 1.5-1.5v-11A1.5 1.5 0 0 0 17.5 3Z", fill: strokeColor })),
579
+ },
580
+ ],
581
+ [
582
+ 'home',
583
+ {
584
+ line: ({ strokeColor }) => (jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [jsxRuntime.jsx("path", { d: "M 10 13 C 10.552 13 11 12.552 11 12 C 11 11.448 10.552 11 10 11 C 9.448 11 9 11.448 9 12 C 9 12.552 9.448 13 10 13 Z", fill: strokeColor }), jsxRuntime.jsx("path", { d: "M 2 9 L 10 1 L 18 9 L 18 16.5 C 18 17.328 17.328 18 16.5 18 L 3.5 18 C 2.672 18 2 17.328 2 16.5 Z M 16.5 16.5 L 16.5 9.621 L 10 3.121 L 3.5 9.621 L 3.5 16.5 Z", fill: strokeColor })] })),
585
+ },
586
+ ],
587
+ ]);
588
+
589
+ const Icon = React.memo((props) => {
590
+ var _a;
591
+ const theme = hooks_useTheme.useTheme();
592
+ const { name = 'home', size = 20, stroke = 1.5, strokeColor = theme.current.colors['core-icon-primary'], fillColor = 'transparent', coverUp = theme.current.colors['core-surface-primary'], toggle = false, pointer = true, disabled = false, onClick = () => null } = props, svgAttributes = tslib_es6.__rest(props, ["name", "size", "stroke", "strokeColor", "fillColor", "coverUp", "toggle", "pointer", "disabled", "onClick"]);
593
+ const { id: svgId, className, style } = svgAttributes, rest = tslib_es6.__rest(svgAttributes, ["id", "className", "style"]);
594
+ // memo cursor style
595
+ const cursor = React.useMemo(() => {
596
+ if (disabled)
597
+ return 'default';
598
+ return pointer ? 'pointer' : 'inherit';
599
+ }, [disabled, pointer]);
600
+ // memo icon style
601
+ const iconStyle = React.useMemo(() => {
602
+ return {
603
+ cursor,
604
+ userSelect: 'none',
605
+ WebkitUserSelect: 'none',
606
+ WebkitTapHighlightColor: 'transparent',
607
+ outline: 'none',
608
+ border: 0,
609
+ };
610
+ }, [cursor]);
611
+ const variantKey = toggle ? 'lineOn' : 'line';
612
+ const iconVariant = STATIC_ICON_REGISTRY.get(name);
613
+ const shape = (_a = iconVariant === null || iconVariant === void 0 ? void 0 : iconVariant[variantKey]) !== null && _a !== void 0 ? _a : iconVariant === null || iconVariant === void 0 ? void 0 : iconVariant.line;
614
+ if (!shape)
615
+ return null;
616
+ return (jsxRuntime.jsxs("svg", Object.assign({ id: svgId, className: className, xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 20 20", style: Object.assign(Object.assign({}, (style !== null && style !== void 0 ? style : {})), iconStyle), onClick: (e) => onClick(e), fill: fillColor, role: "img", "aria-label": `${name} icon`, tabIndex: pointer && !disabled ? 0 : -1, onKeyDown: (e) => utils.accessibleKeyDown(e, () => onClick), opacity: disabled ? 0.5 : 1 }, rest, { children: [jsxRuntime.jsx("title", {}), shape({ stroke, strokeColor, fillColor, coverUp })] })));
617
+ });
618
+ Icon.displayName = 'Icon';
619
+
620
+ exports.IconNames = void 0;
621
+ (function (IconNames) {
622
+ IconNames["home"] = "home";
623
+ IconNames["inbox"] = "inbox";
624
+ IconNames["sparkle"] = "sparkle";
625
+ IconNames["people"] = "people";
626
+ IconNames["wallet"] = "wallet";
627
+ IconNames["invoice"] = "invoice";
628
+ IconNames["payment"] = "payment";
629
+ IconNames["heart"] = "heart";
630
+ IconNames["clock"] = "clock";
631
+ IconNames["book"] = "book";
632
+ IconNames["search"] = "search";
633
+ IconNames["filter"] = "filter";
634
+ IconNames["more"] = "more";
635
+ IconNames["unchecked"] = "unchecked";
636
+ IconNames["checked"] = "checked";
637
+ IconNames["partial"] = "partial";
638
+ IconNames["chevronDown"] = "chevron down";
639
+ IconNames["chevronUp"] = "chevron up";
640
+ IconNames["plus"] = "plus";
641
+ IconNames["plusCircle"] = "plus circle";
642
+ IconNames["x"] = "x";
643
+ IconNames["gpAssist"] = "g-p assist";
644
+ IconNames["upload"] = "upload";
645
+ IconNames["download"] = "download";
646
+ IconNames["share"] = "share";
647
+ IconNames["checkCircle"] = "check circle";
648
+ IconNames["circle"] = "circle";
649
+ IconNames["circleFill"] = "circle fill";
650
+ IconNames["person"] = "person";
651
+ IconNames["ctrlKey"] = "ctrl key";
652
+ IconNames["commandKey"] = "cmd key";
653
+ IconNames["gKey"] = "g key";
654
+ IconNames["attach"] = "attach";
655
+ IconNames["menu"] = "menu";
656
+ IconNames["help"] = "help";
657
+ IconNames["blank"] = "blank";
658
+ IconNames["check"] = "check";
659
+ IconNames["message"] = "message";
660
+ IconNames["info"] = "info";
661
+ IconNames["alert"] = "alert";
662
+ IconNames["notification"] = "notification";
663
+ IconNames["arrowUp"] = "arrow up";
664
+ IconNames["arrowLeft"] = "arrow left";
665
+ IconNames["arrowRight"] = "arrow right";
666
+ IconNames["navigate"] = "navigate";
667
+ IconNames["document"] = "document";
668
+ IconNames["refresh"] = "refresh";
669
+ IconNames["recentChats"] = "recent chats";
670
+ IconNames["trashBin"] = "trash bin";
671
+ IconNames["dollar"] = "dollar";
672
+ IconNames["apple"] = "apple";
673
+ IconNames["view"] = "view";
674
+ IconNames["openCircle"] = "open circle";
675
+ IconNames["expanded"] = "expanded";
676
+ IconNames["concise"] = "concise";
677
+ IconNames["moderate"] = "moderate";
678
+ IconNames["mail"] = "mail";
679
+ IconNames["textDocument"] = "text document";
680
+ IconNames["complianceCheck"] = "compliance check";
681
+ IconNames["edit"] = "edit";
682
+ IconNames["characterBeam"] = "character beam";
683
+ IconNames["undo"] = "undo";
684
+ IconNames["chat"] = "chat";
685
+ IconNames["exclamation"] = "exclamation";
686
+ IconNames["chart"] = "chart";
687
+ IconNames["lightBulb"] = "light bulb";
688
+ IconNames["settings"] = "settings";
689
+ IconNames["documentEditor"] = "document editor";
690
+ IconNames["chartArrow"] = "chart arrow";
691
+ IconNames["focus"] = "focus";
692
+ IconNames["briefcase"] = "briefcase";
693
+ IconNames["globeLocation"] = "globe location";
694
+ IconNames["barChart"] = "bar chart";
695
+ IconNames["fontSmaller"] = "font smaller";
696
+ IconNames["fontLarger"] = "font larger";
697
+ IconNames["copy"] = "copy";
698
+ IconNames["stop"] = "stop";
699
+ IconNames["like"] = "like";
700
+ IconNames["unlike"] = "unlike";
701
+ IconNames["bold"] = "bold";
702
+ IconNames["italic"] = "italic";
703
+ IconNames["underline"] = "underline";
704
+ IconNames["strike"] = "strike";
705
+ IconNames["bulletList"] = "bullet list";
706
+ IconNames["numberedList"] = "numbered list";
707
+ IconNames["sink"] = "sink";
708
+ IconNames["lift"] = "lift";
709
+ IconNames["code"] = "code";
710
+ IconNames["taskList"] = "task list";
711
+ IconNames["highlight"] = "highlight";
712
+ })(exports.IconNames || (exports.IconNames = {}));
713
+
714
+ exports.Icon = Icon;