@forgedevstack/bear 1.3.1 → 1.3.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 (269) hide show
  1. package/README.md +26 -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/Avatar/Avatar.cjs +1 -1
  7. package/dist/components/Avatar/Avatar.js +1 -1
  8. package/dist/components/BackTop/BackTop.cjs +1 -1
  9. package/dist/components/BackTop/BackTop.js +1 -1
  10. package/dist/components/Banner/Banner.const.cjs +1 -1
  11. package/dist/components/Banner/Banner.const.js +1 -1
  12. package/dist/components/Blockquote/Blockquote.cjs +1 -1
  13. package/dist/components/Blockquote/Blockquote.js +1 -1
  14. package/dist/components/BottomSheet/BottomSheet.cjs +1 -1
  15. package/dist/components/BottomSheet/BottomSheet.js +1 -1
  16. package/dist/components/Breadcrumbs/Breadcrumbs.cjs +1 -1
  17. package/dist/components/Breadcrumbs/Breadcrumbs.js +1 -1
  18. package/dist/components/Calendar/Calendar.cjs +1 -1
  19. package/dist/components/Calendar/Calendar.js +1 -1
  20. package/dist/components/Chart/BarChart.cjs +1 -1
  21. package/dist/components/Chart/BarChart.d.ts +1 -2
  22. package/dist/components/Chart/BarChart.js +81 -61
  23. package/dist/components/Chart/Chart.cjs +1 -1
  24. package/dist/components/Chart/Chart.const.cjs +1 -1
  25. package/dist/components/Chart/Chart.const.d.ts +24 -3
  26. package/dist/components/Chart/Chart.const.js +39 -16
  27. package/dist/components/Chart/Chart.d.ts +1 -5
  28. package/dist/components/Chart/Chart.js +19 -23
  29. package/dist/components/Chart/Chart.types.d.ts +11 -19
  30. package/dist/components/Chart/Chart.utils.cjs +1 -1
  31. package/dist/components/Chart/Chart.utils.d.ts +8 -18
  32. package/dist/components/Chart/Chart.utils.js +39 -3
  33. package/dist/components/Chart/FunnelChart.cjs +1 -0
  34. package/dist/components/Chart/FunnelChart.d.ts +2 -0
  35. package/dist/components/Chart/FunnelChart.js +59 -0
  36. package/dist/components/Chart/LineChart.cjs +1 -1
  37. package/dist/components/Chart/LineChart.d.ts +1 -2
  38. package/dist/components/Chart/LineChart.js +51 -55
  39. package/dist/components/Chart/PieChart.cjs +1 -1
  40. package/dist/components/Chart/PieChart.d.ts +1 -2
  41. package/dist/components/Chart/PieChart.js +121 -106
  42. package/dist/components/Chart/PieChart.types.d.ts +8 -0
  43. package/dist/components/Chart/RadarChart.cjs +1 -0
  44. package/dist/components/Chart/RadarChart.d.ts +2 -0
  45. package/dist/components/Chart/RadarChart.js +100 -0
  46. package/dist/components/Chart/index.d.ts +3 -1
  47. package/dist/components/Chat/Chat.cjs +1 -1
  48. package/dist/components/Chat/Chat.js +1 -1
  49. package/dist/components/CurrencyInput/CurrencyInput.cjs +1 -1
  50. package/dist/components/CurrencyInput/CurrencyInput.js +1 -1
  51. package/dist/components/DatePicker/DatePicker.cjs +1 -1
  52. package/dist/components/DatePicker/DatePicker.js +1 -1
  53. package/dist/components/DateRangePicker/DateRangePicker.cjs +1 -1
  54. package/dist/components/DateRangePicker/DateRangePicker.js +1 -1
  55. package/dist/components/Drawer/Drawer.cjs +1 -1
  56. package/dist/components/Drawer/Drawer.const.cjs +1 -1
  57. package/dist/components/Drawer/Drawer.const.d.ts +2 -11
  58. package/dist/components/Drawer/Drawer.const.js +6 -55
  59. package/dist/components/Drawer/Drawer.d.ts +1 -2
  60. package/dist/components/Drawer/Drawer.js +87 -131
  61. package/dist/components/Drawer/Drawer.types.d.ts +16 -3
  62. package/dist/components/Drawer/Drawer.utils.d.ts +0 -4
  63. package/dist/components/Drawer/components/DrawerHeader/DrawerHeader.cjs +1 -0
  64. package/dist/components/Drawer/components/DrawerHeader/DrawerHeader.d.ts +2 -0
  65. package/dist/components/Drawer/components/DrawerHeader/DrawerHeader.js +26 -0
  66. package/dist/components/Drawer/components/DrawerHeader/DrawerHeader.types.d.ts +20 -0
  67. package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderClose.cjs +1 -0
  68. package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderClose.d.ts +2 -0
  69. package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderClose.js +17 -0
  70. package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderTitle.cjs +1 -0
  71. package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderTitle.d.ts +2 -0
  72. package/dist/components/Drawer/components/DrawerHeader/DrawerHeaderTitle.js +9 -0
  73. package/dist/components/Drawer/components/DrawerHeader/index.d.ts +2 -0
  74. package/dist/components/Drawer/components/index.d.ts +1 -0
  75. package/dist/components/Drawer/helpers/DrawerOptionalHeader.cjs +1 -0
  76. package/dist/components/Drawer/helpers/DrawerOptionalHeader.d.ts +2 -0
  77. package/dist/components/Drawer/helpers/DrawerOptionalHeader.js +9 -0
  78. package/dist/components/Drawer/helpers/index.d.ts +1 -0
  79. package/dist/components/Drawer/hooks/index.d.ts +1 -0
  80. package/dist/components/Drawer/hooks/useDrawer.cjs +1 -0
  81. package/dist/components/Drawer/hooks/useDrawer.d.ts +2 -0
  82. package/dist/components/Drawer/hooks/useDrawer.js +51 -0
  83. package/dist/components/Editable/Editable.cjs +1 -1
  84. package/dist/components/Editable/Editable.js +1 -1
  85. package/dist/components/FileTree/FileTree.cjs +1 -1
  86. package/dist/components/FileTree/FileTree.js +1 -1
  87. package/dist/components/FloatingChat/FloatingChat.cjs +1 -1
  88. package/dist/components/FloatingChat/FloatingChat.js +1 -1
  89. package/dist/components/Gauge/Gauge.cjs +1 -1
  90. package/dist/components/Gauge/Gauge.const.cjs +1 -1
  91. package/dist/components/Gauge/Gauge.const.d.ts +5 -0
  92. package/dist/components/Gauge/Gauge.const.js +11 -6
  93. package/dist/components/Gauge/Gauge.d.ts +1 -2
  94. package/dist/components/Gauge/Gauge.js +69 -45
  95. package/dist/components/Gauge/Gauge.types.d.ts +11 -2
  96. package/dist/components/Gauge/helpers/GaugeLinearBar.cjs +1 -0
  97. package/dist/components/Gauge/helpers/GaugeLinearBar.d.ts +2 -0
  98. package/dist/components/Gauge/helpers/GaugeLinearBar.js +40 -0
  99. package/dist/components/Heatmap/Heatmap.cjs +1 -1
  100. package/dist/components/Heatmap/Heatmap.const.cjs +1 -1
  101. package/dist/components/Heatmap/Heatmap.const.d.ts +2 -0
  102. package/dist/components/Heatmap/Heatmap.const.js +8 -6
  103. package/dist/components/Heatmap/Heatmap.js +51 -47
  104. package/dist/components/Heatmap/Heatmap.types.d.ts +1 -1
  105. package/dist/components/Icon/Icon.d.ts +2 -39
  106. package/dist/components/Icon/Icon.types.d.ts +1 -17
  107. package/dist/components/Icon/icons/action.d.ts +1 -85
  108. package/dist/components/Icon/icons/bear.d.ts +1 -12
  109. package/dist/components/Icon/icons/charts.d.ts +1 -0
  110. package/dist/components/Icon/icons/commerce.d.ts +1 -25
  111. package/dist/components/Icon/icons/communication.d.ts +1 -48
  112. package/dist/components/Icon/icons/content.d.ts +1 -53
  113. package/dist/components/Icon/icons/device.d.ts +1 -27
  114. package/dist/components/Icon/icons/editor.d.ts +1 -54
  115. package/dist/components/Icon/icons/file.d.ts +1 -25
  116. package/dist/components/Icon/icons/index.d.ts +1 -9
  117. package/dist/components/Icon/icons/media.d.ts +1 -64
  118. package/dist/components/Icon/icons/misc.d.ts +1 -96
  119. package/dist/components/Icon/icons/navigation.d.ts +1 -56
  120. package/dist/components/Icon/icons/social.d.ts +1 -24
  121. package/dist/components/Icon/icons/status.d.ts +1 -61
  122. package/dist/components/Icon/index.d.ts +2 -605
  123. package/dist/components/ImageAnnotation/ImageAnnotation.cjs +1 -1
  124. package/dist/components/ImageAnnotation/ImageAnnotation.js +1 -1
  125. package/dist/components/JsonViewer/JsonViewer.cjs +1 -1
  126. package/dist/components/JsonViewer/JsonViewer.js +1 -1
  127. package/dist/components/MediaPlayer/MediaPlayer.cjs +1 -1
  128. package/dist/components/MediaPlayer/MediaPlayer.js +1 -1
  129. package/dist/components/Modal/Modal.cjs +1 -1
  130. package/dist/components/Modal/Modal.js +1 -1
  131. package/dist/components/PageNav/PageNav.cjs +1 -1
  132. package/dist/components/PageNav/PageNav.js +1 -1
  133. package/dist/components/PasswordInput/PasswordInput.cjs +1 -1
  134. package/dist/components/PasswordInput/PasswordInput.js +5 -5
  135. package/dist/components/PropsPlayground/PropsPlayground.cjs +1 -1
  136. package/dist/components/PropsPlayground/PropsPlayground.js +1 -1
  137. package/dist/components/Rating/components/StarIcon/StarIcon.cjs +1 -1
  138. package/dist/components/Rating/components/StarIcon/StarIcon.js +1 -1
  139. package/dist/components/Result/Result.utils.cjs +1 -1
  140. package/dist/components/Result/Result.utils.js +1 -1
  141. package/dist/components/RichEditor/components/ToolbarColorPicker/ToolbarColorPicker.cjs +1 -1
  142. package/dist/components/RichEditor/components/ToolbarColorPicker/ToolbarColorPicker.js +1 -1
  143. package/dist/components/RichEditor/components/ToolbarDropdown/ToolbarDropdown.cjs +1 -1
  144. package/dist/components/RichEditor/components/ToolbarDropdown/ToolbarDropdown.js +1 -1
  145. package/dist/components/RichEditor/components/ToolbarMore/ToolbarMore.cjs +1 -1
  146. package/dist/components/RichEditor/components/ToolbarMore/ToolbarMore.js +1 -1
  147. package/dist/components/RichEditor/components/ToolbarSignature/ToolbarSignature.cjs +1 -1
  148. package/dist/components/RichEditor/components/ToolbarSignature/ToolbarSignature.js +1 -1
  149. package/dist/components/RichEditor/helpers/IconRender.cjs +1 -1
  150. package/dist/components/RichEditor/helpers/IconRender.js +16 -16
  151. package/dist/components/RichEditor/helpers/toolbarItemRender.cjs +1 -1
  152. package/dist/components/RichEditor/helpers/toolbarItemRender.js +23 -23
  153. package/dist/components/RingProgress/RingProgress.cjs +1 -1
  154. package/dist/components/RingProgress/RingProgress.const.cjs +1 -1
  155. package/dist/components/RingProgress/RingProgress.const.d.ts +3 -0
  156. package/dist/components/RingProgress/RingProgress.const.js +7 -4
  157. package/dist/components/RingProgress/RingProgress.js +38 -37
  158. package/dist/components/RingProgress/RingProgress.types.d.ts +1 -0
  159. package/dist/components/Select/Select.cjs +1 -1
  160. package/dist/components/Select/Select.js +1 -1
  161. package/dist/components/Sidebar/Sidebar.cjs +1 -1
  162. package/dist/components/Sidebar/Sidebar.js +16 -15
  163. package/dist/components/Sidebar/Sidebar.types.d.ts +1 -1
  164. package/dist/components/Sidebar/Sidebar.utils.cjs +1 -0
  165. package/dist/components/Sidebar/Sidebar.utils.d.ts +2 -0
  166. package/dist/components/Sidebar/Sidebar.utils.js +11 -0
  167. package/dist/components/Sidebar/components/SidebarGroup/SidebarGroup.cjs +1 -1
  168. package/dist/components/Sidebar/components/SidebarGroup/SidebarGroup.js +1 -1
  169. package/dist/components/Sidebar/components/SidebarItem/SidebarItem.cjs +1 -1
  170. package/dist/components/Sidebar/components/SidebarItem/SidebarItem.js +55 -51
  171. package/dist/components/Sidebar/index.d.ts +1 -0
  172. package/dist/components/SliderRange/SliderRange.cjs +1 -1
  173. package/dist/components/SliderRange/SliderRange.js +19 -19
  174. package/dist/components/Sparkline/Sparkline.cjs +1 -1
  175. package/dist/components/Sparkline/Sparkline.const.cjs +1 -1
  176. package/dist/components/Sparkline/Sparkline.const.d.ts +5 -0
  177. package/dist/components/Sparkline/Sparkline.const.js +9 -4
  178. package/dist/components/Sparkline/Sparkline.d.ts +1 -2
  179. package/dist/components/Sparkline/Sparkline.js +75 -53
  180. package/dist/components/Sparkline/Sparkline.types.d.ts +2 -0
  181. package/dist/components/Sparkline/Sparkline.utils.cjs +1 -1
  182. package/dist/components/Sparkline/Sparkline.utils.d.ts +7 -12
  183. package/dist/components/Sparkline/Sparkline.utils.js +33 -20
  184. package/dist/components/Sparkline/index.d.ts +2 -2
  185. package/dist/components/Stepper/Stepper.cjs +1 -1
  186. package/dist/components/Stepper/Stepper.js +1 -1
  187. package/dist/components/Tabs/TabList.cjs +1 -1
  188. package/dist/components/Tabs/TabList.js +1 -1
  189. package/dist/components/TimePicker/TimePicker.cjs +1 -1
  190. package/dist/components/TimePicker/TimePicker.js +1 -1
  191. package/dist/components/TimelineChart/TimelineChart.cjs +1 -1
  192. package/dist/components/TimelineChart/TimelineChart.const.cjs +1 -1
  193. package/dist/components/TimelineChart/TimelineChart.const.d.ts +3 -0
  194. package/dist/components/TimelineChart/TimelineChart.const.js +7 -4
  195. package/dist/components/TimelineChart/TimelineChart.js +56 -42
  196. package/dist/components/TimelineChart/TimelineChart.types.d.ts +1 -1
  197. package/dist/components/TreeSelect/TreeSelect.cjs +1 -1
  198. package/dist/components/TreeSelect/TreeSelect.js +1 -1
  199. package/dist/components/TreeSelect/components/TreeSelectExpandControl/TreeSelectExpandControl.cjs +1 -1
  200. package/dist/components/TreeSelect/components/TreeSelectExpandControl/TreeSelectExpandControl.js +1 -1
  201. package/dist/components/TreeView/TreeView.cjs +1 -1
  202. package/dist/components/TreeView/TreeView.js +3 -2
  203. package/dist/components/TreeView/components/TreeViewExpandControl/TreeViewExpandControl.cjs +1 -1
  204. package/dist/components/TreeView/components/TreeViewExpandControl/TreeViewExpandControl.js +1 -1
  205. package/dist/components/TreeView/components/TreeViewNodeIcon/TreeViewNodeIcon.cjs +1 -1
  206. package/dist/components/TreeView/components/TreeViewNodeIcon/TreeViewNodeIcon.js +1 -1
  207. package/dist/components/index.cjs +1 -1
  208. package/dist/components/index.d.ts +2 -2
  209. package/dist/components/index.js +409 -406
  210. package/dist/constants/generals.const.cjs +1 -1
  211. package/dist/constants/generals.const.d.ts +4 -0
  212. package/dist/constants/generals.const.js +50 -47
  213. package/dist/icons.cjs +1 -1
  214. package/dist/icons.d.ts +2 -2
  215. package/dist/icons.js +1 -6
  216. package/dist/index.cjs +1 -1
  217. package/dist/index.js +551 -548
  218. package/dist/node_modules/@forgedevstack/bear-icons/dist/Icon.cjs +1 -0
  219. package/dist/node_modules/@forgedevstack/bear-icons/dist/Icon.const.cjs +1 -0
  220. package/dist/node_modules/@forgedevstack/bear-icons/dist/Icon.const.js +14 -0
  221. package/dist/node_modules/@forgedevstack/bear-icons/dist/Icon.js +35 -0
  222. package/dist/node_modules/@forgedevstack/bear-icons/dist/action.cjs +1 -0
  223. package/dist/node_modules/@forgedevstack/bear-icons/dist/action.js +26 -0
  224. package/dist/node_modules/@forgedevstack/bear-icons/dist/cn.utils.cjs +1 -0
  225. package/dist/node_modules/@forgedevstack/bear-icons/dist/cn.utils.js +4 -0
  226. package/dist/node_modules/@forgedevstack/bear-icons/dist/editor.cjs +1 -0
  227. package/dist/node_modules/@forgedevstack/bear-icons/dist/editor.js +130 -0
  228. package/dist/node_modules/@forgedevstack/bear-icons/dist/misc.cjs +1 -0
  229. package/dist/node_modules/@forgedevstack/bear-icons/dist/misc.js +12 -0
  230. package/dist/node_modules/@forgedevstack/bear-icons/dist/navigation.cjs +1 -0
  231. package/dist/node_modules/@forgedevstack/bear-icons/dist/navigation.js +18 -0
  232. package/dist/node_modules/@forgedevstack/bear-icons/dist/status.cjs +1 -0
  233. package/dist/node_modules/@forgedevstack/bear-icons/dist/status.js +6 -0
  234. package/dist/styles/_drawer.css +213 -0
  235. package/dist/styles/_overlays.css +0 -1
  236. package/dist/styles/main.css +1 -0
  237. package/dist/styles.css +226 -25
  238. package/package.json +5 -1
  239. package/dist/components/Icon/Icon.cjs +0 -1
  240. package/dist/components/Icon/Icon.const.d.ts +0 -1
  241. package/dist/components/Icon/Icon.js +0 -45
  242. package/dist/components/Icon/icons/action.cjs +0 -1
  243. package/dist/components/Icon/icons/action.js +0 -351
  244. package/dist/components/Icon/icons/bear.cjs +0 -1
  245. package/dist/components/Icon/icons/bear.js +0 -47
  246. package/dist/components/Icon/icons/commerce.cjs +0 -1
  247. package/dist/components/Icon/icons/commerce.js +0 -124
  248. package/dist/components/Icon/icons/communication.cjs +0 -1
  249. package/dist/components/Icon/icons/communication.js +0 -184
  250. package/dist/components/Icon/icons/content.cjs +0 -1
  251. package/dist/components/Icon/icons/content.js +0 -231
  252. package/dist/components/Icon/icons/device.cjs +0 -1
  253. package/dist/components/Icon/icons/device.js +0 -122
  254. package/dist/components/Icon/icons/editor.cjs +0 -1
  255. package/dist/components/Icon/icons/editor.js +0 -285
  256. package/dist/components/Icon/icons/file.cjs +0 -1
  257. package/dist/components/Icon/icons/file.js +0 -120
  258. package/dist/components/Icon/icons/media.cjs +0 -1
  259. package/dist/components/Icon/icons/media.js +0 -306
  260. package/dist/components/Icon/icons/misc.cjs +0 -1
  261. package/dist/components/Icon/icons/misc.js +0 -450
  262. package/dist/components/Icon/icons/navigation.cjs +0 -1
  263. package/dist/components/Icon/icons/navigation.js +0 -215
  264. package/dist/components/Icon/icons/social.cjs +0 -1
  265. package/dist/components/Icon/icons/social.js +0 -89
  266. package/dist/components/Icon/icons/status.cjs +0 -1
  267. package/dist/components/Icon/icons/status.js +0 -271
  268. package/dist/components/Icon/index.cjs +0 -1
  269. package/dist/components/Icon/index.js +0 -79
