@ssa-ui-kit/widgets 0.0.9-alpha → 0.0.11-alpha

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 (541) hide show
  1. package/.babelrc.js +4 -4
  2. package/.env +7 -7
  3. package/.storybook/main.ts +42 -42
  4. package/.storybook/preview.tsx +21 -21
  5. package/.storybook/style.css +31 -31
  6. package/LICENSE +21 -0
  7. package/customTest.tsx +35 -35
  8. package/dist/components/CollapsibleNavBar/CollapsibleNavBar.d.ts +0 -1
  9. package/dist/components/CollapsibleNavBar/CollapsibleNavBarLink.d.ts +1 -5
  10. package/dist/components/CollapsibleNavBar/CollapsibleNavContentToggle.d.ts +2 -1
  11. package/dist/components/CollapsibleNavBar/CollapsibleNavToggle.d.ts +3 -1
  12. package/dist/components/CollapsibleNavBar/NavBarAccordionContent.d.ts +1 -2
  13. package/dist/components/CollapsibleNavBar/NavBarItemWithSubMenu.d.ts +1 -2
  14. package/dist/components/CollapsibleNavBar/NavBarItemWithoutSubMenu.d.ts +1 -2
  15. package/dist/components/CollapsibleNavBar/styles.d.ts +0 -1
  16. package/dist/components/CollapsibleNavBar/types.d.ts +1 -1
  17. package/dist/components/ExchangeAccountKeys/styles.d.ts +1 -1
  18. package/dist/components/NavBar/NavBar.d.ts +0 -1
  19. package/dist/components/NavBar/NavBarLink.d.ts +1 -3
  20. package/dist/index.js +1 -1
  21. package/dist/index.js.map +1 -1
  22. package/jest-setup.ts +17 -17
  23. package/lostpixel.config.ts +29 -29
  24. package/package.json +3 -3
  25. package/playwright.config.ts +7 -7
  26. package/src/components/AccountBalance/AccountBalance.spec.tsx +82 -82
  27. package/src/components/AccountBalance/AccountBalance.stories.tsx +35 -35
  28. package/src/components/AccountBalance/AccountBalance.tsx +63 -63
  29. package/src/components/AccountBalance/BalancePieChart.tsx +77 -77
  30. package/src/components/AccountBalance/BalancePieChartTitle.tsx +42 -42
  31. package/src/components/AccountBalance/WithLink.tsx +26 -26
  32. package/src/components/AccountBalance/index.ts +5 -5
  33. package/src/components/AccountBalance/stories/fixtures.ts +26 -26
  34. package/src/components/AccountBalance/types.ts +31 -31
  35. package/src/components/Activity/Activity.spec.tsx +79 -79
  36. package/src/components/Activity/Activity.stories.tsx +15 -15
  37. package/src/components/Activity/Activity.tsx +83 -83
  38. package/src/components/Activity/ActivityItem.tsx +38 -38
  39. package/src/components/Activity/index.tsx +2 -2
  40. package/src/components/Activity/mockActivityRequest.ts +106 -106
  41. package/src/components/Activity/styles.ts +12 -12
  42. package/src/components/Activity/types.ts +10 -10
  43. package/src/components/AddNewAccountCard/AddNewAccountCard.spec.tsx +39 -39
  44. package/src/components/AddNewAccountCard/AddNewAccountCard.stories.tsx +48 -48
  45. package/src/components/AddNewAccountCard/AddNewAccountCard.tsx +22 -22
  46. package/src/components/AddNewAccountCard/index.ts +2 -2
  47. package/src/components/AddNewAccountCard/styles.ts +29 -29
  48. package/src/components/AddNewAccountCard/types.ts +7 -7
  49. package/src/components/Bmi/Bmi.spec.tsx +68 -68
  50. package/src/components/Bmi/Bmi.stories.tsx +10 -10
  51. package/src/components/Bmi/Bmi.tsx +96 -96
  52. package/src/components/Bmi/BmiHeatbar.tsx +18 -18
  53. package/src/components/Bmi/BmiInfo.tsx +11 -11
  54. package/src/components/Bmi/BmiLabel.tsx +9 -9
  55. package/src/components/Bmi/BmiLabels.tsx +33 -33
  56. package/src/components/Bmi/BmiPointer.tsx +15 -15
  57. package/src/components/Bmi/index.tsx +2 -2
  58. package/src/components/Bmi/styles.ts +18 -18
  59. package/src/components/Bmi/types.ts +4 -4
  60. package/src/components/BotsTable/BotsTable.e2e.ts +77 -77
  61. package/src/components/BotsTable/BotsTable.spec.tsx +125 -125
  62. package/src/components/BotsTable/BotsTable.tsx +32 -32
  63. package/src/components/BotsTable/BotsTableCell.tsx +13 -10
  64. package/src/components/BotsTable/BotsTableHead.tsx +13 -9
  65. package/src/components/BotsTable/BotsTableRow.tsx +17 -17
  66. package/src/components/BotsTable/BotsTableWrapper.tsx +23 -23
  67. package/src/components/BotsTable/index.ts +5 -5
  68. package/src/components/BotsTable/stories/BotsTable/StoryComponent.tsx +59 -59
  69. package/src/components/BotsTable/stories/BotsTable/components/Actions/ActionIcon.tsx +11 -11
  70. package/src/components/BotsTable/stories/BotsTable/components/Actions/ActionItem.tsx +40 -40
  71. package/src/components/BotsTable/stories/BotsTable/components/Actions/ActionMore.tsx +89 -89
  72. package/src/components/BotsTable/stories/BotsTable/components/Actions/ActionRun.tsx +133 -133
  73. package/src/components/BotsTable/stories/BotsTable/components/Actions/Actions.tsx +13 -13
  74. package/src/components/BotsTable/stories/BotsTable/components/Actions/ActionsWrapper.tsx +21 -21
  75. package/src/components/BotsTable/stories/BotsTable/components/Actions/consts.tsx +118 -118
  76. package/src/components/BotsTable/stories/BotsTable/components/Actions/index.ts +6 -6
  77. package/src/components/BotsTable/stories/BotsTable/components/Exchange/Exchange.tsx +26 -26
  78. package/src/components/BotsTable/stories/BotsTable/components/Exchange/consts.tsx +157 -157
  79. package/src/components/BotsTable/stories/BotsTable/components/Exchange/index.ts +1 -1
  80. package/src/components/BotsTable/stories/BotsTable/components/Exchange/types.ts +6 -6
  81. package/src/components/BotsTable/stories/BotsTable/components/PNL.tsx +27 -27
  82. package/src/components/BotsTable/stories/BotsTable/components/ROI.tsx +25 -25
  83. package/src/components/BotsTable/stories/BotsTable/components/TableTag.tsx +22 -22
  84. package/src/components/BotsTable/stories/BotsTable/components/Trade/Trade.tsx +8 -8
  85. package/src/components/BotsTable/stories/BotsTable/components/Trade/consts.ts +14 -14
  86. package/src/components/BotsTable/stories/BotsTable/components/Trade/index.ts +1 -1
  87. package/src/components/BotsTable/stories/BotsTable/components/Trade/types.ts +5 -5
  88. package/src/components/BotsTable/stories/BotsTable/components/index.ts +6 -6
  89. package/src/components/BotsTable/stories/BotsTable/index.ts +1 -1
  90. package/src/components/BotsTable/stories/BotsTable/mockData.ts +84 -84
  91. package/src/components/BotsTable/stories/BotsTable.stories.tsx +39 -39
  92. package/src/components/BotsTable/stories/NoControlOrders/StoryComponent.tsx +35 -35
  93. package/src/components/BotsTable/stories/NoControlOrders/components/ActionMore.tsx +95 -95
  94. package/src/components/BotsTable/stories/NoControlOrders/components/Reason.tsx +11 -11
  95. package/src/components/BotsTable/stories/NoControlOrders/components/TableList.tsx +45 -45
  96. package/src/components/BotsTable/stories/NoControlOrders/components/TableRow.tsx +31 -31
  97. package/src/components/BotsTable/stories/NoControlOrders/components/index.ts +4 -4
  98. package/src/components/BotsTable/stories/NoControlOrders/mockData.ts +23 -23
  99. package/src/components/BotsTable/stories/NoControlOrders/types.ts +16 -16
  100. package/src/components/BotsTable/types.ts +31 -31
  101. package/src/components/Calories/Calories.spec.tsx +11 -11
  102. package/src/components/Calories/Calories.stories.tsx +26 -26
  103. package/src/components/Calories/Calories.tsx +54 -54
  104. package/src/components/Calories/index.tsx +2 -2
  105. package/src/components/Calories/innerContent.tsx +30 -30
  106. package/src/components/Calories/types.ts +4 -4
  107. package/src/components/CardList/CardList.spec.tsx +32 -32
  108. package/src/components/CardList/CardList.stories.tsx +37 -37
  109. package/src/components/CardList/CardList.tsx +37 -37
  110. package/src/components/CardList/index.ts +2 -2
  111. package/src/components/CardList/types.ts +10 -10
  112. package/src/components/CollapsibleNavBar/CollapsibleNavBar.e2e.ts +115 -115
  113. package/src/components/CollapsibleNavBar/CollapsibleNavBar.spec.tsx +49 -54
  114. package/src/components/CollapsibleNavBar/CollapsibleNavBar.tsx +67 -55
  115. package/src/components/CollapsibleNavBar/CollapsibleNavBarBase.ts +128 -126
  116. package/src/components/CollapsibleNavBar/CollapsibleNavBarItem.ts +28 -28
  117. package/src/components/CollapsibleNavBar/CollapsibleNavBarLink.ts +36 -34
  118. package/src/components/CollapsibleNavBar/CollapsibleNavBarList.ts +18 -18
  119. package/src/components/CollapsibleNavBar/CollapsibleNavBarWrapper.ts +24 -24
  120. package/src/components/CollapsibleNavBar/CollapsibleNavContentToggle.tsx +27 -24
  121. package/src/components/CollapsibleNavBar/CollapsibleNavToggle.tsx +49 -52
  122. package/src/components/CollapsibleNavBar/CollapsibleNavToggleWrapper.ts +16 -16
  123. package/src/components/CollapsibleNavBar/NavBarAccordionContent.tsx +42 -33
  124. package/src/components/CollapsibleNavBar/NavBarItemWithSubMenu.tsx +108 -84
  125. package/src/components/CollapsibleNavBar/NavBarItemWithoutSubMenu.tsx +35 -39
  126. package/src/components/CollapsibleNavBar/NavBarPopover.tsx +124 -124
  127. package/src/components/CollapsibleNavBar/TriggerIcon.tsx +35 -35
  128. package/src/components/CollapsibleNavBar/index.ts +2 -2
  129. package/src/components/CollapsibleNavBar/stories/CollapsibleNavBar.stories.tsx +53 -53
  130. package/src/components/CollapsibleNavBar/stories/Layout.tsx +53 -53
  131. package/src/components/CollapsibleNavBar/stories/Logo.tsx +12 -12
  132. package/src/components/CollapsibleNavBar/stories/StoryComponent.tsx +20 -20
  133. package/src/components/CollapsibleNavBar/stories/consts.ts +22 -22
  134. package/src/components/CollapsibleNavBar/stories/styles.ts +21 -21
  135. package/src/components/CollapsibleNavBar/styles.ts +111 -119
  136. package/src/components/CollapsibleNavBar/types.ts +14 -14
  137. package/src/components/ExchangeAccount/ExchangeAccount.spec.tsx +110 -110
  138. package/src/components/ExchangeAccount/ExchangeAccount.stories.tsx +90 -90
  139. package/src/components/ExchangeAccount/ExchangeAccount.tsx +73 -73
  140. package/src/components/ExchangeAccount/helpers.tsx +153 -153
  141. package/src/components/ExchangeAccount/index.ts +2 -2
  142. package/src/components/ExchangeAccount/styles.ts +133 -133
  143. package/src/components/ExchangeAccount/types.ts +12 -12
  144. package/src/components/ExchangeAccountKeys/ExchangeAccountKeys.spec.tsx +43 -43
  145. package/src/components/ExchangeAccountKeys/ExchangeAccountKeys.stories.tsx +14 -14
  146. package/src/components/ExchangeAccountKeys/ExchangeAccountKeys.tsx +73 -71
  147. package/src/components/ExchangeAccountKeys/helpers.ts +7 -7
  148. package/src/components/ExchangeAccountKeys/index.ts +2 -2
  149. package/src/components/ExchangeAccountKeys/stories/StoryComponent.tsx +33 -33
  150. package/src/components/ExchangeAccountKeys/styles.ts +87 -97
  151. package/src/components/ExchangeAccountKeys/types.ts +8 -8
  152. package/src/components/Filters/FilterBlockWrapper.tsx +11 -11
  153. package/src/components/Filters/Filters.e2e.ts +115 -115
  154. package/src/components/Filters/Filters.spec.tsx +47 -47
  155. package/src/components/Filters/Filters.tsx +87 -87
  156. package/src/components/Filters/FiltersBlock.tsx +76 -69
  157. package/src/components/Filters/FiltersContext.tsx +44 -44
  158. package/src/components/Filters/FiltersWrapper.tsx +34 -34
  159. package/src/components/Filters/hooks/useVisibility.ts +101 -101
  160. package/src/components/Filters/index.ts +1 -1
  161. package/src/components/Filters/stories/Filters.stories.tsx +24 -24
  162. package/src/components/Filters/stories/StoryComponent.tsx +19 -19
  163. package/src/components/Filters/stories/mockData.ts +421 -421
  164. package/src/components/Filters/types.ts +4 -4
  165. package/src/components/HeartRate/BPM.tsx +43 -43
  166. package/src/components/HeartRate/HeartRate.e2e.ts +78 -78
  167. package/src/components/HeartRate/HeartRate.spec.tsx +91 -91
  168. package/src/components/HeartRate/HeartRate.stories.tsx +36 -36
  169. package/src/components/HeartRate/HeartRate.tsx +105 -105
  170. package/src/components/HeartRate/HeartRateLineChart.tsx +53 -53
  171. package/src/components/HeartRate/index.ts +2 -2
  172. package/src/components/HeartRate/mockHeartRateRequest.ts +15 -15
  173. package/src/components/HeartRate/types.ts +15 -15
  174. package/src/components/HeartRate/utils.tsx +8 -8
  175. package/src/components/LinksTabBar/LinksTabBar.e2e.ts +23 -23
  176. package/src/components/LinksTabBar/LinksTabBar.spec.tsx +48 -48
  177. package/src/components/LinksTabBar/LinksTabBar.stories.tsx +45 -45
  178. package/src/components/LinksTabBar/LinksTabBar.tsx +14 -14
  179. package/src/components/LinksTabBar/LinksTabBarBase.tsx +36 -36
  180. package/src/components/LinksTabBar/index.ts +2 -2
  181. package/src/components/LinksTabBar/stories/decorators.tsx +34 -34
  182. package/src/components/LinksTabBar/stories/mockData.ts +27 -27
  183. package/src/components/LinksTabBar/types.ts +12 -12
  184. package/src/components/ListGoals/ListGoals.spec.tsx +82 -82
  185. package/src/components/ListGoals/ListGoals.stories.tsx +58 -58
  186. package/src/components/ListGoals/ListGoals.tsx +29 -29
  187. package/src/components/ListGoals/ListGoalsCard.tsx +61 -61
  188. package/src/components/ListGoals/index.ts +2 -2
  189. package/src/components/ListGoals/styles.tsx +11 -11
  190. package/src/components/ListGoals/types.ts +25 -25
  191. package/src/components/MealNutrients/MealNutrients.e2e.ts +68 -68
  192. package/src/components/MealNutrients/MealNutrients.spec.tsx +134 -134
  193. package/src/components/MealNutrients/MealNutrients.stories.tsx +37 -37
  194. package/src/components/MealNutrients/MealNutrients.tsx +84 -84
  195. package/src/components/MealNutrients/MealNutrientsLineChart.tsx +87 -87
  196. package/src/components/MealNutrients/MealNutrientsTooltip.tsx +30 -30
  197. package/src/components/MealNutrients/chartDefaultConfig.tsx +87 -87
  198. package/src/components/MealNutrients/index.tsx +2 -2
  199. package/src/components/MealNutrients/mockMealNutrientsRequest.ts +1246 -1246
  200. package/src/components/MealNutrients/types.ts +37 -37
  201. package/src/components/MealNutrients/useChartConfig.ts +69 -69
  202. package/src/components/MealPlanner/MealPlanner.spec.tsx +77 -77
  203. package/src/components/MealPlanner/MealPlanner.stories.tsx +15 -15
  204. package/src/components/MealPlanner/MealPlanner.tsx +100 -100
  205. package/src/components/MealPlanner/MealPlannerBadge.tsx +15 -15
  206. package/src/components/MealPlanner/MealPlannerBars.tsx +19 -19
  207. package/src/components/MealPlanner/MealPlannerCard.tsx +73 -73
  208. package/src/components/MealPlanner/MealPlannerLegends.tsx +22 -22
  209. package/src/components/MealPlanner/index.ts +2 -2
  210. package/src/components/MealPlanner/mockMealPlannerRequest.ts +70 -70
  211. package/src/components/MealPlanner/types.ts +21 -21
  212. package/src/components/NavBar/NavBar.e2e.ts +64 -64
  213. package/src/components/NavBar/NavBar.stories.tsx +86 -86
  214. package/src/components/NavBar/NavBar.tsx +41 -46
  215. package/src/components/NavBar/NavBarBase.ts +45 -45
  216. package/src/components/NavBar/NavBarItem.ts +13 -13
  217. package/src/components/NavBar/NavBarLink.ts +27 -27
  218. package/src/components/NavBar/NavBarList.ts +16 -16
  219. package/src/components/NavBar/NavBarWrapper.ts +40 -40
  220. package/src/components/NavBar/NavToggle.tsx +36 -36
  221. package/src/components/NavBar/NavToggleWrapper.ts +21 -21
  222. package/src/components/NavBar/index.ts +2 -2
  223. package/src/components/NavBar/types.ts +22 -22
  224. package/src/components/NotificationCard/NotificationCard.spec.tsx +113 -113
  225. package/src/components/NotificationCard/NotificationCard.stories.tsx +112 -112
  226. package/src/components/NotificationCard/NotificationCard.tsx +95 -95
  227. package/src/components/NotificationCard/index.ts +2 -2
  228. package/src/components/NotificationCard/styles.tsx +134 -134
  229. package/src/components/NotificationCard/types.ts +12 -12
  230. package/src/components/NotificationMenu/NotificationMenu.e2e.ts +27 -27
  231. package/src/components/NotificationMenu/NotificationMenu.spec.tsx +64 -64
  232. package/src/components/NotificationMenu/NotificationMenu.tsx +77 -77
  233. package/src/components/NotificationMenu/helpers.ts +91 -91
  234. package/src/components/NotificationMenu/index.ts +2 -2
  235. package/src/components/NotificationMenu/stories/NotificationMenu.stories.tsx +14 -14
  236. package/src/components/NotificationMenu/stories/StoryComponent.tsx +84 -84
  237. package/src/components/NotificationMenu/stories/StoryContent.tsx +52 -52
  238. package/src/components/NotificationMenu/styles.ts +125 -125
  239. package/src/components/NotificationMenu/types.ts +11 -11
  240. package/src/components/Pagination/ArrowButton.tsx +32 -32
  241. package/src/components/Pagination/Pagination.e2e.ts +51 -51
  242. package/src/components/Pagination/Pagination.spec.tsx +228 -228
  243. package/src/components/Pagination/Pagination.stories.tsx +60 -60
  244. package/src/components/Pagination/Pagination.tsx +66 -66
  245. package/src/components/Pagination/PaginationButtons.tsx +63 -63
  246. package/src/components/Pagination/PaginationContext.tsx +20 -20
  247. package/src/components/Pagination/index.ts +3 -3
  248. package/src/components/Pagination/styles.tsx +98 -98
  249. package/src/components/Pagination/types.ts +38 -38
  250. package/src/components/PieChart/PieChart.spec.tsx +97 -97
  251. package/src/components/PieChart/PieChart.stories.tsx +129 -129
  252. package/src/components/PieChart/PieChart.tsx +40 -40
  253. package/src/components/PieChart/PieChartBases.tsx +26 -26
  254. package/src/components/PieChart/PieChartLegend.tsx +51 -51
  255. package/src/components/PieChart/PieChartLegendList.tsx +19 -19
  256. package/src/components/PieChart/PieChartLegendMarker.tsx +12 -12
  257. package/src/components/PieChart/colorPalettes.ts +28 -28
  258. package/src/components/PieChart/index.ts +4 -4
  259. package/src/components/PieChart/stories/fixtures.ts +39 -39
  260. package/src/components/PieChart/types.ts +28 -28
  261. package/src/components/ProgressInfo/ProgressInfo.e2e.ts +31 -31
  262. package/src/components/ProgressInfo/ProgressInfo.spec.tsx +91 -91
  263. package/src/components/ProgressInfo/ProgressInfo.stories.tsx +32 -32
  264. package/src/components/ProgressInfo/ProgressInfo.tsx +117 -117
  265. package/src/components/ProgressInfo/ProgressInfoTotals.tsx +60 -60
  266. package/src/components/ProgressInfo/index.ts +3 -3
  267. package/src/components/ProgressInfo/mockProgressInfoRequest.ts +166 -166
  268. package/src/components/ProgressInfo/styles.ts +20 -20
  269. package/src/components/ProgressInfo/types.ts +29 -29
  270. package/src/components/SearchBox/SearchBox.e2e.ts +37 -37
  271. package/src/components/SearchBox/SearchBox.spec.tsx +77 -77
  272. package/src/components/SearchBox/SearchBox.tsx +70 -70
  273. package/src/components/SearchBox/SearchBoxCrossIcon.tsx +26 -26
  274. package/src/components/SearchBox/SearchBoxInput.tsx +42 -42
  275. package/src/components/SearchBox/SearchBoxWrapper.tsx +9 -9
  276. package/src/components/SearchBox/index.ts +4 -4
  277. package/src/components/SearchBox/stories/SearchBox.stories.tsx +16 -16
  278. package/src/components/SearchBox/stories/StoryComponent.tsx +25 -25
  279. package/src/components/SearchBox/types.ts +9 -9
  280. package/src/components/StepsCounter/StepsCounter.spec.tsx +14 -14
  281. package/src/components/StepsCounter/StepsCounter.stories.tsx +16 -16
  282. package/src/components/StepsCounter/StepsCounter.tsx +74 -74
  283. package/src/components/StepsCounter/index.ts +2 -2
  284. package/src/components/StepsCounter/types.ts +4 -4
  285. package/src/components/TableFilters/TableFilterCancelButton.tsx +39 -39
  286. package/src/components/TableFilters/TableFilterCheckbox.tsx +24 -24
  287. package/src/components/TableFilters/TableFilterClearButton.tsx +47 -47
  288. package/src/components/TableFilters/TableFilterTrigger.tsx +66 -66
  289. package/src/components/TableFilters/TableFilterTriggerWithNotification.tsx +44 -44
  290. package/src/components/TableFilters/TableFilters.e2e.ts +32 -32
  291. package/src/components/TableFilters/TableFilters.spec.tsx +171 -171
  292. package/src/components/TableFilters/TableFilters.tsx +187 -187
  293. package/src/components/TableFilters/TableFiltersAccordion.tsx +14 -14
  294. package/src/components/TableFilters/TableFiltersAccordionContent.tsx +18 -18
  295. package/src/components/TableFilters/TableFiltersButtons.tsx +32 -32
  296. package/src/components/TableFilters/hooks/useTableData.ts +137 -137
  297. package/src/components/TableFilters/index.ts +9 -9
  298. package/src/components/TableFilters/stories/StoryComponent.tsx +35 -35
  299. package/src/components/TableFilters/stories/TableFilters.stories.tsx +17 -17
  300. package/src/components/TableFilters/stories/TableFiltersWrapper.tsx +7 -7
  301. package/src/components/TableFilters/stories/mockData.tsx +114 -114
  302. package/src/components/TableFilters/styles.ts +26 -26
  303. package/src/components/TableFilters/types.ts +34 -34
  304. package/src/components/TableFilters/utils/handlers.ts +73 -73
  305. package/src/components/TradingInfoCard/TradingInfoCard.e2e.ts +16 -16
  306. package/src/components/TradingInfoCard/TradingInfoCard.spec.tsx +116 -116
  307. package/src/components/TradingInfoCard/TradingInfoCard.stories.tsx +118 -118
  308. package/src/components/TradingInfoCard/TradingInfoCard.tsx +43 -43
  309. package/src/components/TradingInfoCard/TradingInfoCardContent.tsx +32 -32
  310. package/src/components/TradingInfoCard/TradingInfoCardTooltip.tsx +47 -47
  311. package/src/components/TradingInfoCard/TradingInfoCardWrapper.tsx +72 -72
  312. package/src/components/TradingInfoCard/index.ts +3 -3
  313. package/src/components/TradingInfoCard/types.ts +27 -27
  314. package/src/components/TradingScoreboard/TradingScoreboard.spec.tsx +119 -119
  315. package/src/components/TradingScoreboard/TradingScoreboard.stories.tsx +119 -119
  316. package/src/components/TradingScoreboard/TradingScoreboard.tsx +41 -41
  317. package/src/components/TradingScoreboard/TradingScoreboardBase.tsx +17 -17
  318. package/src/components/TradingScoreboard/helpers.tsx +134 -134
  319. package/src/components/TradingScoreboard/index.ts +2 -2
  320. package/src/components/TradingScoreboard/types.ts +18 -18
  321. package/src/components/UpcomingWorkouts/UpcomingWorkoutCard.tsx +64 -64
  322. package/src/components/UpcomingWorkouts/UpcomingWorkouts.spec.tsx +56 -56
  323. package/src/components/UpcomingWorkouts/UpcomingWorkouts.stories.tsx +32 -32
  324. package/src/components/UpcomingWorkouts/UpcomingWorkouts.tsx +27 -27
  325. package/src/components/UpcomingWorkouts/index.ts +2 -2
  326. package/src/components/UpcomingWorkouts/style.ts +12 -12
  327. package/src/components/UpcomingWorkouts/types.ts +23 -23
  328. package/src/components/UserCard/UserCard.tsx +46 -46
  329. package/src/components/UserCard/UserCardBMI.tsx +37 -37
  330. package/src/components/UserCard/UserCardCredentials.tsx +56 -56
  331. package/src/components/UserCard/UserCardItem.tsx +42 -42
  332. package/src/components/UserCard/index.tsx +2 -2
  333. package/src/components/UserCard/types.ts +8 -8
  334. package/src/components/UserProfile/UserProfile.e2e.ts +21 -21
  335. package/src/components/UserProfile/UserProfile.spec.tsx +107 -107
  336. package/src/components/UserProfile/UserProfile.stories.tsx +21 -21
  337. package/src/components/UserProfile/UserProfile.tsx +53 -53
  338. package/src/components/UserProfile/index.ts +2 -2
  339. package/src/components/UserProfile/styles.ts +47 -47
  340. package/src/components/UserProfile/types.ts +8 -8
  341. package/src/components/WaterConsume/WaterConsume.spec.tsx +62 -62
  342. package/src/components/WaterConsume/WaterConsume.stories.tsx +36 -36
  343. package/src/components/WaterConsume/WaterConsume.tsx +188 -188
  344. package/src/components/WaterConsume/index.ts +2 -2
  345. package/src/components/WaterConsume/types.ts +11 -11
  346. package/src/consts.ts +18 -18
  347. package/src/index.ts +53 -53
  348. package/src/injectGlobal.ts +41 -41
  349. package/tsbuildcache +1 -1
  350. package/tsconfig.build.json +44 -44
  351. package/tsconfig.json +17 -17
  352. package/webpack.config.js +28 -28
  353. package/custom-shots/widgets-bots-table--no-control-orders--menu-opened_[w1920px].png +0 -0
  354. package/custom-shots/widgets-bots-table--no-control-orders--run-reason-modal_[w1920px].png +0 -0
  355. package/custom-shots/widgets-collapsiblenavbar-opened__[w1439px].png +0 -0
  356. package/custom-shots/widgets-collapsiblenavbar-opened__[w1439px]_statistics_submenu_popover.png +0 -0
  357. package/custom-shots/widgets-collapsiblenavbar-opened__[w1920px].png +0 -0
  358. package/custom-shots/widgets-collapsiblenavbar-opened__[w1920px]_side_menu_expanded.png +0 -0
  359. package/custom-shots/widgets-collapsiblenavbar-opened__[w1920px]_statistics_submenu_expanded.png +0 -0
  360. package/custom-shots/widgets-collapsiblenavbar-opened__[w1920px]_statistics_submenu_popover.png +0 -0
  361. package/custom-shots/widgets-collapsiblenavbar-opened__[w899px]_default.png +0 -0
  362. package/custom-shots/widgets-collapsiblenavbar-opened__[w899px]_menu_opened.png +0 -0
  363. package/custom-shots/widgets-collapsiblenavbar-opened__[w899px]_statistics_submenu.png +0 -0
  364. package/custom-shots/widgets-filters--default__[w1920px].png +0 -0
  365. package/custom-shots/widgets-filters--filter-button-items-not-selected__[w390px].png +0 -0
  366. package/custom-shots/widgets-filters--filter-button__[w390px].png +0 -0
  367. package/custom-shots/widgets-filters--filter-button__[w900px].png +0 -0
  368. package/custom-shots/widgets-filters--more-button-items-selected__[w390px].png +0 -0
  369. package/custom-shots/widgets-filters--more-button__[w900px].png +0 -0
  370. package/custom-shots/widgets-heart-rate--hint-opened__[w1440px].png +0 -0
  371. package/custom-shots/widgets-heart-rate--hint-opened__[w1920px].png +0 -0
  372. package/custom-shots/widgets-heart-rate--hint-opened__[w390px].png +0 -0
  373. package/custom-shots/widgets-heart-rate--hint-opened__[w900px].png +0 -0
  374. package/custom-shots/widgets-linkstabbar--current-focus__[w1920px].png +0 -0
  375. package/custom-shots/widgets-linkstabbar--non-current-focus__[w1920px].png +0 -0
  376. package/custom-shots/widgets-meal-nutrients--hint-opened__[w1440px].png +0 -0
  377. package/custom-shots/widgets-meal-nutrients--hint-opened__[w1920px].png +0 -0
  378. package/custom-shots/widgets-meal-nutrients--hint-opened__[w390px].png +0 -0
  379. package/custom-shots/widgets-meal-nutrients--hint-opened__[w900px].png +0 -0
  380. package/custom-shots/widgets-meal-nutrients--hint-opened__dropdown__[w1440px].png +0 -0
  381. package/custom-shots/widgets-meal-nutrients--hint-opened__dropdown__[w1920px].png +0 -0
  382. package/custom-shots/widgets-meal-nutrients--hint-opened__dropdown__[w390px].png +0 -0
  383. package/custom-shots/widgets-meal-nutrients--hint-opened__dropdown__[w900px].png +0 -0
  384. package/custom-shots/widgets-navbar--mobile-opened__[w1440px].png +0 -0
  385. package/custom-shots/widgets-navbar--mobile-opened__[w1920px].png +0 -0
  386. package/custom-shots/widgets-navbar--mobile-opened__[w390px].png +0 -0
  387. package/custom-shots/widgets-navbar--mobile-opened__[w900px].png +0 -0
  388. package/custom-shots/widgets-navbar-opened__[w1440px].png +0 -0
  389. package/custom-shots/widgets-navbar-opened__[w1920px].png +0 -0
  390. package/custom-shots/widgets-navbar-opened__[w390px].png +0 -0
  391. package/custom-shots/widgets-navbar-opened__[w900px].png +0 -0
  392. package/custom-shots/widgets-notification-menu--is-opened__[w1440px].png +0 -0
  393. package/custom-shots/widgets-notification-menu--is-opened__[w1920px].png +0 -0
  394. package/custom-shots/widgets-notification-menu--is-opened__[w390px].png +0 -0
  395. package/custom-shots/widgets-notification-menu--is-opened__[w900px].png +0 -0
  396. package/custom-shots/widgets-pagination--next-hover__[w1920px].png +0 -0
  397. package/custom-shots/widgets-pagination--not-selected-hover__[w1920px].png +0 -0
  398. package/custom-shots/widgets-pagination--previous-hover__[w1920px].png +0 -0
  399. package/custom-shots/widgets-pagination--selected-hover__[w1920px].png +0 -0
  400. package/custom-shots/widgets-pagination-disabled--next-hover__[w1920px].png +0 -0
  401. package/custom-shots/widgets-pagination-disabled--not-selected-hover__[w1920px].png +0 -0
  402. package/custom-shots/widgets-pagination-disabled--previous-hover__[w1920px].png +0 -0
  403. package/custom-shots/widgets-pagination-disabled--selected-hover__[w1920px].png +0 -0
  404. package/custom-shots/widgets-progressInfo__[w1440px].png +0 -0
  405. package/custom-shots/widgets-progressInfo__[w1920px].png +0 -0
  406. package/custom-shots/widgets-progressInfo__[w390px].png +0 -0
  407. package/custom-shots/widgets-progressInfo__[w900px].png +0 -0
  408. package/custom-shots/widgets-progressInfo__dropdown__[w1440px].png +0 -0
  409. package/custom-shots/widgets-progressInfo__dropdown__[w1920px].png +0 -0
  410. package/custom-shots/widgets-progressInfo__dropdown__[w390px].png +0 -0
  411. package/custom-shots/widgets-progressInfo__dropdown__[w900px].png +0 -0
  412. package/custom-shots/widgets-searchbox--cross-icon__[w1920px].png +0 -0
  413. package/custom-shots/widgets-searchbox--cross-icon__[w900px].png +0 -0
  414. package/custom-shots/widgets-searchbox--search-icon__[w1920px].png +0 -0
  415. package/custom-shots/widgets-searchbox--search-icon__[w900px].png +0 -0
  416. package/custom-shots/widgets-table-bots--default_[w1920px].png +0 -0
  417. package/custom-shots/widgets-table-bots--menu-opened_[w1920px].png +0 -0
  418. package/custom-shots/widgets-table-bots--no-control-orders--menu-opened_[w1920px].png +0 -0
  419. package/custom-shots/widgets-table-bots--no-control-orders--run-reason-modal_[w1920px].png +0 -0
  420. package/custom-shots/widgets-table-bots--run-reason-modal_[w1920px].png +0 -0
  421. package/custom-shots/widgets-table-filters--opened__[w1920px].png +0 -0
  422. package/custom-shots/widgets-trading-info-card--hover__[w1920px].png +0 -0
  423. package/custom-shots/widgets-user-profile--is-opened__[w1920px].png +0 -0
  424. package/storybook-static/106.9e8cbea9.iframe.bundle.js +0 -1
  425. package/storybook-static/134.2444003c.iframe.bundle.js +0 -1
  426. package/storybook-static/166.927d7b90.iframe.bundle.js +0 -1
  427. package/storybook-static/185.4df02b5b.iframe.bundle.js +0 -139
  428. package/storybook-static/185.4df02b5b.iframe.bundle.js.map +0 -1
  429. package/storybook-static/251.8c3ebcca.iframe.bundle.js +0 -1
  430. package/storybook-static/263.0a5aa731.iframe.bundle.js +0 -1
  431. package/storybook-static/283.258a25c8.iframe.bundle.js +0 -1
  432. package/storybook-static/326.7772ae66.iframe.bundle.js +0 -1
  433. package/storybook-static/494.f5410ab1.iframe.bundle.js +0 -2
  434. package/storybook-static/494.f5410ab1.iframe.bundle.js.LICENSE.txt +0 -18
  435. package/storybook-static/497.7e0c2fc7.iframe.bundle.js +0 -44
  436. package/storybook-static/497.7e0c2fc7.iframe.bundle.js.map +0 -1
  437. package/storybook-static/540.17a57e0e.iframe.bundle.js +0 -1
  438. package/storybook-static/547.951a46da.iframe.bundle.js +0 -1
  439. package/storybook-static/609.f12a4891.iframe.bundle.js +0 -1
  440. package/storybook-static/620.61fd9060.iframe.bundle.js +0 -1
  441. package/storybook-static/633.947e8b75.iframe.bundle.js +0 -1
  442. package/storybook-static/661.14057bc5.iframe.bundle.js +0 -1
  443. package/storybook-static/753.91179890.iframe.bundle.js +0 -1
  444. package/storybook-static/76.25b4aa80.iframe.bundle.js +0 -1
  445. package/storybook-static/767.1716b836.iframe.bundle.js +0 -1
  446. package/storybook-static/781.3faed4b1.iframe.bundle.js +0 -2
  447. package/storybook-static/781.3faed4b1.iframe.bundle.js.LICENSE.txt +0 -32
  448. package/storybook-static/906.a25e1330.iframe.bundle.js +0 -402
  449. package/storybook-static/906.a25e1330.iframe.bundle.js.LICENSE.txt +0 -62
  450. package/storybook-static/906.a25e1330.iframe.bundle.js.map +0 -1
  451. package/storybook-static/912.a84a00a8.iframe.bundle.js +0 -1
  452. package/storybook-static/973.d2780faa.iframe.bundle.js +0 -1
  453. package/storybook-static/979.9baaf9d9.iframe.bundle.js +0 -1
  454. package/storybook-static/995.818e1781.iframe.bundle.js +0 -1
  455. package/storybook-static/components-Activity-Activity-stories.1f2220be.iframe.bundle.js +0 -1
  456. package/storybook-static/components-Bmi-Bmi-stories.033dba0e.iframe.bundle.js +0 -1
  457. package/storybook-static/components-Calories-Calories-stories.61da75cb.iframe.bundle.js +0 -1
  458. package/storybook-static/components-CardList-CardList-stories.caaffeda.iframe.bundle.js +0 -1
  459. package/storybook-static/components-HeartRate-HeartRate-stories.bd133239.iframe.bundle.js +0 -1
  460. package/storybook-static/components-ListGoals-ListGoals-stories.e68d5cbf.iframe.bundle.js +0 -1
  461. package/storybook-static/components-MealNutrients-MealNutrients-stories.7e46bd1e.iframe.bundle.js +0 -1
  462. package/storybook-static/components-MealPlanner-MealPlanner-stories.4b8341d3.iframe.bundle.js +0 -1
  463. package/storybook-static/components-NavBar-NavBar-stories.4f37096a.iframe.bundle.js +0 -1
  464. package/storybook-static/components-Pagination-Pagination-stories.2fd0c446.iframe.bundle.js +0 -1
  465. package/storybook-static/components-ProgressInfo-ProgressInfo-stories.665cee18.iframe.bundle.js +0 -1
  466. package/storybook-static/components-StepsCounter-StepsCounter-stories.b87bd065.iframe.bundle.js +0 -1
  467. package/storybook-static/components-TableFilters-stories-TableFilters-stories.24c4f9e8.iframe.bundle.js +0 -1
  468. package/storybook-static/components-UpcomingWorkouts-UpcomingWorkouts-stories.fab18fcf.iframe.bundle.js +0 -1
  469. package/storybook-static/components-WaterConsume-WaterConsume-stories.5dae388e.iframe.bundle.js +0 -1
  470. package/storybook-static/favicon.svg +0 -7
  471. package/storybook-static/iframe.html +0 -355
  472. package/storybook-static/index.html +0 -126
  473. package/storybook-static/index.json +0 -1
  474. package/storybook-static/main.c21822d8.iframe.bundle.js +0 -1
  475. package/storybook-static/project.json +0 -1
  476. package/storybook-static/runtime~main.b259f462.iframe.bundle.js +0 -1
  477. package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js +0 -4
  478. package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js.LEGAL.txt +0 -0
  479. package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js.map +0 -7
  480. package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js +0 -13
  481. package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js.LEGAL.txt +0 -0
  482. package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js.map +0 -7
  483. package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js +0 -115
  484. package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js.LEGAL.txt +0 -18
  485. package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js.map +0 -7
  486. package/storybook-static/sb-addons/essentials-measure-6/manager-bundle.js +0 -4
  487. package/storybook-static/sb-addons/essentials-measure-6/manager-bundle.js.LEGAL.txt +0 -0
  488. package/storybook-static/sb-addons/essentials-measure-6/manager-bundle.js.map +0 -7
  489. package/storybook-static/sb-addons/essentials-outline-7/manager-bundle.js +0 -4
  490. package/storybook-static/sb-addons/essentials-outline-7/manager-bundle.js.LEGAL.txt +0 -0
  491. package/storybook-static/sb-addons/essentials-outline-7/manager-bundle.js.map +0 -7
  492. package/storybook-static/sb-addons/essentials-toolbars-5/manager-bundle.js +0 -4
  493. package/storybook-static/sb-addons/essentials-toolbars-5/manager-bundle.js.LEGAL.txt +0 -0
  494. package/storybook-static/sb-addons/essentials-toolbars-5/manager-bundle.js.map +0 -7
  495. package/storybook-static/sb-addons/essentials-viewport-4/manager-bundle.js +0 -4
  496. package/storybook-static/sb-addons/essentials-viewport-4/manager-bundle.js.LEGAL.txt +0 -0
  497. package/storybook-static/sb-addons/essentials-viewport-4/manager-bundle.js.map +0 -7
  498. package/storybook-static/sb-addons/interactions-8/manager-bundle.js +0 -28
  499. package/storybook-static/sb-addons/interactions-8/manager-bundle.js.LEGAL.txt +0 -0
  500. package/storybook-static/sb-addons/interactions-8/manager-bundle.js.map +0 -7
  501. package/storybook-static/sb-addons/links-0/manager-bundle.js +0 -4
  502. package/storybook-static/sb-addons/links-0/manager-bundle.js.LEGAL.txt +0 -0
  503. package/storybook-static/sb-addons/links-0/manager-bundle.js.map +0 -7
  504. package/storybook-static/sb-common-assets/fonts.css +0 -31
  505. package/storybook-static/sb-common-assets/nunito-sans-bold-italic.woff2 +0 -0
  506. package/storybook-static/sb-common-assets/nunito-sans-bold.woff2 +0 -0
  507. package/storybook-static/sb-common-assets/nunito-sans-italic.woff2 +0 -0
  508. package/storybook-static/sb-common-assets/nunito-sans-regular.woff2 +0 -0
  509. package/storybook-static/sb-manager/CRUD-I5EZL2FS-LBZVDZXV.js +0 -1
  510. package/storybook-static/sb-manager/Communicate-7JXCND2Z-6SIVXWT4.js +0 -1
  511. package/storybook-static/sb-manager/Devices-SUYACUPO-DMGV6ENX.js +0 -1
  512. package/storybook-static/sb-manager/Documents-SGWAY3KW-XZRZ6I6S.js +0 -1
  513. package/storybook-static/sb-manager/Editing-7QFB6ZMG-J5U6QGB6.js +0 -1
  514. package/storybook-static/sb-manager/Git-DZ2D5ZUL-VKBWYJHE.js +0 -1
  515. package/storybook-static/sb-manager/GlobalScrollAreaStyles-4LLX2B3H-DOBSPBNW.js +0 -7
  516. package/storybook-static/sb-manager/Images-S2WTXNGG-NXAYS4VP.js +0 -1
  517. package/storybook-static/sb-manager/Logos-SJTNNI74-F3IVL4UV.js +0 -1
  518. package/storybook-static/sb-manager/OS-YZ2Y4VYS-KGSGCOHC.js +0 -1
  519. package/storybook-static/sb-manager/OverlayScrollbars-OL4C4TVX-FNYA4OIC.js +0 -1
  520. package/storybook-static/sb-manager/People-OD4EV7WZ-DBPUNUXW.js +0 -1
  521. package/storybook-static/sb-manager/Wayfinding-BB4H7CHP-N2QAVLVA.js +0 -1
  522. package/storybook-static/sb-manager/WithTooltip-YBG737T3-GLWUADFI.js +0 -1
  523. package/storybook-static/sb-manager/chunk-6KNXZZZ5.js +0 -207
  524. package/storybook-static/sb-manager/chunk-DP4DR4LA.js +0 -15
  525. package/storybook-static/sb-manager/chunk-GBCXFRBK.js +0 -1
  526. package/storybook-static/sb-manager/chunk-IFNK3PLJ.js +0 -1
  527. package/storybook-static/sb-manager/chunk-JMPBYCHU.js +0 -1
  528. package/storybook-static/sb-manager/chunk-JSPL73I3.js +0 -1
  529. package/storybook-static/sb-manager/chunk-SJD7EFYL.js +0 -136
  530. package/storybook-static/sb-manager/chunk-UBXIQABM.js +0 -447
  531. package/storybook-static/sb-manager/chunk-V7GYLJLR.js +0 -7
  532. package/storybook-static/sb-manager/chunk-Z4NRYNHR.js +0 -1
  533. package/storybook-static/sb-manager/formatter-6736J7QO-TGL2ZGQC.js +0 -156
  534. package/storybook-static/sb-manager/globals.js +0 -1
  535. package/storybook-static/sb-manager/index.js +0 -1
  536. package/storybook-static/sb-manager/runtime.js +0 -1
  537. package/storybook-static/sb-manager/syntaxhighlighter-4OVWVELQ-5IZ45DZY.js +0 -1
  538. package/storybook-static/sb-preview/globals.js +0 -1
  539. package/storybook-static/sb-preview/runtime.js +0 -105
  540. package/storybook-static/stories.json +0 -1
  541. package/tsconfig.tsbuildinfo +0 -1
