@forgedevstack/bear 1.3.1 → 1.3.3

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 (491) hide show
  1. package/README.md +30 -0
  2. package/dist/components/Accordion/components/AccordionItem/AccordionItem.cjs +1 -1
  3. package/dist/components/Accordion/components/AccordionItem/AccordionItem.js +1 -1
  4. package/dist/components/Alert/Alert.cjs +1 -1
  5. package/dist/components/Alert/Alert.js +1 -1
  6. package/dist/components/ApprovalCard/ApprovalCard.cjs +1 -0
  7. package/dist/components/ApprovalCard/ApprovalCard.const.cjs +1 -0
  8. package/dist/components/ApprovalCard/ApprovalCard.const.d.ts +2 -0
  9. package/dist/components/ApprovalCard/ApprovalCard.const.js +8 -0
  10. package/dist/components/ApprovalCard/ApprovalCard.d.ts +2 -0
  11. package/dist/components/ApprovalCard/ApprovalCard.js +25 -0
  12. package/dist/components/ApprovalCard/ApprovalCard.types.d.ts +15 -0
  13. package/dist/components/ApprovalCard/index.d.ts +2 -0
  14. package/dist/components/ArtifactCard/ArtifactCard.cjs +1 -0
  15. package/dist/components/ArtifactCard/ArtifactCard.const.cjs +1 -0
  16. package/dist/components/ArtifactCard/ArtifactCard.const.d.ts +3 -0
  17. package/dist/components/ArtifactCard/ArtifactCard.const.js +8 -0
  18. package/dist/components/ArtifactCard/ArtifactCard.d.ts +2 -0
  19. package/dist/components/ArtifactCard/ArtifactCard.js +43 -0
  20. package/dist/components/ArtifactCard/ArtifactCard.types.d.ts +15 -0
  21. package/dist/components/ArtifactCard/index.d.ts +2 -0
  22. package/dist/components/Avatar/Avatar.cjs +1 -1
  23. package/dist/components/Avatar/Avatar.js +1 -1
  24. package/dist/components/BackTop/BackTop.cjs +1 -1
  25. package/dist/components/BackTop/BackTop.js +1 -1
  26. package/dist/components/Banner/Banner.const.cjs +1 -1
  27. package/dist/components/Banner/Banner.const.js +10 -9
  28. package/dist/components/Blockquote/Blockquote.cjs +1 -1
  29. package/dist/components/Blockquote/Blockquote.js +1 -1
  30. package/dist/components/BottomSheet/BottomSheet.cjs +1 -1
  31. package/dist/components/BottomSheet/BottomSheet.js +1 -1
  32. package/dist/components/Breadcrumbs/Breadcrumbs.cjs +1 -1
  33. package/dist/components/Breadcrumbs/Breadcrumbs.js +1 -1
  34. package/dist/components/Calendar/Calendar.cjs +1 -1
  35. package/dist/components/Calendar/Calendar.js +1 -1
  36. package/dist/components/Chart/BarChart.cjs +1 -1
  37. package/dist/components/Chart/BarChart.d.ts +1 -2
  38. package/dist/components/Chart/BarChart.js +74 -61
  39. package/dist/components/Chart/Chart.cjs +1 -1
  40. package/dist/components/Chart/Chart.const.cjs +1 -1
  41. package/dist/components/Chart/Chart.const.d.ts +24 -3
  42. package/dist/components/Chart/Chart.const.js +39 -16
  43. package/dist/components/Chart/Chart.d.ts +1 -5
  44. package/dist/components/Chart/Chart.js +23 -24
  45. package/dist/components/Chart/Chart.types.d.ts +12 -20
  46. package/dist/components/Chart/Chart.utils.cjs +1 -1
  47. package/dist/components/Chart/Chart.utils.d.ts +8 -18
  48. package/dist/components/Chart/Chart.utils.js +39 -3
  49. package/dist/components/Chart/FunnelChart.cjs +1 -0
  50. package/dist/components/Chart/FunnelChart.d.ts +2 -0
  51. package/dist/components/Chart/FunnelChart.js +61 -0
  52. package/dist/components/Chart/LineChart.cjs +1 -1
  53. package/dist/components/Chart/LineChart.d.ts +1 -2
  54. package/dist/components/Chart/LineChart.js +80 -70
  55. package/dist/components/Chart/PieChart.cjs +1 -1
  56. package/dist/components/Chart/PieChart.d.ts +1 -2
  57. package/dist/components/Chart/PieChart.js +140 -105
  58. package/dist/components/Chart/PieChart.types.d.ts +8 -0
  59. package/dist/components/Chart/RadarChart.cjs +1 -0
  60. package/dist/components/Chart/RadarChart.d.ts +2 -0
  61. package/dist/components/Chart/RadarChart.js +123 -0
  62. package/dist/components/Chart/index.d.ts +3 -1
  63. package/dist/components/Chat/Chat.cjs +1 -1
  64. package/dist/components/Chat/Chat.const.cjs +1 -1
  65. package/dist/components/Chat/Chat.const.d.ts +9 -22
  66. package/dist/components/Chat/Chat.const.js +18 -26
  67. package/dist/components/Chat/Chat.d.ts +1 -20
  68. package/dist/components/Chat/Chat.js +107 -162
  69. package/dist/components/Chat/Chat.types.d.ts +20 -27
  70. package/dist/components/Chat/Chat.utils.cjs +1 -0
  71. package/dist/components/Chat/Chat.utils.d.ts +2 -0
  72. package/dist/components/Chat/Chat.utils.js +10 -0
  73. package/dist/components/Chat/helpers/ChatTypingIndicator.cjs +1 -0
  74. package/dist/components/Chat/helpers/ChatTypingIndicator.d.ts +3 -0
  75. package/dist/components/Chat/helpers/ChatTypingIndicator.js +14 -0
  76. package/dist/components/Chat/index.d.ts +2 -1
  77. package/dist/components/ChatBubble/ChatBubble.cjs +1 -0
  78. package/dist/components/ChatBubble/ChatBubble.const.cjs +1 -0
  79. package/dist/components/ChatBubble/ChatBubble.const.d.ts +13 -0
  80. package/dist/components/ChatBubble/ChatBubble.const.js +17 -0
  81. package/dist/components/ChatBubble/ChatBubble.d.ts +2 -0
  82. package/dist/components/ChatBubble/ChatBubble.js +32 -0
  83. package/dist/components/ChatBubble/ChatBubble.types.d.ts +12 -0
  84. package/dist/components/ChatBubble/ChatBubble.utils.cjs +1 -0
  85. package/dist/components/ChatBubble/ChatBubble.utils.d.ts +6 -0
  86. package/dist/components/ChatBubble/ChatBubble.utils.js +15 -0
  87. package/dist/components/ChatBubble/helpers/ChatBubbleSystem.cjs +1 -0
  88. package/dist/components/ChatBubble/helpers/ChatBubbleSystem.d.ts +2 -0
  89. package/dist/components/ChatBubble/helpers/ChatBubbleSystem.js +21 -0
  90. package/dist/components/ChatBubble/helpers/ChatBubbleThread.cjs +1 -0
  91. package/dist/components/ChatBubble/helpers/ChatBubbleThread.d.ts +4 -0
  92. package/dist/components/ChatBubble/helpers/ChatBubbleThread.js +63 -0
  93. package/dist/components/ChatBubble/index.d.ts +2 -0
  94. package/dist/components/ChatError/ChatError.cjs +1 -0
  95. package/dist/components/ChatError/ChatError.const.cjs +1 -0
  96. package/dist/components/ChatError/ChatError.const.d.ts +2 -0
  97. package/dist/components/ChatError/ChatError.const.js +8 -0
  98. package/dist/components/ChatError/ChatError.d.ts +2 -0
  99. package/dist/components/ChatError/ChatError.js +32 -0
  100. package/dist/components/ChatError/ChatError.types.d.ts +14 -0
  101. package/dist/components/ChatError/index.d.ts +2 -0
  102. package/dist/components/CitationList/CitationList.cjs +1 -0
  103. package/dist/components/CitationList/CitationList.d.ts +2 -0
  104. package/dist/components/CitationList/CitationList.js +30 -0
  105. package/dist/components/CitationList/CitationList.types.d.ts +15 -0
  106. package/dist/components/CitationList/helpers/CitationListTitle.cjs +1 -0
  107. package/dist/components/CitationList/helpers/CitationListTitle.d.ts +2 -0
  108. package/dist/components/CitationList/helpers/CitationListTitle.js +10 -0
  109. package/dist/components/CitationList/helpers/index.d.ts +1 -0
  110. package/dist/components/CitationList/index.d.ts +2 -0
  111. package/dist/components/ContextMeter/ContextMeter.cjs +1 -0
  112. package/dist/components/ContextMeter/ContextMeter.const.cjs +1 -0
  113. package/dist/components/ContextMeter/ContextMeter.const.d.ts +6 -0
  114. package/dist/components/ContextMeter/ContextMeter.const.js +11 -0
  115. package/dist/components/ContextMeter/ContextMeter.d.ts +2 -0
  116. package/dist/components/ContextMeter/ContextMeter.js +49 -0
  117. package/dist/components/ContextMeter/ContextMeter.types.d.ts +11 -0
  118. package/dist/components/ContextMeter/ContextMeter.utils.cjs +1 -0
  119. package/dist/components/ContextMeter/ContextMeter.utils.d.ts +2 -0
  120. package/dist/components/ContextMeter/ContextMeter.utils.js +12 -0
  121. package/dist/components/ContextMeter/index.d.ts +2 -0
  122. package/dist/components/CurrencyInput/CurrencyInput.cjs +1 -1
  123. package/dist/components/CurrencyInput/CurrencyInput.js +1 -1
  124. package/dist/components/DatePicker/DatePicker.cjs +1 -1
  125. package/dist/components/DatePicker/DatePicker.js +1 -1
  126. package/dist/components/DateRangePicker/DateRangePicker.cjs +1 -1
  127. package/dist/components/DateRangePicker/DateRangePicker.js +1 -1
  128. package/dist/components/Drawer/Drawer.cjs +1 -1
  129. package/dist/components/Drawer/Drawer.const.cjs +1 -1
  130. package/dist/components/Drawer/Drawer.const.d.ts +4 -12
  131. package/dist/components/Drawer/Drawer.const.js +7 -55
  132. package/dist/components/Drawer/Drawer.d.ts +1 -2
  133. package/dist/components/Drawer/Drawer.js +78 -112
  134. package/dist/components/Drawer/Drawer.types.d.ts +20 -4
  135. package/dist/components/Drawer/Drawer.utils.d.ts +0 -4
  136. package/dist/components/Drawer/components/DrawerHeader/DrawerHeader.cjs +1 -0
  137. package/dist/components/Drawer/components/DrawerHeader/DrawerHeader.d.ts +2 -0
  138. package/dist/components/Drawer/components/DrawerHeader/DrawerHeader.js +26 -0
  139. package/dist/components/Drawer/components/DrawerHeader/DrawerHeader.types.d.ts +20 -0
  140. package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderClose.cjs +1 -0
  141. package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderClose.d.ts +2 -0
  142. package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderClose.js +17 -0
  143. package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderTitle.cjs +1 -0
  144. package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderTitle.d.ts +2 -0
  145. package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderTitle.js +9 -0
  146. package/dist/components/Drawer/components/DrawerHeader/index.d.ts +2 -0
  147. package/dist/components/Drawer/components/index.d.ts +1 -0
  148. package/dist/components/Drawer/helpers/DrawerOptionalHeader.cjs +1 -0
  149. package/dist/components/Drawer/helpers/DrawerOptionalHeader.d.ts +2 -0
  150. package/dist/components/Drawer/helpers/DrawerOptionalHeader.js +9 -0
  151. package/dist/components/Drawer/helpers/index.d.ts +1 -0
  152. package/dist/components/Drawer/hooks/index.d.ts +1 -0
  153. package/dist/components/Drawer/hooks/useDrawer.cjs +1 -0
  154. package/dist/components/Drawer/hooks/useDrawer.d.ts +2 -0
  155. package/dist/components/Drawer/hooks/useDrawer.js +50 -0
  156. package/dist/components/Drawer/index.d.ts +1 -1
  157. package/dist/components/Editable/Editable.cjs +1 -1
  158. package/dist/components/Editable/Editable.js +1 -1
  159. package/dist/components/EmptyState/EmptyState.cjs +1 -1
  160. package/dist/components/EmptyState/EmptyState.const.cjs +1 -1
  161. package/dist/components/EmptyState/EmptyState.const.d.ts +8 -6
  162. package/dist/components/EmptyState/EmptyState.const.js +15 -8
  163. package/dist/components/EmptyState/EmptyState.d.ts +1 -2
  164. package/dist/components/EmptyState/EmptyState.js +39 -43
  165. package/dist/components/EmptyState/EmptyState.types.d.ts +2 -0
  166. package/dist/components/EmptyState/helpers/EmptyStateErrorSvg.cjs +1 -0
  167. package/dist/components/EmptyState/helpers/EmptyStateErrorSvg.d.ts +3 -0
  168. package/dist/components/EmptyState/helpers/EmptyStateErrorSvg.js +8 -0
  169. package/dist/components/EmptyState/helpers/EmptyStateInboxSvg.cjs +1 -0
  170. package/dist/components/EmptyState/helpers/EmptyStateInboxSvg.d.ts +3 -0
  171. package/dist/components/EmptyState/helpers/EmptyStateInboxSvg.js +8 -0
  172. package/dist/components/EmptyState/helpers/EmptyStateSearchSvg.cjs +1 -0
  173. package/dist/components/EmptyState/helpers/EmptyStateSearchSvg.d.ts +3 -0
  174. package/dist/components/EmptyState/helpers/EmptyStateSearchSvg.js +8 -0
  175. package/dist/components/EmptyState/helpers/index.d.ts +3 -0
  176. package/dist/components/EmptyState/index.d.ts +1 -1
  177. package/dist/components/FileTree/FileTree.cjs +1 -1
  178. package/dist/components/FileTree/FileTree.js +1 -1
  179. package/dist/components/FloatingChat/FloatingChat.cjs +1 -1
  180. package/dist/components/FloatingChat/FloatingChat.const.cjs +1 -1
  181. package/dist/components/FloatingChat/FloatingChat.const.d.ts +12 -1
  182. package/dist/components/FloatingChat/FloatingChat.const.js +25 -7
  183. package/dist/components/FloatingChat/FloatingChat.d.ts +1 -18
  184. package/dist/components/FloatingChat/FloatingChat.js +93 -124
  185. package/dist/components/FloatingChat/FloatingChat.types.d.ts +11 -22
  186. package/dist/components/FloatingChat/FloatingChat.utils.cjs +1 -0
  187. package/dist/components/FloatingChat/FloatingChat.utils.d.ts +2 -0
  188. package/dist/components/FloatingChat/FloatingChat.utils.js +12 -0
  189. package/dist/components/FloatingChat/helpers/FloatingChatHeader.cjs +1 -0
  190. package/dist/components/FloatingChat/helpers/FloatingChatHeader.d.ts +9 -0
  191. package/dist/components/FloatingChat/helpers/FloatingChatHeader.js +21 -0
  192. package/dist/components/FloatingChat/helpers/FloatingChatTrigger.cjs +1 -0
  193. package/dist/components/FloatingChat/helpers/FloatingChatTrigger.d.ts +9 -0
  194. package/dist/components/FloatingChat/helpers/FloatingChatTrigger.js +17 -0
  195. package/dist/components/FloatingChat/index.d.ts +1 -1
  196. package/dist/components/FormSkeleton/FormSkeleton.cjs +1 -1
  197. package/dist/components/FormSkeleton/FormSkeleton.d.ts +1 -1
  198. package/dist/components/FormSkeleton/FormSkeleton.js +35 -24
  199. package/dist/components/Gauge/Gauge.cjs +1 -1
  200. package/dist/components/Gauge/Gauge.const.cjs +1 -1
  201. package/dist/components/Gauge/Gauge.const.d.ts +5 -0
  202. package/dist/components/Gauge/Gauge.const.js +11 -6
  203. package/dist/components/Gauge/Gauge.d.ts +1 -2
  204. package/dist/components/Gauge/Gauge.js +69 -45
  205. package/dist/components/Gauge/Gauge.types.d.ts +11 -2
  206. package/dist/components/Gauge/helpers/GaugeLinearBar.cjs +1 -0
  207. package/dist/components/Gauge/helpers/GaugeLinearBar.d.ts +2 -0
  208. package/dist/components/Gauge/helpers/GaugeLinearBar.js +40 -0
  209. package/dist/components/Heatmap/Heatmap.cjs +1 -1
  210. package/dist/components/Heatmap/Heatmap.const.cjs +1 -1
  211. package/dist/components/Heatmap/Heatmap.const.d.ts +2 -0
  212. package/dist/components/Heatmap/Heatmap.const.js +8 -6
  213. package/dist/components/Heatmap/Heatmap.js +51 -47
  214. package/dist/components/Heatmap/Heatmap.types.d.ts +1 -1
  215. package/dist/components/Icon/Icon.d.ts +2 -39
  216. package/dist/components/Icon/Icon.types.d.ts +1 -17
  217. package/dist/components/Icon/icons/action.d.ts +1 -85
  218. package/dist/components/Icon/icons/bear.d.ts +1 -12
  219. package/dist/components/Icon/icons/charts.d.ts +1 -0
  220. package/dist/components/Icon/icons/commerce.d.ts +1 -25
  221. package/dist/components/Icon/icons/communication.d.ts +1 -48
  222. package/dist/components/Icon/icons/content.d.ts +1 -53
  223. package/dist/components/Icon/icons/device.d.ts +1 -27
  224. package/dist/components/Icon/icons/editor.d.ts +1 -54
  225. package/dist/components/Icon/icons/file.d.ts +1 -25
  226. package/dist/components/Icon/icons/index.d.ts +1 -9
  227. package/dist/components/Icon/icons/media.d.ts +1 -64
  228. package/dist/components/Icon/icons/misc.d.ts +1 -96
  229. package/dist/components/Icon/icons/navigation.d.ts +1 -56
  230. package/dist/components/Icon/icons/social.d.ts +1 -24
  231. package/dist/components/Icon/icons/status.d.ts +1 -61
  232. package/dist/components/Icon/index.d.ts +3 -605
  233. package/dist/components/Icon/productIcons.cjs +1 -0
  234. package/dist/components/Icon/productIcons.d.ts +7 -0
  235. package/dist/components/Icon/productIcons.js +25 -0
  236. package/dist/components/ImageAnnotation/ImageAnnotation.cjs +1 -1
  237. package/dist/components/ImageAnnotation/ImageAnnotation.js +1 -1
  238. package/dist/components/JsonViewer/JsonViewer.cjs +1 -1
  239. package/dist/components/JsonViewer/JsonViewer.js +1 -1
  240. package/dist/components/MediaPlayer/MediaPlayer.cjs +1 -1
  241. package/dist/components/MediaPlayer/MediaPlayer.js +1 -1
  242. package/dist/components/MessageActions/MessageActions.cjs +1 -0
  243. package/dist/components/MessageActions/MessageActions.const.cjs +1 -0
  244. package/dist/components/MessageActions/MessageActions.const.d.ts +2 -0
  245. package/dist/components/MessageActions/MessageActions.const.js +10 -0
  246. package/dist/components/MessageActions/MessageActions.d.ts +2 -0
  247. package/dist/components/MessageActions/MessageActions.js +31 -0
  248. package/dist/components/MessageActions/MessageActions.types.d.ts +16 -0
  249. package/dist/components/MessageActions/index.d.ts +2 -0
  250. package/dist/components/Modal/Modal.cjs +1 -1
  251. package/dist/components/Modal/Modal.js +1 -1
  252. package/dist/components/ModelSelect/ModelSelect.cjs +1 -0
  253. package/dist/components/ModelSelect/ModelSelect.const.cjs +1 -0
  254. package/dist/components/ModelSelect/ModelSelect.const.d.ts +1 -0
  255. package/dist/components/ModelSelect/ModelSelect.const.js +4 -0
  256. package/dist/components/ModelSelect/ModelSelect.d.ts +2 -0
  257. package/dist/components/ModelSelect/ModelSelect.js +41 -0
  258. package/dist/components/ModelSelect/ModelSelect.types.d.ts +16 -0
  259. package/dist/components/ModelSelect/index.d.ts +2 -0
  260. package/dist/components/OverlayPortal/OverlayPortal.const.cjs +1 -1
  261. package/dist/components/OverlayPortal/OverlayPortal.const.js +6 -5
  262. package/dist/components/PageNav/PageNav.cjs +1 -1
  263. package/dist/components/PageNav/PageNav.js +1 -1
  264. package/dist/components/PasswordInput/PasswordInput.cjs +1 -1
  265. package/dist/components/PasswordInput/PasswordInput.js +1 -1
  266. package/dist/components/PromptComposer/PromptComposer.cjs +1 -0
  267. package/dist/components/PromptComposer/PromptComposer.const.cjs +1 -0
  268. package/dist/components/PromptComposer/PromptComposer.const.d.ts +6 -0
  269. package/dist/components/PromptComposer/PromptComposer.const.js +14 -0
  270. package/dist/components/PromptComposer/PromptComposer.d.ts +2 -0
  271. package/dist/components/PromptComposer/PromptComposer.js +132 -0
  272. package/dist/components/PromptComposer/PromptComposer.types.d.ts +45 -0
  273. package/dist/components/PromptComposer/PromptComposer.utils.cjs +1 -0
  274. package/dist/components/PromptComposer/PromptComposer.utils.d.ts +5 -0
  275. package/dist/components/PromptComposer/PromptComposer.utils.js +16 -0
  276. package/dist/components/PromptComposer/helpers/PromptComposerAttachSvg.cjs +1 -0
  277. package/dist/components/PromptComposer/helpers/PromptComposerAttachSvg.d.ts +1 -0
  278. package/dist/components/PromptComposer/helpers/PromptComposerAttachSvg.js +6 -0
  279. package/dist/components/PromptComposer/helpers/PromptComposerFileChip.cjs +1 -0
  280. package/dist/components/PromptComposer/helpers/PromptComposerFileChip.d.ts +2 -0
  281. package/dist/components/PromptComposer/helpers/PromptComposerFileChip.js +18 -0
  282. package/dist/components/PromptComposer/helpers/PromptComposerSendSvg.cjs +1 -0
  283. package/dist/components/PromptComposer/helpers/PromptComposerSendSvg.d.ts +1 -0
  284. package/dist/components/PromptComposer/helpers/PromptComposerSendSvg.js +9 -0
  285. package/dist/components/PromptComposer/helpers/PromptComposerStopSvg.cjs +1 -0
  286. package/dist/components/PromptComposer/helpers/PromptComposerStopSvg.d.ts +1 -0
  287. package/dist/components/PromptComposer/helpers/PromptComposerStopSvg.js +6 -0
  288. package/dist/components/PromptComposer/helpers/index.d.ts +4 -0
  289. package/dist/components/PromptComposer/index.d.ts +2 -0
  290. package/dist/components/PromptSuggestions/PromptSuggestions.cjs +1 -0
  291. package/dist/components/PromptSuggestions/PromptSuggestions.d.ts +2 -0
  292. package/dist/components/PromptSuggestions/PromptSuggestions.js +39 -0
  293. package/dist/components/PromptSuggestions/PromptSuggestions.types.d.ts +13 -0
  294. package/dist/components/PromptSuggestions/index.d.ts +2 -0
  295. package/dist/components/PropsPlayground/PropsPlayground.cjs +1 -1
  296. package/dist/components/PropsPlayground/PropsPlayground.js +1 -1
  297. package/dist/components/Rating/components/StarIcon/StarIcon.cjs +1 -1
  298. package/dist/components/Rating/components/StarIcon/StarIcon.js +1 -1
  299. package/dist/components/Result/Result.utils.cjs +1 -1
  300. package/dist/components/Result/Result.utils.js +1 -1
  301. package/dist/components/RichEditor/components/ToolbarColorPicker/ToolbarColorPicker.cjs +1 -1
  302. package/dist/components/RichEditor/components/ToolbarColorPicker/ToolbarColorPicker.js +1 -1
  303. package/dist/components/RichEditor/components/ToolbarDropdown/ToolbarDropdown.cjs +1 -1
  304. package/dist/components/RichEditor/components/ToolbarDropdown/ToolbarDropdown.js +1 -1
  305. package/dist/components/RichEditor/components/ToolbarMore/ToolbarMore.cjs +1 -1
  306. package/dist/components/RichEditor/components/ToolbarMore/ToolbarMore.js +1 -1
  307. package/dist/components/RichEditor/components/ToolbarSignature/ToolbarSignature.cjs +1 -1
  308. package/dist/components/RichEditor/components/ToolbarSignature/ToolbarSignature.js +1 -1
  309. package/dist/components/RichEditor/helpers/IconRender.cjs +1 -1
  310. package/dist/components/RichEditor/helpers/IconRender.js +1 -1
  311. package/dist/components/RichEditor/helpers/toolbarItemRender.cjs +1 -1
  312. package/dist/components/RichEditor/helpers/toolbarItemRender.js +1 -1
  313. package/dist/components/RingProgress/RingProgress.cjs +1 -1
  314. package/dist/components/RingProgress/RingProgress.const.cjs +1 -1
  315. package/dist/components/RingProgress/RingProgress.const.d.ts +3 -0
  316. package/dist/components/RingProgress/RingProgress.const.js +7 -4
  317. package/dist/components/RingProgress/RingProgress.js +38 -37
  318. package/dist/components/RingProgress/RingProgress.types.d.ts +1 -0
  319. package/dist/components/Select/Select.cjs +1 -1
  320. package/dist/components/Select/Select.js +23 -23
  321. package/dist/components/Select/helpers/SelectCheckSvg.cjs +1 -0
  322. package/dist/components/Select/helpers/SelectCheckSvg.d.ts +3 -0
  323. package/dist/components/Select/helpers/SelectCheckSvg.js +8 -0
  324. package/dist/components/Select/helpers/SelectChevronDownSvg.cjs +1 -0
  325. package/dist/components/Select/helpers/SelectChevronDownSvg.d.ts +3 -0
  326. package/dist/components/Select/helpers/SelectChevronDownSvg.js +8 -0
  327. package/dist/components/Select/helpers/index.d.ts +2 -0
  328. package/dist/components/Sidebar/Sidebar.cjs +1 -1
  329. package/dist/components/Sidebar/Sidebar.js +16 -15
  330. package/dist/components/Sidebar/Sidebar.types.d.ts +1 -1
  331. package/dist/components/Sidebar/Sidebar.utils.cjs +1 -0
  332. package/dist/components/Sidebar/Sidebar.utils.d.ts +2 -0
  333. package/dist/components/Sidebar/Sidebar.utils.js +11 -0
  334. package/dist/components/Sidebar/components/SidebarGroup/SidebarGroup.cjs +1 -1
  335. package/dist/components/Sidebar/components/SidebarGroup/SidebarGroup.js +1 -1
  336. package/dist/components/Sidebar/components/SidebarItem/SidebarItem.cjs +1 -1
  337. package/dist/components/Sidebar/components/SidebarItem/SidebarItem.js +55 -51
  338. package/dist/components/Sidebar/index.d.ts +1 -0
  339. package/dist/components/Skeleton/Skeleton.cjs +1 -1
  340. package/dist/components/Skeleton/Skeleton.const.cjs +2 -2
  341. package/dist/components/Skeleton/Skeleton.const.js +5 -6
  342. package/dist/components/Skeleton/Skeleton.js +59 -59
  343. package/dist/components/SliderRange/SliderRange.cjs +1 -1
  344. package/dist/components/SliderRange/SliderRange.js +19 -19
  345. package/dist/components/Sparkline/Sparkline.cjs +1 -1
  346. package/dist/components/Sparkline/Sparkline.const.cjs +1 -1
  347. package/dist/components/Sparkline/Sparkline.const.d.ts +5 -0
  348. package/dist/components/Sparkline/Sparkline.const.js +9 -4
  349. package/dist/components/Sparkline/Sparkline.d.ts +1 -2
  350. package/dist/components/Sparkline/Sparkline.js +75 -53
  351. package/dist/components/Sparkline/Sparkline.types.d.ts +2 -0
  352. package/dist/components/Sparkline/Sparkline.utils.cjs +1 -1
  353. package/dist/components/Sparkline/Sparkline.utils.d.ts +7 -12
  354. package/dist/components/Sparkline/Sparkline.utils.js +33 -20
  355. package/dist/components/Sparkline/index.d.ts +2 -2
  356. package/dist/components/StatCard/StatCard.cjs +1 -1
  357. package/dist/components/StatCard/StatCard.const.cjs +1 -1
  358. package/dist/components/StatCard/StatCard.const.d.ts +0 -7
  359. package/dist/components/StatCard/StatCard.const.js +5 -12
  360. package/dist/components/StatCard/StatCard.d.ts +1 -2
  361. package/dist/components/StatCard/StatCard.js +48 -37
  362. package/dist/components/StatCard/StatCard.utils.cjs +1 -0
  363. package/dist/components/StatCard/StatCard.utils.d.ts +2 -0
  364. package/dist/components/StatCard/StatCard.utils.js +7 -0
  365. package/dist/components/Stepper/Stepper.cjs +1 -1
  366. package/dist/components/Stepper/Stepper.js +1 -1
  367. package/dist/components/StreamingMessage/StreamingMessage.cjs +1 -0
  368. package/dist/components/StreamingMessage/StreamingMessage.const.cjs +1 -0
  369. package/dist/components/StreamingMessage/StreamingMessage.const.d.ts +5 -0
  370. package/dist/components/StreamingMessage/StreamingMessage.const.js +10 -0
  371. package/dist/components/StreamingMessage/StreamingMessage.d.ts +2 -0
  372. package/dist/components/StreamingMessage/StreamingMessage.js +48 -0
  373. package/dist/components/StreamingMessage/StreamingMessage.types.d.ts +15 -0
  374. package/dist/components/StreamingMessage/index.d.ts +2 -0
  375. package/dist/components/Tabs/TabList.cjs +1 -1
  376. package/dist/components/Tabs/TabList.js +1 -1
  377. package/dist/components/ThemeSwitcher/ThemeSwitcher.cjs +1 -0
  378. package/dist/components/ThemeSwitcher/ThemeSwitcher.const.cjs +1 -0
  379. package/dist/components/ThemeSwitcher/ThemeSwitcher.const.d.ts +7 -0
  380. package/dist/components/ThemeSwitcher/ThemeSwitcher.const.js +14 -0
  381. package/dist/components/ThemeSwitcher/ThemeSwitcher.d.ts +2 -0
  382. package/dist/components/ThemeSwitcher/ThemeSwitcher.js +39 -0
  383. package/dist/components/ThemeSwitcher/ThemeSwitcher.types.d.ts +14 -0
  384. package/dist/components/ThemeSwitcher/index.d.ts +2 -0
  385. package/dist/components/ThinkingBlock/ThinkingBlock.cjs +1 -0
  386. package/dist/components/ThinkingBlock/ThinkingBlock.const.cjs +1 -0
  387. package/dist/components/ThinkingBlock/ThinkingBlock.const.d.ts +4 -0
  388. package/dist/components/ThinkingBlock/ThinkingBlock.const.js +9 -0
  389. package/dist/components/ThinkingBlock/ThinkingBlock.d.ts +2 -0
  390. package/dist/components/ThinkingBlock/ThinkingBlock.js +45 -0
  391. package/dist/components/ThinkingBlock/ThinkingBlock.types.d.ts +16 -0
  392. package/dist/components/ThinkingBlock/index.d.ts +2 -0
  393. package/dist/components/TimePicker/TimePicker.cjs +1 -1
  394. package/dist/components/TimePicker/TimePicker.js +1 -1
  395. package/dist/components/TimelineChart/TimelineChart.cjs +1 -1
  396. package/dist/components/TimelineChart/TimelineChart.const.cjs +1 -1
  397. package/dist/components/TimelineChart/TimelineChart.const.d.ts +3 -0
  398. package/dist/components/TimelineChart/TimelineChart.const.js +7 -4
  399. package/dist/components/TimelineChart/TimelineChart.js +56 -42
  400. package/dist/components/TimelineChart/TimelineChart.types.d.ts +1 -1
  401. package/dist/components/ToolCall/ToolCall.cjs +1 -0
  402. package/dist/components/ToolCall/ToolCall.const.cjs +1 -0
  403. package/dist/components/ToolCall/ToolCall.const.d.ts +5 -0
  404. package/dist/components/ToolCall/ToolCall.const.js +17 -0
  405. package/dist/components/ToolCall/ToolCall.d.ts +2 -0
  406. package/dist/components/ToolCall/ToolCall.js +43 -0
  407. package/dist/components/ToolCall/ToolCall.types.d.ts +20 -0
  408. package/dist/components/ToolCall/index.d.ts +2 -0
  409. package/dist/components/Transition/Transition.const.cjs +1 -1
  410. package/dist/components/Transition/Transition.const.js +12 -6
  411. package/dist/components/Transition/Transition.types.d.ts +1 -1
  412. package/dist/components/TreeSelect/TreeSelect.cjs +1 -1
  413. package/dist/components/TreeSelect/TreeSelect.js +1 -1
  414. package/dist/components/TreeSelect/components/TreeSelectExpandControl/TreeSelectExpandControl.cjs +1 -1
  415. package/dist/components/TreeSelect/components/TreeSelectExpandControl/TreeSelectExpandControl.js +1 -1
  416. package/dist/components/TreeView/TreeView.cjs +1 -1
  417. package/dist/components/TreeView/TreeView.js +3 -2
  418. package/dist/components/TreeView/components/TreeViewExpandControl/TreeViewExpandControl.cjs +1 -1
  419. package/dist/components/TreeView/components/TreeViewExpandControl/TreeViewExpandControl.js +1 -1
  420. package/dist/components/TreeView/components/TreeViewNodeIcon/TreeViewNodeIcon.cjs +1 -1
  421. package/dist/components/TreeView/components/TreeViewNodeIcon/TreeViewNodeIcon.js +1 -1
  422. package/dist/components/index.cjs +1 -1
  423. package/dist/components/index.d.ts +39 -11
  424. package/dist/components/index.js +455 -420
  425. package/dist/constants/generals.const.cjs +1 -1
  426. package/dist/constants/generals.const.d.ts +50 -0
  427. package/dist/constants/generals.const.js +154 -108
  428. package/dist/constants/keys.const.cjs +1 -1
  429. package/dist/constants/keys.const.js +2 -1
  430. package/dist/constants/numbers.const.cjs +1 -1
  431. package/dist/constants/numbers.const.d.ts +7 -0
  432. package/dist/constants/numbers.const.js +60 -52
  433. package/dist/context/BearProvider.cjs +1 -1
  434. package/dist/context/BearProvider.d.ts +19 -44
  435. package/dist/context/BearProvider.js +223 -208
  436. package/dist/context/bearProvider.types.d.ts +4 -0
  437. package/dist/context/index.d.ts +1 -1
  438. package/dist/hooks/useFixedAnchorPosition/index.d.ts +1 -1
  439. package/dist/hooks/useFixedAnchorPosition/useFixedAnchorPosition.const.cjs +1 -1
  440. package/dist/hooks/useFixedAnchorPosition/useFixedAnchorPosition.const.d.ts +2 -1
  441. package/dist/hooks/useFixedAnchorPosition/useFixedAnchorPosition.const.js +12 -11
  442. package/dist/hooks/useFixedAnchorPosition/useFixedAnchorPosition.types.d.ts +1 -1
  443. package/dist/icons.cjs +1 -1
  444. package/dist/icons.d.ts +2 -2
  445. package/dist/icons.js +1 -6
  446. package/dist/index.cjs +1 -1
  447. package/dist/index.js +597 -562
  448. package/dist/styles/_ai-chat.css +487 -0
  449. package/dist/styles/_base.css +2 -0
  450. package/dist/styles/_chart.css +144 -0
  451. package/dist/styles/_drawer.css +213 -0
  452. package/dist/styles/_effects.css +8 -4
  453. package/dist/styles/_overlays.css +0 -1
  454. package/dist/styles/_skeleton.css +90 -0
  455. package/dist/styles/main.css +4 -0
  456. package/dist/styles.css +1089 -186
  457. package/package.json +5 -1
  458. package/dist/components/FormSkeleton/FormSkeleton.const.cjs +0 -1
  459. package/dist/components/FormSkeleton/FormSkeleton.const.d.ts +0 -5
  460. package/dist/components/FormSkeleton/FormSkeleton.const.js +0 -8
  461. package/dist/components/Icon/Icon.cjs +0 -1
  462. package/dist/components/Icon/Icon.const.d.ts +0 -1
  463. package/dist/components/Icon/Icon.js +0 -45
  464. package/dist/components/Icon/icons/action.cjs +0 -1
  465. package/dist/components/Icon/icons/action.js +0 -351
  466. package/dist/components/Icon/icons/bear.cjs +0 -1
  467. package/dist/components/Icon/icons/bear.js +0 -47
  468. package/dist/components/Icon/icons/commerce.cjs +0 -1
  469. package/dist/components/Icon/icons/commerce.js +0 -124
  470. package/dist/components/Icon/icons/communication.cjs +0 -1
  471. package/dist/components/Icon/icons/communication.js +0 -184
  472. package/dist/components/Icon/icons/content.cjs +0 -1
  473. package/dist/components/Icon/icons/content.js +0 -231
  474. package/dist/components/Icon/icons/device.cjs +0 -1
  475. package/dist/components/Icon/icons/device.js +0 -122
  476. package/dist/components/Icon/icons/editor.cjs +0 -1
  477. package/dist/components/Icon/icons/editor.js +0 -285
  478. package/dist/components/Icon/icons/file.cjs +0 -1
  479. package/dist/components/Icon/icons/file.js +0 -120
  480. package/dist/components/Icon/icons/media.cjs +0 -1
  481. package/dist/components/Icon/icons/media.js +0 -306
  482. package/dist/components/Icon/icons/misc.cjs +0 -1
  483. package/dist/components/Icon/icons/misc.js +0 -450
  484. package/dist/components/Icon/icons/navigation.cjs +0 -1
  485. package/dist/components/Icon/icons/navigation.js +0 -215
  486. package/dist/components/Icon/icons/social.cjs +0 -1
  487. package/dist/components/Icon/icons/social.js +0 -89
  488. package/dist/components/Icon/icons/status.cjs +0 -1
  489. package/dist/components/Icon/icons/status.js +0 -271
  490. package/dist/components/Icon/index.cjs +0 -1
  491. package/dist/components/Icon/index.js +0 -79
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forgedevstack/bear",
3
- "version": "1.3.1",
3
+ "version": "1.3.3",
4
4
  "description": "Strong, reliable React UI components. AeroCraft-powered, zero config required. The protective force of ForgeStack.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -76,6 +76,7 @@