@@ -1,215 +0,0 @@
1
- import { jsxs as e, jsx as n } from "react/jsx-runtime";
2
- import { Icon as i } from "../Icon.js";
3
- const c = (o) => /* @__PURE__ */ e(i, { ...o, children: [
4
- /* @__PURE__ */ n("line", { x1: "12", y1: "19", x2: "12", y2: "5" }),
5
- /* @__PURE__ */ n("polyline", { points: "5 12 12 5 19 12" })
6
- ] }), r = (o) => /* @__PURE__ */ e(i, { ...o, children: [
7
- /* @__PURE__ */ n("line", { x1: "12", y1: "5", x2: "12", y2: "19" }),
8
- /* @__PURE__ */ n("polyline", { points: "19 12 12 19 5 12" })
9
- ] }), p = (o) => /* @__PURE__ */ e(i, { ...o, children: [
10
- /* @__PURE__ */ n("line", { x1: "19", y1: "12", x2: "5", y2: "12" }),
11
- /* @__PURE__ */ n("polyline", { points: "12 19 5 12 12 5" })
12
- ] }), y = (o) => /* @__PURE__ */ e(i, { ...o, children: [
13
- /* @__PURE__ */ n("line", { x1: "5", y1: "12", x2: "19", y2: "12" }),
14
- /* @__PURE__ */ n("polyline", { points: "12 5 19 12 12 19" })
15
- ] }), h = (o) => /* @__PURE__ */ e(i, { ...o, children: [
16
- /* @__PURE__ */ n("line", { x1: "12", y1: "19", x2: "12", y2: "5" }),
17
- /* @__PURE__ */ n("polyline", { points: "5 12 12 5 19 12" })
18
- ] }), s = (o) => /* @__PURE__ */ e(i, { ...o, children: [
19
- /* @__PURE__ */ n("line", { x1: "12", y1: "5", x2: "12", y2: "19" }),
20
- /* @__PURE__ */ n("polyline", { points: "19 12 12 19 5 12" })
21
- ] }), x = (o) => /* @__PURE__ */ e(i, { ...o, children: [
22
- /* @__PURE__ */ n("line", { x1: "19", y1: "12", x2: "5", y2: "12" }),
23
- /* @__PURE__ */ n("polyline", { points: "12 19 5 12 12 5" })
24
- ] }), d = (o) => /* @__PURE__ */ e(i, { ...o, children: [
25
- /* @__PURE__ */ n("line", { x1: "5", y1: "12", x2: "19", y2: "12" }),
26
- /* @__PURE__ */ n("polyline", { points: "12 5 19 12 12 19" })
27
- ] }), I = (o) => /* @__PURE__ */ e(i, { ...o, children: [
28
- /* @__PURE__ */ n("circle", { cx: "12", cy: "12", r: "10" }),
29
- /* @__PURE__ */ n("polyline", { points: "16 12 12 8 8 12" }),
30
- /* @__PURE__ */ n("line", { x1: "12", y1: "16", x2: "12", y2: "8" })
31
- ] }), a = (o) => /* @__PURE__ */ e(i, { ...o, children: [
32
- /* @__PURE__ */ n("circle", { cx: "12", cy: "12", r: "10" }),
33
- /* @__PURE__ */ n("polyline", { points: "8 12 12 16 16 12" }),
34
- /* @__PURE__ */ n("line", { x1: "12", y1: "8", x2: "12", y2: "16" })
35
- ] }), w = (o) => /* @__PURE__ */ e(i, { ...o, children: [
36
- /* @__PURE__ */ n("circle", { cx: "12", cy: "12", r: "10" }),
37
- /* @__PURE__ */ n("polyline", { points: "12 8 8 12 12 16" }),
38
- /* @__PURE__ */ n("line", { x1: "16", y1: "12", x2: "8", y2: "12" })
39
- ] }), g = (o) => /* @__PURE__ */ e(i, { ...o, children: [
40
- /* @__PURE__ */ n("circle", { cx: "12", cy: "12", r: "10" }),
41
- /* @__PURE__ */ n("polyline", { points: "12 16 16 12 12 8" }),
42
- /* @__PURE__ */ n("line", { x1: "8", y1: "12", x2: "16", y2: "12" })
43
- ] }), M = (o) => /* @__PURE__ */ n(i, { ...o, children: /* @__PURE__ */ n("polyline", { points: "18 15 12 9 6 15" }) }), v = (o) => /* @__PURE__ */ n(i, { ...o, children: /* @__PURE__ */ n("polyline", { points: "6 9 12 15 18 9" }) }), C = (o) => /* @__PURE__ */ n(i, { ...o, children: /* @__PURE__ */ n("polyline", { points: "15 18 9 12 15 6" }) }), A = (o) => /* @__PURE__ */ n(i, { ...o, children: /* @__PURE__ */ n("polyline", { points: "9 18 15 12 9 6" }) }), L = (o) => /* @__PURE__ */ e(i, { ...o, children: [
44
- /* @__PURE__ */ n("polyline", { points: "17 11 12 6 7 11" }),
45
- /* @__PURE__ */ n("polyline", { points: "17 18 12 13 7 18" })
46
- ] }), f = (o) => /* @__PURE__ */ e(i, { ...o, children: [
47
- /* @__PURE__ */ n("polyline", { points: "7 13 12 18 17 13" }),
48
- /* @__PURE__ */ n("polyline", { points: "7 6 12 11 17 6" })
49
- ] }), U = (o) => /* @__PURE__ */ e(i, { ...o, children: [
50
- /* @__PURE__ */ n("polyline", { points: "11 17 6 12 11 7" }),
51
- /* @__PURE__ */ n("polyline", { points: "18 17 13 12 18 7" })
52
- ] }), m = (o) => /* @__PURE__ */ e(i, { ...o, children: [
53
- /* @__PURE__ */ n("polyline", { points: "13 17 18 12 13 7" }),
54
- /* @__PURE__ */ n("polyline", { points: "6 17 11 12 6 7" })
55
- ] }), D = (o) => /* @__PURE__ */ n(i, { ...o, children: /* @__PURE__ */ n("polyline", { points: "6 9 12 15 18 9" }) }), H = (o) => /* @__PURE__ */ n(i, { ...o, children: /* @__PURE__ */ n("polyline", { points: "18 15 12 9 6 15" }) }), R = (o) => /* @__PURE__ */ e(i, { ...o, children: [
56
- /* @__PURE__ */ n("polyline", { points: "7 10 12 5 17 10" }),
57
- /* @__PURE__ */ n("polyline", { points: "7 14 12 19 17 14" })
58
- ] }), V = (o) => /* @__PURE__ */ e(i, { ...o, children: [
59
- /* @__PURE__ */ n("polyline", { points: "7 8 12 13 17 8" }),
60
- /* @__PURE__ */ n("polyline", { points: "7 16 12 11 17 16" })
61
- ] }), u = (o) => /* @__PURE__ */ e(i, { ...o, children: [
62
- /* @__PURE__ */ n("line", { x1: "3", y1: "12", x2: "21", y2: "12" }),
63
- /* @__PURE__ */ n("line", { x1: "3", y1: "6", x2: "21", y2: "6" }),
64
- /* @__PURE__ */ n("line", { x1: "3", y1: "18", x2: "21", y2: "18" })
65
- ] }), z = (o) => /* @__PURE__ */ e(i, { ...o, children: [
66
- /* @__PURE__ */ n("line", { x1: "3", y1: "12", x2: "17", y2: "12" }),
67
- /* @__PURE__ */ n("line", { x1: "3", y1: "6", x2: "21", y2: "6" }),
68
- /* @__PURE__ */ n("line", { x1: "3", y1: "18", x2: "14", y2: "18" }),
69
- /* @__PURE__ */ n("polyline", { points: "17 15 20 12 17 9" })
70
- ] }), S = (o) => /* @__PURE__ */ e(i, { ...o, children: [
71
- /* @__PURE__ */ n("line", { x1: "18", y1: "6", x2: "6", y2: "18" }),
72
- /* @__PURE__ */ n("line", { x1: "6", y1: "6", x2: "18", y2: "18" })
73
- ] }), b = (o) => /* @__PURE__ */ e(i, { ...o, children: [
74
- /* @__PURE__ */ n("path", { d: "M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z" }),
75
- /* @__PURE__ */ n("polyline", { points: "9 22 9 12 15 12 15 22" })
76
- ] }), E = (o) => /* @__PURE__ */ e(i, { ...o, children: [
77
- /* @__PURE__ */ n("rect", { x: "3", y: "3", width: "7", height: "9" }),
78
- /* @__PURE__ */ n("rect", { x: "14", y: "3", width: "7", height: "5" }),
79
- /* @__PURE__ */ n("rect", { x: "14", y: "12", width: "7", height: "9" }),
80
- /* @__PURE__ */ n("rect", { x: "3", y: "16", width: "7", height: "5" })
81
- ] }), F = (o) => /* @__PURE__ */ e(i, { ...o, children: [
82
- /* @__PURE__ */ n("rect", { x: "3", y: "3", width: "5", height: "5", rx: "1" }),
83
- /* @__PURE__ */ n("rect", { x: "10", y: "3", width: "5", height: "5", rx: "1" }),
84
- /* @__PURE__ */ n("rect", { x: "17", y: "3", width: "5", height: "5", rx: "1" }),
85
- /* @__PURE__ */ n("rect", { x: "3", y: "10", width: "5", height: "5", rx: "1" }),
86
- /* @__PURE__ */ n("rect", { x: "10", y: "10", width: "5", height: "5", rx: "1" }),
87
- /* @__PURE__ */ n("rect", { x: "17", y: "10", width: "5", height: "5", rx: "1" }),
88
- /* @__PURE__ */ n("rect", { x: "3", y: "17", width: "5", height: "5", rx: "1" }),
89
- /* @__PURE__ */ n("rect", { x: "10", y: "17", width: "5", height: "5", rx: "1" }),
90
- /* @__PURE__ */ n("rect", { x: "17", y: "17", width: "5", height: "5", rx: "1" })
91
- ] }), N = (o) => /* @__PURE__ */ e(i, { ...o, children: [
92
- /* @__PURE__ */ n("polyline", { points: "17 18 11 12 17 6" }),
93
- /* @__PURE__ */ n("line", { x1: "7", y1: "6", x2: "7", y2: "18" })
94
- ] }), T = (o) => /* @__PURE__ */ e(i, { ...o, children: [
95
- /* @__PURE__ */ n("polyline", { points: "7 6 13 12 7 18" }),
96
- /* @__PURE__ */ n("line", { x1: "17", y1: "6", x2: "17", y2: "18" })
97
- ] }), j = (o) => /* @__PURE__ */ n(i, { ...o, children: /* @__PURE__ */ n("polyline", { points: "15 18 9 12 15 6" }) }), k = (o) => /* @__PURE__ */ n(i, { ...o, children: /* @__PURE__ */ n("polyline", { points: "9 18 15 12 9 6" }) }), B = (o) => /* @__PURE__ */ e(i, { ...o, children: [
98
- /* @__PURE__ */ n("polyline", { points: "11 9 6 14 11 19" }),
99
- /* @__PURE__ */ n("path", { d: "M18 5v9a1 1 0 0 1-1 1H6" })
100
- ] }), P = (o) => /* @__PURE__ */ e(i, { ...o, children: [
101
- /* @__PURE__ */ n("polyline", { points: "13 9 18 14 13 19" }),
102
- /* @__PURE__ */ n("path", { d: "M6 5v9a1 1 0 0 0 1 1h11" })
103
- ] }), G = (o) => /* @__PURE__ */ e(i, { ...o, children: [
104
- /* @__PURE__ */ n("polyline", { points: "17 1 21 5 17 9" }),
105
- /* @__PURE__ */ n("path", { d: "M3 5h18" }),
106
- /* @__PURE__ */ n("polyline", { points: "7 23 3 19 7 15" }),
107
- /* @__PURE__ */ n("path", { d: "M21 19H3" })
108
- ] }), O = (o) => /* @__PURE__ */ e(i, { ...o, children: [
109
- /* @__PURE__ */ n("polyline", { points: "1 7 5 3 9 7" }),
110
- /* @__PURE__ */ n("path", { d: "M5 3v18" }),
111
- /* @__PURE__ */ n("polyline", { points: "23 17 19 21 15 17" }),
112
- /* @__PURE__ */ n("path", { d: "M19 21V3" })
113
- ] }), q = (o) => /* @__PURE__ */ e(i, { ...o, children: [
114
- /* @__PURE__ */ n("polyline", { points: "23 6 13.5 15.5 8.5 10.5 1 18" }),
115
- /* @__PURE__ */ n("polyline", { points: "17 6 23 6 23 12" })
116
- ] }), J = (o) => /* @__PURE__ */ e(i, { ...o, children: [
117
- /* @__PURE__ */ n("polyline", { points: "23 18 13.5 8.5 8.5 13.5 1 6" }),
118
- /* @__PURE__ */ n("polyline", { points: "17 18 23 18 23 12" })
119
- ] }), K = (o) => /* @__PURE__ */ e(i, { ...o, children: [
120
- /* @__PURE__ */ n("line", { x1: "3", y1: "12", x2: "21", y2: "12" }),
121
- /* @__PURE__ */ n("polyline", { points: "17 8 21 12 17 16" })
122
- ] }), Q = (o) => /* @__PURE__ */ e(i, { ...o, children: [
123
- /* @__PURE__ */ n("polyline", { points: "9 10 4 15 9 20" }),
124
- /* @__PURE__ */ n("path", { d: "M20 4v7a4 4 0 0 1-4 4H4" })
125
- ] }), W = (o) => /* @__PURE__ */ e(i, { ...o, children: [
126
- /* @__PURE__ */ n("polyline", { points: "15 10 20 15 15 20" }),
127
- /* @__PURE__ */ n("path", { d: "M4 4v7a4 4 0 0 0 4 4h12" })
128
- ] }), X = (o) => /* @__PURE__ */ e(i, { ...o, children: [
129
- /* @__PURE__ */ n("polyline", { points: "9 14 4 9 9 4" }),
130
- /* @__PURE__ */ n("path", { d: "M20 20v-7a4 4 0 0 0-4-4H4" })
131
- ] }), Y = (o) => /* @__PURE__ */ e(i, { ...o, children: [
132
- /* @__PURE__ */ n("polyline", { points: "15 14 20 9 15 4" }),
133
- /* @__PURE__ */ n("path", { d: "M4 20v-7a4 4 0 0 1 4-4h12" })
134
- ] }), Z = (o) => /* @__PURE__ */ n(i, { ...o, children: /* @__PURE__ */ n("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" }) }), _ = (o) => /* @__PURE__ */ n(i, { ...o, children: /* @__PURE__ */ n("path", { d: "M4 14h6v6M20 10h-6V4M14 10l7-7M3 21l7-7" }) }), $ = (o) => /* @__PURE__ */ e(i, { ...o, children: [
135
- /* @__PURE__ */ n("polyline", { points: "5 9 2 12 5 15" }),
136
- /* @__PURE__ */ n("polyline", { points: "9 5 12 2 15 5" }),
137
- /* @__PURE__ */ n("polyline", { points: "15 19 12 22 9 19" }),
138
- /* @__PURE__ */ n("polyline", { points: "19 9 22 12 19 15" }),
139
- /* @__PURE__ */ n("line", { x1: "2", y1: "12", x2: "22", y2: "12" }),
140
- /* @__PURE__ */ n("line", { x1: "12", y1: "2", x2: "12", y2: "22" })
141
- ] }), n1 = (o) => /* @__PURE__ */ e(i, { ...o, children: [
142
- /* @__PURE__ */ n("polygon", { points: "12 2 2 7 12 12 22 7 12 2" }),
143
- /* @__PURE__ */ n("polyline", { points: "2 17 12 22 22 17" }),
144
- /* @__PURE__ */ n("polyline", { points: "2 12 12 17 22 12" })
145
- ] }), o1 = (o) => /* @__PURE__ */ e(i, { ...o, children: [
146
- /* @__PURE__ */ n("rect", { x: "3", y: "3", width: "7", height: "7" }),
147
- /* @__PURE__ */ n("rect", { x: "14", y: "3", width: "7", height: "7" }),
148
- /* @__PURE__ */ n("rect", { x: "14", y: "14", width: "7", height: "7" }),
149
- /* @__PURE__ */ n("rect", { x: "3", y: "14", width: "7", height: "7" })
150
- ] }), i1 = (o) => /* @__PURE__ */ e(i, { ...o, children: [
151
- /* @__PURE__ */ n("line", { x1: "8", y1: "6", x2: "21", y2: "6" }),
152
- /* @__PURE__ */ n("line", { x1: "8", y1: "12", x2: "21", y2: "12" }),
153
- /* @__PURE__ */ n("line", { x1: "8", y1: "18", x2: "21", y2: "18" }),
154
- /* @__PURE__ */ n("line", { x1: "3", y1: "6", x2: "3.01", y2: "6" }),
155
- /* @__PURE__ */ n("line", { x1: "3", y1: "12", x2: "3.01", y2: "12" }),
156
- /* @__PURE__ */ n("line", { x1: "3", y1: "18", x2: "3.01", y2: "18" })
157
- ] }), e1 = (o) => /* @__PURE__ */ e(i, { ...o, children: [
158
- /* @__PURE__ */ n("path", { d: "M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6" }),
159
- /* @__PURE__ */ n("polyline", { points: "15 3 21 3 21 9" }),
160
- /* @__PURE__ */ n("line", { x1: "10", y1: "14", x2: "21", y2: "3" })
161
- ] });
162
- export {
163
- F as AppsIcon,
164
- x as ArrowBackIcon,
165
- a as ArrowCircleDownIcon,
166
- w as ArrowCircleLeftIcon,
167
- g as ArrowCircleRightIcon,
168
- I as ArrowCircleUpIcon,
169
- r as ArrowDownIcon,
170
- s as ArrowDownwardIcon,
171
- d as ArrowForwardIcon,
172
- p as ArrowLeftIcon,
173
- y as ArrowRightIcon,
174
- c as ArrowUpIcon,
175
- h as ArrowUpwardIcon,
176
- v as ChevronDownIcon,
177
- C as ChevronLeftIcon,
178
- A as ChevronRightIcon,
179
- M as ChevronUpIcon,
180
- f as ChevronsDownIcon,
181
- U as ChevronsLeftIcon,
182
- m as ChevronsRightIcon,
183
- L as ChevronsUpIcon,
184
- S as CloseIcon,
185
- Q as CornerDownLeftIcon,
186
- W as CornerDownRightIcon,
187
- X as CornerUpLeftIcon,
188
- Y as CornerUpRightIcon,
189
- E as DashboardIcon,
190
- H as ExpandLessIcon,
191
- D as ExpandMoreIcon,
192
- e1 as ExternalLinkIcon,
193
- N as FirstPageIcon,
194
- o1 as GridViewIcon,
195
- b as HomeIcon,
196
- T as LastPageIcon,
197
- n1 as LayersIcon,
198
- i1 as ListViewIcon,
199
- Z as MaximizeIcon,
200
- u as MenuIcon,
201
- z as MenuOpenIcon,
202
- _ as MinimizeIcon,
203
- $ as MoveIcon,
204
- j as NavigateBeforeIcon,
205
- k as NavigateNextIcon,
206
- B as SubdirectoryArrowLeftIcon,
207
- P as SubdirectoryArrowRightIcon,
208
- G as SwapHorizIcon,
209
- O as SwapVertIcon,
210
- J as TrendingDownIcon,
211
- K as TrendingFlatIcon,
212
- q as TrendingUpIcon,
213
- V as UnfoldLessIcon,
214
- R as UnfoldMoreIcon
215
- };
@@ -1 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const c=require("react/jsx-runtime"),n=require("../Icon.cjs"),h=s=>c.jsx(n.Icon,{...s,children:c.jsx("path",{d:"M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22"})}),x=s=>c.jsx(n.Icon,{...s,children:c.jsx("path",{d:"M22 4s-.7 2.1-2 3.4c1.6 10-9.4 17.3-18 11.6 2.2.1 4.4-.6 6-2C3 15.5.5 9.6 3 5c2.2 2.6 5.6 4.1 9 4-.9-4.2 4-6.6 7-3.8 1.1 0 3-1.2 3-1.2z"})}),o=s=>c.jsx(n.Icon,{...s,children:c.jsx("path",{d:"M4 4l6.5 8L4 20h2l5.5-6.8L16 20h4l-7-8.5L20 4h-2l-5 6.2L9 4H4z"})}),a=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("path",{d:"M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"}),c.jsx("rect",{x:"2",y:"9",width:"4",height:"12"}),c.jsx("circle",{cx:"4",cy:"4",r:"2"})]}),t=s=>c.jsx(n.Icon,{...s,children:c.jsx("path",{d:"M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"})}),j=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("rect",{x:"2",y:"2",width:"20",height:"20",rx:"5",ry:"5"}),c.jsx("path",{d:"M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"}),c.jsx("line",{x1:"17.5",y1:"6.5",x2:"17.51",y2:"6.5"})]}),e=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("path",{d:"M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19.1c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.43z"}),c.jsx("polygon",{points:"9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"})]}),d=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("path",{d:"M9.5 9.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z"}),c.jsx("path",{d:"M14.5 9.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z"}),c.jsx("path",{d:"M7.5 16.5s1.5 2 4.5 2 4.5-2 4.5-2"}),c.jsx("path",{d:"M20.3 4.7a19.8 19.8 0 0 0-4.9-1.5l-.6 1.2a18.3 18.3 0 0 0-5.6 0L8.6 3.2a19.8 19.8 0 0 0-4.9 1.5A20 20 0 0 0 .2 17.8a20.2 20.2 0 0 0 6.1 3.1l1.4-2.2a13.1 13.1 0 0 1-2.1-1l.5-.4a14.2 14.2 0 0 0 12 0l.5.4c-.7.4-1.4.7-2.1 1l1.4 2.2a20.2 20.2 0 0 0 6.1-3.1A20 20 0 0 0 20.3 4.7z"})]}),i=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("path",{d:"M14.5 2a2.5 2.5 0 0 0 0 5H17V4.5A2.5 2.5 0 0 0 14.5 2z"}),c.jsx("path",{d:"M20 9.5a2.5 2.5 0 0 0-5 0V12h2.5A2.5 2.5 0 0 0 20 9.5z"}),c.jsx("path",{d:"M9.5 22a2.5 2.5 0 0 0 0-5H7v2.5A2.5 2.5 0 0 0 9.5 22z"}),c.jsx("path",{d:"M4 14.5a2.5 2.5 0 0 0 5 0V12H6.5A2.5 2.5 0 0 0 4 14.5z"}),c.jsx("path",{d:"M17 14.5a2.5 2.5 0 0 1 5 0v2h-2.5a2.5 2.5 0 0 1-2.5-2.5h0z"}),c.jsx("path",{d:"M14.5 17a2.5 2.5 0 0 1 0 5H12v-2.5a2.5 2.5 0 0 1 2.5-2.5z"}),c.jsx("path",{d:"M7 9.5a2.5 2.5 0 0 1-5 0V7h2.5A2.5 2.5 0 0 1 7 9.5z"}),c.jsx("path",{d:"M9.5 7a2.5 2.5 0 0 1 0-5H12v2.5A2.5 2.5 0 0 1 9.5 7z"})]}),l=s=>c.jsx(n.Icon,{...s,children:c.jsx("path",{d:"M21 2H3v16h5v4l4-4h5l4-4V2zm-10 9V7m5 4V7"})}),I=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("circle",{cx:"12",cy:"14",r:"7"}),c.jsx("path",{d:"M19 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4z"}),c.jsx("path",{d:"M16.5 3l2 2"}),c.jsx("circle",{cx:"9",cy:"13",r:"1"}),c.jsx("circle",{cx:"15",cy:"13",r:"1"}),c.jsx("path",{d:"M9 17c1.5 1 4.5 1 6 0"})]}),r=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("rect",{x:"2",y:"5",width:"20",height:"14",rx:"0"}),c.jsx("path",{d:"M5 8v8h4v-6h2v6h2V8"}),c.jsx("path",{d:"M15 8v8h4V8h-2v6h-2V8"})]}),p=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("circle",{cx:"18",cy:"5",r:"3"}),c.jsx("circle",{cx:"6",cy:"12",r:"3"}),c.jsx("circle",{cx:"18",cy:"19",r:"3"}),c.jsx("line",{x1:"8.59",y1:"13.51",x2:"15.42",y2:"17.49"}),c.jsx("line",{x1:"15.41",y1:"6.51",x2:"8.59",y2:"10.49"})]}),M=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("polyline",{points:"7 11 12 6 17 11"}),c.jsx("path",{d:"M12 6v12"}),c.jsx("path",{d:"M5 18h14"})]}),y=s=>c.jsx(n.Icon,{...s,children:c.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"})}),v=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("path",{d:"M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3H14z"}),c.jsx("path",{d:"M7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3"})]}),z=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("path",{d:"M10 15V19a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3H10z"}),c.jsx("path",{d:"M17 2h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17"})]}),A=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("circle",{cx:"12",cy:"12",r:"4"}),c.jsx("path",{d:"M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94"})]}),H=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("line",{x1:"4",y1:"9",x2:"20",y2:"9"}),c.jsx("line",{x1:"4",y1:"15",x2:"20",y2:"15"}),c.jsx("line",{x1:"10",y1:"3",x2:"8",y2:"21"}),c.jsx("line",{x1:"16",y1:"3",x2:"14",y2:"21"})]}),u=s=>c.jsxs(n.Icon,{...s,children:[c.jsx("path",{d:"M4 11a9 9 0 0 1 9 9"}),c.jsx("path",{d:"M4 4a16 16 0 0 1 16 16"}),c.jsx("circle",{cx:"5",cy:"19",r:"1"})]});exports.AtSignIcon=A;exports.DiscordIcon=d;exports.FacebookIcon=t;exports.GithubIcon=h;exports.HashIcon=H;exports.HeartIcon=y;exports.InstagramIcon=j;exports.LinkedInIcon=a;exports.NpmIcon=r;exports.RedditIcon=I;exports.RssIcon=u;exports.Share2Icon=M;exports.ShareIcon=p;exports.SlackIcon=i;exports.ThumbsDownIcon=z;exports.ThumbsUpIcon=v;exports.TwitchIcon=l;exports.TwitterIcon=x;exports.XSocialIcon=o;exports.YoutubeIcon=e;
@@ -1,89 +0,0 @@
1
- import { jsxs as t, jsx as c } from "react/jsx-runtime";
2
- import { Icon as a } from "../Icon.js";
3
- const l = (h) => /* @__PURE__ */ c(a, { ...h, children: /* @__PURE__ */ c("path", { d: "M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22" }) }), o = (h) => /* @__PURE__ */ c(a, { ...h, children: /* @__PURE__ */ c("path", { d: "M22 4s-.7 2.1-2 3.4c1.6 10-9.4 17.3-18 11.6 2.2.1 4.4-.6 6-2C3 15.5.5 9.6 3 5c2.2 2.6 5.6 4.1 9 4-.9-4.2 4-6.6 7-3.8 1.1 0 3-1.2 3-1.2z" }) }), i = (h) => /* @__PURE__ */ c(a, { ...h, children: /* @__PURE__ */ c("path", { d: "M4 4l6.5 8L4 20h2l5.5-6.8L16 20h4l-7-8.5L20 4h-2l-5 6.2L9 4H4z" }) }), r = (h) => /* @__PURE__ */ t(a, { ...h, children: [
4
- /* @__PURE__ */ c("path", { d: "M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z" }),
5
- /* @__PURE__ */ c("rect", { x: "2", y: "9", width: "4", height: "12" }),
6
- /* @__PURE__ */ c("circle", { cx: "4", cy: "4", r: "2" })
7
- ] }), e = (h) => /* @__PURE__ */ c(a, { ...h, children: /* @__PURE__ */ c("path", { d: "M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z" }) }), p = (h) => /* @__PURE__ */ t(a, { ...h, children: [
8
- /* @__PURE__ */ c("rect", { x: "2", y: "2", width: "20", height: "20", rx: "5", ry: "5" }),
9
- /* @__PURE__ */ c("path", { d: "M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z" }),
10
- /* @__PURE__ */ c("line", { x1: "17.5", y1: "6.5", x2: "17.51", y2: "6.5" })
11
- ] }), s = (h) => /* @__PURE__ */ t(a, { ...h, children: [
12
- /* @__PURE__ */ c("path", { d: "M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19.1c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.43z" }),
13
- /* @__PURE__ */ c("polygon", { points: "9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02" })
14
- ] }), M = (h) => /* @__PURE__ */ t(a, { ...h, children: [
15
- /* @__PURE__ */ c("path", { d: "M9.5 9.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z" }),
16
- /* @__PURE__ */ c("path", { d: "M14.5 9.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z" }),
17
- /* @__PURE__ */ c("path", { d: "M7.5 16.5s1.5 2 4.5 2 4.5-2 4.5-2" }),
18
- /* @__PURE__ */ c("path", { d: "M20.3 4.7a19.8 19.8 0 0 0-4.9-1.5l-.6 1.2a18.3 18.3 0 0 0-5.6 0L8.6 3.2a19.8 19.8 0 0 0-4.9 1.5A20 20 0 0 0 .2 17.8a20.2 20.2 0 0 0 6.1 3.1l1.4-2.2a13.1 13.1 0 0 1-2.1-1l.5-.4a14.2 14.2 0 0 0 12 0l.5.4c-.7.4-1.4.7-2.1 1l1.4 2.2a20.2 20.2 0 0 0 6.1-3.1A20 20 0 0 0 20.3 4.7z" })
19
- ] }), x = (h) => /* @__PURE__ */ t(a, { ...h, children: [
20
- /* @__PURE__ */ c("path", { d: "M14.5 2a2.5 2.5 0 0 0 0 5H17V4.5A2.5 2.5 0 0 0 14.5 2z" }),
21
- /* @__PURE__ */ c("path", { d: "M20 9.5a2.5 2.5 0 0 0-5 0V12h2.5A2.5 2.5 0 0 0 20 9.5z" }),
22
- /* @__PURE__ */ c("path", { d: "M9.5 22a2.5 2.5 0 0 0 0-5H7v2.5A2.5 2.5 0 0 0 9.5 22z" }),
23
- /* @__PURE__ */ c("path", { d: "M4 14.5a2.5 2.5 0 0 0 5 0V12H6.5A2.5 2.5 0 0 0 4 14.5z" }),
24
- /* @__PURE__ */ c("path", { d: "M17 14.5a2.5 2.5 0 0 1 5 0v2h-2.5a2.5 2.5 0 0 1-2.5-2.5h0z" }),
25
- /* @__PURE__ */ c("path", { d: "M14.5 17a2.5 2.5 0 0 1 0 5H12v-2.5a2.5 2.5 0 0 1 2.5-2.5z" }),
26
- /* @__PURE__ */ c("path", { d: "M7 9.5a2.5 2.5 0 0 1-5 0V7h2.5A2.5 2.5 0 0 1 7 9.5z" }),
27
- /* @__PURE__ */ c("path", { d: "M9.5 7a2.5 2.5 0 0 1 0-5H12v2.5A2.5 2.5 0 0 1 9.5 7z" })
28
- ] }), y = (h) => /* @__PURE__ */ c(a, { ...h, children: /* @__PURE__ */ c("path", { d: "M21 2H3v16h5v4l4-4h5l4-4V2zm-10 9V7m5 4V7" }) }), v = (h) => /* @__PURE__ */ t(a, { ...h, children: [
29
- /* @__PURE__ */ c("circle", { cx: "12", cy: "14", r: "7" }),
30
- /* @__PURE__ */ c("path", { d: "M19 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4z" }),
31
- /* @__PURE__ */ c("path", { d: "M16.5 3l2 2" }),
32
- /* @__PURE__ */ c("circle", { cx: "9", cy: "13", r: "1" }),
33
- /* @__PURE__ */ c("circle", { cx: "15", cy: "13", r: "1" }),
34
- /* @__PURE__ */ c("path", { d: "M9 17c1.5 1 4.5 1 6 0" })
35
- ] }), I = (h) => /* @__PURE__ */ t(a, { ...h, children: [
36
- /* @__PURE__ */ c("rect", { x: "2", y: "5", width: "20", height: "14", rx: "0" }),
37
- /* @__PURE__ */ c("path", { d: "M5 8v8h4v-6h2v6h2V8" }),
38
- /* @__PURE__ */ c("path", { d: "M15 8v8h4V8h-2v6h-2V8" })
39
- ] }), z = (h) => /* @__PURE__ */ t(a, { ...h, children: [
40
- /* @__PURE__ */ c("circle", { cx: "18", cy: "5", r: "3" }),
41
- /* @__PURE__ */ c("circle", { cx: "6", cy: "12", r: "3" }),
42
- /* @__PURE__ */ c("circle", { cx: "18", cy: "19", r: "3" }),
43
- /* @__PURE__ */ c("line", { x1: "8.59", y1: "13.51", x2: "15.42", y2: "17.49" }),
44
- /* @__PURE__ */ c("line", { x1: "15.41", y1: "6.51", x2: "8.59", y2: "10.49" })
45
- ] }), A = (h) => /* @__PURE__ */ t(a, { ...h, children: [
46
- /* @__PURE__ */ c("polyline", { points: "7 11 12 6 17 11" }),
47
- /* @__PURE__ */ c("path", { d: "M12 6v12" }),
48
- /* @__PURE__ */ c("path", { d: "M5 18h14" })
49
- ] }), H = (h) => /* @__PURE__ */ c(a, { ...h, 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" }) }), V = (h) => /* @__PURE__ */ t(a, { ...h, children: [
50
- /* @__PURE__ */ c("path", { d: "M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3H14z" }),
51
- /* @__PURE__ */ c("path", { d: "M7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3" })
52
- ] }), m = (h) => /* @__PURE__ */ t(a, { ...h, children: [
53
- /* @__PURE__ */ c("path", { d: "M10 15V19a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3H10z" }),
54
- /* @__PURE__ */ c("path", { d: "M17 2h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17" })
55
- ] }), L = (h) => /* @__PURE__ */ t(a, { ...h, children: [
56
- /* @__PURE__ */ c("circle", { cx: "12", cy: "12", r: "4" }),
57
- /* @__PURE__ */ c("path", { d: "M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-3.92 7.94" })
58
- ] }), g = (h) => /* @__PURE__ */ t(a, { ...h, children: [
59
- /* @__PURE__ */ c("line", { x1: "4", y1: "9", x2: "20", y2: "9" }),
60
- /* @__PURE__ */ c("line", { x1: "4", y1: "15", x2: "20", y2: "15" }),
61
- /* @__PURE__ */ c("line", { x1: "10", y1: "3", x2: "8", y2: "21" }),
62
- /* @__PURE__ */ c("line", { x1: "16", y1: "3", x2: "14", y2: "21" })
63
- ] }), w = (h) => /* @__PURE__ */ t(a, { ...h, children: [
64
- /* @__PURE__ */ c("path", { d: "M4 11a9 9 0 0 1 9 9" }),
65
- /* @__PURE__ */ c("path", { d: "M4 4a16 16 0 0 1 16 16" }),
66
- /* @__PURE__ */ c("circle", { cx: "5", cy: "19", r: "1" })
67
- ] });
68
- export {
69
- L as AtSignIcon,
70
- M as DiscordIcon,
71
- e as FacebookIcon,
72
- l as GithubIcon,
73
- g as HashIcon,
74
- H as HeartIcon,
75
- p as InstagramIcon,
76
- r as LinkedInIcon,
77
- I as NpmIcon,
78
- v as RedditIcon,
79
- w as RssIcon,
80
- A as Share2Icon,
81
- z as ShareIcon,
82
- x as SlackIcon,
83
- m as ThumbsDownIcon,
84
- V as ThumbsUpIcon,
85
- y as TwitchIcon,
86
- o as TwitterIcon,
87
- i as XSocialIcon,
88
- s as YoutubeIcon
89
- };
@@ -1 +0,0 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const n=require("react/jsx-runtime"),s=require("../Icon.cjs"),x=c=>n.jsx(s.Icon,{...c,children:n.jsx("polyline",{points:"20 6 9 17 4 12"})}),o=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M22 11.08V12a10 10 0 1 1-5.93-9.14"}),n.jsx("polyline",{points:"22 4 12 14.01 9 11.01"})]}),e=c=>n.jsx(s.Icon,{...c,fill:"currentColor",stroke:"none",children:n.jsx("path",{d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"})}),l=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M12 2L3.5 6.5v5c0 4.7 3.6 9.1 8.5 10.5 4.9-1.4 8.5-5.8 8.5-10.5v-5L12 2z"}),n.jsx("polyline",{points:"9 12 11 14 15 10"})]}),i=c=>n.jsx(s.Icon,{...c,children:n.jsx("polyline",{points:"20 6 9 17 4 12"})}),t=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("polyline",{points:"18 7 11 14 6 9"}),n.jsx("polyline",{points:"22 7 15 14 13 12"})]}),j=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"10"}),n.jsx("path",{d:"m9 12 2 2 4-4"})]}),r=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("line",{x1:"18",y1:"6",x2:"6",y2:"18"}),n.jsx("line",{x1:"6",y1:"6",x2:"18",y2:"18"})]}),h=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"10"}),n.jsx("line",{x1:"15",y1:"9",x2:"9",y2:"15"}),n.jsx("line",{x1:"9",y1:"9",x2:"15",y2:"15"})]}),I=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"10"}),n.jsx("line",{x1:"15",y1:"9",x2:"9",y2:"15"}),n.jsx("line",{x1:"9",y1:"9",x2:"15",y2:"15"})]}),y=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"10"}),n.jsx("line",{x1:"12",y1:"8",x2:"12",y2:"12"}),n.jsx("line",{x1:"12",y1:"16",x2:"12.01",y2:"16"})]}),d=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"10"}),n.jsx("line",{x1:"15",y1:"9",x2:"9",y2:"15"}),n.jsx("line",{x1:"9",y1:"9",x2:"15",y2:"15"})]}),a=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"10"}),n.jsx("line",{x1:"4.93",y1:"4.93",x2:"19.07",y2:"19.07"})]}),p=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"10"}),n.jsx("line",{x1:"8",y1:"12",x2:"16",y2:"12"})]}),M=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"}),n.jsx("line",{x1:"12",y1:"9",x2:"12",y2:"13"}),n.jsx("line",{x1:"12",y1:"17",x2:"12.01",y2:"17"})]}),g=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"}),n.jsx("line",{x1:"12",y1:"9",x2:"12",y2:"13"}),n.jsx("line",{x1:"12",y1:"17",x2:"12.01",y2:"17"})]}),f=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M7.86 2h8.28L22 7.86v8.28L16.14 22H7.86L2 16.14V7.86L7.86 2z"}),n.jsx("line",{x1:"12",y1:"8",x2:"12",y2:"12"}),n.jsx("line",{x1:"12",y1:"16",x2:"12.01",y2:"16"})]}),u=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"}),n.jsx("line",{x1:"12",y1:"9",x2:"12",y2:"13"}),n.jsx("line",{x1:"12",y1:"17",x2:"12.01",y2:"17"})]}),v=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z"}),n.jsx("line",{x1:"12",y1:"9",x2:"12",y2:"13"}),n.jsx("line",{x1:"12",y1:"17",x2:"12.01",y2:"17"})]}),L=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"10"}),n.jsx("line",{x1:"12",y1:"8",x2:"12",y2:"12"}),n.jsx("line",{x1:"12",y1:"16",x2:"12.01",y2:"16"})]}),C=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("polygon",{points:"7.86 2 16.14 2 22 7.86 22 16.14 16.14 22 7.86 22 2 16.14 2 7.86 7.86 2"}),n.jsx("line",{x1:"12",y1:"8",x2:"12",y2:"12"}),n.jsx("line",{x1:"12",y1:"16",x2:"12.01",y2:"16"})]}),A=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"10"}),n.jsx("line",{x1:"12",y1:"16",x2:"12",y2:"12"}),n.jsx("line",{x1:"12",y1:"8",x2:"12.01",y2:"8"})]}),O=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"10"}),n.jsx("line",{x1:"12",y1:"16",x2:"12",y2:"12"}),n.jsx("line",{x1:"12",y1:"8",x2:"12.01",y2:"8"})]}),w=c=>n.jsxs(s.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"})]}),m=c=>n.jsxs(s.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"})]}),z=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"10"}),n.jsx("line",{x1:"8",y1:"12",x2:"8.01",y2:"12"}),n.jsx("line",{x1:"12",y1:"12",x2:"12.01",y2:"12"}),n.jsx("line",{x1:"16",y1:"12",x2:"16.01",y2:"12"})]}),V=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}),n.jsx("circle",{cx:"17",cy:"17",r:"4"}),n.jsx("line",{x1:"17",y1:"15",x2:"17",y2:"17"}),n.jsx("line",{x1:"17",y1:"17",x2:"19",y2:"17"}),n.jsx("line",{x1:"8",y1:"9",x2:"12",y2:"9"}),n.jsx("line",{x1:"8",y1:"13",x2:"10",y2:"13"})]}),H=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M5 22h14"}),n.jsx("path",{d:"M5 2h14"}),n.jsx("path",{d:"M17 22v-4.172a2 2 0 0 0-.586-1.414L12 12l-4.414 4.414A2 2 0 0 0 7 17.828V22"}),n.jsx("path",{d:"M7 2v4.172a2 2 0 0 0 .586 1.414L12 12l4.414-4.414A2 2 0 0 0 17 6.172V2"})]}),S=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M5 22h14"}),n.jsx("path",{d:"M5 2h14"}),n.jsx("path",{d:"M17 22v-4.172a2 2 0 0 0-.586-1.414L12 12l-4.414 4.414A2 2 0 0 0 7 17.828V22"}),n.jsx("path",{d:"M7 2v4.172a2 2 0 0 0 .586 1.414L12 12l4.414-4.414A2 2 0 0 0 17 6.172V2"})]}),b=c=>n.jsxs(s.Icon,{...c,spin:!0,children:[n.jsx("line",{x1:"12",y1:"2",x2:"12",y2:"6"}),n.jsx("line",{x1:"12",y1:"18",x2:"12",y2:"22"}),n.jsx("line",{x1:"4.93",y1:"4.93",x2:"7.76",y2:"7.76"}),n.jsx("line",{x1:"16.24",y1:"16.24",x2:"19.07",y2:"19.07"}),n.jsx("line",{x1:"2",y1:"12",x2:"6",y2:"12"}),n.jsx("line",{x1:"18",y1:"12",x2:"22",y2:"12"}),n.jsx("line",{x1:"4.93",y1:"19.07",x2:"7.76",y2:"16.24"}),n.jsx("line",{x1:"16.24",y1:"7.76",x2:"19.07",y2:"4.93"})]}),k=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M12 6V2l-4 4 4 4V6c3.31 0 6 2.69 6 6 0 .79-.15 1.55-.42 2.25l1.52 1.52C19.7 14.57 20 13.33 20 12c0-4.42-3.58-8-8-8z"}),n.jsx("path",{d:"M12 18c-3.31 0-6-2.69-6-6 0-.79.15-1.55.42-2.25L4.9 8.23C4.3 9.43 4 10.67 4 12c0 4.42 3.58 8 8 8v4l4-4-4-4v4z"})]}),T=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"19",r:"2"}),n.jsx("path",{d:"M12 3v10"})]}),D=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M14 5h8"}),n.jsx("path",{d:"M14 10h8"}),n.jsx("path",{d:"M14 15h8"}),n.jsx("path",{d:"M2 5h8"}),n.jsx("path",{d:"M6 5v10l-4 4 4-4"})]}),F=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z"}),n.jsx("line",{x1:"12",y1:"9",x2:"12",y2:"13"}),n.jsx("line",{x1:"12",y1:"15",x2:"12.01",y2:"15"})]}),P=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("rect",{x:"2",y:"5",width:"20",height:"14",rx:"2"}),n.jsx("path",{d:"M7 9v6"}),n.jsx("path",{d:"M7 9h3v3H7"}),n.jsx("path",{d:"M13 15v-6h3l-3 3 3 3"}),n.jsx("path",{d:"M17 9h1v3.5M18 15h-1v-2.5"})]}),B=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"10",fill:"currentColor"}),n.jsx("circle",{cx:"12",cy:"12",r:"3",fill:"white"})]}),W=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"12",r:"10"}),n.jsx("line",{x1:"4.93",y1:"4.93",x2:"19.07",y2:"19.07"})]}),R=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M22.61 16.95A5 5 0 0 0 18 10h-1.26a8 8 0 0 0-7.05-6M5 5a8 8 0 0 0 4 15h9a5 5 0 0 0 1.7-.3"}),n.jsx("line",{x1:"1",y1:"1",x2:"23",y2:"23"})]}),E=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M18 10h-1.26A8 8 0 1 0 9 20h9a5 5 0 0 0 0-10z"}),n.jsx("polyline",{points:"10 14 12 16 16 12"})]}),N=c=>n.jsx(s.Icon,{...c,children:n.jsx("path",{d:"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"})}),q=c=>n.jsx(s.Icon,{...c,children:n.jsx("path",{d:"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"})}),U=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"}),n.jsx("polyline",{points:"9 12 11 14 15 10"})]}),G=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"}),n.jsx("line",{x1:"12",y1:"8",x2:"12",y2:"12"}),n.jsx("line",{x1:"12",y1:"16",x2:"12.01",y2:"16"})]}),J=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M19.7 14a6.9 6.9 0 0 0 .3-2V5l-8-3-3.2 1.2"}),n.jsx("path",{d:"m2 2 20 20"}),n.jsx("path",{d:"M4.7 4.7 4 5v7c0 6 8 10 8 10a20.3 20.3 0 0 0 5.62-4.38"})]}),K=c=>n.jsx(s.Icon,{...c,children:n.jsx("path",{d:"M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3"})}),Q=c=>n.jsx(s.Icon,{...c,children:n.jsx("path",{d:"M10 15v4a3 3 0 0 0 3 3l4-9V2H5.72a2 2 0 0 0-2 1.7l-1.38 9a2 2 0 0 0 2 2.3zm7-13h2.67A2.31 2.31 0 0 1 22 4v7a2.31 2.31 0 0 1-2.33 2H17"})}),X=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z"}),n.jsx("line",{x1:"4",y1:"22",x2:"4",y2:"15"})]}),Y=c=>n.jsxs(s.Icon,{...c,fill:"currentColor",children:[n.jsx("path",{d:"M4 15s1-1 4-1 5 2 8 2 4-1 4-1V3s-1 1-4 1-5-2-8-2-4 1-4 1z"}),n.jsx("line",{x1:"4",y1:"22",x2:"4",y2:"15",stroke:"currentColor"})]}),Z=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("circle",{cx:"12",cy:"13",r:"8"}),n.jsx("path",{d:"M12 9v4l2 2"}),n.jsx("path",{d:"M5 3L2 6"}),n.jsx("path",{d:"M22 6l-3-3"}),n.jsx("path",{d:"M12 2v2"})]}),_=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M10 2h4"}),n.jsx("path",{d:"M4.6 11a8 8 0 0 0 1.7 8.7 8 8 0 0 0 8.7 1.7"}),n.jsx("path",{d:"M7.4 7.4a8 8 0 0 1 10.3 1 8 8 0 0 1 .9 10.2"}),n.jsx("path",{d:"m2 2 20 20"}),n.jsx("path",{d:"M12 12v-2"})]}),$=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M5 12.55a11 11 0 0 1 14.08 0"}),n.jsx("path",{d:"M1.42 9a16 16 0 0 1 21.16 0"}),n.jsx("path",{d:"M8.53 16.11a6 6 0 0 1 6.95 0"}),n.jsx("line",{x1:"12",y1:"20",x2:"12.01",y2:"20"})]}),n1=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("line",{x1:"1",y1:"1",x2:"23",y2:"23"}),n.jsx("path",{d:"M16.72 11.06A10.94 10.94 0 0 1 19 12.55"}),n.jsx("path",{d:"M5 12.55a10.94 10.94 0 0 1 5.17-2.39"}),n.jsx("path",{d:"M10.71 5.05A16 16 0 0 1 22.58 9"}),n.jsx("path",{d:"M1.42 9a15.91 15.91 0 0 1 4.7-2.88"}),n.jsx("path",{d:"M8.53 16.11a6 6 0 0 1 6.95 0"}),n.jsx("line",{x1:"12",y1:"20",x2:"12.01",y2:"20"})]}),c1=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M2 20h.01"}),n.jsx("path",{d:"M7 20v-4"}),n.jsx("path",{d:"M12 20v-8"}),n.jsx("path",{d:"M17 20V8"}),n.jsx("path",{d:"M22 4v16"})]}),s1=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("path",{d:"M2 20h.01"}),n.jsx("path",{d:"M7 20v-4"})]}),x1=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("rect",{x:"2",y:"7",width:"16",height:"10",rx:"2"}),n.jsx("path",{d:"M22 11v2"}),n.jsx("rect",{x:"4",y:"9",width:"12",height:"6",fill:"currentColor"})]}),o1=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("rect",{x:"2",y:"7",width:"16",height:"10",rx:"2"}),n.jsx("path",{d:"M22 11v2"}),n.jsx("rect",{x:"4",y:"9",width:"3",height:"6",fill:"currentColor"})]}),e1=c=>n.jsxs(s.Icon,{...c,children:[n.jsx("rect",{x:"2",y:"7",width:"16",height:"10",rx:"2"}),n.jsx("path",{d:"M22 11v2"}),n.jsx("path",{d:"M10 7l-3 5h4l-3 5"})]});exports.AlertCircleIcon=L;exports.AlertOctagonIcon=C;exports.AlertTriangleIcon=v;exports.AutorenewIcon=k;exports.BatteryChargingIcon=e1;exports.BatteryFullIcon=x1;exports.BatteryLowIcon=o1;exports.BlockIcon=a;exports.CancelIcon=h;exports.CheckCircleFilledIcon=e;exports.CheckCircleIcon=o;exports.CheckIcon=x;exports.CloseIcon=r;exports.CloudDoneIcon=E;exports.CloudOffIcon=R;exports.DoNotDisturbIcon=p;exports.DoneAllIcon=t;exports.DoneIcon=i;exports.ErrorIcon=I;exports.ErrorOutlineIcon=y;exports.FiberNewIcon=P;exports.FlagFilledIcon=Y;exports.FlagIcon=X;exports.HelpIcon=w;exports.HelpOutlineIcon=m;exports.HighlightOffIcon=d;exports.HourglassEmptyIcon=S;exports.HourglassIcon=H;exports.InfoIcon=A;exports.InfoOutlinedIcon=O;exports.LoaderIcon=b;exports.LowPriorityIcon=D;exports.NewReleasesIcon=F;exports.OfflineIcon=W;exports.OnlineIcon=B;exports.PendingActionsIcon=V;exports.PendingIcon=z;exports.PriorityHighIcon=T;exports.ReportIcon=f;exports.ReportProblemIcon=u;exports.SecurityIcon=N;exports.ShieldAlertIcon=G;exports.ShieldCheckIcon=U;exports.ShieldIcon=q;exports.ShieldOffIcon=J;exports.SignalIcon=c1;exports.SignalLowIcon=s1;exports.TaskAltIcon=j;exports.ThumbDownIcon=Q;exports.ThumbUpIcon=K;exports.TimerIcon=Z;exports.TimerOffIcon=_;exports.VerifiedIcon=l;exports.WarningAmberIcon=g;exports.WarningIcon=M;exports.WifiIcon=$;exports.WifiOffIcon=n1;