@@ -1 +0,0 @@
1
- "use strict";(self.webpackChunk_ssa_ui_kit_widgets=self.webpackChunk_ssa_ui_kit_widgets||[]).push([[251],{"../../node_modules/.pnpm/@storybook+addon-docs@7.3.2_@types+react-dom@18.2.4_@types+react@18.2.8_react-dom@18.2.0_react@18.2.0/node_modules/@storybook/addon-docs/dist/DocsRenderer-3PUGWF3O.mjs":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){__webpack_require__.d(__webpack_exports__,{DocsRenderer:function(){return _chunk_S4VUQJ4A_mjs__WEBPACK_IMPORTED_MODULE_0__.r}});var _chunk_S4VUQJ4A_mjs__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("../../node_modules/.pnpm/@storybook+addon-docs@7.3.2_@types+react-dom@18.2.4_@types+react@18.2.8_react-dom@18.2.0_react@18.2.0/node_modules/@storybook/addon-docs/dist/chunk-S4VUQJ4A.mjs")}}]);
@@ -1 +0,0 @@
1
- "use strict";(self.webpackChunk_ssa_ui_kit_widgets=self.webpackChunk_ssa_ui_kit_widgets||[]).push([[263],{"../../node_modules/.pnpm/@storybook+icons@1.1.6_react-dom@18.2.0_react@18.2.0/node_modules/@storybook/icons/dist/Images-S2WTXNGG.mjs":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{Camera:function(){return Camera},Component:function(){return Component},Contrast:function(){return Contrast},Eye:function(){return Eye},EyeClose:function(){return EyeClose},FastForward:function(){return FastForward},Grid:function(){return Grid},GridAlt:function(){return GridAlt},Grow:function(){return Grow},Lightning:function(){return Lightning},LightningOff:function(){return LightningOff},Mirror:function(){return Mirror},Moon:function(){return Moon},Outline:function(){return Outline},PaintBrush:function(){return PaintBrush},Photo:function(){return Photo},PhotoDrag:function(){return PhotoDrag},Play:function(){return Play},PlayBack:function(){return PlayBack},PlayNext:function(){return PlayNext},Rewind:function(){return Rewind},Ruler:function(){return Ruler},Search:function(){return Search},SideBySide:function(){return SideBySide},Speaker:function(){return Speaker},Stacked:function(){return Stacked},Stop:function(){return Stop},StopAlt:function(){return StopAlt},Sun:function(){return Sun},SwitchAlt:function(){return SwitchAlt},Video:function(){return Video},Zoom:function(){return Zoom},ZoomOut:function(){return ZoomOut},ZoomReset:function(){return ZoomReset}});var _chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("../../node_modules/.pnpm/@storybook+icons@1.1.6_react-dom@18.2.0_react@18.2.0/node_modules/@storybook/icons/dist/chunk-MSDTXLE7.mjs"),react__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("../../node_modules/.pnpm/react@18.2.0/node_modules/react/index.js"),Photo=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6.25 4.254a1.25 1.25 0 11-2.5 0 1.25 1.25 0 012.5 0zm-.5 0a.75.75 0 11-1.5 0 .75.75 0 011.5 0z",fill:"currentColor"}),react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M13 1.504v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11a.5.5 0 01.5-.5h11a.5.5 0 01.5.5zM2 9.297V2.004h10v5.293L9.854 5.15a.5.5 0 00-.708 0L6.5 7.797 5.354 6.65a.5.5 0 00-.708 0L2 9.297zM9.5 6.21l2.5 2.5v3.293H2V10.71l3-3 3.146 3.146a.5.5 0 00.708-.707L7.207 8.504 9.5 6.21z",fill:"currentColor"})),...restProps})},Component=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3.5 1.004a2.5 2.5 0 00-2.5 2.5v7a2.5 2.5 0 002.5 2.5h7a2.5 2.5 0 002.5-2.5v-7a2.5 2.5 0 00-2.5-2.5h-7zm8.5 5.5H7.5v-4.5h3a1.5 1.5 0 011.5 1.5v3zm0 1v3a1.5 1.5 0 01-1.5 1.5h-3v-4.5H12zm-5.5 4.5v-4.5H2v3a1.5 1.5 0 001.5 1.5h3zM2 6.504h4.5v-4.5h-3a1.5 1.5 0 00-1.5 1.5v3z",fill:"currentColor"})),...restProps})},Grid=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 1.504a.5.5 0 01.5-.5H6a.5.5 0 01.5.5v4.5a.5.5 0 01-.5.5H1.5a.5.5 0 01-.5-.5v-4.5zm1 4v-3.5h3.5v3.5H2zM7.5 1.504a.5.5 0 01.5-.5h4.5a.5.5 0 01.5.5v4.5a.5.5 0 01-.5.5H8a.5.5 0 01-.5-.5v-4.5zm1 4v-3.5H12v3.5H8.5zM1.5 7.504a.5.5 0 00-.5.5v4.5a.5.5 0 00.5.5H6a.5.5 0 00.5-.5v-4.5a.5.5 0 00-.5-.5H1.5zm.5 1v3.5h3.5v-3.5H2zM7.5 8.004a.5.5 0 01.5-.5h4.5a.5.5 0 01.5.5v4.5a.5.5 0 01-.5.5H8a.5.5 0 01-.5-.5v-4.5zm1 4v-3.5H12v3.5H8.5z",fill:"currentColor"})),...restProps})},Outline=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M2 2.004v2H1v-2.5a.5.5 0 01.5-.5H4v1H2zM1 9.004v-4h1v4H1zM1 10.004v2.5a.5.5 0 00.5.5H4v-1H2v-2H1zM10 13.004h2.5a.5.5 0 00.5-.5v-2.5h-1v2h-2v1zM12 4.004h1v-2.5a.5.5 0 00-.5-.5H10v1h2v2zM9 12.004v1H5v-1h4zM9 1.004v1H5v-1h4zM13 9.004h-1v-4h1v4zM7 8.004a1 1 0 100-2 1 1 0 000 2z",fill:"currentColor"})),...restProps})},PhotoDrag=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.25 3.254a1.25 1.25 0 11-2.5 0 1.25 1.25 0 012.5 0zm-.5 0a.75.75 0 11-1.5 0 .75.75 0 011.5 0z",fill:"currentColor"}),react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 7.003v-6.5a.5.5 0 00-.5-.5h-10a.5.5 0 00-.5.5v2.5H.5a.5.5 0 00-.5.5v2.5h1v-2h2v6.5a.5.5 0 00.5.5H10v2H8v1h2.5a.5.5 0 00.5-.5v-2.5h2.5a.5.5 0 00.5-.5v-3.5zm-10-6v5.794L5.646 5.15a.5.5 0 01.708 0L7.5 6.297l2.646-2.647a.5.5 0 01.708 0L13 5.797V1.004H4zm9 6.208l-2.5-2.5-2.293 2.293L9.354 8.15a.5.5 0 11-.708.707L6 6.211l-2 2v1.793h9V7.21z",fill:"currentColor"}),react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M0 10.004v-3h1v3H0zM0 13.504v-2.5h1v2h2v1H.5a.5.5 0 01-.5-.5zM7 14.004H4v-1h3v1z",fill:"currentColor"})),...restProps})},GridAlt=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M4 3V1h1v2H4zM4 6v2h1V6H4zM4 11v2h1v-2H4zM9 11v2h1v-2H9zM9 8V6h1v2H9zM9 1v2h1V1H9zM13 5h-2V4h2v1zM11 10h2V9h-2v1zM3 10H1V9h2v1zM1 5h2V4H1v1zM8 5H6V4h2v1zM6 10h2V9H6v1zM4 4h1v1H4V4zM10 4H9v1h1V4zM9 9h1v1H9V9zM5 9H4v1h1V9z",fill:"currentColor"})),...restProps})},Search=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.544 10.206a5.5 5.5 0 11.662-.662.5.5 0 01.148.102l3 3a.5.5 0 01-.708.708l-3-3a.5.5 0 01-.102-.148zM10.5 6a4.5 4.5 0 11-9 0 4.5 4.5 0 019 0z",fill:"currentColor"})),...restProps})},Zoom=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M6 3.5a.5.5 0 01.5.5v1.5H8a.5.5 0 010 1H6.5V8a.5.5 0 01-1 0V6.5H4a.5.5 0 010-1h1.5V4a.5.5 0 01.5-.5z",fill:"currentColor"}),react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.544 10.206a5.5 5.5 0 11.662-.662.5.5 0 01.148.102l3 3a.5.5 0 01-.708.708l-3-3a.5.5 0 01-.102-.148zM10.5 6a4.5 4.5 0 11-9 0 4.5 4.5 0 019 0z",fill:"currentColor"})),...restProps})},ZoomOut=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M4 5.5a.5.5 0 000 1h4a.5.5 0 000-1H4z",fill:"currentColor"}),react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M6 11.5c1.35 0 2.587-.487 3.544-1.294a.5.5 0 00.102.148l3 3a.5.5 0 00.708-.708l-3-3a.5.5 0 00-.148-.102A5.5 5.5 0 106 11.5zm0-1a4.5 4.5 0 100-9 4.5 4.5 0 000 9z",fill:"currentColor"})),...restProps})},ZoomReset=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M1.5 2.837V1.5a.5.5 0 00-1 0V4a.5.5 0 00.5.5h2.5a.5.5 0 000-1H2.258a4.5 4.5 0 11-.496 4.016.5.5 0 10-.942.337 5.502 5.502 0 008.724 2.353.5.5 0 00.102.148l3 3a.5.5 0 00.708-.708l-3-3a.5.5 0 00-.148-.102A5.5 5.5 0 101.5 2.837z",fill:"currentColor"})),...restProps})},Eye=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M7 9.5a2.5 2.5 0 100-5 2.5 2.5 0 000 5z",fill:"currentColor"}),react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 7l-.21.293C13.669 7.465 10.739 11.5 7 11.5S.332 7.465.21 7.293L0 7l.21-.293C.331 6.536 3.261 2.5 7 2.5s6.668 4.036 6.79 4.207L14 7zM2.896 5.302A12.725 12.725 0 001.245 7c.296.37.874 1.04 1.65 1.698C4.043 9.67 5.482 10.5 7 10.5c1.518 0 2.958-.83 4.104-1.802A12.72 12.72 0 0012.755 7c-.297-.37-.875-1.04-1.65-1.698C9.957 4.33 8.517 3.5 7 3.5c-1.519 0-2.958.83-4.104 1.802z",fill:"currentColor"})),...restProps})},EyeClose=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M1.854 1.146a.5.5 0 10-.708.708l11 11a.5.5 0 00.708-.708l-11-11zM11.104 8.698c-.177.15-.362.298-.553.439l.714.714a13.25 13.25 0 002.526-2.558L14 7l-.21-.293C13.669 6.536 10.739 2.5 7 2.5c-.89 0-1.735.229-2.506.58l.764.763A4.859 4.859 0 017 3.5c1.518 0 2.958.83 4.104 1.802A12.724 12.724 0 0112.755 7a12.72 12.72 0 01-1.65 1.698zM.21 6.707c.069-.096 1.03-1.42 2.525-2.558l.714.714c-.191.141-.376.288-.553.439A12.725 12.725 0 001.245 7c.296.37.874 1.04 1.65 1.698C4.043 9.67 5.482 10.5 7 10.5a4.86 4.86 0 001.742-.344l.764.764c-.772.351-1.616.58-2.506.58C3.262 11.5.332 7.465.21 7.293L0 7l.21-.293z",fill:"currentColor"}),react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M4.5 7c0-.322.061-.63.172-.914l3.242 3.242A2.5 2.5 0 014.5 7zM9.328 7.914L6.086 4.672a2.5 2.5 0 013.241 3.241z",fill:"currentColor"})),...restProps})},Lightning=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.522 6.6a.566.566 0 00-.176.544.534.534 0 00.382.41l2.781.721-1.493 5.013a.563.563 0 00.216.627.496.496 0 00.63-.06l6.637-6.453a.568.568 0 00.151-.54.534.534 0 00-.377-.396l-2.705-.708 2.22-4.976a.568.568 0 00-.15-.666.497.497 0 00-.648.008L2.522 6.6zm7.72.63l-3.067-.804L9.02 2.29 3.814 6.803l2.95.764-1.277 4.285 4.754-4.622zM4.51 13.435l.037.011-.037-.011z",fill:"currentColor"})),...restProps})},LightningOff=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M10.139 8.725l1.36-1.323a.568.568 0 00.151-.54.534.534 0 00-.377-.396l-2.705-.708 2.22-4.976a.568.568 0 00-.15-.666.497.497 0 00-.648.008L5.464 4.05l.708.71 2.848-2.47-1.64 3.677.697.697 2.164.567-.81.787.708.708zM2.523 6.6a.566.566 0 00-.177.544.534.534 0 00.382.41l2.782.721-1.494 5.013a.563.563 0 00.217.627.496.496 0 00.629-.06l3.843-3.736-.708-.707-2.51 2.44 1.137-3.814-.685-.685-2.125-.55.844-.731-.71-.71L2.524 6.6zM1.854 1.146a.5.5 0 10-.708.708l11 11a.5.5 0 00.708-.708l-11-11z",fill:"currentColor"})),...restProps})},Contrast=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 3.004H.5a.5.5 0 00-.5.5v10a.5.5 0 00.5.5h10a.5.5 0 00.5-.5v-2.5h2.5a.5.5 0 00.5-.5v-10a.5.5 0 00-.5-.5h-10a.5.5 0 00-.5.5v2.5zm1 1v2.293l2.293-2.293H4zm-1 0v6.5a.499.499 0 00.497.5H10v2H1v-9h2zm1-1h6.5a.499.499 0 01.5.5v6.5h2v-9H4v2zm6 7V7.71l-2.293 2.293H10zm0-3.707V4.71l-5.293 5.293h1.586L10 6.297zm-.707-2.293H7.707L4 7.71v1.586l5.293-5.293z",fill:"currentColor"})),...restProps})},SwitchAlt=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 3.004v-2.5a.5.5 0 01.5-.5h10a.5.5 0 01.5.5v10a.5.5 0 01-.5.5H11v2.5a.5.5 0 01-.5.5H.5a.5.5 0 01-.5-.5v-10a.5.5 0 01.5-.5H3zm1 0v-2h9v9h-2v-6.5a.5.5 0 00-.5-.5H4zm6 8v2H1v-9h2v6.5a.5.5 0 00.5.5H10zm0-1H4v-6h6v6z",fill:"currentColor"})),...restProps})},Mirror=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 1.504a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11zm1 10.5h10v-10l-10 10z",fill:"currentColor"})),...restProps})},Grow=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M1.5 1.004a.5.5 0 100 1H12v10.5a.5.5 0 001 0v-10.5a1 1 0 00-1-1H1.5z",fill:"currentColor"}),react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M1 3.504a.5.5 0 01.5-.5H10a1 1 0 011 1v8.5a.5.5 0 01-1 0v-8.5H1.5a.5.5 0 01-.5-.5z",fill:"currentColor"}),react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.5 5.004a.5.5 0 00-.5.5v7a.5.5 0 00.5.5h7a.5.5 0 00.5-.5v-7a.5.5 0 00-.5-.5h-7zm.5 1v6h6v-6H2z",fill:"currentColor"})),...restProps})},PaintBrush=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.854.146a.5.5 0 00-.708 0L2.983 8.31a2.24 2.24 0 00-1.074.6C.677 10.14.24 11.902.085 12.997 0 13.6 0 14 0 14s.4 0 1.002-.085c1.095-.155 2.857-.592 4.089-1.824a2.24 2.24 0 00.6-1.074l8.163-8.163a.5.5 0 000-.708l-2-2zM5.6 9.692l.942-.942L5.25 7.457l-.942.943A2.242 2.242 0 015.6 9.692zm1.649-1.65L12.793 2.5 11.5 1.207 5.957 6.75 7.25 8.043zM4.384 9.617a1.25 1.25 0 010 1.768c-.767.766-1.832 1.185-2.78 1.403-.17.04-.335.072-.49.098.027-.154.06-.318.099-.49.219-.947.637-2.012 1.403-2.779a1.25 1.25 0 011.768 0z",fill:"currentColor"})),...restProps})},Ruler=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M1.5 1.004a.5.5 0 01.5.5v.5h10v-.5a.5.5 0 011 0v2a.5.5 0 01-1 0v-.5H2v.5a.5.5 0 01-1 0v-2a.5.5 0 01.5-.5z",fill:"currentColor"}),react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.5 6a.5.5 0 00-.5.5v6a.5.5 0 00.5.5h11a.5.5 0 00.5-.5v-6a.5.5 0 00-.5-.5h-11zM2 7v5h10V7h-1v2.5a.5.5 0 01-1 0V7h-.75v1a.5.5 0 01-1 0V7H7.5v2.5a.5.5 0 01-1 0V7h-.75v1a.5.5 0 01-1 0V7H4v2.5a.5.5 0 01-1 0V7H2z",fill:"currentColor"})),...restProps})},Stop=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M4.5 4a.5.5 0 00-.5.5v5a.5.5 0 00.5.5h5a.5.5 0 00.5-.5v-5a.5.5 0 00-.5-.5h-5z",fill:"currentColor"}),react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 7A7 7 0 110 7a7 7 0 0114 0zm-1 0A6 6 0 111 7a6 6 0 0112 0z",fill:"currentColor"})),...restProps})},Camera=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10 7a3 3 0 11-6 0 3 3 0 016 0zM9 7a2 2 0 11-4 0 2 2 0 014 0z",fill:"currentColor"}),react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.5 1a.5.5 0 00-.5.5v.504H.5a.5.5 0 00-.5.5v9a.5.5 0 00.5.5h13a.5.5 0 00.5-.5v-9a.5.5 0 00-.5-.5H6V1.5a.5.5 0 00-.5-.5h-3zM1 3.004v8h12v-8H1z",fill:"currentColor"})),...restProps})},Video=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M2.5 10a.5.5 0 100-1 .5.5 0 000 1z",fill:"currentColor"}),react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 4a2 2 0 012-2h6a2 2 0 012 2v.5l3.189-2.391A.5.5 0 0114 2.5v9a.5.5 0 01-.804.397L10 9.5v.5a2 2 0 01-2 2H2a2 2 0 01-2-2V4zm9 0v1.5a.5.5 0 00.8.4L13 3.5v7L9.8 8.1a.5.5 0 00-.8.4V10a1 1 0 01-1 1H2a1 1 0 01-1-1V4a1 1 0 011-1h6a1 1 0 011 1z",fill:"currentColor"})),...restProps})},Speaker=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 4.5v5a.5.5 0 00.5.5H4l3.17 2.775a.5.5 0 00.83-.377V1.602a.5.5 0 00-.83-.376L4 4H1.5a.5.5 0 00-.5.5zM4 9V5H2v4h2zm.998.545A.504.504 0 005 9.5v-5c0-.015 0-.03-.002-.044L7 2.704v8.592L4.998 9.545z",fill:"currentColor"}),react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M10.15 1.752a.5.5 0 00-.3.954 4.502 4.502 0 010 8.588.5.5 0 00.3.954 5.502 5.502 0 000-10.496z",fill:"currentColor"}),react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M10.25 3.969a.5.5 0 00-.5.865 2.499 2.499 0 010 4.332.5.5 0 10.5.866 3.499 3.499 0 000-6.063z",fill:"currentColor"})),...restProps})},Play=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M12.813 7.425l-9.05 5.603A.5.5 0 013 12.603V1.398a.5.5 0 01.763-.425l9.05 5.602a.5.5 0 010 .85z",fill:"currentColor"})),...restProps})},PlayBack=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M11.24 12.035L3.697 7.427A.494.494 0 013.5 7.2v4.05a.75.75 0 01-1.5 0v-8.5a.75.75 0 011.5 0V6.8a.494.494 0 01.198-.227l7.541-4.608A.5.5 0 0112 2.39v9.217a.5.5 0 01-.76.427z",fill:"currentColor"})),...restProps})},PlayNext=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M2.76 12.035l7.542-4.608A.495.495 0 0010.5 7.2v4.05a.75.75 0 001.5 0v-8.5a.75.75 0 00-1.5 0V6.8a.495.495 0 00-.198-.227L2.76 1.965A.5.5 0 002 2.39v9.217a.5.5 0 00.76.427z",fill:"currentColor"})),...restProps})},Rewind=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M9 2.42v2.315l4.228-2.736a.5.5 0 01.772.42v9.162a.5.5 0 01-.772.42L9 9.263v2.317a.5.5 0 01-.772.42L1.5 7.647v3.603a.75.75 0 01-1.5 0v-8.5a.75.75 0 011.5 0v3.603L8.228 2A.5.5 0 019 2.42z",fill:"currentColor"})),...restProps})},FastForward=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M5 2.42v2.315L.772 1.999a.5.5 0 00-.772.42v9.162a.5.5 0 00.772.42L5 9.263v2.317a.5.5 0 00.772.42L12.5 7.647v3.603a.75.75 0 001.5 0v-8.5a.75.75 0 00-1.5 0v3.603L5.772 2A.5.5 0 005 2.42z",fill:"currentColor"})),...restProps})},StopAlt=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M1 1.504a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11z",fill:"currentColor"})),...restProps})},SideBySide=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1 1.504a.5.5 0 01.5-.5h11a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11zm1 10.5v-10h5v10H2z",fill:"currentColor"})),...restProps})},Stacked=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12.5 1.004a.5.5 0 01.5.5v11a.5.5 0 01-.5.5h-11a.5.5 0 01-.5-.5v-11a.5.5 0 01.5-.5h11zm-10.5 1h10v5H2v-5z",fill:"currentColor"})),...restProps})},Sun=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("g",{clipPath:"url(#prefix__clip0_1107_3492)",fill:"currentColor"},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M7.5.5a.5.5 0 00-1 0V2a.5.5 0 001 0V.5z"}),react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7 10a3 3 0 100-6 3 3 0 000 6zm0-1a2 2 0 100-4 2 2 0 000 4z"}),react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M7 11.5a.5.5 0 01.5.5v1.5a.5.5 0 01-1 0V12a.5.5 0 01.5-.5zM11.5 7a.5.5 0 01.5-.5h1.5a.5.5 0 010 1H12a.5.5 0 01-.5-.5zM.5 6.5a.5.5 0 000 1H2a.5.5 0 000-1H.5zM3.818 10.182a.5.5 0 010 .707l-1.06 1.06a.5.5 0 11-.708-.706l1.06-1.06a.5.5 0 01.708 0zM11.95 2.757a.5.5 0 10-.707-.707l-1.061 1.061a.5.5 0 10.707.707l1.06-1.06zM10.182 10.182a.5.5 0 01.707 0l1.06 1.06a.5.5 0 11-.706.708l-1.061-1.06a.5.5 0 010-.708zM2.757 2.05a.5.5 0 10-.707.707l1.06 1.061a.5.5 0 00.708-.707l-1.06-1.06z"})),react__WEBPACK_IMPORTED_MODULE_1__.createElement("defs",null,react__WEBPACK_IMPORTED_MODULE_1__.createElement("clipPath",{id:"prefix__clip0_1107_3492"},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fill:"#fff",d:"M0 0h14v14H0z"})))),...restProps})},Moon=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 15 15",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("g",{clipPath:"url(#prefix__clip0_1107_3493)"},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.335.047l-.15-.015a7.499 7.499 0 106.14 10.577c.103-.229-.156-.447-.386-.346a5.393 5.393 0 01-.771.27A5.356 5.356 0 019.153.691C9.37.568 9.352.23 9.106.175a7.545 7.545 0 00-.77-.128zM6.977 1.092a6.427 6.427 0 005.336 10.671A6.427 6.427 0 116.977 1.092z",fill:"currentColor"})),react__WEBPACK_IMPORTED_MODULE_1__.createElement("defs",null,react__WEBPACK_IMPORTED_MODULE_1__.createElement("clipPath",{id:"prefix__clip0_1107_3493"},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fill:"#fff",transform:"scale(1.07124)",d:"M0 0h14.001v14.002H0z"})))),...restProps})}},"../../node_modules/.pnpm/@storybook+icons@1.1.6_react-dom@18.2.0_react@18.2.0/node_modules/@storybook/icons/dist/chunk-MSDTXLE7.mjs":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){__webpack_require__.d(__webpack_exports__,{a:function(){return IconWrapper}});var react__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("../../node_modules/.pnpm/react@18.2.0/node_modules/react/index.js"),IconWrapper=({icon:icon,color:colorProp,size:sizeProp,...restProps})=>{const color=colorProp||"currentColor",size=sizeProp||"14px";return react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{role:"img","aria-hidden":"true",style:{color:color,width:size,height:size,display:"inline-flex",fontSize:"inherit"},...restProps},icon)}}}]);
@@ -1 +0,0 @@
1
- "use strict";(self.webpackChunk_ssa_ui_kit_widgets=self.webpackChunk_ssa_ui_kit_widgets||[]).push([[283],{"../../node_modules/.pnpm/@storybook+components@7.3.2_@types+react-dom@18.2.4_@types+react@18.2.8_react-dom@18.2.0_react@18.2.0/node_modules/@storybook/components/dist/WithTooltip-YBG737T3.mjs":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{WithToolTipState:function(){return _chunk_OCF3KO2R_mjs__WEBPACK_IMPORTED_MODULE_0__.WA},WithTooltip:function(){return _chunk_OCF3KO2R_mjs__WEBPACK_IMPORTED_MODULE_0__.WA},WithTooltipPure:function(){return _chunk_OCF3KO2R_mjs__WEBPACK_IMPORTED_MODULE_0__.DG}});var _chunk_OCF3KO2R_mjs__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("../../node_modules/.pnpm/@storybook+components@7.3.2_@types+react-dom@18.2.4_@types+react@18.2.8_react-dom@18.2.0_react@18.2.0/node_modules/@storybook/components/dist/chunk-OCF3KO2R.mjs")}}]);
@@ -1 +0,0 @@
1
- "use strict";(self.webpackChunk_ssa_ui_kit_widgets=self.webpackChunk_ssa_ui_kit_widgets||[]).push([[326],{"../../node_modules/.pnpm/@storybook+icons@1.1.6_react-dom@18.2.0_react@18.2.0/node_modules/@storybook/icons/dist/Editing-7QFB6ZMG.mjs":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,{Bold:function(){return Bold},Italic:function(){return Italic},ListOrdered:function(){return ListOrdered},ListUnordered:function(){return ListUnordered},Markdown:function(){return Markdown},Markup:function(){return Markup},PaperClip:function(){return PaperClip},Paragraph:function(){return Paragraph}});var _chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("../../node_modules/.pnpm/@storybook+icons@1.1.6_react-dom@18.2.0_react@18.2.0/node_modules/@storybook/icons/dist/chunk-MSDTXLE7.mjs"),react__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__("../../node_modules/.pnpm/react@18.2.0/node_modules/react/index.js"),Markup=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M8.982 1.632a.5.5 0 00-.964-.263l-3 11a.5.5 0 10.964.263l3-11zM3.32 3.616a.5.5 0 01.064.704L1.151 7l2.233 2.68a.5.5 0 11-.768.64l-2.5-3a.5.5 0 010-.64l2.5-3a.5.5 0 01.704-.064zM10.68 3.616a.5.5 0 00-.064.704L12.849 7l-2.233 2.68a.5.5 0 00.768.64l2.5-3a.5.5 0 000-.64l-2.5-3a.5.5 0 00-.704-.064z",fill:"currentColor"})),...restProps})},Bold=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 2v1.5h1v7H3V12h5a3 3 0 001.791-5.407A2.75 2.75 0 008 2.011V2H3zm5 5.5H5.5v3H8a1.5 1.5 0 100-3zm-.25-4H5.5V6h2.25a1.25 1.25 0 100-2.5z",fill:"currentColor"})),...restProps})},Italic=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M5 2h6v1H8.5l-2 8H9v1H3v-1h2.5l2-8H5V2z",fill:"currentColor"})),...restProps})},PaperClip=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M10.553 2.268a1.5 1.5 0 00-2.12 0L2.774 7.925a2.5 2.5 0 003.536 3.535l3.535-3.535a.5.5 0 11.707.707l-3.535 3.536-.002.002a3.5 3.5 0 01-4.959-4.941l.011-.011L7.725 1.56l.007-.008a2.5 2.5 0 013.53 3.541l-.002.002-5.656 5.657-.003.003a1.5 1.5 0 01-2.119-2.124l3.536-3.536a.5.5 0 11.707.707L4.189 9.34a.5.5 0 00.707.707l5.657-5.657a1.5 1.5 0 000-2.121z",fill:"currentColor"})),...restProps})},ListOrdered=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M5 2.5a.5.5 0 01.5-.5h7a.5.5 0 010 1h-7a.5.5 0 01-.5-.5zM5 7a.5.5 0 01.5-.5h7a.5.5 0 010 1h-7A.5.5 0 015 7zM5.5 11a.5.5 0 000 1h7a.5.5 0 000-1h-7zM2.5 2H1v1h1v3h1V2.5a.5.5 0 00-.5-.5zM3 8.5v1a.5.5 0 01-1 0V9h-.5a.5.5 0 010-1h1a.5.5 0 01.5.5zM2 10.5a.5.5 0 00-1 0V12h2v-1H2v-.5z",fill:"currentColor"})),...restProps})},ListUnordered=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M2.75 2.5a.75.75 0 11-1.5 0 .75.75 0 011.5 0zM5.5 2a.5.5 0 000 1h7a.5.5 0 000-1h-7zM5.5 11a.5.5 0 000 1h7a.5.5 0 000-1h-7zM2 12.25a.75.75 0 100-1.5.75.75 0 000 1.5zM5 7a.5.5 0 01.5-.5h7a.5.5 0 010 1h-7A.5.5 0 015 7zM2 7.75a.75.75 0 100-1.5.75.75 0 000 1.5z",fill:"currentColor"})),...restProps})},Paragraph=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M6 7a3 3 0 110-6h5.5a.5.5 0 010 1H10v10.5a.5.5 0 01-1 0V2H7v10.5a.5.5 0 01-1 0V7z",fill:"currentColor"})),...restProps})},Markdown=allProps=>{const{svgProps:props,...restProps}=allProps;return react__WEBPACK_IMPORTED_MODULE_1__.createElement(_chunk_MSDTXLE7_mjs__WEBPACK_IMPORTED_MODULE_0__.a,{icon:react__WEBPACK_IMPORTED_MODULE_1__.createElement("svg",{width:"100%",height:"100%",viewBox:"0 0 14 14",fill:"none",xmlns:"http://www.w3.org/2000/svg",...props},react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{d:"M2 4.5h1.5L5 6.375 6.5 4.5H8v5H6.5V7L5 8.875 3.5 7v2.5H2v-5zM9.75 4.5h1.5V7h1.25l-2 2.5-2-2.5h1.25V4.5z",fill:"currentColor"}),react__WEBPACK_IMPORTED_MODULE_1__.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M.5 2a.5.5 0 00-.5.5v9a.5.5 0 00.5.5h13a.5.5 0 00.5-.5v-9a.5.5 0 00-.5-.5H.5zM1 3v8h12V3H1z",fill:"currentColor"})),...restProps})}},"../../node_modules/.pnpm/@storybook+icons@1.1.6_react-dom@18.2.0_react@18.2.0/node_modules/@storybook/icons/dist/chunk-MSDTXLE7.mjs":function(__unused_webpack_module,__webpack_exports__,__webpack_require__){__webpack_require__.d(__webpack_exports__,{a:function(){return IconWrapper}});var react__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__("../../node_modules/.pnpm/react@18.2.0/node_modules/react/index.js"),IconWrapper=({icon:icon,color:colorProp,size:sizeProp,...restProps})=>{const color=colorProp||"currentColor",size=sizeProp||"14px";return react__WEBPACK_IMPORTED_MODULE_0__.createElement("span",{role:"img","aria-hidden":"true",style:{color:color,width:size,height:size,display:"inline-flex",fontSize:"inherit"},...restProps},icon)}}}]);