76
76
  "react-dom": ">=18.0.0"
77
77
  },
78
78
  "devDependencies": {
79
+ "@forgedevstack/bear-icons": "^1.0.1",
79
80
  "@forgedevstack/aerocraft": "^1.0.4",
80
81
  "@types/node": "^22.10.7",
81
82
  "@types/react": "^18.3.18",
@@ -100,6 +101,9 @@
100
101
  "dependencies": {
101
102
  "@forgedevstack/anvil": "^1.0.0"
102
103
  },
104
+ "optionalDependencies": {
105
+ "@forgedevstack/bear-icons": "^1.0.1"
106
+ },
103
107
  "keywords": [
104
108
  "react",
105
109
  "ui",
@@ -1 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const _="Bear-FormSkeleton",E=3,O=14,L=40,F=16;exports.FORM_SKELETON_DEFAULT_FIELDS=E;exports.FORM_SKELETON_FIELD_GAP_PX=F;exports.FORM_SKELETON_FIELD_HEIGHT_PX=L;exports.FORM_SKELETON_LABEL_HEIGHT_PX=O;exports.FORM_SKELETON_ROOT_CLASS=_;
@@ -1,5 +0,0 @@
1
- export declare const FORM_SKELETON_ROOT_CLASS = "Bear-FormSkeleton";
2
- export declare const FORM_SKELETON_DEFAULT_FIELDS = 3;
3
- export declare const FORM_SKELETON_LABEL_HEIGHT_PX = 14;
4
- export declare const FORM_SKELETON_FIELD_HEIGHT_PX = 40;
5
- export declare const FORM_SKELETON_FIELD_GAP_PX = 16;
@@ -1,8 +0,0 @@
1
- const _ = "Bear-FormSkeleton", E = 3, L = 14, O = 40, F = 16;
2
- export {
3
- E as FORM_SKELETON_DEFAULT_FIELDS,
4
- F as FORM_SKELETON_FIELD_GAP_PX,
5
- O as FORM_SKELETON_FIELD_HEIGHT_PX,
6
- L as FORM_SKELETON_LABEL_HEIGHT_PX,
7
- _ as FORM_SKELETON_ROOT_CLASS
8
- };
@@ -1 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const l=require("react/jsx-runtime"),u=require("../../utils/cn.cjs");require("react");const d={xs:12,sm:16,md:20,lg:24,xl:32},m=({size:e="md",color:r="currentColor",strokeWidth:t=2,spin:o=!1,className:s,children:i,testId:a,...c})=>{const n=typeof e=="number"?e:d[e];return l.jsx("svg",{width:n,height:n,viewBox:"0 0 24 24",fill:"none",stroke:r,strokeWidth:t,strokeLinecap:"round",strokeLinejoin:"round",className:u.cn("bear-inline-block bear-shrink-0",o&&"bear-animate-spin",s),"data-testid":a,...c,children:i})};exports.Icon=m;
@@ -1 +0,0 @@
1
- export declare const I_C_O_N_ROOT_CLASS = "Bear-Icon";
@@ -1,45 +0,0 @@
1
- import { jsx as l } from "react/jsx-runtime";
2
- import { cn as c } from "../../utils/cn.js";
3
- import "react";
4
- const p = {
5
- xs: 12,
6
- sm: 16,
7
- md: 20,
8
- lg: 24,
9
- xl: 32
10
- }, f = ({
11
- size: e = "md",
12
- color: r = "currentColor",
13
- strokeWidth: n = 2,
14
- spin: t = !1,
15
- className: i,
16
- children: s,
17
- testId: a,
18
- ...m
19
- }) => {
20
- const o = typeof e == "number" ? e : p[e];
21
- return /* @__PURE__ */ l(
22
- "svg",
23
- {
24
- width: o,
25
- height: o,
26
- viewBox: "0 0 24 24",
27
- fill: "none",
28
- stroke: r,
29
- strokeWidth: n,
30
- strokeLinecap: "round",
31
- strokeLinejoin: "round",
32
- className: c(
33
- "bear-inline-block bear-shrink-0",
34
- t && "bear-animate-spin",
35
- i
36
- ),
37
- "data-testid": a,
38
- ...m,
39
- children: s
40
- }
41
- );
42
- };
43
- export {
44
- f as Icon
45
- };
@@ -1 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const n=require("react/jsx-runtime"),o=require("../Icon.cjs"),s=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("line",{x1:"12",y1:"5",x2:"12",y2:"19"}),n.jsx("line",{x1:"5",y1:"12",x2:"19",y2:"12"})]}),x=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"10"}),n.jsx("line",{x1:"12",y1:"8",x2:"12",y2:"16"}),n.jsx("line",{x1:"8",y1:"12",x2:"16",y2:"12"})]}),e=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}),n.jsx("line",{x1:"12",y1:"8",x2:"12",y2:"16"}),n.jsx("line",{x1:"8",y1:"12",x2:"16",y2:"12"})]}),l=c=>n.jsx(o.Icon,{...c,children:n.jsx("line",{x1:"5",y1:"12",x2:"19",y2:"12"})}),i=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"10"}),n.jsx("line",{x1:"8",y1:"12",x2:"16",y2:"12"})]}),j=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("polyline",{points:"3 6 5 6 21 6"}),n.jsx("path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"})]}),t=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("polyline",{points:"3 6 5 6 21 6"}),n.jsx("path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"}),n.jsx("line",{x1:"10",y1:"11",x2:"10",y2:"17"}),n.jsx("line",{x1:"14",y1:"11",x2:"14",y2:"17"})]}),r=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"11",cy:"11",r:"8"}),n.jsx("line",{x1:"21",y1:"21",x2:"16.65",y2:"16.65"})]}),a=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"11",cy:"11",r:"8"}),n.jsx("line",{x1:"21",y1:"21",x2:"16.65",y2:"16.65"}),n.jsx("line",{x1:"4",y1:"4",x2:"20",y2:"20"})]}),I=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"11",cy:"11",r:"8"}),n.jsx("line",{x1:"21",y1:"21",x2:"16.65",y2:"16.65"}),n.jsx("path",{d:"M11 8v6l4 2"})]}),y=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"3"}),n.jsx("path",{d:"M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z"})]}),h=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("line",{x1:"4",y1:"21",x2:"4",y2:"14"}),n.jsx("line",{x1:"4",y1:"10",x2:"4",y2:"3"}),n.jsx("line",{x1:"12",y1:"21",x2:"12",y2:"12"}),n.jsx("line",{x1:"12",y1:"8",x2:"12",y2:"3"}),n.jsx("line",{x1:"20",y1:"21",x2:"20",y2:"16"}),n.jsx("line",{x1:"20",y1:"12",x2:"20",y2:"3"}),n.jsx("line",{x1:"1",y1:"14",x2:"7",y2:"14"}),n.jsx("line",{x1:"9",y1:"8",x2:"15",y2:"8"}),n.jsx("line",{x1:"17",y1:"16",x2:"23",y2:"16"})]}),d=c=>n.jsx(o.Icon,{...c,children:n.jsx("polygon",{points:"22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3"})}),p=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("line",{x1:"3",y1:"6",x2:"21",y2:"6"}),n.jsx("line",{x1:"6",y1:"12",x2:"18",y2:"12"}),n.jsx("line",{x1:"9",y1:"18",x2:"15",y2:"18"})]}),M=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("line",{x1:"3",y1:"6",x2:"21",y2:"6"}),n.jsx("line",{x1:"3",y1:"12",x2:"15",y2:"12"}),n.jsx("line",{x1:"3",y1:"18",x2:"9",y2:"18"})]}),v=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}),n.jsx("path",{d:"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z"})]}),L=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M12 20h9"}),n.jsx("path",{d:"M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z"})]}),H=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M12 20h9"}),n.jsx("path",{d:"M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z"})]}),u=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z"}),n.jsx("polyline",{points:"17 21 17 13 7 13 7 21"}),n.jsx("polyline",{points:"7 3 7 8 15 8"})]}),g=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}),n.jsx("polyline",{points:"7 10 12 15 17 10"}),n.jsx("line",{x1:"12",y1:"15",x2:"12",y2:"3"})]}),C=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}),n.jsx("polyline",{points:"7 10 12 15 17 10"}),n.jsx("line",{x1:"12",y1:"15",x2:"12",y2:"3"})]}),S=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}),n.jsx("polyline",{points:"17 8 12 3 7 8"}),n.jsx("line",{x1:"12",y1:"3",x2:"12",y2:"15"})]}),f=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("polyline",{points:"8 17 12 21 16 17"}),n.jsx("line",{x1:"12",y1:"12",x2:"12",y2:"21"}),n.jsx("path",{d:"M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29"})]}),m=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("polyline",{points:"16 16 12 12 8 16"}),n.jsx("line",{x1:"12",y1:"12",x2:"12",y2:"21"}),n.jsx("path",{d:"M20.39 18.39A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.3"})]}),A=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("rect",{x:"9",y:"9",width:"13",height:"13",rx:"2",ry:"2"}),n.jsx("path",{d:"M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"})]}),V=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("rect",{x:"9",y:"9",width:"13",height:"13",rx:"2",ry:"2"}),n.jsx("path",{d:"M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"})]}),k=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2"}),n.jsx("rect",{x:"8",y:"2",width:"8",height:"4",rx:"1",ry:"1"})]}),O=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"6",cy:"6",r:"3"}),n.jsx("circle",{cx:"6",cy:"18",r:"3"}),n.jsx("line",{x1:"20",y1:"4",x2:"8.12",y2:"15.88"}),n.jsx("line",{x1:"14.47",y1:"14.48",x2:"20",y2:"20"}),n.jsx("line",{x1:"8.12",y1:"8.12",x2:"12",y2:"12"})]}),F=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("polyline",{points:"1 4 1 10 7 10"}),n.jsx("path",{d:"M3.51 15a9 9 0 1 0 2.13-9.36L1 10"})]}),w=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("polyline",{points:"23 4 23 10 17 10"}),n.jsx("path",{d:"M20.49 15a9 9 0 1 1-2.12-9.36L23 10"})]}),z=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("polyline",{points:"23 4 23 10 17 10"}),n.jsx("polyline",{points:"1 20 1 14 7 14"}),n.jsx("path",{d:"M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15"})]}),B=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("polyline",{points:"23 4 23 10 17 10"}),n.jsx("polyline",{points:"1 20 1 14 7 14"}),n.jsx("path",{d:"M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15"})]}),P=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("polyline",{points:"23 4 23 10 17 10"}),n.jsx("polyline",{points:"1 20 1 14 7 14"}),n.jsx("path",{d:"M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15"})]}),R=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M18.36 6.64a9 9 0 1 1-12.73 0"}),n.jsx("line",{x1:"12",y1:"2",x2:"12",y2:"12"})]}),D=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M18.36 6.64a9 9 0 1 1-12.73 0"}),n.jsx("line",{x1:"12",y1:"2",x2:"12",y2:"12"}),n.jsx("line",{x1:"4",y1:"4",x2:"20",y2:"20"})]}),U=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"}),n.jsx("circle",{cx:"12",cy:"12",r:"3"})]}),b=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24"}),n.jsx("line",{x1:"1",y1:"1",x2:"23",y2:"23"})]}),E=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("rect",{x:"3",y:"11",width:"18",height:"11",rx:"2",ry:"2"}),n.jsx("path",{d:"M7 11V7a5 5 0 0 1 10 0v4"})]}),G=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("rect",{x:"3",y:"11",width:"18",height:"11",rx:"2",ry:"2"}),n.jsx("path",{d:"M7 11V7a5 5 0 0 1 9.9-1"})]}),N=c=>n.jsx(o.Icon,{...c,children:n.jsx("path",{d:"M21 2l-2 2m-7.61 7.61a5.5 5.5 0 1 1-7.778 7.778 5.5 5.5 0 0 1 7.777-7.777zm0 0L15.5 7.5m0 0l3 3L22 7l-3-3m-3.5 3.5L19 4"})}),Z=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"}),n.jsx("circle",{cx:"12",cy:"7",r:"4"})]}),T=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}),n.jsx("circle",{cx:"8.5",cy:"7",r:"4"}),n.jsx("line",{x1:"20",y1:"8",x2:"20",y2:"14"}),n.jsx("line",{x1:"23",y1:"11",x2:"17",y2:"11"})]}),q=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}),n.jsx("circle",{cx:"8.5",cy:"7",r:"4"}),n.jsx("line",{x1:"23",y1:"11",x2:"17",y2:"11"})]}),K=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}),n.jsx("circle",{cx:"9",cy:"7",r:"4"}),n.jsx("path",{d:"M23 21v-2a4 4 0 0 0-3-3.87"}),n.jsx("path",{d:"M16 3.13a4 4 0 0 1 0 7.75"})]}),J=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"}),n.jsx("circle",{cx:"9",cy:"7",r:"4"}),n.jsx("line",{x1:"23",y1:"11",x2:"17",y2:"11"}),n.jsx("line",{x1:"20",y1:"8",x2:"20",y2:"14"})]}),Q=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"11",cy:"11",r:"8"}),n.jsx("line",{x1:"21",y1:"21",x2:"16.65",y2:"16.65"}),n.jsx("line",{x1:"11",y1:"8",x2:"11",y2:"14"}),n.jsx("line",{x1:"8",y1:"11",x2:"14",y2:"11"})]}),W=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"11",cy:"11",r:"8"}),n.jsx("line",{x1:"21",y1:"21",x2:"16.65",y2:"16.65"}),n.jsx("line",{x1:"8",y1:"11",x2:"14",y2:"11"})]}),X=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("polyline",{points:"6 9 6 2 18 2 18 9"}),n.jsx("path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"}),n.jsx("rect",{x:"6",y:"14",width:"12",height:"8"})]}),Y=c=>n.jsx(o.Icon,{...c,children:n.jsx("path",{d:"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z"})}),_=c=>n.jsx(o.Icon,{...c,children:n.jsx("path",{d:"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z"})}),$=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"1"}),n.jsx("circle",{cx:"19",cy:"12",r:"1"}),n.jsx("circle",{cx:"5",cy:"12",r:"1"})]}),n1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"1"}),n.jsx("circle",{cx:"12",cy:"5",r:"1"}),n.jsx("circle",{cx:"12",cy:"19",r:"1"})]}),c1=c=>n.jsx(o.Icon,{...c,children:n.jsx("path",{d:"M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3"})}),o1=c=>n.jsx(o.Icon,{...c,children:n.jsx("path",{d:"M4 14h6v6M20 10h-6V4M14 10l7-7M3 21l7-7"})}),s1=c=>n.jsx(o.Icon,{...c,fill:"currentColor",stroke:"none",children:n.jsx("path",{d:"M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"})}),x1=c=>n.jsx(o.Icon,{...c,children:n.jsx("path",{d:"M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"})}),e1=c=>n.jsx(o.Icon,{...c,fill:"currentColor",stroke:"none",children:n.jsx("polygon",{points:"12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"})}),l1=c=>n.jsx(o.Icon,{...c,children:n.jsx("polygon",{points:"12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"})}),i1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77V2z",fill:"currentColor"}),n.jsx("path",{d:"M12 2L8.91 8.26 2 9.27l5 4.87-1.18 6.88L12 17.77"})]}),j1=c=>n.jsx(o.Icon,{...c,fill:"currentColor",children:n.jsx("path",{d:"M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"})}),t1=c=>n.jsx(o.Icon,{...c,children:n.jsx("path",{d:"M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"})}),r1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"}),n.jsx("line",{x1:"12",y1:"7",x2:"12",y2:"13"}),n.jsx("line",{x1:"9",y1:"10",x2:"15",y2:"10"})]}),a1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"18",cy:"5",r:"3"}),n.jsx("circle",{cx:"6",cy:"12",r:"3"}),n.jsx("circle",{cx:"18",cy:"19",r:"3"}),n.jsx("line",{x1:"8.59",y1:"13.51",x2:"15.42",y2:"17.49"}),n.jsx("line",{x1:"15.41",y1:"6.51",x2:"8.59",y2:"10.49"})]}),I1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}),n.jsx("polyline",{points:"15 3 21 3 21 9"}),n.jsx("line",{x1:"10",y1:"14",x2:"21",y2:"3"})]}),y1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}),n.jsx("polyline",{points:"15 3 21 3 21 9"}),n.jsx("line",{x1:"10",y1:"14",x2:"21",y2:"3"})]}),h1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"}),n.jsx("path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"})]}),d1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"}),n.jsx("path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"}),n.jsx("line",{x1:"1",y1:"1",x2:"23",y2:"23"})]}),p1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("polyline",{points:"21 8 21 21 3 21 3 8"}),n.jsx("rect",{x:"1",y:"3",width:"22",height:"5"}),n.jsx("line",{x1:"10",y1:"12",x2:"14",y2:"12"})]}),M1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("polyline",{points:"21 8 21 21 3 21 3 8"}),n.jsx("rect",{x:"1",y:"3",width:"22",height:"5"}),n.jsx("polyline",{points:"10 14 12 12 14 14"}),n.jsx("line",{x1:"12",y1:"12",x2:"12",y2:"18"})]}),v1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"10"}),n.jsx("path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}),n.jsx("line",{x1:"12",y1:"17",x2:"12.01",y2:"17"})]}),L1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"10"}),n.jsx("path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}),n.jsx("line",{x1:"12",y1:"17",x2:"12.01",y2:"17"})]}),H1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"}),n.jsx("polyline",{points:"16 17 21 12 16 7"}),n.jsx("line",{x1:"21",y1:"12",x2:"9",y2:"12"})]}),u1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"}),n.jsx("polyline",{points:"10 17 15 12 10 7"}),n.jsx("line",{x1:"15",y1:"12",x2:"3",y2:"12"})]}),g1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("line",{x1:"22",y1:"2",x2:"11",y2:"13"}),n.jsx("polygon",{points:"22 2 15 22 11 13 2 9 22 2"})]}),C1=c=>n.jsx(o.Icon,{...c,children:n.jsx("polygon",{points:"13 2 3 14 12 14 11 22 21 10 12 10 13 2"})}),S1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("polygon",{points:"13 2 3 14 12 14 11 22 21 10 12 10 13 2"}),n.jsx("line",{x1:"1",y1:"1",x2:"23",y2:"23"})]}),f1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"9",cy:"21",r:"1"}),n.jsx("circle",{cx:"20",cy:"21",r:"1"}),n.jsx("path",{d:"M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"})]}),m1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("path",{d:"M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"}),n.jsx("line",{x1:"3",y1:"6",x2:"21",y2:"6"}),n.jsx("path",{d:"M16 10a4 4 0 0 1-8 0"})]}),A1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"9",cy:"21",r:"1"}),n.jsx("circle",{cx:"20",cy:"21",r:"1"}),n.jsx("path",{d:"M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"}),n.jsx("line",{x1:"12",y1:"9",x2:"12",y2:"15"}),n.jsx("line",{x1:"9",y1:"12",x2:"15",y2:"12"})]}),V1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("line",{x1:"3",y1:"9",x2:"21",y2:"9"}),n.jsx("line",{x1:"3",y1:"15",x2:"21",y2:"15"})]}),k1=c=>n.jsxs(o.Icon,{...c,children:[n.jsx("circle",{cx:"8",cy:"6",r:"1.5"}),n.jsx("circle",{cx:"16",cy:"6",r:"1.5"}),n.jsx("circle",{cx:"8",cy:"12",r:"1.5"}),n.jsx("circle",{cx:"16",cy:"12",r:"1.5"}),n.jsx("circle",{cx:"8",cy:"18",r:"1.5"}),n.jsx("circle",{cx:"16",cy:"18",r:"1.5"})]});exports.AddBoxIcon=e;exports.AddCircleIcon=x;exports.AddIcon=s;exports.AddShoppingCartIcon=A1;exports.ArchiveIcon=p1;exports.BookmarkAddIcon=r1;exports.BookmarkBorderIcon=t1;exports.BookmarkIcon=j1;exports.BuildIcon=Y;exports.CachedIcon=P;exports.CloudDownloadIcon=f;exports.CloudUploadIcon=m;exports.ContentCopyIcon=V;exports.ContentCutIcon=O;exports.ContentPasteIcon=k;exports.CopyIcon=A;exports.CreateIcon=H;exports.DeleteForeverIcon=t;exports.DeleteIcon=j;exports.DownloadIcon=C;exports.DragHandleIcon=V1;exports.DragIndicatorIcon=k1;exports.EditIcon=v;exports.EditNoteIcon=L;exports.FavoriteBorderIcon=x1;exports.FavoriteIcon=s1;exports.FilterIcon=d;exports.FilterListIcon=p;exports.FindReplaceIcon=I;exports.FlashOffIcon=S1;exports.FlashOnIcon=C1;exports.FullscreenExitIcon=o1;exports.FullscreenIcon=c1;exports.GroupAddIcon=J;exports.GroupIcon=K;exports.HandymanIcon=_;exports.HelpIcon=v1;exports.HelpOutlineIcon=L1;exports.KeyIcon=N;exports.LaunchIcon=y1;exports.LinkIcon=h1;exports.LinkOffIcon=d1;exports.LockIcon=E;exports.LockOpenIcon=G;exports.LoginIcon=u1;exports.LogoutIcon=H1;exports.MoreHorizIcon=$;exports.MoreVertIcon=n1;exports.OpenInNewIcon=I1;exports.PersonAddIcon=T;exports.PersonIcon=Z;exports.PersonRemoveIcon=q;exports.PowerIcon=R;exports.PowerOffIcon=D;exports.PrintIcon=X;exports.RedoIcon=w;exports.RefreshIcon=z;exports.RemoveCircleIcon=i;exports.RemoveIcon=l;exports.SaveAltIcon=g;exports.SaveIcon=u;exports.SearchIcon=r;exports.SearchOffIcon=a;exports.SendIcon=g1;exports.SettingsIcon=y;exports.ShareIcon=a1;exports.ShoppingBagIcon=m1;exports.ShoppingCartIcon=f1;exports.SortIcon=M;exports.StarBorderIcon=l1;exports.StarHalfIcon=i1;exports.StarIcon=e1;exports.SyncIcon=B;exports.TuneIcon=h;exports.UnarchiveIcon=M1;exports.UndoIcon=F;exports.UploadIcon=S;exports.VisibilityIcon=U;exports.VisibilityOffIcon=b;exports.ZoomInIcon=Q;exports.ZoomOutIcon=W;
@@ -1,351 +0,0 @@
1
- import { jsxs as e, jsx as c } from "react/jsx-runtime";
2
- import { Icon as l } from "../Icon.js";
3
- const t = (n) => /* @__PURE__ */ e(l, { ...n, children: [
4
- /* @__PURE__ */ c("line", { x1: "12", y1: "5", x2: "12", y2: "19" }),
5
- /* @__PURE__ */ c("line", { x1: "5", y1: "12", x2: "19", y2: "12" })
6
- ] }), r = (n) => /* @__PURE__ */ e(l, { ...n, children: [
7
- /* @__PURE__ */ c("circle", { cx: "12", cy: "12", r: "10" }),
8
- /* @__PURE__ */ c("line", { x1: "12", y1: "8", x2: "12", y2: "16" }),
9
- /* @__PURE__ */ c("line", { x1: "8", y1: "12", x2: "16", y2: "12" })
10
- ] }), y = (n) => /* @__PURE__ */ e(l, { ...n, children: [
11
- /* @__PURE__ */ c("rect", { x: "3", y: "3", width: "18", height: "18", rx: "2" }),
12
- /* @__PURE__ */ c("line", { x1: "12", y1: "8", x2: "12", y2: "16" }),
13
- /* @__PURE__ */ c("line", { x1: "8", y1: "12", x2: "16", y2: "12" })
14
- ] }), a = (n) => /* @__PURE__ */ c(l, { ...n, children: /* @__PURE__ */ c("line", { x1: "5", y1: "12", x2: "19", y2: "12" }) }), h = (n) => /* @__PURE__ */ e(l, { ...n, children: [
15
- /* @__PURE__ */ c("circle", { cx: "12", cy: "12", r: "10" }),
16
- /* @__PURE__ */ c("line", { x1: "8", y1: "12", x2: "16", y2: "12" })
17
- ] }), x = (n) => /* @__PURE__ */ e(l, { ...n, children: [
18
- /* @__PURE__ */ c("polyline", { points: "3 6 5 6 21 6" }),
19
- /* @__PURE__ */ c("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" })
20
- ] }), d = (n) => /* @__PURE__ */ e(l, { ...n, children: [
21
- /* @__PURE__ */ c("polyline", { points: "3 6 5 6 21 6" }),
22
- /* @__PURE__ */ c("path", { d: "M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2" }),
23
- /* @__PURE__ */ c("line", { x1: "10", y1: "11", x2: "10", y2: "17" }),
24
- /* @__PURE__ */ c("line", { x1: "14", y1: "11", x2: "14", y2: "17" })
25
- ] }), p = (n) => /* @__PURE__ */ e(l, { ...n, children: [
26
- /* @__PURE__ */ c("circle", { cx: "11", cy: "11", r: "8" }),
27
- /* @__PURE__ */ c("line", { x1: "21", y1: "21", x2: "16.65", y2: "16.65" })
28
- ] }), s = (n) => /* @__PURE__ */ e(l, { ...n, children: [
29
- /* @__PURE__ */ c("circle", { cx: "11", cy: "11", r: "8" }),
30
- /* @__PURE__ */ c("line", { x1: "21", y1: "21", x2: "16.65", y2: "16.65" }),
31
- /* @__PURE__ */ c("line", { x1: "4", y1: "4", x2: "20", y2: "20" })
32
- ] }), I = (n) => /* @__PURE__ */ e(l, { ...n, children: [
33
- /* @__PURE__ */ c("circle", { cx: "11", cy: "11", r: "8" }),
34
- /* @__PURE__ */ c("line", { x1: "21", y1: "21", x2: "16.65", y2: "16.65" }),
35
- /* @__PURE__ */ c("path", { d: "M11 8v6l4 2" })
36
- ] }), M = (n) => /* @__PURE__ */ e(l, { ...n, children: [
37
- /* @__PURE__ */ c("circle", { cx: "12", cy: "12", r: "3" }),
38
- /* @__PURE__ */ c("path", { d: "M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1 0 2.83 2 2 0 0 1-2.83 0l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-2 2 2 2 0 0 1-2-2v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83 0 2 2 0 0 1 0-2.83l.06-.06a1.65 1.65 0 0 0 .33-1.82 1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1-2-2 2 2 0 0 1 2-2h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 0-2.83 2 2 0 0 1 2.83 0l.06.06a1.65 1.65 0 0 0 1.82.33H9a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 2-2 2 2 0 0 1 2 2v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 0 2 2 0 0 1 0 2.83l-.06.06a1.65 1.65 0 0 0-.33 1.82V9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 2 2 2 2 0 0 1-2 2h-.09a1.65 1.65 0 0 0-1.51 1z" })
39
- ] }), v = (n) => /* @__PURE__ */ e(l, { ...n, children: [
40
- /* @__PURE__ */ c("line", { x1: "4", y1: "21", x2: "4", y2: "14" }),
41
- /* @__PURE__ */ c("line", { x1: "4", y1: "10", x2: "4", y2: "3" }),
42
- /* @__PURE__ */ c("line", { x1: "12", y1: "21", x2: "12", y2: "12" }),
43
- /* @__PURE__ */ c("line", { x1: "12", y1: "8", x2: "12", y2: "3" }),
44
- /* @__PURE__ */ c("line", { x1: "20", y1: "21", x2: "20", y2: "16" }),
45
- /* @__PURE__ */ c("line", { x1: "20", y1: "12", x2: "20", y2: "3" }),
46
- /* @__PURE__ */ c("line", { x1: "1", y1: "14", x2: "7", y2: "14" }),
47
- /* @__PURE__ */ c("line", { x1: "9", y1: "8", x2: "15", y2: "8" }),
48
- /* @__PURE__ */ c("line", { x1: "17", y1: "16", x2: "23", y2: "16" })
49
- ] }), H = (n) => /* @__PURE__ */ c(l, { ...n, children: /* @__PURE__ */ c("polygon", { points: "22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3" }) }), L = (n) => /* @__PURE__ */ e(l, { ...n, children: [
50
- /* @__PURE__ */ c("line", { x1: "3", y1: "6", x2: "21", y2: "6" }),
51
- /* @__PURE__ */ c("line", { x1: "6", y1: "12", x2: "18", y2: "12" }),
52
- /* @__PURE__ */ c("line", { x1: "9", y1: "18", x2: "15", y2: "18" })
53
- ] }), V = (n) => /* @__PURE__ */ e(l, { ...n, children: [
54
- /* @__PURE__ */ c("line", { x1: "3", y1: "6", x2: "21", y2: "6" }),
55
- /* @__PURE__ */ c("line", { x1: "3", y1: "12", x2: "15", y2: "12" }),
56
- /* @__PURE__ */ c("line", { x1: "3", y1: "18", x2: "9", y2: "18" })
57
- ] }), g = (n) => /* @__PURE__ */ e(l, { ...n, children: [
58
- /* @__PURE__ */ c("path", { d: "M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7" }),
59
- /* @__PURE__ */ c("path", { d: "M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z" })
60
- ] }), m = (n) => /* @__PURE__ */ e(l, { ...n, children: [
61
- /* @__PURE__ */ c("path", { d: "M12 20h9" }),
62
- /* @__PURE__ */ c("path", { d: "M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z" })
63
- ] }), A = (n) => /* @__PURE__ */ e(l, { ...n, children: [
64
- /* @__PURE__ */ c("path", { d: "M12 20h9" }),
65
- /* @__PURE__ */ c("path", { d: "M16.5 3.5a2.121 2.121 0 0 1 3 3L7 19l-4 1 1-4L16.5 3.5z" })
66
- ] }), C = (n) => /* @__PURE__ */ e(l, { ...n, children: [
67
- /* @__PURE__ */ c("path", { d: "M19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11l5 5v11a2 2 0 0 1-2 2z" }),
68
- /* @__PURE__ */ c("polyline", { points: "17 21 17 13 7 13 7 21" }),
69
- /* @__PURE__ */ c("polyline", { points: "7 3 7 8 15 8" })
70
- ] }), f = (n) => /* @__PURE__ */ e(l, { ...n, children: [
71
- /* @__PURE__ */ c("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
72
- /* @__PURE__ */ c("polyline", { points: "7 10 12 15 17 10" }),
73
- /* @__PURE__ */ c("line", { x1: "12", y1: "15", x2: "12", y2: "3" })
74
- ] }), u = (n) => /* @__PURE__ */ e(l, { ...n, children: [
75
- /* @__PURE__ */ c("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
76
- /* @__PURE__ */ c("polyline", { points: "7 10 12 15 17 10" }),
77
- /* @__PURE__ */ c("line", { x1: "12", y1: "15", x2: "12", y2: "3" })
78
- ] }), z = (n) => /* @__PURE__ */ e(l, { ...n, children: [
79
- /* @__PURE__ */ c("path", { d: "M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4" }),
80
- /* @__PURE__ */ c("polyline", { points: "17 8 12 3 7 8" }),
81
- /* @__PURE__ */ c("line", { x1: "12", y1: "3", x2: "12", y2: "15" })
82
- ] }), S = (n) => /* @__PURE__ */ e(l, { ...n, children: [
83
- /* @__PURE__ */ c("polyline", { points: "8 17 12 21 16 17" }),
84
- /* @__PURE__ */ c("line", { x1: "12", y1: "12", x2: "12", y2: "21" }),
85
- /* @__PURE__ */ c("path", { d: "M20.88 18.09A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.29" })
86
- ] }), w = (n) => /* @__PURE__ */ e(l, { ...n, children: [
87
- /* @__PURE__ */ c("polyline", { points: "16 16 12 12 8 16" }),
88
- /* @__PURE__ */ c("line", { x1: "12", y1: "12", x2: "12", y2: "21" }),
89
- /* @__PURE__ */ c("path", { d: "M20.39 18.39A5 5 0 0 0 18 9h-1.26A8 8 0 1 0 3 16.3" })
90
- ] }), k = (n) => /* @__PURE__ */ e(l, { ...n, children: [
91
- /* @__PURE__ */ c("rect", { x: "9", y: "9", width: "13", height: "13", rx: "2", ry: "2" }),
92
- /* @__PURE__ */ c("path", { d: "M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" })
93
- ] }), F = (n) => /* @__PURE__ */ e(l, { ...n, children: [
94
- /* @__PURE__ */ c("rect", { x: "9", y: "9", width: "13", height: "13", rx: "2", ry: "2" }),
95
- /* @__PURE__ */ c("path", { d: "M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" })
96
- ] }), O = (n) => /* @__PURE__ */ e(l, { ...n, children: [
97
- /* @__PURE__ */ c("path", { d: "M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2" }),
98
- /* @__PURE__ */ c("rect", { x: "8", y: "2", width: "8", height: "4", rx: "1", ry: "1" })
99
- ] }), B = (n) => /* @__PURE__ */ e(l, { ...n, children: [
100
- /* @__PURE__ */ c("circle", { cx: "6", cy: "6", r: "3" }),
101
- /* @__PURE__ */ c("circle", { cx: "6", cy: "18", r: "3" }),
102
- /* @__PURE__ */ c("line", { x1: "20", y1: "4", x2: "8.12", y2: "15.88" }),
103
- /* @__PURE__ */ c("line", { x1: "14.47", y1: "14.48", x2: "20", y2: "20" }),
104
- /* @__PURE__ */ c("line", { x1: "8.12", y1: "8.12", x2: "12", y2: "12" })
105
- ] }), P = (n) => /* @__PURE__ */ e(l, { ...n, children: [
106
- /* @__PURE__ */ c("polyline", { points: "1 4 1 10 7 10" }),
107
- /* @__PURE__ */ c("path", { d: "M3.51 15a9 9 0 1 0 2.13-9.36L1 10" })
108
- ] }), D = (n) => /* @__PURE__ */ e(l, { ...n, children: [
109
- /* @__PURE__ */ c("polyline", { points: "23 4 23 10 17 10" }),
110
- /* @__PURE__ */ c("path", { d: "M20.49 15a9 9 0 1 1-2.12-9.36L23 10" })
111
- ] }), R = (n) => /* @__PURE__ */ e(l, { ...n, children: [
112
- /* @__PURE__ */ c("polyline", { points: "23 4 23 10 17 10" }),
113
- /* @__PURE__ */ c("polyline", { points: "1 20 1 14 7 14" }),
114
- /* @__PURE__ */ c("path", { d: "M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15" })
115
- ] }), U = (n) => /* @__PURE__ */ e(l, { ...n, children: [
116
- /* @__PURE__ */ c("polyline", { points: "23 4 23 10 17 10" }),
117
- /* @__PURE__ */ c("polyline", { points: "1 20 1 14 7 14" }),
118
- /* @__PURE__ */ c("path", { d: "M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15" })
119
- ] }), E = (n) => /* @__PURE__ */ e(l, { ...n, children: [
120
- /* @__PURE__ */ c("polyline", { points: "23 4 23 10 17 10" }),
121
- /* @__PURE__ */ c("polyline", { points: "1 20 1 14 7 14" }),
122
- /* @__PURE__ */ c("path", { d: "M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15" })
123
- ] }), b = (n) => /* @__PURE__ */ e(l, { ...n, children: [
124
- /* @__PURE__ */ c("path", { d: "M18.36 6.64a9 9 0 1 1-12.73 0" }),
125
- /* @__PURE__ */ c("line", { x1: "12", y1: "2", x2: "12", y2: "12" })
126
- ] }), j = (n) => /* @__PURE__ */ e(l, { ...n, children: [
127
- /* @__PURE__ */ c("path", { d: "M18.36 6.64a9 9 0 1 1-12.73 0" }),
128
- /* @__PURE__ */ c("line", { x1: "12", y1: "2", x2: "12", y2: "12" }),
129
- /* @__PURE__ */ c("line", { x1: "4", y1: "4", x2: "20", y2: "20" })
130
- ] }), G = (n) => /* @__PURE__ */ e(l, { ...n, children: [
131
- /* @__PURE__ */ c("path", { d: "M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z" }),
132
- /* @__PURE__ */ c("circle", { cx: "12", cy: "12", r: "3" })
133
- ] }), N = (n) => /* @__PURE__ */ e(l, { ...n, children: [
134
- /* @__PURE__ */ c("path", { d: "M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24" }),
135
- /* @__PURE__ */ c("line", { x1: "1", y1: "1", x2: "23", y2: "23" })
136
- ] }), Z = (n) => /* @__PURE__ */ e(l, { ...n, children: [
137
- /* @__PURE__ */ c("rect", { x: "3", y: "11", width: "18", height: "11", rx: "2", ry: "2" }),
138
- /* @__PURE__ */ c("path", { d: "M7 11V7a5 5 0 0 1 10 0v4" })
139
- ] }), K = (n) => /* @__PURE__ */ e(l, { ...n, children: [
140
- /* @__PURE__ */ c("rect", { x: "3", y: "11", width: "18", height: "11", rx: "2", ry: "2" }),
141
- /* @__PURE__ */ c("path", { d: "M7 11V7a5 5 0 0 1 9.9-1" })
142
- ] }), T = (n) => /* @__PURE__ */ c(l, { ...n, children: /* @__PURE__ */ c("path", { d: "M21 2l-2 2m-7.61 7.61a5.5 5.5 0 1 1-7.778 7.778 5.5 5.5 0 0 1 7.777-7.777zm0 0L15.5 7.5m0 0l3 3L22 7l-3-3m-3.5 3.5L19 4" }) }), q = (n) => /* @__PURE__ */ e(l, { ...n, children: [
143
- /* @__PURE__ */ c("path", { d: "M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2" }),
144
- /* @__PURE__ */ c("circle", { cx: "12", cy: "7", r: "4" })
145
- ] }), J = (n) => /* @__PURE__ */ e(l, { ...n, children: [
146
- /* @__PURE__ */ c("path", { d: "M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" }),
147
- /* @__PURE__ */ c("circle", { cx: "8.5", cy: "7", r: "4" }),
148
- /* @__PURE__ */ c("line", { x1: "20", y1: "8", x2: "20", y2: "14" }),
149
- /* @__PURE__ */ c("line", { x1: "23", y1: "11", x2: "17", y2: "11" })
150
- ] }), Q = (n) => /* @__PURE__ */ e(l, { ...n, children: [
151
- /* @__PURE__ */ c("path", { d: "M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" }),
152
- /* @__PURE__ */ c("circle", { cx: "8.5", cy: "7", r: "4" }),
153
- /* @__PURE__ */ c("line", { x1: "23", y1: "11", x2: "17", y2: "11" })
154
- ] }), W = (n) => /* @__PURE__ */ e(l, { ...n, children: [
155
- /* @__PURE__ */ c("path", { d: "M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" }),
156
- /* @__PURE__ */ c("circle", { cx: "9", cy: "7", r: "4" }),
157
- /* @__PURE__ */ c("path", { d: "M23 21v-2a4 4 0 0 0-3-3.87" }),
158
- /* @__PURE__ */ c("path", { d: "M16 3.13a4 4 0 0 1 0 7.75" })
159
- ] }), X = (n) => /* @__PURE__ */ e(l, { ...n, children: [
160
- /* @__PURE__ */ c("path", { d: "M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2" }),
161
- /* @__PURE__ */ c("circle", { cx: "9", cy: "7", r: "4" }),
162
- /* @__PURE__ */ c("line", { x1: "23", y1: "11", x2: "17", y2: "11" }),
163
- /* @__PURE__ */ c("line", { x1: "20", y1: "8", x2: "20", y2: "14" })
164
- ] }), Y = (n) => /* @__PURE__ */ e(l, { ...n, children: [
165
- /* @__PURE__ */ c("circle", { cx: "11", cy: "11", r: "8" }),
166
- /* @__PURE__ */ c("line", { x1: "21", y1: "21", x2: "16.65", y2: "16.65" }),
167
- /* @__PURE__ */ c("line", { x1: "11", y1: "8", x2: "11", y2: "14" }),
168
- /* @__PURE__ */ c("line", { x1: "8", y1: "11", x2: "14", y2: "11" })
169
- ] }), _ = (n) => /* @__PURE__ */ e(l, { ...n, children: [
170
- /* @__PURE__ */ c("circle", { cx: "11", cy: "11", r: "8" }),
171
- /* @__PURE__ */ c("line", { x1: "21", y1: "21", x2: "16.65", y2: "16.65" }),
172
- /* @__PURE__ */ c("line", { x1: "8", y1: "11", x2: "14", y2: "11" })
173
- ] }), $ = (n) => /* @__PURE__ */ e(l, { ...n, children: [
174
- /* @__PURE__ */ c("polyline", { points: "6 9 6 2 18 2 18 9" }),
175
- /* @__PURE__ */ c("path", { d: "M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2" }),
176
- /* @__PURE__ */ c("rect", { x: "6", y: "14", width: "12", height: "8" })
177
- ] }), c1 = (n) => /* @__PURE__ */ c(l, { ...n, children: /* @__PURE__ */ c("path", { d: "M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z" }) }), n1 = (n) => /* @__PURE__ */ c(l, { ...n, children: /* @__PURE__ */ c("path", { d: "M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z" }) }), l1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
178
- /* @__PURE__ */ c("circle", { cx: "12", cy: "12", r: "1" }),
179
- /* @__PURE__ */ c("circle", { cx: "19", cy: "12", r: "1" }),
180
- /* @__PURE__ */ c("circle", { cx: "5", cy: "12", r: "1" })
181
- ] }), e1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
182
- /* @__PURE__ */ c("circle", { cx: "12", cy: "12", r: "1" }),
183
- /* @__PURE__ */ c("circle", { cx: "12", cy: "5", r: "1" }),
184
- /* @__PURE__ */ c("circle", { cx: "12", cy: "19", r: "1" })
185
- ] }), o1 = (n) => /* @__PURE__ */ c(l, { ...n, children: /* @__PURE__ */ c("path", { d: "M8 3H5a2 2 0 0 0-2 2v3m18 0V5a2 2 0 0 0-2-2h-3m0 18h3a2 2 0 0 0 2-2v-3M3 16v3a2 2 0 0 0 2 2h3" }) }), i1 = (n) => /* @__PURE__ */ c(l, { ...n, children: /* @__PURE__ */ c("path", { d: "M4 14h6v6M20 10h-6V4M14 10l7-7M3 21l7-7" }) }), t1 = (n) => /* @__PURE__ */ c(l, { ...n, fill: "currentColor", stroke: "none", children: /* @__PURE__ */ c("path", { d: "M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z" }) }), r1 = (n) => /* @__PURE__ */ c(l, { ...n, children: /* @__PURE__ */ c("path", { d: "M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z" }) }), y1 = (n) => /* @__PURE__ */ c(l, { ...n, fill: "currentColor", stroke: "none", children: /* @__PURE__ */ c("polygon", { points: "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2" }) }), a1 = (n) => /* @__PURE__ */ c(l, { ...n, children: /* @__PURE__ */ c("polygon", { points: "12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2" }) }), h1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
186
- /* @__PURE__ */ c("path", { d: "M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77V2z", fill: "currentColor" }),
187
- /* @__PURE__ */ c("path", { d: "M12 2L8.91 8.26 2 9.27l5 4.87-1.18 6.88L12 17.77" })
188
- ] }), x1 = (n) => /* @__PURE__ */ c(l, { ...n, fill: "currentColor", children: /* @__PURE__ */ c("path", { d: "M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" }) }), d1 = (n) => /* @__PURE__ */ c(l, { ...n, children: /* @__PURE__ */ c("path", { d: "M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" }) }), p1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
189
- /* @__PURE__ */ c("path", { d: "M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z" }),
190
- /* @__PURE__ */ c("line", { x1: "12", y1: "7", x2: "12", y2: "13" }),
191
- /* @__PURE__ */ c("line", { x1: "9", y1: "10", x2: "15", y2: "10" })
192
- ] }), s1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
193
- /* @__PURE__ */ c("circle", { cx: "18", cy: "5", r: "3" }),
194
- /* @__PURE__ */ c("circle", { cx: "6", cy: "12", r: "3" }),
195
- /* @__PURE__ */ c("circle", { cx: "18", cy: "19", r: "3" }),
196
- /* @__PURE__ */ c("line", { x1: "8.59", y1: "13.51", x2: "15.42", y2: "17.49" }),
197
- /* @__PURE__ */ c("line", { x1: "15.41", y1: "6.51", x2: "8.59", y2: "10.49" })
198
- ] }), I1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
199
- /* @__PURE__ */ c("path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" }),
200
- /* @__PURE__ */ c("polyline", { points: "15 3 21 3 21 9" }),
201
- /* @__PURE__ */ c("line", { x1: "10", y1: "14", x2: "21", y2: "3" })
202
- ] }), M1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
203
- /* @__PURE__ */ c("path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" }),
204
- /* @__PURE__ */ c("polyline", { points: "15 3 21 3 21 9" }),
205
- /* @__PURE__ */ c("line", { x1: "10", y1: "14", x2: "21", y2: "3" })
206
- ] }), v1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
207
- /* @__PURE__ */ c("path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" }),
208
- /* @__PURE__ */ c("path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" })
209
- ] }), H1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
210
- /* @__PURE__ */ c("path", { d: "M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71" }),
211
- /* @__PURE__ */ c("path", { d: "M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71" }),
212
- /* @__PURE__ */ c("line", { x1: "1", y1: "1", x2: "23", y2: "23" })
213
- ] }), L1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
214
- /* @__PURE__ */ c("polyline", { points: "21 8 21 21 3 21 3 8" }),
215
- /* @__PURE__ */ c("rect", { x: "1", y: "3", width: "22", height: "5" }),
216
- /* @__PURE__ */ c("line", { x1: "10", y1: "12", x2: "14", y2: "12" })
217
- ] }), V1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
218
- /* @__PURE__ */ c("polyline", { points: "21 8 21 21 3 21 3 8" }),
219
- /* @__PURE__ */ c("rect", { x: "1", y: "3", width: "22", height: "5" }),
220
- /* @__PURE__ */ c("polyline", { points: "10 14 12 12 14 14" }),
221
- /* @__PURE__ */ c("line", { x1: "12", y1: "12", x2: "12", y2: "18" })
222
- ] }), g1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
223
- /* @__PURE__ */ c("circle", { cx: "12", cy: "12", r: "10" }),
224
- /* @__PURE__ */ c("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
225
- /* @__PURE__ */ c("line", { x1: "12", y1: "17", x2: "12.01", y2: "17" })
226
- ] }), m1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
227
- /* @__PURE__ */ c("circle", { cx: "12", cy: "12", r: "10" }),
228
- /* @__PURE__ */ c("path", { d: "M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3" }),
229
- /* @__PURE__ */ c("line", { x1: "12", y1: "17", x2: "12.01", y2: "17" })
230
- ] }), A1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
231
- /* @__PURE__ */ c("path", { d: "M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4" }),
232
- /* @__PURE__ */ c("polyline", { points: "16 17 21 12 16 7" }),
233
- /* @__PURE__ */ c("line", { x1: "21", y1: "12", x2: "9", y2: "12" })
234
- ] }), C1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
235
- /* @__PURE__ */ c("path", { d: "M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4" }),
236
- /* @__PURE__ */ c("polyline", { points: "10 17 15 12 10 7" }),
237
- /* @__PURE__ */ c("line", { x1: "15", y1: "12", x2: "3", y2: "12" })
238
- ] }), f1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
239
- /* @__PURE__ */ c("line", { x1: "22", y1: "2", x2: "11", y2: "13" }),
240
- /* @__PURE__ */ c("polygon", { points: "22 2 15 22 11 13 2 9 22 2" })
241
- ] }), u1 = (n) => /* @__PURE__ */ c(l, { ...n, children: /* @__PURE__ */ c("polygon", { points: "13 2 3 14 12 14 11 22 21 10 12 10 13 2" }) }), z1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
242
- /* @__PURE__ */ c("polygon", { points: "13 2 3 14 12 14 11 22 21 10 12 10 13 2" }),
243
- /* @__PURE__ */ c("line", { x1: "1", y1: "1", x2: "23", y2: "23" })
244
- ] }), S1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
245
- /* @__PURE__ */ c("circle", { cx: "9", cy: "21", r: "1" }),
246
- /* @__PURE__ */ c("circle", { cx: "20", cy: "21", r: "1" }),
247
- /* @__PURE__ */ c("path", { d: "M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6" })
248
- ] }), w1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
249
- /* @__PURE__ */ c("path", { d: "M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z" }),
250
- /* @__PURE__ */ c("line", { x1: "3", y1: "6", x2: "21", y2: "6" }),
251
- /* @__PURE__ */ c("path", { d: "M16 10a4 4 0 0 1-8 0" })
252
- ] }), k1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
253
- /* @__PURE__ */ c("circle", { cx: "9", cy: "21", r: "1" }),
254
- /* @__PURE__ */ c("circle", { cx: "20", cy: "21", r: "1" }),
255
- /* @__PURE__ */ c("path", { d: "M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6" }),
256
- /* @__PURE__ */ c("line", { x1: "12", y1: "9", x2: "12", y2: "15" }),
257
- /* @__PURE__ */ c("line", { x1: "9", y1: "12", x2: "15", y2: "12" })
258
- ] }), F1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
259
- /* @__PURE__ */ c("line", { x1: "3", y1: "9", x2: "21", y2: "9" }),
260
- /* @__PURE__ */ c("line", { x1: "3", y1: "15", x2: "21", y2: "15" })
261
- ] }), O1 = (n) => /* @__PURE__ */ e(l, { ...n, children: [
262
- /* @__PURE__ */ c("circle", { cx: "8", cy: "6", r: "1.5" }),
263
- /* @__PURE__ */ c("circle", { cx: "16", cy: "6", r: "1.5" }),
264
- /* @__PURE__ */ c("circle", { cx: "8", cy: "12", r: "1.5" }),
265
- /* @__PURE__ */ c("circle", { cx: "16", cy: "12", r: "1.5" }),
266
- /* @__PURE__ */ c("circle", { cx: "8", cy: "18", r: "1.5" }),
267
- /* @__PURE__ */ c("circle", { cx: "16", cy: "18", r: "1.5" })
268
- ] });
269
- export {
270
- y as AddBoxIcon,
271
- r as AddCircleIcon,
272
- t as AddIcon,
273
- k1 as AddShoppingCartIcon,
274
- L1 as ArchiveIcon,
275
- p1 as BookmarkAddIcon,
276
- d1 as BookmarkBorderIcon,
277
- x1 as BookmarkIcon,
278
- c1 as BuildIcon,
279
- E as CachedIcon,
280
- S as CloudDownloadIcon,
281
- w as CloudUploadIcon,
282
- F as ContentCopyIcon,
283
- B as ContentCutIcon,
284
- O as ContentPasteIcon,
285
- k as CopyIcon,
286
- A as CreateIcon,
287
- d as DeleteForeverIcon,
288
- x as DeleteIcon,
289
- u as DownloadIcon,
290
- F1 as DragHandleIcon,
291
- O1 as DragIndicatorIcon,
292
- g as EditIcon,
293
- m as EditNoteIcon,
294
- r1 as FavoriteBorderIcon,
295
- t1 as FavoriteIcon,
296
- H as FilterIcon,
297
- L as FilterListIcon,
298
- I as FindReplaceIcon,
299
- z1 as FlashOffIcon,
300
- u1 as FlashOnIcon,
301
- i1 as FullscreenExitIcon,
302
- o1 as FullscreenIcon,
303
- X as GroupAddIcon,
304
- W as GroupIcon,
305
- n1 as HandymanIcon,
306
- g1 as HelpIcon,
307
- m1 as HelpOutlineIcon,
308
- T as KeyIcon,
309
- M1 as LaunchIcon,
310
- v1 as LinkIcon,
311
- H1 as LinkOffIcon,
312
- Z as LockIcon,
313
- K as LockOpenIcon,
314
- C1 as LoginIcon,
315
- A1 as LogoutIcon,
316
- l1 as MoreHorizIcon,
317
- e1 as MoreVertIcon,
318
- I1 as OpenInNewIcon,
319
- J as PersonAddIcon,
320
- q as PersonIcon,
321
- Q as PersonRemoveIcon,
322
- b as PowerIcon,
323
- j as PowerOffIcon,
324
- $ as PrintIcon,
325
- D as RedoIcon,
326
- R as RefreshIcon,
327
- h as RemoveCircleIcon,
328
- a as RemoveIcon,
329
- f as SaveAltIcon,
330
- C as SaveIcon,
331
- p as SearchIcon,
332
- s as SearchOffIcon,
333
- f1 as SendIcon,
334
- M as SettingsIcon,
335
- s1 as ShareIcon,
336
- w1 as ShoppingBagIcon,
337
- S1 as ShoppingCartIcon,
338
- V as SortIcon,
339
- a1 as StarBorderIcon,
340
- h1 as StarHalfIcon,
341
- y1 as StarIcon,
342
- U as SyncIcon,
343
- v as TuneIcon,
344
- V1 as UnarchiveIcon,
345
- P as UndoIcon,
346
- z as UploadIcon,
347
- G as VisibilityIcon,
348
- N as VisibilityOffIcon,
349
- Y as ZoomInIcon,
350
- _ as ZoomOutIcon
351
- };
@@ -1 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const s=require("react/jsx-runtime"),c=require("../Icon.cjs"),h=n=>s.jsxs(c.Icon,{...n,children:[s.jsx("path",{d:"M12 2l2.5 4.3v4.3l2.5 1.5 2.5-1.5V6.3L20 2h-2.5l-2.5 4.3v4.3l-2.5 1.5-2.5-1.5V6.3L6.5 2H4l2.5 4.3v4.3l2.5 1.5 2.5-1.5V6.3L12 2z"}),s.jsx("path",{d:"M4 11l2.5 4.3v4.3l2.5 1.5 2.5-1.5v-4.3L14 11h-2.5l-2.5 4.3v4.3l-2.5 1.5-2.5-1.5v-4.3L4 11z"}),s.jsx("path",{d:"M20 11l-2.5 4.3v4.3l-2.5 1.5-2.5-1.5v-4.3L10 11h2.5l2.5 4.3v4.3l2.5 1.5 2.5-1.5v-4.3L20 11z"}),s.jsx("path",{d:"M12 18l2.5 4.3v4.3l2.5 1.5 2.5-1.5v-4.3L20 18h-2.5l-2.5 4.3v4.3l-2.5 1.5-2.5-1.5v-4.3L12 18z"})]}),o=n=>s.jsxs(c.Icon,{...n,children:[s.jsx("path",{d:"M12 5c-1.2 0-2 1.2-2 2.5s.8 2.5 2 2.5 2-1.2 2-2.5S13.2 5 12 5z"}),s.jsx("path",{d:"M6.5 8.5c-.8 0-1.5 1-1.5 2s.7 2 1.5 2 1.5-1 1.5-2-.7-2-1.5-2z"}),s.jsx("path",{d:"M17.5 8.5c.8 0 1.5 1 1.5 2s-.7 2-1.5 2-1.5-1-1.5-2 .7-2 1.5-2z"}),s.jsx("path",{d:"M4 14c-.6 0-1.2.8-1.2 1.6s.6 1.6 1.2 1.6 1.2-.8 1.2-1.6S4.6 14 4 14z"}),s.jsx("path",{d:"M20 14c.6 0 1.2.8 1.2 1.6s-.6 1.6-1.2 1.6-1.2-.8-1.2-1.6.6-1.6 1.2-1.6z"}),s.jsx("path",{d:"M12 14v5M8 12v3M16 12v3M5 17v1.5M19 17v1.5"})]}),l=n=>s.jsxs(c.Icon,{...n,children:[s.jsx("path",{d:"M12 3L8 9h2v4H6l4 6 4-6h-4V9h2L12 3z"}),s.jsx("path",{d:"M4 21h16M7 21v-5l2.5 3 2.5-3v5M14.5 21v-3l1.5 2 1.5-2v3"}),s.jsx("path",{d:"M2 21h3l1.5-2 1.5 2h3"})]}),t=n=>s.jsxs(c.Icon,{...n,children:[s.jsx("path",{d:"M4 20V10l8-6 8 6v10"}),s.jsx("path",{d:"M4 10h16M9 20V14h6v6"}),s.jsx("path",{d:"M12 10v4"})]}),M=n=>s.jsxs(c.Icon,{...n,children:[s.jsx("path",{d:"M4 12c0-3 2-6 6-6s6 3 6 6-2 6-6 6-6-3-6-6z"}),s.jsx("path",{d:"M10 6v12M7 9l2 2.5-2 2.5M17 9l-2 2.5 2 2.5"}),s.jsx("path",{d:"M6 11c1 .5 2 .5 3 0M6 13c1 .5 2 .5 3 0"})]}),a=n=>s.jsxs(c.Icon,{...n,children:[s.jsx("path",{d:"M12 3c1.5 1.5 3 4 3 6.5a3 3 0 0 1-6 0C9 7 10.5 4.5 12 3z"}),s.jsx("path",{d:"M12 21c-2.5-1.5-5-4-5-7.5 0-1.5.8-3 2-4 1.2 1 2 2.5 2 4 0 3.5-2.5 6-5 7.5z"}),s.jsx("path",{d:"M12 12v2"})]}),d=n=>s.jsxs(c.Icon,{...n,children:[s.jsx("path",{d:"M12 2l1.5 5h-3l1.5 5h-3l1.5 5h-3l1.5-5H8l1.5-5h3L12 2z"}),s.jsx("path",{d:"M12 22v-1.5"})]}),j=n=>s.jsxs(c.Icon,{...n,children:[s.jsx("path",{d:"M4 20L12 4l8 16H4z"}),s.jsx("path",{d:"M8 20l4-8 4 8"})]});exports.CampfireIcon=a;exports.ClawIcon=o;exports.DenIcon=t;exports.ForestIcon=l;exports.HoneycombIcon=h;exports.MountainIcon=j;exports.PineTreeIcon=d;exports.SalmonIcon=M;
@@ -1,47 +0,0 @@
1
- import { jsxs as t, jsx as h } from "react/jsx-runtime";
2
- import { Icon as M } from "../Icon.js";
3
- const a = (l) => /* @__PURE__ */ t(M, { ...l, children: [
4
- /* @__PURE__ */ h("path", { d: "M12 2l2.5 4.3v4.3l2.5 1.5 2.5-1.5V6.3L20 2h-2.5l-2.5 4.3v4.3l-2.5 1.5-2.5-1.5V6.3L6.5 2H4l2.5 4.3v4.3l2.5 1.5 2.5-1.5V6.3L12 2z" }),
5
- /* @__PURE__ */ h("path", { d: "M4 11l2.5 4.3v4.3l2.5 1.5 2.5-1.5v-4.3L14 11h-2.5l-2.5 4.3v4.3l-2.5 1.5-2.5-1.5v-4.3L4 11z" }),
6
- /* @__PURE__ */ h("path", { d: "M20 11l-2.5 4.3v4.3l-2.5 1.5-2.5-1.5v-4.3L10 11h2.5l2.5 4.3v4.3l2.5 1.5 2.5-1.5v-4.3L20 11z" }),
7
- /* @__PURE__ */ h("path", { d: "M12 18l2.5 4.3v4.3l2.5 1.5 2.5-1.5v-4.3L20 18h-2.5l-2.5 4.3v4.3l-2.5 1.5-2.5-1.5v-4.3L12 18z" })
8
- ] }), n = (l) => /* @__PURE__ */ t(M, { ...l, children: [
9
- /* @__PURE__ */ h("path", { d: "M12 5c-1.2 0-2 1.2-2 2.5s.8 2.5 2 2.5 2-1.2 2-2.5S13.2 5 12 5z" }),
10
- /* @__PURE__ */ h("path", { d: "M6.5 8.5c-.8 0-1.5 1-1.5 2s.7 2 1.5 2 1.5-1 1.5-2-.7-2-1.5-2z" }),
11
- /* @__PURE__ */ h("path", { d: "M17.5 8.5c.8 0 1.5 1 1.5 2s-.7 2-1.5 2-1.5-1-1.5-2 .7-2 1.5-2z" }),
12
- /* @__PURE__ */ h("path", { d: "M4 14c-.6 0-1.2.8-1.2 1.6s.6 1.6 1.2 1.6 1.2-.8 1.2-1.6S4.6 14 4 14z" }),
13
- /* @__PURE__ */ h("path", { d: "M20 14c.6 0 1.2.8 1.2 1.6s-.6 1.6-1.2 1.6-1.2-.8-1.2-1.6.6-1.6 1.2-1.6z" }),
14
- /* @__PURE__ */ h("path", { d: "M12 14v5M8 12v3M16 12v3M5 17v1.5M19 17v1.5" })
15
- ] }), v = (l) => /* @__PURE__ */ t(M, { ...l, children: [
16
- /* @__PURE__ */ h("path", { d: "M12 3L8 9h2v4H6l4 6 4-6h-4V9h2L12 3z" }),
17
- /* @__PURE__ */ h("path", { d: "M4 21h16M7 21v-5l2.5 3 2.5-3v5M14.5 21v-3l1.5 2 1.5-2v3" }),
18
- /* @__PURE__ */ h("path", { d: "M2 21h3l1.5-2 1.5 2h3" })
19
- ] }), p = (l) => /* @__PURE__ */ t(M, { ...l, children: [
20
- /* @__PURE__ */ h("path", { d: "M4 20V10l8-6 8 6v10" }),
21
- /* @__PURE__ */ h("path", { d: "M4 10h16M9 20V14h6v6" }),
22
- /* @__PURE__ */ h("path", { d: "M12 10v4" })
23
- ] }), o = (l) => /* @__PURE__ */ t(M, { ...l, children: [
24
- /* @__PURE__ */ h("path", { d: "M4 12c0-3 2-6 6-6s6 3 6 6-2 6-6 6-6-3-6-6z" }),
25
- /* @__PURE__ */ h("path", { d: "M10 6v12M7 9l2 2.5-2 2.5M17 9l-2 2.5 2 2.5" }),
26
- /* @__PURE__ */ h("path", { d: "M6 11c1 .5 2 .5 3 0M6 13c1 .5 2 .5 3 0" })
27
- ] }), s = (l) => /* @__PURE__ */ t(M, { ...l, children: [
28
- /* @__PURE__ */ h("path", { d: "M12 3c1.5 1.5 3 4 3 6.5a3 3 0 0 1-6 0C9 7 10.5 4.5 12 3z" }),
29
- /* @__PURE__ */ h("path", { d: "M12 21c-2.5-1.5-5-4-5-7.5 0-1.5.8-3 2-4 1.2 1 2 2.5 2 4 0 3.5-2.5 6-5 7.5z" }),
30
- /* @__PURE__ */ h("path", { d: "M12 12v2" })
31
- ] }), e = (l) => /* @__PURE__ */ t(M, { ...l, children: [
32
- /* @__PURE__ */ h("path", { d: "M12 2l1.5 5h-3l1.5 5h-3l1.5 5h-3l1.5-5H8l1.5-5h3L12 2z" }),
33
- /* @__PURE__ */ h("path", { d: "M12 22v-1.5" })
34
- ] }), r = (l) => /* @__PURE__ */ t(M, { ...l, children: [
35
- /* @__PURE__ */ h("path", { d: "M4 20L12 4l8 16H4z" }),
36
- /* @__PURE__ */ h("path", { d: "M8 20l4-8 4 8" })
37
- ] });
38
- export {
39
- s as CampfireIcon,
40
- n as ClawIcon,
41
- p as DenIcon,
42
- v as ForestIcon,
43
- a as HoneycombIcon,
44
- r as MountainIcon,
45
- e as PineTreeIcon,
46
- o as SalmonIcon
47
- };
@@ -1 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const n=require("react/jsx-runtime"),c=require("../Icon.cjs"),x=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("circle",{cx:"9",cy:"21",r:"1"}),n.jsx("circle",{cx:"20",cy:"21",r:"1"}),n.jsx("path",{d:"M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"})]}),o=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"}),n.jsx("line",{x1:"3",y1:"6",x2:"21",y2:"6"}),n.jsx("path",{d:"M16 10a4 4 0 0 1-8 0"})]}),t=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("rect",{x:"1",y:"4",width:"22",height:"16",rx:"2",ry:"2"}),n.jsx("line",{x1:"1",y1:"10",x2:"23",y2:"10"})]}),h=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("line",{x1:"12",y1:"1",x2:"12",y2:"23"}),n.jsx("path",{d:"M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"})]}),j=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M4 10h12"}),n.jsx("path",{d:"M4 14h12"}),n.jsx("path",{d:"M19 6a7.7 7.7 0 0 0-5.2-2A7.9 7.9 0 0 0 6 12a7.9 7.9 0 0 0 7.8 8 7.7 7.7 0 0 0 5.2-2"})]}),a=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M4 18h12"}),n.jsx("path",{d:"M4 14h8"}),n.jsx("path",{d:"M17 4a4 4 0 0 0-7.4 2.1L8 18"})]}),e=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("rect",{x:"2",y:"6",width:"20",height:"14",rx:"2"}),n.jsx("path",{d:"M2 10h20"}),n.jsx("path",{d:"M16 14h2"})]}),i=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1-2-1z"}),n.jsx("line",{x1:"8",y1:"8",x2:"16",y2:"8"}),n.jsx("line",{x1:"8",y1:"12",x2:"16",y2:"12"}),n.jsx("line",{x1:"8",y1:"16",x2:"12",y2:"16"})]}),l=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z"}),n.jsx("line",{x1:"7",y1:"7",x2:"7.01",y2:"7"})]}),d=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z"}),n.jsx("line",{x1:"7",y1:"7",x2:"7.01",y2:"7"}),n.jsx("path",{d:"M22 7l-8.97 8.97"})]}),r=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("line",{x1:"19",y1:"5",x2:"5",y2:"19"}),n.jsx("circle",{cx:"6.5",cy:"6.5",r:"2.5"}),n.jsx("circle",{cx:"17.5",cy:"17.5",r:"2.5"})]}),p=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("polyline",{points:"23 6 13.5 15.5 8.5 10.5 1 18"}),n.jsx("polyline",{points:"17 6 23 6 23 12"})]}),I=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("polyline",{points:"23 18 13.5 8.5 8.5 13.5 1 6"}),n.jsx("polyline",{points:"17 18 23 18 23 12"})]}),y=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M3 5v14"}),n.jsx("path",{d:"M8 5v14"}),n.jsx("path",{d:"M12 5v14"}),n.jsx("path",{d:"M17 5v14"}),n.jsx("path",{d:"M21 5v14"}),n.jsx("path",{d:"M6 5v14"}),n.jsx("path",{d:"M14 5v14"}),n.jsx("path",{d:"M10 5v14"}),n.jsx("path",{d:"M19 5v14"})]}),M=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("polyline",{points:"20 12 20 22 4 22 4 12"}),n.jsx("rect",{x:"2",y:"7",width:"20",height:"5"}),n.jsx("line",{x1:"12",y1:"22",x2:"12",y2:"7"}),n.jsx("path",{d:"M12 7H7.5a2.5 2.5 0 0 1 0-5C11 2 12 7 12 7z"}),n.jsx("path",{d:"M12 7h4.5a2.5 2.5 0 0 0 0-5C13 2 12 7 12 7z"})]}),v=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M3 9l1-4h16l1 4"}),n.jsx("path",{d:"M3 9v10a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1V9"}),n.jsx("path",{d:"M9 21V12h6v9"}),n.jsx("path",{d:"M3 9a3 3 0 0 0 3 3 3 3 0 0 0 3-3"}),n.jsx("path",{d:"M9 9a3 3 0 0 0 3 3 3 3 0 0 0 3-3"}),n.jsx("path",{d:"M15 9a3 3 0 0 0 3 3 3 3 0 0 0 3-3"})]}),g=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("rect",{x:"1",y:"3",width:"15",height:"13"}),n.jsx("polygon",{points:"16 8 20 8 23 11 23 16 16 16 16 8"}),n.jsx("circle",{cx:"5.5",cy:"18.5",r:"2.5"}),n.jsx("circle",{cx:"18.5",cy:"18.5",r:"2.5"})]}),u=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("line",{x1:"16.5",y1:"9.4",x2:"7.5",y2:"4.21"}),n.jsx("path",{d:"M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}),n.jsx("polyline",{points:"3.27 6.96 12 12.01 20.73 6.96"}),n.jsx("line",{x1:"12",y1:"22.08",x2:"12",y2:"12"})]}),T=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"}),n.jsx("polyline",{points:"14 2 14 8 20 8"}),n.jsx("line",{x1:"8",y1:"13",x2:"16",y2:"13"}),n.jsx("line",{x1:"8",y1:"17",x2:"12",y2:"17"}),n.jsx("line",{x1:"14",y1:"17",x2:"16",y2:"17"})]}),C=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("rect",{x:"2",y:"7",width:"20",height:"14",rx:"2",ry:"2"}),n.jsx("path",{d:"M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"})]}),S=s=>n.jsxs(c.Icon,{...s,children:[n.jsx("path",{d:"M3 22h18"}),n.jsx("path",{d:"M6 18v-4"}),n.jsx("path",{d:"M10 18v-4"}),n.jsx("path",{d:"M14 18v-4"}),n.jsx("path",{d:"M18 18v-4"}),n.jsx("path",{d:"M3 10l9-7 9 7"}),n.jsx("path",{d:"M3 10h18v4H3z"})]});exports.BankIcon=S;exports.BarCodeIcon=y;exports.BriefcaseIcon=C;exports.CreditCardIcon=t;exports.DollarSignIcon=h;exports.EuroIcon=j;exports.GiftIcon=M;exports.InvoiceIcon=T;exports.PackageIcon=u;exports.PercentIcon=r;exports.PoundIcon=a;exports.ReceiptIcon=i;exports.ShoppingBagIcon=o;exports.ShoppingCartIcon=x;exports.StoreIcon=v;exports.TagIcon=l;exports.TagsIcon=d;exports.TrendDownIcon=I;exports.TrendUpIcon=p;exports.TruckIcon=g;exports.WalletIcon=e;