@memori.ai/memori-react 9.0.0-alpha.2 → 9.0.0-alpha.4

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 (604) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/dist/components/Header/ChatConsumptionDropdown.d.ts +3 -1
  3. package/dist/components/Header/ChatConsumptionDropdown.js +3 -2
  4. package/dist/components/Header/ChatConsumptionDropdown.js.map +1 -1
  5. package/dist/components/Header/Header.js +1 -1
  6. package/dist/components/Header/Header.js.map +1 -1
  7. package/dist/components/MemoriWidget/MemoriWidget.js +125 -126
  8. package/dist/components/MemoriWidget/MemoriWidget.js.map +1 -1
  9. package/dist/components/MobileSessionPanel/MobileSessionPanel.d.ts +3 -1
  10. package/dist/components/MobileSessionPanel/MobileSessionPanel.js +5 -4
  11. package/dist/components/MobileSessionPanel/MobileSessionPanel.js.map +1 -1
  12. package/dist/components/layouts/Chat.js +1 -1
  13. package/dist/components/layouts/Chat.js.map +1 -1
  14. package/dist/components/layouts/FullPage.js +1 -1
  15. package/dist/components/layouts/FullPage.js.map +1 -1
  16. package/dist/components/layouts/HiddenChat.js +2 -2
  17. package/dist/components/layouts/HiddenChat.js.map +1 -1
  18. package/dist/components/layouts/ZoomedFullBody.js +3 -3
  19. package/dist/components/layouts/ZoomedFullBody.js.map +1 -1
  20. package/dist/components/layouts/chat.css +6 -3
  21. package/dist/components/layouts/fullpage.css +3 -2
  22. package/dist/components/layouts/zoomed-full-body.css +167 -14
  23. package/dist/styles.css +1 -163
  24. package/dist/version.d.ts +1 -1
  25. package/dist/version.js +1 -1
  26. package/esm/components/Header/ChatConsumptionDropdown.d.ts +3 -1
  27. package/esm/components/Header/ChatConsumptionDropdown.js +4 -3
  28. package/esm/components/Header/ChatConsumptionDropdown.js.map +1 -1
  29. package/esm/components/Header/Header.js +2 -2
  30. package/esm/components/Header/Header.js.map +1 -1
  31. package/esm/components/MemoriWidget/MemoriWidget.js +126 -127
  32. package/esm/components/MemoriWidget/MemoriWidget.js.map +1 -1
  33. package/esm/components/MobileSessionPanel/MobileSessionPanel.d.ts +3 -1
  34. package/esm/components/MobileSessionPanel/MobileSessionPanel.js +5 -4
  35. package/esm/components/MobileSessionPanel/MobileSessionPanel.js.map +1 -1
  36. package/esm/components/layouts/Chat.js +1 -1
  37. package/esm/components/layouts/Chat.js.map +1 -1
  38. package/esm/components/layouts/FullPage.js +1 -1
  39. package/esm/components/layouts/FullPage.js.map +1 -1
  40. package/esm/components/layouts/HiddenChat.js +2 -2
  41. package/esm/components/layouts/HiddenChat.js.map +1 -1
  42. package/esm/components/layouts/ZoomedFullBody.js +3 -3
  43. package/esm/components/layouts/ZoomedFullBody.js.map +1 -1
  44. package/esm/components/layouts/chat.css +6 -3
  45. package/esm/components/layouts/fullpage.css +3 -2
  46. package/esm/components/layouts/zoomed-full-body.css +167 -14
  47. package/esm/styles.css +1 -163
  48. package/esm/version.d.ts +1 -1
  49. package/esm/version.js +1 -1
  50. package/package.json +9 -4
  51. package/src/components/BlockedMemoriBadge/__snapshots__/BlockedMemoriBadge.test.tsx.snap +10 -10
  52. package/src/components/Chat/__snapshots__/Chat.test.tsx.snap +162 -162
  53. package/src/components/ChatBubble/__snapshots__/ChatBubble.test.tsx.snap +90 -90
  54. package/src/components/CompletionProviderStatus/__snapshots__/CompletionProviderStatus.test.tsx.snap +6 -6
  55. package/src/components/FeedbackButtons/__snapshots__/FeedbackButtons.test.tsx.snap +2 -2
  56. package/src/components/Header/ChatConsumptionDropdown.tsx +11 -4
  57. package/src/components/Header/Header.tsx +8 -3
  58. package/src/components/Header/__snapshots__/Header.test.tsx.snap +77 -77
  59. package/src/components/MemoriWidget/MemoriWidget.tsx +304 -285
  60. package/src/components/MobileSessionPanel/MobileSessionPanel.tsx +44 -30
  61. package/src/components/ShareButton/__snapshots__/ShareButton.test.tsx.snap +18 -18
  62. package/src/components/StartPanel/__snapshots__/StartPanel.test.tsx.snap +32 -32
  63. package/src/components/UploadButton/__snapshots__/UploadButton.test.tsx.snap +2 -2
  64. package/src/components/layouts/Chat.tsx +2 -0
  65. package/src/components/layouts/FullPage.tsx +2 -0
  66. package/src/components/layouts/HiddenChat.tsx +3 -2
  67. package/src/components/layouts/ZoomedFullBody.tsx +5 -3
  68. package/src/components/layouts/__snapshots__/Chat.test.tsx.snap +8 -8
  69. package/src/components/layouts/__snapshots__/FullPage.test.tsx.snap +12 -12
  70. package/src/components/layouts/__snapshots__/HiddenChat.test.tsx.snap +6 -6
  71. package/src/components/layouts/__snapshots__/Totem.test.tsx.snap +10 -10
  72. package/src/components/layouts/__snapshots__/ZoomedFullBody.test.tsx.snap +145 -145
  73. package/src/components/layouts/chat.css +6 -3
  74. package/src/components/layouts/fullpage.css +3 -2
  75. package/src/components/layouts/layouts.stories.tsx +2 -2
  76. package/src/components/layouts/zoomed-full-body.css +167 -14
  77. package/src/styles.css +4 -1
  78. package/src/version.ts +1 -1
  79. package/dist/components/PositionDrawer/PositionDrawer.d.ts +0 -12
  80. package/dist/components/PositionDrawer/PositionDrawer.js +0 -17
  81. package/dist/components/PositionDrawer/PositionDrawer.js.map +0 -1
  82. package/dist/components/icons/AI.d.ts +0 -6
  83. package/dist/components/icons/AI.js +0 -6
  84. package/dist/components/icons/AI.js.map +0 -1
  85. package/dist/components/icons/Alert.d.ts +0 -6
  86. package/dist/components/icons/Alert.js +0 -6
  87. package/dist/components/icons/Alert.js.map +0 -1
  88. package/dist/components/icons/ArrowUp.d.ts +0 -6
  89. package/dist/components/icons/ArrowUp.js +0 -6
  90. package/dist/components/icons/ArrowUp.js.map +0 -1
  91. package/dist/components/icons/Bug.d.ts +0 -6
  92. package/dist/components/icons/Bug.js +0 -6
  93. package/dist/components/icons/Bug.js.map +0 -1
  94. package/dist/components/icons/Chat.d.ts +0 -6
  95. package/dist/components/icons/Chat.js +0 -6
  96. package/dist/components/icons/Chat.js.map +0 -1
  97. package/dist/components/icons/ChevronDown.d.ts +0 -6
  98. package/dist/components/icons/ChevronDown.js +0 -6
  99. package/dist/components/icons/ChevronDown.js.map +0 -1
  100. package/dist/components/icons/ChevronLeft.d.ts +0 -6
  101. package/dist/components/icons/ChevronLeft.js +0 -6
  102. package/dist/components/icons/ChevronLeft.js.map +0 -1
  103. package/dist/components/icons/ChevronRight.d.ts +0 -6
  104. package/dist/components/icons/ChevronRight.js +0 -6
  105. package/dist/components/icons/ChevronRight.js.map +0 -1
  106. package/dist/components/icons/ChevronUp.d.ts +0 -6
  107. package/dist/components/icons/ChevronUp.js +0 -6
  108. package/dist/components/icons/ChevronUp.js.map +0 -1
  109. package/dist/components/icons/Clear.d.ts +0 -6
  110. package/dist/components/icons/Clear.js +0 -6
  111. package/dist/components/icons/Clear.js.map +0 -1
  112. package/dist/components/icons/Close.d.ts +0 -7
  113. package/dist/components/icons/Close.js +0 -6
  114. package/dist/components/icons/Close.js.map +0 -1
  115. package/dist/components/icons/Code.d.ts +0 -6
  116. package/dist/components/icons/Code.js +0 -6
  117. package/dist/components/icons/Code.js.map +0 -1
  118. package/dist/components/icons/Copy.d.ts +0 -6
  119. package/dist/components/icons/Copy.js +0 -6
  120. package/dist/components/icons/Copy.js.map +0 -1
  121. package/dist/components/icons/DeepThought.d.ts +0 -6
  122. package/dist/components/icons/DeepThought.js +0 -6
  123. package/dist/components/icons/DeepThought.js.map +0 -1
  124. package/dist/components/icons/Delete.d.ts +0 -6
  125. package/dist/components/icons/Delete.js +0 -6
  126. package/dist/components/icons/Delete.js.map +0 -1
  127. package/dist/components/icons/Document.d.ts +0 -5
  128. package/dist/components/icons/Document.js +0 -10
  129. package/dist/components/icons/Document.js.map +0 -1
  130. package/dist/components/icons/Download.d.ts +0 -6
  131. package/dist/components/icons/Download.js +0 -6
  132. package/dist/components/icons/Download.js.map +0 -1
  133. package/dist/components/icons/Edit.d.ts +0 -6
  134. package/dist/components/icons/Edit.js +0 -6
  135. package/dist/components/icons/Edit.js.map +0 -1
  136. package/dist/components/icons/Expand.d.ts +0 -6
  137. package/dist/components/icons/Expand.js +0 -6
  138. package/dist/components/icons/Expand.js.map +0 -1
  139. package/dist/components/icons/Eye.d.ts +0 -6
  140. package/dist/components/icons/Eye.js +0 -6
  141. package/dist/components/icons/Eye.js.map +0 -1
  142. package/dist/components/icons/EyeInvisible.d.ts +0 -6
  143. package/dist/components/icons/EyeInvisible.js +0 -6
  144. package/dist/components/icons/EyeInvisible.js.map +0 -1
  145. package/dist/components/icons/Facebook.d.ts +0 -6
  146. package/dist/components/icons/Facebook.js +0 -6
  147. package/dist/components/icons/Facebook.js.map +0 -1
  148. package/dist/components/icons/Feedback.d.ts +0 -6
  149. package/dist/components/icons/Feedback.js +0 -6
  150. package/dist/components/icons/Feedback.js.map +0 -1
  151. package/dist/components/icons/File.d.ts +0 -6
  152. package/dist/components/icons/File.js +0 -6
  153. package/dist/components/icons/File.js.map +0 -1
  154. package/dist/components/icons/FileExcel.d.ts +0 -6
  155. package/dist/components/icons/FileExcel.js +0 -6
  156. package/dist/components/icons/FileExcel.js.map +0 -1
  157. package/dist/components/icons/FilePdf.d.ts +0 -6
  158. package/dist/components/icons/FilePdf.js +0 -6
  159. package/dist/components/icons/FilePdf.js.map +0 -1
  160. package/dist/components/icons/FileWord.d.ts +0 -6
  161. package/dist/components/icons/FileWord.js +0 -6
  162. package/dist/components/icons/FileWord.js.map +0 -1
  163. package/dist/components/icons/Fullscreen.d.ts +0 -6
  164. package/dist/components/icons/Fullscreen.js +0 -6
  165. package/dist/components/icons/Fullscreen.js.map +0 -1
  166. package/dist/components/icons/FullscreenExit.d.ts +0 -6
  167. package/dist/components/icons/FullscreenExit.js +0 -6
  168. package/dist/components/icons/FullscreenExit.js.map +0 -1
  169. package/dist/components/icons/Group.d.ts +0 -6
  170. package/dist/components/icons/Group.js +0 -6
  171. package/dist/components/icons/Group.js.map +0 -1
  172. package/dist/components/icons/History.d.ts +0 -7
  173. package/dist/components/icons/History.js +0 -6
  174. package/dist/components/icons/History.js.map +0 -1
  175. package/dist/components/icons/Image.d.ts +0 -4
  176. package/dist/components/icons/Image.js +0 -9
  177. package/dist/components/icons/Image.js.map +0 -1
  178. package/dist/components/icons/Info.d.ts +0 -6
  179. package/dist/components/icons/Info.js +0 -6
  180. package/dist/components/icons/Info.js.map +0 -1
  181. package/dist/components/icons/Link.d.ts +0 -6
  182. package/dist/components/icons/Link.js +0 -6
  183. package/dist/components/icons/Link.js.map +0 -1
  184. package/dist/components/icons/Linkedin.d.ts +0 -6
  185. package/dist/components/icons/Linkedin.js +0 -6
  186. package/dist/components/icons/Linkedin.js.map +0 -1
  187. package/dist/components/icons/Loading.d.ts +0 -7
  188. package/dist/components/icons/Loading.js +0 -10
  189. package/dist/components/icons/Loading.js.map +0 -1
  190. package/dist/components/icons/Logout.d.ts +0 -6
  191. package/dist/components/icons/Logout.js +0 -6
  192. package/dist/components/icons/Logout.js.map +0 -1
  193. package/dist/components/icons/Mail.d.ts +0 -6
  194. package/dist/components/icons/Mail.js +0 -6
  195. package/dist/components/icons/Mail.js.map +0 -1
  196. package/dist/components/icons/MapMarker.d.ts +0 -6
  197. package/dist/components/icons/MapMarker.js +0 -6
  198. package/dist/components/icons/MapMarker.js.map +0 -1
  199. package/dist/components/icons/MenuHorizontal.d.ts +0 -7
  200. package/dist/components/icons/MenuHorizontal.js +0 -6
  201. package/dist/components/icons/MenuHorizontal.js.map +0 -1
  202. package/dist/components/icons/MenuVertical.d.ts +0 -7
  203. package/dist/components/icons/MenuVertical.js +0 -6
  204. package/dist/components/icons/MenuVertical.js.map +0 -1
  205. package/dist/components/icons/Message.d.ts +0 -6
  206. package/dist/components/icons/Message.js +0 -6
  207. package/dist/components/icons/Message.js.map +0 -1
  208. package/dist/components/icons/Microphone.d.ts +0 -6
  209. package/dist/components/icons/Microphone.js +0 -6
  210. package/dist/components/icons/Microphone.js.map +0 -1
  211. package/dist/components/icons/Minus.d.ts +0 -6
  212. package/dist/components/icons/Minus.js +0 -6
  213. package/dist/components/icons/Minus.js.map +0 -1
  214. package/dist/components/icons/MinusCircle.d.ts +0 -6
  215. package/dist/components/icons/MinusCircle.js +0 -6
  216. package/dist/components/icons/MinusCircle.js.map +0 -1
  217. package/dist/components/icons/PaperClip.d.ts +0 -6
  218. package/dist/components/icons/PaperClip.js +0 -6
  219. package/dist/components/icons/PaperClip.js.map +0 -1
  220. package/dist/components/icons/Picture.d.ts +0 -6
  221. package/dist/components/icons/Picture.js +0 -6
  222. package/dist/components/icons/Picture.js.map +0 -1
  223. package/dist/components/icons/Plus.d.ts +0 -6
  224. package/dist/components/icons/Plus.js +0 -6
  225. package/dist/components/icons/Plus.js.map +0 -1
  226. package/dist/components/icons/Preview.d.ts +0 -4
  227. package/dist/components/icons/Preview.js +0 -9
  228. package/dist/components/icons/Preview.js.map +0 -1
  229. package/dist/components/icons/Print.d.ts +0 -6
  230. package/dist/components/icons/Print.js +0 -6
  231. package/dist/components/icons/Print.js.map +0 -1
  232. package/dist/components/icons/QuestionHelp.d.ts +0 -6
  233. package/dist/components/icons/QuestionHelp.js +0 -6
  234. package/dist/components/icons/QuestionHelp.js.map +0 -1
  235. package/dist/components/icons/Refresh.d.ts +0 -6
  236. package/dist/components/icons/Refresh.js +0 -6
  237. package/dist/components/icons/Refresh.js.map +0 -1
  238. package/dist/components/icons/SelectIcon.d.ts +0 -6
  239. package/dist/components/icons/SelectIcon.js +0 -6
  240. package/dist/components/icons/SelectIcon.js.map +0 -1
  241. package/dist/components/icons/Send.d.ts +0 -6
  242. package/dist/components/icons/Send.js +0 -6
  243. package/dist/components/icons/Send.js.map +0 -1
  244. package/dist/components/icons/Setting.d.ts +0 -6
  245. package/dist/components/icons/Setting.js +0 -6
  246. package/dist/components/icons/Setting.js.map +0 -1
  247. package/dist/components/icons/Share.d.ts +0 -6
  248. package/dist/components/icons/Share.js +0 -6
  249. package/dist/components/icons/Share.js.map +0 -1
  250. package/dist/components/icons/Sound.d.ts +0 -6
  251. package/dist/components/icons/Sound.js +0 -6
  252. package/dist/components/icons/Sound.js.map +0 -1
  253. package/dist/components/icons/SoundDeactivated.d.ts +0 -6
  254. package/dist/components/icons/SoundDeactivated.js +0 -6
  255. package/dist/components/icons/SoundDeactivated.js.map +0 -1
  256. package/dist/components/icons/Telegram.d.ts +0 -6
  257. package/dist/components/icons/Telegram.js +0 -6
  258. package/dist/components/icons/Telegram.js.map +0 -1
  259. package/dist/components/icons/ThumbDown.d.ts +0 -6
  260. package/dist/components/icons/ThumbDown.js +0 -6
  261. package/dist/components/icons/ThumbDown.js.map +0 -1
  262. package/dist/components/icons/ThumbUp.d.ts +0 -6
  263. package/dist/components/icons/ThumbUp.js +0 -6
  264. package/dist/components/icons/ThumbUp.js.map +0 -1
  265. package/dist/components/icons/Translation.d.ts +0 -6
  266. package/dist/components/icons/Translation.js +0 -6
  267. package/dist/components/icons/Translation.js.map +0 -1
  268. package/dist/components/icons/Twitter.d.ts +0 -6
  269. package/dist/components/icons/Twitter.js +0 -6
  270. package/dist/components/icons/Twitter.js.map +0 -1
  271. package/dist/components/icons/Upload.d.ts +0 -4
  272. package/dist/components/icons/Upload.js +0 -9
  273. package/dist/components/icons/Upload.js.map +0 -1
  274. package/dist/components/icons/User.d.ts +0 -6
  275. package/dist/components/icons/User.js +0 -6
  276. package/dist/components/icons/User.js.map +0 -1
  277. package/dist/components/icons/Warning.d.ts +0 -6
  278. package/dist/components/icons/Warning.js +0 -6
  279. package/dist/components/icons/Warning.js.map +0 -1
  280. package/dist/components/icons/WhatsApp.d.ts +0 -6
  281. package/dist/components/icons/WhatsApp.js +0 -6
  282. package/dist/components/icons/WhatsApp.js.map +0 -1
  283. package/dist/components/icons/loading.css +0 -14
  284. package/dist/components/layouts/WebsiteAssistant.d.ts +0 -4
  285. package/dist/components/layouts/WebsiteAssistant.js +0 -38
  286. package/dist/components/layouts/WebsiteAssistant.js.map +0 -1
  287. package/dist/components/layouts/website-assistant.css +0 -676
  288. package/dist/components/ui/Alert.css +0 -93
  289. package/dist/components/ui/Alert.d.ts +0 -18
  290. package/dist/components/ui/Alert.js +0 -42
  291. package/dist/components/ui/Alert.js.map +0 -1
  292. package/dist/components/ui/Button.css +0 -167
  293. package/dist/components/ui/Button.d.ts +0 -27
  294. package/dist/components/ui/Button.js +0 -23
  295. package/dist/components/ui/Button.js.map +0 -1
  296. package/dist/components/ui/Card.css +0 -65
  297. package/dist/components/ui/Card.d.ts +0 -13
  298. package/dist/components/ui/Card.js +0 -14
  299. package/dist/components/ui/Card.js.map +0 -1
  300. package/dist/components/ui/Checkbox.css +0 -116
  301. package/dist/components/ui/Checkbox.d.ts +0 -11
  302. package/dist/components/ui/Checkbox.js +0 -20
  303. package/dist/components/ui/Checkbox.js.map +0 -1
  304. package/dist/components/ui/ConfirmDialog.css +0 -42
  305. package/dist/components/ui/ConfirmDialog.d.ts +0 -11
  306. package/dist/components/ui/ConfirmDialog.js +0 -12
  307. package/dist/components/ui/ConfirmDialog.js.map +0 -1
  308. package/dist/components/ui/Details.css +0 -66
  309. package/dist/components/ui/Drawer.css +0 -270
  310. package/dist/components/ui/Drawer.d.ts +0 -46
  311. package/dist/components/ui/Drawer.js +0 -60
  312. package/dist/components/ui/Drawer.js.map +0 -1
  313. package/dist/components/ui/Dropdown.css +0 -173
  314. package/dist/components/ui/Dropdown.d.ts +0 -11
  315. package/dist/components/ui/Dropdown.js +0 -33
  316. package/dist/components/ui/Dropdown.js.map +0 -1
  317. package/dist/components/ui/Expandable.css +0 -15
  318. package/dist/components/ui/Expandable.d.ts +0 -15
  319. package/dist/components/ui/Expandable.js +0 -59
  320. package/dist/components/ui/Expandable.js.map +0 -1
  321. package/dist/components/ui/Modal.css +0 -98
  322. package/dist/components/ui/Modal.d.ts +0 -16
  323. package/dist/components/ui/Modal.js +0 -24
  324. package/dist/components/ui/Modal.js.map +0 -1
  325. package/dist/components/ui/Select.css +0 -138
  326. package/dist/components/ui/Select.d.ts +0 -17
  327. package/dist/components/ui/Select.js +0 -17
  328. package/dist/components/ui/Select.js.map +0 -1
  329. package/dist/components/ui/Slider.css +0 -192
  330. package/dist/components/ui/Slider.d.ts +0 -12
  331. package/dist/components/ui/Slider.js +0 -78
  332. package/dist/components/ui/Slider.js.map +0 -1
  333. package/dist/components/ui/Spin.css +0 -31
  334. package/dist/components/ui/Spin.d.ts +0 -9
  335. package/dist/components/ui/Spin.js +0 -12
  336. package/dist/components/ui/Spin.js.map +0 -1
  337. package/dist/components/ui/Table.css +0 -132
  338. package/dist/components/ui/Tooltip.css +0 -171
  339. package/dist/components/ui/Tooltip.d.ts +0 -11
  340. package/dist/components/ui/Tooltip.js +0 -90
  341. package/dist/components/ui/Tooltip.js.map +0 -1
  342. package/esm/components/PositionDrawer/PositionDrawer.d.ts +0 -12
  343. package/esm/components/PositionDrawer/PositionDrawer.js +0 -14
  344. package/esm/components/PositionDrawer/PositionDrawer.js.map +0 -1
  345. package/esm/components/icons/AI.d.ts +0 -6
  346. package/esm/components/icons/AI.js +0 -4
  347. package/esm/components/icons/AI.js.map +0 -1
  348. package/esm/components/icons/Alert.d.ts +0 -6
  349. package/esm/components/icons/Alert.js +0 -4
  350. package/esm/components/icons/Alert.js.map +0 -1
  351. package/esm/components/icons/ArrowUp.d.ts +0 -6
  352. package/esm/components/icons/ArrowUp.js +0 -4
  353. package/esm/components/icons/ArrowUp.js.map +0 -1
  354. package/esm/components/icons/Bug.d.ts +0 -6
  355. package/esm/components/icons/Bug.js +0 -4
  356. package/esm/components/icons/Bug.js.map +0 -1
  357. package/esm/components/icons/Chat.d.ts +0 -6
  358. package/esm/components/icons/Chat.js +0 -4
  359. package/esm/components/icons/Chat.js.map +0 -1
  360. package/esm/components/icons/ChevronDown.d.ts +0 -6
  361. package/esm/components/icons/ChevronDown.js +0 -4
  362. package/esm/components/icons/ChevronDown.js.map +0 -1
  363. package/esm/components/icons/ChevronLeft.d.ts +0 -6
  364. package/esm/components/icons/ChevronLeft.js +0 -4
  365. package/esm/components/icons/ChevronLeft.js.map +0 -1
  366. package/esm/components/icons/ChevronRight.d.ts +0 -6
  367. package/esm/components/icons/ChevronRight.js +0 -4
  368. package/esm/components/icons/ChevronRight.js.map +0 -1
  369. package/esm/components/icons/ChevronUp.d.ts +0 -6
  370. package/esm/components/icons/ChevronUp.js +0 -4
  371. package/esm/components/icons/ChevronUp.js.map +0 -1
  372. package/esm/components/icons/Clear.d.ts +0 -6
  373. package/esm/components/icons/Clear.js +0 -4
  374. package/esm/components/icons/Clear.js.map +0 -1
  375. package/esm/components/icons/Close.d.ts +0 -7
  376. package/esm/components/icons/Close.js +0 -4
  377. package/esm/components/icons/Close.js.map +0 -1
  378. package/esm/components/icons/Code.d.ts +0 -6
  379. package/esm/components/icons/Code.js +0 -4
  380. package/esm/components/icons/Code.js.map +0 -1
  381. package/esm/components/icons/Copy.d.ts +0 -6
  382. package/esm/components/icons/Copy.js +0 -4
  383. package/esm/components/icons/Copy.js.map +0 -1
  384. package/esm/components/icons/DeepThought.d.ts +0 -6
  385. package/esm/components/icons/DeepThought.js +0 -4
  386. package/esm/components/icons/DeepThought.js.map +0 -1
  387. package/esm/components/icons/Delete.d.ts +0 -6
  388. package/esm/components/icons/Delete.js +0 -4
  389. package/esm/components/icons/Delete.js.map +0 -1
  390. package/esm/components/icons/Document.d.ts +0 -5
  391. package/esm/components/icons/Document.js +0 -6
  392. package/esm/components/icons/Document.js.map +0 -1
  393. package/esm/components/icons/Download.d.ts +0 -6
  394. package/esm/components/icons/Download.js +0 -4
  395. package/esm/components/icons/Download.js.map +0 -1
  396. package/esm/components/icons/Edit.d.ts +0 -6
  397. package/esm/components/icons/Edit.js +0 -4
  398. package/esm/components/icons/Edit.js.map +0 -1
  399. package/esm/components/icons/Expand.d.ts +0 -6
  400. package/esm/components/icons/Expand.js +0 -4
  401. package/esm/components/icons/Expand.js.map +0 -1
  402. package/esm/components/icons/Eye.d.ts +0 -6
  403. package/esm/components/icons/Eye.js +0 -4
  404. package/esm/components/icons/Eye.js.map +0 -1
  405. package/esm/components/icons/EyeInvisible.d.ts +0 -6
  406. package/esm/components/icons/EyeInvisible.js +0 -4
  407. package/esm/components/icons/EyeInvisible.js.map +0 -1
  408. package/esm/components/icons/Facebook.d.ts +0 -6
  409. package/esm/components/icons/Facebook.js +0 -4
  410. package/esm/components/icons/Facebook.js.map +0 -1
  411. package/esm/components/icons/Feedback.d.ts +0 -6
  412. package/esm/components/icons/Feedback.js +0 -4
  413. package/esm/components/icons/Feedback.js.map +0 -1
  414. package/esm/components/icons/File.d.ts +0 -6
  415. package/esm/components/icons/File.js +0 -4
  416. package/esm/components/icons/File.js.map +0 -1
  417. package/esm/components/icons/FileExcel.d.ts +0 -6
  418. package/esm/components/icons/FileExcel.js +0 -4
  419. package/esm/components/icons/FileExcel.js.map +0 -1
  420. package/esm/components/icons/FilePdf.d.ts +0 -6
  421. package/esm/components/icons/FilePdf.js +0 -4
  422. package/esm/components/icons/FilePdf.js.map +0 -1
  423. package/esm/components/icons/FileWord.d.ts +0 -6
  424. package/esm/components/icons/FileWord.js +0 -4
  425. package/esm/components/icons/FileWord.js.map +0 -1
  426. package/esm/components/icons/Fullscreen.d.ts +0 -6
  427. package/esm/components/icons/Fullscreen.js +0 -4
  428. package/esm/components/icons/Fullscreen.js.map +0 -1
  429. package/esm/components/icons/FullscreenExit.d.ts +0 -6
  430. package/esm/components/icons/FullscreenExit.js +0 -4
  431. package/esm/components/icons/FullscreenExit.js.map +0 -1
  432. package/esm/components/icons/Group.d.ts +0 -6
  433. package/esm/components/icons/Group.js +0 -4
  434. package/esm/components/icons/Group.js.map +0 -1
  435. package/esm/components/icons/History.d.ts +0 -7
  436. package/esm/components/icons/History.js +0 -4
  437. package/esm/components/icons/History.js.map +0 -1
  438. package/esm/components/icons/Image.d.ts +0 -4
  439. package/esm/components/icons/Image.js +0 -5
  440. package/esm/components/icons/Image.js.map +0 -1
  441. package/esm/components/icons/Info.d.ts +0 -6
  442. package/esm/components/icons/Info.js +0 -4
  443. package/esm/components/icons/Info.js.map +0 -1
  444. package/esm/components/icons/Link.d.ts +0 -6
  445. package/esm/components/icons/Link.js +0 -4
  446. package/esm/components/icons/Link.js.map +0 -1
  447. package/esm/components/icons/Linkedin.d.ts +0 -6
  448. package/esm/components/icons/Linkedin.js +0 -4
  449. package/esm/components/icons/Linkedin.js.map +0 -1
  450. package/esm/components/icons/Loading.d.ts +0 -7
  451. package/esm/components/icons/Loading.js +0 -7
  452. package/esm/components/icons/Loading.js.map +0 -1
  453. package/esm/components/icons/Logout.d.ts +0 -6
  454. package/esm/components/icons/Logout.js +0 -4
  455. package/esm/components/icons/Logout.js.map +0 -1
  456. package/esm/components/icons/Mail.d.ts +0 -6
  457. package/esm/components/icons/Mail.js +0 -4
  458. package/esm/components/icons/Mail.js.map +0 -1
  459. package/esm/components/icons/MapMarker.d.ts +0 -6
  460. package/esm/components/icons/MapMarker.js +0 -4
  461. package/esm/components/icons/MapMarker.js.map +0 -1
  462. package/esm/components/icons/MenuHorizontal.d.ts +0 -7
  463. package/esm/components/icons/MenuHorizontal.js +0 -4
  464. package/esm/components/icons/MenuHorizontal.js.map +0 -1
  465. package/esm/components/icons/MenuVertical.d.ts +0 -7
  466. package/esm/components/icons/MenuVertical.js +0 -4
  467. package/esm/components/icons/MenuVertical.js.map +0 -1
  468. package/esm/components/icons/Message.d.ts +0 -6
  469. package/esm/components/icons/Message.js +0 -4
  470. package/esm/components/icons/Message.js.map +0 -1
  471. package/esm/components/icons/Microphone.d.ts +0 -6
  472. package/esm/components/icons/Microphone.js +0 -4
  473. package/esm/components/icons/Microphone.js.map +0 -1
  474. package/esm/components/icons/Minus.d.ts +0 -6
  475. package/esm/components/icons/Minus.js +0 -4
  476. package/esm/components/icons/Minus.js.map +0 -1
  477. package/esm/components/icons/MinusCircle.d.ts +0 -6
  478. package/esm/components/icons/MinusCircle.js +0 -4
  479. package/esm/components/icons/MinusCircle.js.map +0 -1
  480. package/esm/components/icons/PaperClip.d.ts +0 -6
  481. package/esm/components/icons/PaperClip.js +0 -4
  482. package/esm/components/icons/PaperClip.js.map +0 -1
  483. package/esm/components/icons/Picture.d.ts +0 -6
  484. package/esm/components/icons/Picture.js +0 -4
  485. package/esm/components/icons/Picture.js.map +0 -1
  486. package/esm/components/icons/Plus.d.ts +0 -6
  487. package/esm/components/icons/Plus.js +0 -4
  488. package/esm/components/icons/Plus.js.map +0 -1
  489. package/esm/components/icons/Preview.d.ts +0 -4
  490. package/esm/components/icons/Preview.js +0 -5
  491. package/esm/components/icons/Preview.js.map +0 -1
  492. package/esm/components/icons/Print.d.ts +0 -6
  493. package/esm/components/icons/Print.js +0 -4
  494. package/esm/components/icons/Print.js.map +0 -1
  495. package/esm/components/icons/QuestionHelp.d.ts +0 -6
  496. package/esm/components/icons/QuestionHelp.js +0 -4
  497. package/esm/components/icons/QuestionHelp.js.map +0 -1
  498. package/esm/components/icons/Refresh.d.ts +0 -6
  499. package/esm/components/icons/Refresh.js +0 -4
  500. package/esm/components/icons/Refresh.js.map +0 -1
  501. package/esm/components/icons/SelectIcon.d.ts +0 -6
  502. package/esm/components/icons/SelectIcon.js +0 -4
  503. package/esm/components/icons/SelectIcon.js.map +0 -1
  504. package/esm/components/icons/Send.d.ts +0 -6
  505. package/esm/components/icons/Send.js +0 -4
  506. package/esm/components/icons/Send.js.map +0 -1
  507. package/esm/components/icons/Setting.d.ts +0 -6
  508. package/esm/components/icons/Setting.js +0 -4
  509. package/esm/components/icons/Setting.js.map +0 -1
  510. package/esm/components/icons/Share.d.ts +0 -6
  511. package/esm/components/icons/Share.js +0 -4
  512. package/esm/components/icons/Share.js.map +0 -1
  513. package/esm/components/icons/Sound.d.ts +0 -6
  514. package/esm/components/icons/Sound.js +0 -4
  515. package/esm/components/icons/Sound.js.map +0 -1
  516. package/esm/components/icons/SoundDeactivated.d.ts +0 -6
  517. package/esm/components/icons/SoundDeactivated.js +0 -4
  518. package/esm/components/icons/SoundDeactivated.js.map +0 -1
  519. package/esm/components/icons/Telegram.d.ts +0 -6
  520. package/esm/components/icons/Telegram.js +0 -4
  521. package/esm/components/icons/Telegram.js.map +0 -1
  522. package/esm/components/icons/ThumbDown.d.ts +0 -6
  523. package/esm/components/icons/ThumbDown.js +0 -4
  524. package/esm/components/icons/ThumbDown.js.map +0 -1
  525. package/esm/components/icons/ThumbUp.d.ts +0 -6
  526. package/esm/components/icons/ThumbUp.js +0 -4
  527. package/esm/components/icons/ThumbUp.js.map +0 -1
  528. package/esm/components/icons/Translation.d.ts +0 -6
  529. package/esm/components/icons/Translation.js +0 -4
  530. package/esm/components/icons/Translation.js.map +0 -1
  531. package/esm/components/icons/Twitter.d.ts +0 -6
  532. package/esm/components/icons/Twitter.js +0 -4
  533. package/esm/components/icons/Twitter.js.map +0 -1
  534. package/esm/components/icons/Upload.d.ts +0 -4
  535. package/esm/components/icons/Upload.js +0 -5
  536. package/esm/components/icons/Upload.js.map +0 -1
  537. package/esm/components/icons/User.d.ts +0 -6
  538. package/esm/components/icons/User.js +0 -4
  539. package/esm/components/icons/User.js.map +0 -1
  540. package/esm/components/icons/Warning.d.ts +0 -6
  541. package/esm/components/icons/Warning.js +0 -4
  542. package/esm/components/icons/Warning.js.map +0 -1
  543. package/esm/components/icons/WhatsApp.d.ts +0 -6
  544. package/esm/components/icons/WhatsApp.js +0 -4
  545. package/esm/components/icons/WhatsApp.js.map +0 -1
  546. package/esm/components/icons/loading.css +0 -14
  547. package/esm/components/layouts/WebsiteAssistant.d.ts +0 -4
  548. package/esm/components/layouts/WebsiteAssistant.js +0 -35
  549. package/esm/components/layouts/WebsiteAssistant.js.map +0 -1
  550. package/esm/components/layouts/website-assistant.css +0 -676
  551. package/esm/components/ui/Alert.css +0 -93
  552. package/esm/components/ui/Alert.d.ts +0 -18
  553. package/esm/components/ui/Alert.js +0 -39
  554. package/esm/components/ui/Alert.js.map +0 -1
  555. package/esm/components/ui/Button.css +0 -167
  556. package/esm/components/ui/Button.d.ts +0 -27
  557. package/esm/components/ui/Button.js +0 -20
  558. package/esm/components/ui/Button.js.map +0 -1
  559. package/esm/components/ui/Card.css +0 -65
  560. package/esm/components/ui/Card.d.ts +0 -13
  561. package/esm/components/ui/Card.js +0 -11
  562. package/esm/components/ui/Card.js.map +0 -1
  563. package/esm/components/ui/Checkbox.css +0 -116
  564. package/esm/components/ui/Checkbox.d.ts +0 -11
  565. package/esm/components/ui/Checkbox.js +0 -17
  566. package/esm/components/ui/Checkbox.js.map +0 -1
  567. package/esm/components/ui/ConfirmDialog.css +0 -42
  568. package/esm/components/ui/ConfirmDialog.d.ts +0 -11
  569. package/esm/components/ui/ConfirmDialog.js +0 -9
  570. package/esm/components/ui/ConfirmDialog.js.map +0 -1
  571. package/esm/components/ui/Details.css +0 -66
  572. package/esm/components/ui/Drawer.css +0 -270
  573. package/esm/components/ui/Drawer.d.ts +0 -46
  574. package/esm/components/ui/Drawer.js +0 -57
  575. package/esm/components/ui/Drawer.js.map +0 -1
  576. package/esm/components/ui/Dropdown.css +0 -173
  577. package/esm/components/ui/Dropdown.d.ts +0 -11
  578. package/esm/components/ui/Dropdown.js +0 -30
  579. package/esm/components/ui/Dropdown.js.map +0 -1
  580. package/esm/components/ui/Expandable.css +0 -15
  581. package/esm/components/ui/Expandable.d.ts +0 -15
  582. package/esm/components/ui/Expandable.js +0 -56
  583. package/esm/components/ui/Expandable.js.map +0 -1
  584. package/esm/components/ui/Modal.css +0 -98
  585. package/esm/components/ui/Modal.d.ts +0 -16
  586. package/esm/components/ui/Modal.js +0 -21
  587. package/esm/components/ui/Modal.js.map +0 -1
  588. package/esm/components/ui/Select.css +0 -138
  589. package/esm/components/ui/Select.d.ts +0 -17
  590. package/esm/components/ui/Select.js +0 -14
  591. package/esm/components/ui/Select.js.map +0 -1
  592. package/esm/components/ui/Slider.css +0 -192
  593. package/esm/components/ui/Slider.d.ts +0 -12
  594. package/esm/components/ui/Slider.js +0 -75
  595. package/esm/components/ui/Slider.js.map +0 -1
  596. package/esm/components/ui/Spin.css +0 -31
  597. package/esm/components/ui/Spin.d.ts +0 -9
  598. package/esm/components/ui/Spin.js +0 -9
  599. package/esm/components/ui/Spin.js.map +0 -1
  600. package/esm/components/ui/Table.css +0 -132
  601. package/esm/components/ui/Tooltip.css +0 -171
  602. package/esm/components/ui/Tooltip.d.ts +0 -11
  603. package/esm/components/ui/Tooltip.js +0 -87
  604. package/esm/components/ui/Tooltip.js.map +0 -1
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- const Feedback = ({ className, title, }) => (_jsxs("svg", { ...(!title ? { 'aria-hidden': 'true' } : {}), focusable: "false", role: "img", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", className: className, "aria-label": title, children: [_jsx("path", { fill: "none", d: "M0 0h24v24H0V0z" }), _jsx("path", { d: "M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17l-.59.59-.58.58V4h16v12zm-9-4h2v2h-2zm0-6h2v4h-2z" })] }));
3
- export default Feedback;
4
- //# sourceMappingURL=Feedback.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Feedback.js","sourceRoot":"","sources":["../../../src/components/icons/Feedback.tsx"],"names":[],"mappings":";AAEA,MAAM,QAAQ,GAAG,CAAC,EAChB,SAAS,EACT,KAAK,GAIN,EAAE,EAAE,CAAC,CACJ,kBACM,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,aAAa,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAC7C,SAAS,EAAC,OAAO,EACjB,IAAI,EAAC,KAAK,EACV,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,WAAW,EACnB,SAAS,EAAE,SAAS,gBACR,KAAK,aAEjB,eAAM,IAAI,EAAC,MAAM,EAAC,CAAC,EAAC,iBAAiB,GAAQ,EAC7C,eAAM,CAAC,EAAC,sIAAsI,GAAQ,IAClJ,CACP,CAAC;AAEF,eAAe,QAAQ,CAAC"}
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- declare const File: ({ className, title }: {
3
- className?: string | undefined;
4
- title?: string | undefined;
5
- }) => JSX.Element;
6
- export default File;
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- const File = ({ className, title }) => (_jsx("svg", { ...(!title ? { 'aria-hidden': 'true' } : {}), xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 1024 1024", focusable: "false", role: "img", className: className, "aria-label": title, children: _jsx("path", { d: "M854.6 288.6L639.4 73.4c-6-6-14.1-9.4-22.6-9.4H192c-17.7 0-32 14.3-32 32v832c0 17.7 14.3 32 32 32h640c17.7 0 32-14.3 32-32V311.3c0-8.5-3.4-16.7-9.4-22.7zM790.2 326H602V137.8L790.2 326zm1.8 562H232V136h302v216a42 42 0 0 0 42 42h216v494z" }) }));
3
- export default File;
4
- //# sourceMappingURL=File.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"File.js","sourceRoot":"","sources":["../../../src/components/icons/File.tsx"],"names":[],"mappings":";AAEA,MAAM,IAAI,GAAG,CAAC,EAAE,SAAS,EAAE,KAAK,EAA0C,EAAE,EAAE,CAAC,CAC7E,iBACM,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,aAAa,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAC7C,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,eAAe,EACvB,SAAS,EAAC,OAAO,EACjB,IAAI,EAAC,KAAK,EACV,SAAS,EAAE,SAAS,gBACR,KAAK,YAEjB,eAAM,CAAC,EAAC,6OAA6O,GAAG,GACpP,CACP,CAAC;AAEF,eAAe,IAAI,CAAC"}
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- declare const FileExcel: ({ className, title, }: {
3
- className?: string | undefined;
4
- title?: string | undefined;
5
- }) => JSX.Element;
6
- export default FileExcel;
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- const FileExcel = ({ className, title, }) => (_jsx("svg", { ...(!title ? { 'aria-hidden': 'true' } : {}), xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 1024 1024", focusable: "false", role: "img", className: className, "aria-label": title, children: _jsx("path", { d: "M854.6 288.6L639.4 73.4c-6-6-14.1-9.4-22.6-9.4H192c-17.7 0-32 14.3-32 32v832c0 17.7 14.3 32 32 32h640c17.7 0 32-14.3 32-32V311.3c0-8.5-3.4-16.7-9.4-22.7zM790.2 326H602V137.8L790.2 326zm1.8 562H232V136h302v216a42 42 0 0 0 42 42h216v494zM514.1 580.1l-61.8-102.4c-2.2-3.6-6.1-5.8-10.3-5.8h-38.4c-2.3 0-4.5.6-6.4 1.9-5.6 3.5-7.3 10.9-3.7 16.6l82.3 130.4-83.4 132.8a12.04 12.04 0 0 0 10.2 18.4h34.5c4.2 0 8-2.2 10.2-5.7L510 664.8l62.3 101.4c2.2 3.6 6.1 5.7 10.2 5.7H620c2.3 0 4.5-.7 6.5-1.9 5.6-3.6 7.2-11 3.6-16.6l-84-130.4 85.3-132.5a12.04 12.04 0 0 0-10.1-18.5h-35.7c-4.2 0-8.1 2.2-10.3 5.8l-61.2 102.3z" }) }));
3
- export default FileExcel;
4
- //# sourceMappingURL=FileExcel.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"FileExcel.js","sourceRoot":"","sources":["../../../src/components/icons/FileExcel.tsx"],"names":[],"mappings":";AAEA,MAAM,SAAS,GAAG,CAAC,EACjB,SAAS,EACT,KAAK,GAIN,EAAE,EAAE,CAAC,CACJ,iBACM,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,aAAa,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAC7C,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,eAAe,EACvB,SAAS,EAAC,OAAO,EACjB,IAAI,EAAC,KAAK,EACV,SAAS,EAAE,SAAS,gBACR,KAAK,YAEjB,eAAM,CAAC,EAAC,2lBAA2lB,GAAG,GAClmB,CACP,CAAC;AAEF,eAAe,SAAS,CAAC"}
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- declare const FilePdf: ({ className, title, }: {
3
- className?: string | undefined;
4
- title?: string | undefined;
5
- }) => JSX.Element;
6
- export default FilePdf;
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- const FilePdf = ({ className, title, }) => (_jsx("svg", { ...(!title ? { 'aria-hidden': 'true' } : {}), xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 1024 1024", focusable: "false", role: "img", className: className, "aria-label": title, children: _jsx("path", { d: "M531.3 574.4l.3-1.4c5.8-23.9 13.1-53.7 7.4-80.7-3.8-21.3-19.5-29.6-32.9-30.2-15.8-.7-29.9 8.3-33.4 21.4-6.6 24-.7 56.8 10.1 98.6-13.6 32.4-35.3 79.5-51.2 107.5-29.6 15.3-69.3 38.9-75.2 68.7-1.2 5.5.2 12.5 3.5 18.8 3.7 7 9.6 12.4 16.5 15 3 1.1 6.6 2 10.8 2 17.6 0 46.1-14.2 84.1-79.4 5.8-1.9 11.8-3.9 17.6-5.9 27.2-9.2 55.4-18.8 80.9-23.1 28.2 15.1 60.3 24.8 82.1 24.8 21.6 0 30.1-12.8 33.3-20.5 5.6-13.5 2.9-30.5-6.2-39.6-13.2-13-45.3-16.4-95.3-10.2-24.6-15-40.7-35.4-52.4-65.8zM421.6 726.3c-13.9 20.2-24.4 30.3-30.1 34.7 6.7-12.3 19.8-25.3 30.1-34.7zm87.6-235.5c5.2 8.9 4.5 35.8.5 49.4-4.9-19.9-5.6-48.1-2.7-51.4.8.1 1.5.7 2.2 2zm-1.6 120.5c10.7 18.5 24.2 34.4 39.1 46.2-21.6 4.9-41.3 13-58.9 20.2-4.2 1.7-8.3 3.4-12.3 5 13.3-24.1 24.4-51.4 32.1-71.4zm155.6 65.5c.1.2.2.5-.4.9h-.2l-.2.3c-.8.5-9 5.3-44.3-8.6 40.6-1.9 45 7.3 45.1 7.4zm191.4-388.2L639.4 73.4c-6-6-14.1-9.4-22.6-9.4H192c-17.7 0-32 14.3-32 32v832c0 17.7 14.3 32 32 32h640c17.7 0 32-14.3 32-32V311.3c0-8.5-3.4-16.7-9.4-22.7zM790.2 326H602V137.8L790.2 326zm1.8 562H232V136h302v216a42 42 0 0 0 42 42h216v494z" }) }));
3
- export default FilePdf;
4
- //# sourceMappingURL=FilePdf.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"FilePdf.js","sourceRoot":"","sources":["../../../src/components/icons/FilePdf.tsx"],"names":[],"mappings":";AAEA,MAAM,OAAO,GAAG,CAAC,EACf,SAAS,EACT,KAAK,GAIN,EAAE,EAAE,CAAC,CACJ,iBACM,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,aAAa,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAC7C,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,eAAe,EACvB,SAAS,EAAC,OAAO,EACjB,IAAI,EAAC,KAAK,EACV,SAAS,EAAE,SAAS,gBACR,KAAK,YAEjB,eAAM,CAAC,EAAC,+iCAA+iC,GAAG,GACtjC,CACP,CAAC;AAEF,eAAe,OAAO,CAAC"}
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- declare const FileWord: ({ className, title, }: {
3
- className?: string | undefined;
4
- title?: string | undefined;
5
- }) => JSX.Element;
6
- export default FileWord;
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- const FileWord = ({ className, title, }) => (_jsx("svg", { ...(!title ? { 'aria-hidden': 'true' } : {}), xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 1024 1024", focusable: "false", role: "img", className: className, "aria-label": title, children: _jsx("path", { d: "M854.6 288.6L639.4 73.4c-6-6-14.1-9.4-22.6-9.4H192c-17.7 0-32 14.3-32 32v832c0 17.7 14.3 32 32 32h640c17.7 0 32-14.3 32-32V311.3c0-8.5-3.4-16.7-9.4-22.7zM790.2 326H602V137.8L790.2 326zm1.8 562H232V136h302v216a42 42 0 0 0 42 42h216v494zM528.1 472h-32.2c-5.5 0-10.3 3.7-11.6 9.1L434.6 680l-46.1-198.7c-1.3-5.4-6.1-9.3-11.7-9.3h-35.4a12.02 12.02 0 0 0-11.6 15.1l74.2 276c1.4 5.2 6.2 8.9 11.6 8.9h32c5.4 0 10.2-3.6 11.6-8.9l52.8-197 52.8 197c1.4 5.2 6.2 8.9 11.6 8.9h31.8c5.4 0 10.2-3.6 11.6-8.9l74.4-276a12.04 12.04 0 0 0-11.6-15.1H647c-5.6 0-10.4 3.9-11.7 9.3l-45.8 199.1-49.8-199.3c-1.3-5.4-6.1-9.1-11.6-9.1z" }) }));
3
- export default FileWord;
4
- //# sourceMappingURL=FileWord.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"FileWord.js","sourceRoot":"","sources":["../../../src/components/icons/FileWord.tsx"],"names":[],"mappings":";AAEA,MAAM,QAAQ,GAAG,CAAC,EAChB,SAAS,EACT,KAAK,GAIN,EAAE,EAAE,CAAC,CACJ,iBACM,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,aAAa,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAC7C,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,eAAe,EACvB,SAAS,EAAC,OAAO,EACjB,IAAI,EAAC,KAAK,EACV,SAAS,EAAE,SAAS,gBACR,KAAK,YAEjB,eAAM,CAAC,EAAC,imBAAimB,GAAG,GACxmB,CACP,CAAC;AAEF,eAAe,QAAQ,CAAC"}
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- declare const Fullscreen: ({ className, title, }: {
3
- className?: string | undefined;
4
- title?: string | undefined;
5
- }) => JSX.Element;
6
- export default Fullscreen;
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- const Fullscreen = ({ className, title, }) => (_jsx("svg", { ...(!title ? { 'aria-hidden': 'true' } : {}), xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 1024 1024", focusable: "false", role: "img", className: className, "aria-label": title, children: _jsx("path", { d: "M290 236.4l43.9-43.9a8.01 8.01 0 0 0-4.7-13.6L169 160c-5.1-.6-9.5 3.7-8.9 8.9L179 329.1c.8 6.6 8.9 9.4 13.6 4.7l43.7-43.7L370 423.7c3.1 3.1 8.2 3.1 11.3 0l42.4-42.3c3.1-3.1 3.1-8.2 0-11.3L290 236.4zm352.7 187.3c3.1 3.1 8.2 3.1 11.3 0l133.7-133.6 43.7 43.7a8.01 8.01 0 0 0 13.6-4.7L863.9 169c.6-5.1-3.7-9.5-8.9-8.9L694.8 179c-6.6.8-9.4 8.9-4.7 13.6l43.9 43.9L600.3 370a8.03 8.03 0 0 0 0 11.3l42.4 42.4zM845 694.9c-.8-6.6-8.9-9.4-13.6-4.7l-43.7 43.7L654 600.3a8.03 8.03 0 0 0-11.3 0l-42.4 42.3a8.03 8.03 0 0 0 0 11.3L734 787.6l-43.9 43.9a8.01 8.01 0 0 0 4.7 13.6L855 864c5.1.6 9.5-3.7 8.9-8.9L845 694.9zm-463.7-94.6a8.03 8.03 0 0 0-11.3 0L236.3 733.9l-43.7-43.7a8.01 8.01 0 0 0-13.6 4.7L160.1 855c-.6 5.1 3.7 9.5 8.9 8.9L329.2 845c6.6-.8 9.4-8.9 4.7-13.6L290 787.6 423.7 654c3.1-3.1 3.1-8.2 0-11.3l-42.4-42.4z" }) }));
3
- export default Fullscreen;
4
- //# sourceMappingURL=Fullscreen.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Fullscreen.js","sourceRoot":"","sources":["../../../src/components/icons/Fullscreen.tsx"],"names":[],"mappings":";AAEA,MAAM,UAAU,GAAG,CAAC,EAClB,SAAS,EACT,KAAK,GAIN,EAAE,EAAE,CAAC,CACJ,iBACM,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,aAAa,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAC7C,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,eAAe,EACvB,SAAS,EAAC,OAAO,EACjB,IAAI,EAAC,KAAK,EACV,SAAS,EAAE,SAAS,gBACR,KAAK,YAEjB,eAAM,CAAC,EAAC,yyBAAyyB,GAAG,GAChzB,CACP,CAAC;AAEF,eAAe,UAAU,CAAC"}
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- declare const FullscreenExit: ({ className, title, }: {
3
- className?: string | undefined;
4
- title?: string | undefined;
5
- }) => JSX.Element;
6
- export default FullscreenExit;
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- const FullscreenExit = ({ className, title, }) => (_jsx("svg", { ...(!title ? { 'aria-hidden': 'true' } : {}), xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 1024 1024", focusable: "false", role: "img", className: className, "aria-label": title, children: _jsx("path", { d: "M391 240.9c-.8-6.6-8.9-9.4-13.6-4.7l-43.7 43.7L200 146.3a8.03 8.03 0 0 0-11.3 0l-42.4 42.3a8.03 8.03 0 0 0 0 11.3L280 333.6l-43.9 43.9a8.01 8.01 0 0 0 4.7 13.6L401 410c5.1.6 9.5-3.7 8.9-8.9L391 240.9zm10.1 373.2L240.8 633c-6.6.8-9.4 8.9-4.7 13.6l43.9 43.9L146.3 824a8.03 8.03 0 0 0 0 11.3l42.4 42.3c3.1 3.1 8.2 3.1 11.3 0L333.7 744l43.7 43.7A8.01 8.01 0 0 0 391 783l18.9-160.1c.6-5.1-3.7-9.4-8.8-8.8zm221.8-204.2L783.2 391c6.6-.8 9.4-8.9 4.7-13.6L744 333.6 877.7 200c3.1-3.1 3.1-8.2 0-11.3l-42.4-42.3a8.03 8.03 0 0 0-11.3 0L690.3 279.9l-43.7-43.7a8.01 8.01 0 0 0-13.6 4.7L614.1 401c-.6 5.2 3.7 9.5 8.8 8.9zM744 690.4l43.9-43.9a8.01 8.01 0 0 0-4.7-13.6L623 614c-5.1-.6-9.5 3.7-8.9 8.9L633 783.1c.8 6.6 8.9 9.4 13.6 4.7l43.7-43.7L824 877.7c3.1 3.1 8.2 3.1 11.3 0l42.4-42.3c3.1-3.1 3.1-8.2 0-11.3L744 690.4z" }) }));
3
- export default FullscreenExit;
4
- //# sourceMappingURL=FullscreenExit.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"FullscreenExit.js","sourceRoot":"","sources":["../../../src/components/icons/FullscreenExit.tsx"],"names":[],"mappings":";AAEA,MAAM,cAAc,GAAG,CAAC,EACtB,SAAS,EACT,KAAK,GAIN,EAAE,EAAE,CAAC,CACJ,iBACM,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,aAAa,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAC7C,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,eAAe,EACvB,SAAS,EAAC,OAAO,EACjB,IAAI,EAAC,KAAK,EACV,SAAS,EAAE,SAAS,gBACR,KAAK,YAEjB,eAAM,CAAC,EAAC,syBAAsyB,GAAG,GAC7yB,CACP,CAAC;AAEF,eAAe,cAAc,CAAC"}
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- declare const Group: ({ className, title, }: {
3
- className?: string | undefined;
4
- title?: string | undefined;
5
- }) => JSX.Element;
6
- export default Group;
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- const Group = ({ className, title, }) => (_jsx("svg", { ...(!title ? { 'aria-hidden': 'true' } : {}), focusable: "false", role: "img", xmlns: "http://www.w3.org/2000/svg", fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", width: "20", height: "16", viewBox: "0 0 640 512", className: className, "aria-label": title, children: _jsx("path", { d: "M211.2 96a64 64 0 10-128 0 64 64 0 10128 0zM32 256c0 17.7 14.3 32 32 32h85.6c10.1-39.4 38.6-71.5 75.8-86.6-9.7-6-21.2-9.4-33.4-9.4H96c-35.3 0-64 28.7-64 64zm461.6 32H576c17.7 0 32-14.3 32-32 0-35.3-28.7-64-64-64h-96c-11.7 0-22.7 3.1-32.1 8.6 38.1 14.8 67.4 47.3 77.7 87.4zm-102.4-61.6c-6.9-1.6-14.2-2.4-21.6-2.4h-96c-8.5 0-16.7 1.1-24.5 3.1-30.8 8.1-55.6 31.1-66.1 60.9-3.5 10-5.5 20.8-5.5 32 0 17.7 14.3 32 32 32h224c17.7 0 32-14.3 32-32 0-11.2-1.9-22-5.5-32-10.8-30.7-36.8-54.2-68.9-61.6zM563.2 96a64 64 0 10-128 0 64 64 0 10128 0zm-241.6 96a80 80 0 100-160 80 80 0 100 160zM32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32h576c17.7 0 32-14.3 32-32s-14.3-32-32-32H32z" }) }));
3
- export default Group;
4
- //# sourceMappingURL=Group.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Group.js","sourceRoot":"","sources":["../../../src/components/icons/Group.tsx"],"names":[],"mappings":";AAEA,MAAM,KAAK,GAAG,CAAC,EACb,SAAS,EACT,KAAK,GAIN,EAAE,EAAE,CAAC,CACJ,iBACM,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,aAAa,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAC7C,SAAS,EAAC,OAAO,EACjB,IAAI,EAAC,KAAK,EACV,KAAK,EAAC,4BAA4B,EAClC,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,WAAW,EAAC,GAAG,EACf,KAAK,EAAC,IAAI,EACV,MAAM,EAAC,IAAI,EACX,OAAO,EAAC,aAAa,EACrB,SAAS,EAAE,SAAS,gBACR,KAAK,YAEjB,eAAM,CAAC,EAAC,ypBAAypB,GAAQ,GACrqB,CACP,CAAC;AAEF,eAAe,KAAK,CAAC"}
@@ -1,7 +0,0 @@
1
- /// <reference types="react" />
2
- declare const History: ({ className, title, disabled, }: {
3
- className?: string | undefined;
4
- title?: string | undefined;
5
- disabled?: boolean | undefined;
6
- }) => JSX.Element;
7
- export default History;
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- const History = ({ className, title, disabled, }) => (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: 800, height: 800, fill: "none", viewBox: "0 0 24 24", className: className, "aria-label": title, children: [_jsx("path", { stroke: disabled ? '#000000' : '#ffff', strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 8v4l2.5 2.5" }), _jsx("path", { fill: disabled ? '#000000' : '#ffff', d: "m5.604 5.604-.53-.53.53.53ZM4.338 6.871l-.75.003a.75.75 0 0 0 .746.747l.004-.75Zm2.542.762a.75.75 0 1 0 .007-1.5l-.007 1.5ZM5.075 4.321a.75.75 0 0 0-1.5.008l1.5-.008ZM3.75 12a.75.75 0 0 0-1.5 0h1.5Zm13.125 8.445a.75.75 0 1 0-.75-1.298l.75 1.298Zm2.272-4.32a.75.75 0 1 0 1.298.75l-1.298-.75ZM5.14 5.07a.75.75 0 1 0 1.056 1.066L5.14 5.071Zm13.722.067c-3.82-3.82-9.993-3.859-13.788-.064l1.06 1.06c3.2-3.199 8.423-3.18 11.668.065l1.06-1.061ZM5.074 5.074 3.808 6.34l1.06 1.06 1.267-1.265-1.061-1.061Zm-.74 2.547 2.546.012.007-1.5-2.545-.012-.008 1.5Zm.754-.754L5.075 4.32l-1.5.008.013 2.545 1.5-.007ZM12 3.75A8.25 8.25 0 0 1 20.25 12h1.5c0-5.385-4.365-9.75-9.75-9.75v1.5Zm0 16.5A8.25 8.25 0 0 1 3.75 12h-1.5c0 5.385 4.365 9.75 9.75 9.75v-1.5Zm4.125-1.103A8.209 8.209 0 0 1 12 20.25v1.5c1.775 0 3.44-.475 4.875-1.305l-.75-1.298ZM20.25 12a8.209 8.209 0 0 1-1.103 4.125l1.298.75A9.708 9.708 0 0 0 21.75 12h-1.5ZM6.196 6.137A8.221 8.221 0 0 1 12 3.75v-1.5a9.721 9.721 0 0 0-6.86 2.821l1.056 1.066Z" })] }));
3
- export default History;
4
- //# sourceMappingURL=History.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"History.js","sourceRoot":"","sources":["../../../src/components/icons/History.tsx"],"names":[],"mappings":";AACA,MAAM,OAAO,GAAG,CAAC,EACb,SAAS,EACT,KAAK,EACL,QAAQ,GAKT,EAAE,EAAE,CAAC,CACN,eACE,KAAK,EAAC,4BAA4B,EAClC,KAAK,EAAE,GAAG,EACV,MAAM,EAAE,GAAG,EACX,IAAI,EAAC,MAAM,EACX,OAAO,EAAC,WAAW,EACnB,SAAS,EAAE,SAAS,gBACR,KAAK,aAEjB,eACE,MAAM,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,OAAO,EACtC,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,WAAW,EAAE,CAAC,EACd,CAAC,EAAC,iBAAiB,GACnB,EACF,eACE,IAAI,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,OAAO,EACpC,CAAC,EAAC,89BAA89B,GACh+B,IACE,CACP,CAAA;AACD,eAAe,OAAO,CAAA"}
@@ -1,4 +0,0 @@
1
- import React from 'react';
2
- export declare const ImageIcon: React.FC<{
3
- className?: string;
4
- }>;
@@ -1,5 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- export const ImageIcon = ({ className }) => {
3
- return (_jsxs("svg", { className: className, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [_jsx("rect", { x: "3", y: "3", width: "18", height: "18", rx: "2", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("circle", { cx: "8.5", cy: "8.5", r: "1.5", fill: "currentColor" }), _jsx("path", { d: "M21 15L16 10L5 21", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })] }));
4
- };
5
- //# sourceMappingURL=Image.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Image.js","sourceRoot":"","sources":["../../../src/components/icons/Image.tsx"],"names":[],"mappings":";AAEA,MAAM,CAAC,MAAM,SAAS,GAAqC,CAAC,EAAE,SAAS,EAAE,EAAE,EAAE;IACzE,OAAO,CACL,eACE,SAAS,EAAE,SAAS,EACpB,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,KAAK,EAAC,4BAA4B,aAElC,eACE,CAAC,EAAC,GAAG,EACL,CAAC,EAAC,GAAG,EACL,KAAK,EAAC,IAAI,EACV,MAAM,EAAC,IAAI,EACX,EAAE,EAAC,GAAG,EACN,MAAM,EAAC,cAAc,EACrB,WAAW,EAAC,KAAK,EACjB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,GACtB,EACF,iBACE,EAAE,EAAC,KAAK,EACR,EAAE,EAAC,KAAK,EACR,CAAC,EAAC,KAAK,EACP,IAAI,EAAC,cAAc,GACnB,EACF,eACE,CAAC,EAAC,mBAAmB,EACrB,MAAM,EAAC,cAAc,EACrB,WAAW,EAAC,KAAK,EACjB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,GACtB,IACE,CACP,CAAC;AACJ,CAAC,CAAC"}
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- declare const Info: ({ className, title }: {
3
- className?: string | undefined;
4
- title?: string | undefined;
5
- }) => JSX.Element;
6
- export default Info;
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- const Info = ({ className, title }) => (_jsxs("svg", { width: "800px", height: "800px", viewBox: "0 0 24 24", fill: "none", ...(!title ? { 'aria-hidden': 'true' } : {}), xmlns: "http://www.w3.org/2000/svg", className: className, "aria-label": title, children: [_jsx("circle", { cx: "12", cy: "12", r: "10", stroke: "currentColor", strokeWidth: "1.5" }), _jsx("path", { d: "M12 17V11", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round" }), _jsx("circle", { cx: "1", cy: "1", r: "1", transform: "matrix(1 0 0 -1 11 9)", fill: "currentColor" })] }));
3
- export default Info;
4
- //# sourceMappingURL=Info.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Info.js","sourceRoot":"","sources":["../../../src/components/icons/Info.tsx"],"names":[],"mappings":";AAEA,MAAM,IAAI,GAAG,CAAC,EAAE,SAAS,EAAE,KAAK,EAA0C,EAAE,EAAE,CAAC,CAC7E,eACE,KAAK,EAAC,OAAO,EACb,MAAM,EAAC,OAAO,EACd,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,KACP,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,aAAa,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAC7C,KAAK,EAAC,4BAA4B,EAClC,SAAS,EAAE,SAAS,gBACR,KAAK,aAEjB,iBAAQ,EAAE,EAAC,IAAI,EAAC,EAAE,EAAC,IAAI,EAAC,CAAC,EAAC,IAAI,EAAC,MAAM,EAAC,cAAc,EAAC,WAAW,EAAC,KAAK,GAAG,EACzE,eACE,CAAC,EAAC,WAAW,EACb,MAAM,EAAC,cAAc,EACrB,WAAW,EAAC,KAAK,EACjB,aAAa,EAAC,OAAO,GACrB,EACF,iBACE,EAAE,EAAC,GAAG,EACN,EAAE,EAAC,GAAG,EACN,CAAC,EAAC,GAAG,EACL,SAAS,EAAC,uBAAuB,EACjC,IAAI,EAAC,cAAc,GACnB,IACE,CACP,CAAC;AAEF,eAAe,IAAI,CAAC"}
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- declare const Link: ({ className, title }: {
3
- className?: string | undefined;
4
- title?: string | undefined;
5
- }) => JSX.Element;
6
- export default Link;
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- const Link = ({ className, title }) => (_jsx("svg", { ...(!title ? { 'aria-hidden': 'true' } : {}), focusable: "false", role: "img", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 1024 1024", className: className, "aria-label": title, children: _jsx("path", { d: "M574 665.4a8.03 8.03 0 0 0-11.3 0L446.5 781.6c-53.8 53.8-144.6 59.5-204 0-59.5-59.5-53.8-150.2 0-204l116.2-116.2c3.1-3.1 3.1-8.2 0-11.3l-39.8-39.8a8.03 8.03 0 0 0-11.3 0L191.4 526.5c-84.6 84.6-84.6 221.5 0 306s221.5 84.6 306 0l116.2-116.2c3.1-3.1 3.1-8.2 0-11.3L574 665.4zm258.6-474c-84.6-84.6-221.5-84.6-306 0L410.3 307.6a8.03 8.03 0 0 0 0 11.3l39.7 39.7c3.1 3.1 8.2 3.1 11.3 0l116.2-116.2c53.8-53.8 144.6-59.5 204 0 59.5 59.5 53.8 150.2 0 204L665.3 562.6a8.03 8.03 0 0 0 0 11.3l39.8 39.8c3.1 3.1 8.2 3.1 11.3 0l116.2-116.2c84.5-84.6 84.5-221.5 0-306.1zM610.1 372.3a8.03 8.03 0 0 0-11.3 0L372.3 598.7a8.03 8.03 0 0 0 0 11.3l39.6 39.6c3.1 3.1 8.2 3.1 11.3 0l226.4-226.4c3.1-3.1 3.1-8.2 0-11.3l-39.5-39.6z" }) }));
3
- export default Link;
4
- //# sourceMappingURL=Link.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Link.js","sourceRoot":"","sources":["../../../src/components/icons/Link.tsx"],"names":[],"mappings":";AAEA,MAAM,IAAI,GAAG,CAAC,EAAE,SAAS,EAAE,KAAK,EAA0C,EAAE,EAAE,CAAC,CAC7E,iBACM,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,aAAa,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAC7C,SAAS,EAAC,OAAO,EACjB,IAAI,EAAC,KAAK,EACV,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,eAAe,EACvB,SAAS,EAAE,SAAS,gBACR,KAAK,YAEjB,eAAM,CAAC,EAAC,ksBAAksB,GAAG,GACzsB,CACP,CAAC;AAEF,eAAe,IAAI,CAAC"}
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- declare const LinkedIn: ({ className, title, }: {
3
- className?: string | undefined;
4
- title?: string | undefined;
5
- }) => JSX.Element;
6
- export default LinkedIn;
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- const LinkedIn = ({ className, title, }) => (_jsx("svg", { ...(!title ? { 'aria-hidden': 'true' } : {}), focusable: "false", role: "img", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 1024 1024", className: className, "aria-label": title, children: _jsx("path", { d: "M847.7 112H176.3c-35.5 0-64.3 28.8-64.3 64.3v671.4c0 35.5 28.8 64.3 64.3 64.3h671.4c35.5 0 64.3-28.8 64.3-64.3V176.3c0-35.5-28.8-64.3-64.3-64.3zm0 736c-447.8-.1-671.7-.2-671.7-.3.1-447.8.2-671.7.3-671.7 447.8.1 671.7.2 671.7.3-.1 447.8-.2 671.7-.3 671.7zM230.6 411.9h118.7v381.8H230.6zm59.4-52.2c37.9 0 68.8-30.8 68.8-68.8a68.8 68.8 0 1 0-137.6 0c-.1 38 30.7 68.8 68.8 68.8zm252.3 245.1c0-49.8 9.5-98 71.2-98 60.8 0 61.7 56.9 61.7 101.2v185.7h118.6V584.3c0-102.8-22.2-181.9-142.3-181.9-57.7 0-96.4 31.7-112.3 61.7h-1.6v-52.2H423.7v381.8h118.6V604.8z" }) }));
3
- export default LinkedIn;
4
- //# sourceMappingURL=Linkedin.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Linkedin.js","sourceRoot":"","sources":["../../../src/components/icons/Linkedin.tsx"],"names":[],"mappings":";AAEA,MAAM,QAAQ,GAAG,CAAC,EAChB,SAAS,EACT,KAAK,GAIN,EAAE,EAAE,CAAC,CACJ,iBACM,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,aAAa,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAC7C,SAAS,EAAC,OAAO,EACjB,IAAI,EAAC,KAAK,EACV,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,eAAe,EACvB,SAAS,EAAE,SAAS,gBACR,KAAK,YAEjB,eAAM,CAAC,EAAC,uiBAAuiB,GAAG,GAC9iB,CACP,CAAC;AAEF,eAAe,QAAQ,CAAC"}
@@ -1,7 +0,0 @@
1
- /// <reference types="react" />
2
- declare const Loading: ({ className, title, loading, }: {
3
- className?: string | undefined;
4
- title?: string | undefined;
5
- loading?: boolean | undefined;
6
- }) => JSX.Element;
7
- export default Loading;
@@ -1,7 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- import cx from 'classnames';
3
- const Loading = ({ className, title, loading = true, }) => (_jsx("svg", { ...(!title ? { 'aria-hidden': 'true' } : {}), xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 1024 1024", focusable: "false", role: "img", className: cx(className, {
4
- 'memori-loading-icon': loading,
5
- }), "aria-label": title, children: _jsx("path", { d: "M988 548c-19.9 0-36-16.1-36-36 0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 00-94.3-139.9 437.71 437.71 0 00-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.3C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7 26.7 63.1 40.2 130.2 40.2 199.3.1 19.9-16 36-35.9 36z" }) }));
6
- export default Loading;
7
- //# sourceMappingURL=Loading.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Loading.js","sourceRoot":"","sources":["../../../src/components/icons/Loading.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,MAAM,YAAY,CAAC;AAE5B,MAAM,OAAO,GAAG,CAAC,EACf,SAAS,EACT,KAAK,EACL,OAAO,GAAG,IAAI,GAKf,EAAE,EAAE,CAAC,CACJ,iBACM,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,aAAa,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAC7C,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,eAAe,EACvB,SAAS,EAAC,OAAO,EACjB,IAAI,EAAC,KAAK,EACV,SAAS,EAAE,EAAE,CAAC,SAAS,EAAE;QACvB,qBAAqB,EAAE,OAAO;KAC/B,CAAC,gBACU,KAAK,YAEjB,eAAM,CAAC,EAAC,6TAA6T,GAAQ,GACzU,CACP,CAAC;AAEF,eAAe,OAAO,CAAC"}
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- declare const Logout: ({ className, title }: {
3
- className?: string | undefined;
4
- title?: string | undefined;
5
- }) => JSX.Element;
6
- export default Logout;
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- const Logout = ({ className, title }) => (_jsxs("svg", { width: "800px", height: "800px", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", className: className, "aria-label": title, children: [_jsx("path", { d: "M15 12L2 12M2 12L5.5 9M2 12L5.5 15", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("path", { d: "M9.00195 7C9.01406 4.82497 9.11051 3.64706 9.87889 2.87868C10.7576 2 12.1718 2 15.0002 2L16.0002 2C18.8286 2 20.2429 2 21.1215 2.87868C22.0002 3.75736 22.0002 5.17157 22.0002 8L22.0002 16C22.0002 18.8284 22.0002 20.2426 21.1215 21.1213C20.3531 21.8897 19.1752 21.9862 17 21.9983M9.00195 17C9.01406 19.175 9.11051 20.3529 9.87889 21.1213C10.5202 21.7626 11.4467 21.9359 13 21.9827", stroke: "currentColor", strokeWidth: 1.5, strokeLinecap: "round" })] }));
3
- export default Logout;
4
- //# sourceMappingURL=Logout.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Logout.js","sourceRoot":"","sources":["../../../src/components/icons/Logout.tsx"],"names":[],"mappings":";AACA,MAAM,MAAM,GAAG,CAAC,EAAE,SAAS,EAAE,KAAK,EAA0C,EAAE,EAAE,CAAC,CAC/E,eACE,KAAK,EAAC,OAAO,EACb,MAAM,EAAC,OAAO,EACd,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,KAAK,EAAC,4BAA4B,EAClC,SAAS,EAAE,SAAS,gBACR,KAAK,aAEjB,eACE,CAAC,EAAC,oCAAoC,EACtC,MAAM,EAAC,cAAc,EACrB,WAAW,EAAE,GAAG,EAChB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,GACtB,EACF,eACE,CAAC,EAAC,6XAA6X,EAC/X,MAAM,EAAC,cAAc,EACrB,WAAW,EAAE,GAAG,EAChB,aAAa,EAAC,OAAO,GACrB,IACE,CACP,CAAC;AACF,eAAe,MAAM,CAAC"}
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- declare const Mail: ({ className, title }: {
3
- className?: string | undefined;
4
- title?: string | undefined;
5
- }) => JSX.Element;
6
- export default Mail;
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- const Mail = ({ className, title }) => (_jsx("svg", { ...(!title ? { 'aria-hidden': 'true' } : {}), focusable: "false", role: "img", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 1024 1024", className: className, "aria-label": title, children: _jsx("path", { d: "M928 160H96c-17.7 0-32 14.3-32 32v640c0 17.7 14.3 32 32 32h832c17.7 0 32-14.3 32-32V192c0-17.7-14.3-32-32-32zm-40 110.8V792H136V270.8l-27.6-21.5 39.3-50.5 42.8 33.3h643.1l42.8-33.3 39.3 50.5-27.7 21.5zM833.6 232L512 482 190.4 232l-42.8-33.3-39.3 50.5 27.6 21.5 341.6 265.6a55.99 55.99 0 0 0 68.7 0L888 270.8l27.6-21.5-39.3-50.5-42.7 33.2z" }) }));
3
- export default Mail;
4
- //# sourceMappingURL=Mail.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Mail.js","sourceRoot":"","sources":["../../../src/components/icons/Mail.tsx"],"names":[],"mappings":";AAEA,MAAM,IAAI,GAAG,CAAC,EAAE,SAAS,EAAE,KAAK,EAA0C,EAAE,EAAE,CAAC,CAC7E,iBACM,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,aAAa,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAC7C,SAAS,EAAC,OAAO,EACjB,IAAI,EAAC,KAAK,EACV,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,eAAe,EACvB,SAAS,EAAE,SAAS,gBACR,KAAK,YAEjB,eAAM,CAAC,EAAC,oVAAoV,GAAG,GAC3V,CACP,CAAC;AAEF,eAAe,IAAI,CAAC"}
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- declare const MapMarker: ({ className, title, }: {
3
- className?: string | undefined;
4
- title?: string | undefined;
5
- }) => JSX.Element;
6
- export default MapMarker;
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- const MapMarker = ({ className, title, }) => (_jsx("svg", { ...(!title ? { 'aria-hidden': 'true' } : {}), focusable: "false", role: "img", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 384 512", className: className, "aria-label": title, children: _jsx("path", { fill: "currentColor", d: "M172.268 501.67C26.97 291.031 0 269.413 0 192 0 85.961 85.961 0 192 0s192 85.961 192 192c0 77.413-26.97 99.031-172.268 309.67-9.535 13.774-29.93 13.773-39.464 0zM192 272c44.183 0 80-35.817 80-80s-35.817-80-80-80-80 35.817-80 80 35.817 80 80 80z" }) }));
3
- export default MapMarker;
4
- //# sourceMappingURL=MapMarker.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"MapMarker.js","sourceRoot":"","sources":["../../../src/components/icons/MapMarker.tsx"],"names":[],"mappings":";AAEA,MAAM,SAAS,GAAG,CAAC,EACjB,SAAS,EACT,KAAK,GAIN,EAAE,EAAE,CAAC,CACJ,iBACM,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,aAAa,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAC7C,SAAS,EAAC,OAAO,EACjB,IAAI,EAAC,KAAK,EACV,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,aAAa,EACrB,SAAS,EAAE,SAAS,gBACR,KAAK,YAEjB,eACE,IAAI,EAAC,cAAc,EACnB,CAAC,EAAC,sPAAsP,GAClP,GACJ,CACP,CAAC;AAEF,eAAe,SAAS,CAAC"}
@@ -1,7 +0,0 @@
1
- /// <reference types="react" />
2
- declare const MenuHorizontal: ({ className, title, stroke, }: {
3
- className?: string | undefined;
4
- title?: string | undefined;
5
- stroke?: string | undefined;
6
- }) => JSX.Element;
7
- export default MenuHorizontal;
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- const MenuHorizontal = ({ className, title, stroke, }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: 800, height: 800, fill: "none", viewBox: "0 0 24 24", className: className, "aria-label": title, children: _jsx("path", { stroke: stroke, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M19 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM12 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2ZM5 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z" }) }));
3
- export default MenuHorizontal;
4
- //# sourceMappingURL=MenuHorizontal.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"MenuHorizontal.js","sourceRoot":"","sources":["../../../src/components/icons/MenuHorizontal.tsx"],"names":[],"mappings":";AACA,MAAM,cAAc,GAAG,CAAC,EACpB,SAAS,EACT,KAAK,EACL,MAAM,GAKP,EAAE,EAAE,CAAC,CACN,cACE,KAAK,EAAC,4BAA4B,EAClC,KAAK,EAAE,GAAG,EACV,MAAM,EAAE,GAAG,EACX,IAAI,EAAC,MAAM,EACX,OAAO,EAAC,WAAW,EACnB,SAAS,EAAE,SAAS,gBACR,KAAK,YAEjB,eACE,MAAM,EAAE,MAAM,EACd,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,WAAW,EAAE,CAAC,EACd,CAAC,EAAC,0GAA0G,GAC5G,GACE,CACP,CAAA;AACD,eAAe,cAAc,CAAA"}
@@ -1,7 +0,0 @@
1
- /// <reference types="react" />
2
- declare const MenuVertical: ({ className, title, bold, }: {
3
- className?: string | undefined;
4
- title?: string | undefined;
5
- bold?: boolean | undefined;
6
- }) => JSX.Element;
7
- export default MenuVertical;
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- const MenuVertical = ({ className, title, bold = false, }) => (_jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: 800, height: 800, fill: "none", viewBox: "0 0 24 24", className: className, "aria-label": title, children: _jsx("path", { stroke: "#000", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: bold ? 3 : 2, d: "M13 5a1 1 0 1 0-2 0 1 1 0 0 0 2 0ZM13 12a1 1 0 1 0-2 0 1 1 0 0 0 2 0ZM13 19a1 1 0 1 0-2 0 1 1 0 0 0 2 0Z" }) }));
3
- export default MenuVertical;
4
- //# sourceMappingURL=MenuVertical.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"MenuVertical.js","sourceRoot":"","sources":["../../../src/components/icons/MenuVertical.tsx"],"names":[],"mappings":";AACA,MAAM,YAAY,GAAG,CAAC,EAClB,SAAS,EACT,KAAK,EACL,IAAI,GAAG,KAAK,GAKb,EAAE,EAAE,CAAC,CACN,cACE,KAAK,EAAC,4BAA4B,EAClC,KAAK,EAAE,GAAG,EACV,MAAM,EAAE,GAAG,EACX,IAAI,EAAC,MAAM,EACX,OAAO,EAAC,WAAW,EACnB,SAAS,EAAE,SAAS,gBACR,KAAK,YAEjB,eACE,MAAM,EAAC,MAAM,EACb,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,WAAW,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EACzB,CAAC,EAAC,0GAA0G,GAC5G,GACE,CACP,CAAA;AACD,eAAe,YAAY,CAAA"}
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- declare const Message: ({ className, title, }: {
3
- className?: string | undefined;
4
- title?: string | undefined;
5
- }) => JSX.Element;
6
- export default Message;
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- const Message = ({ className, title, }) => (_jsx("svg", { ...(!title ? { 'aria-hidden': 'true' } : {}), xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 1024 1024", focusable: "false", role: "img", className: className, "aria-label": title, children: _jsx("path", { d: "M464 512a48 48 0 1096 0 48 48 0 10-96 0zm200 0a48 48 0 1096 0 48 48 0 10-96 0zm-400 0a48 48 0 1096 0 48 48 0 10-96 0zm661.2-173.6c-22.6-53.7-55-101.9-96.3-143.3a444.35 444.35 0 00-143.3-96.3C630.6 75.7 572.2 64 512 64h-2c-60.6.3-119.3 12.3-174.5 35.9a445.35 445.35 0 00-142 96.5c-40.9 41.3-73 89.3-95.2 142.8-23 55.4-34.6 114.3-34.3 174.9A449.4 449.4 0 00112 714v152a46 46 0 0046 46h152.1A449.4 449.4 0 00510 960h2.1c59.9 0 118-11.6 172.7-34.3a444.48 444.48 0 00142.8-95.2c41.3-40.9 73.8-88.7 96.5-142 23.6-55.2 35.6-113.9 35.9-174.5.3-60.9-11.5-120-34.8-175.6zm-151.1 438C704 845.8 611 884 512 884h-1.7c-60.3-.3-120.2-15.3-173.1-43.5l-8.4-4.5H188V695.2l-4.5-8.4C155.3 633.9 140.3 574 140 513.7c-.4-99.7 37.7-193.3 107.6-263.8 69.8-70.5 163.1-109.5 262.8-109.9h1.7c50 0 98.5 9.7 144.2 28.9 44.6 18.7 84.6 45.6 119 80 34.3 34.3 61.3 74.4 80 119 19.4 46.2 29.1 95.2 28.9 145.8-.6 99.6-39.7 192.9-110.1 262.7z" }) }));
3
- export default Message;
4
- //# sourceMappingURL=Message.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Message.js","sourceRoot":"","sources":["../../../src/components/icons/Message.tsx"],"names":[],"mappings":";AAEA,MAAM,OAAO,GAAG,CAAC,EACf,SAAS,EACT,KAAK,GAIN,EAAE,EAAE,CAAC,CACJ,iBACM,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,aAAa,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAC7C,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,eAAe,EACvB,SAAS,EAAC,OAAO,EACjB,IAAI,EAAC,KAAK,EACV,SAAS,EAAE,SAAS,gBACR,KAAK,YAEjB,eAAM,CAAC,EAAC,44BAA44B,GAAQ,GACx5B,CACP,CAAC;AAEF,eAAe,OAAO,CAAC"}
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- declare const Microphone: ({ className, title, }: {
3
- className?: string | undefined;
4
- title?: string | undefined;
5
- }) => JSX.Element;
6
- export default Microphone;
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- const Microphone = ({ className, title, }) => (_jsx("svg", { ...(!title ? { 'aria-hidden': 'true' } : {}), xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 1024 1024", focusable: "false", role: "img", className: className, "aria-label": title, children: _jsx("path", { d: "M842 454c0-4.4-3.6-8-8-8h-60c-4.4 0-8 3.6-8 8 0 140.3-113.7 254-254 254S258 594.3 258 454c0-4.4-3.6-8-8-8h-60c-4.4 0-8 3.6-8 8 0 168.7 126.6 307.9 290 327.6V884H326.7c-13.7 0-24.7 14.3-24.7 32v36c0 4.4 2.8 8 6.2 8h407.6c3.4 0 6.2-3.6 6.2-8v-36c0-17.7-11-32-24.7-32H548V782.1c165.3-18 294-158 294-328.1zM512 624c93.9 0 170-75.2 170-168V232c0-92.8-76.1-168-170-168s-170 75.2-170 168v224c0 92.8 76.1 168 170 168zm-94-392c0-50.6 41.9-92 94-92s94 41.4 94 92v224c0 50.6-41.9 92-94 92s-94-41.4-94-92V232z" }) }));
3
- export default Microphone;
4
- //# sourceMappingURL=Microphone.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Microphone.js","sourceRoot":"","sources":["../../../src/components/icons/Microphone.tsx"],"names":[],"mappings":";AAEA,MAAM,UAAU,GAAG,CAAC,EAClB,SAAS,EACT,KAAK,GAIN,EAAE,EAAE,CAAC,CACJ,iBACM,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,aAAa,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAC7C,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,eAAe,EACvB,SAAS,EAAC,OAAO,EACjB,IAAI,EAAC,KAAK,EACV,SAAS,EAAE,SAAS,gBACR,KAAK,YAEjB,eAAM,CAAC,EAAC,mfAAmf,GAAQ,GAC/f,CACP,CAAC;AAEF,eAAe,UAAU,CAAC"}
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- declare const Minus: ({ className, title, }: {
3
- className?: string | undefined;
4
- title?: string | undefined;
5
- }) => JSX.Element;
6
- export default Minus;
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- const Minus = ({ className, title, }) => (_jsx("svg", { ...(!title ? { 'aria-hidden': 'true' } : {}), focusable: "false", role: "img", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 1024 1024", className: className, "aria-label": title, children: _jsx("path", { d: "M872 474H152c-4.4 0-8 3.6-8 8v60c0 4.4 3.6 8 8 8h720c4.4 0 8-3.6 8-8v-60c0-4.4-3.6-8-8-8z" }) }));
3
- export default Minus;
4
- //# sourceMappingURL=Minus.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Minus.js","sourceRoot":"","sources":["../../../src/components/icons/Minus.tsx"],"names":[],"mappings":";AAEA,MAAM,KAAK,GAAG,CAAC,EACb,SAAS,EACT,KAAK,GAIN,EAAE,EAAE,CAAC,CACJ,iBACM,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,aAAa,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAC7C,SAAS,EAAC,OAAO,EACjB,IAAI,EAAC,KAAK,EACV,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,eAAe,EACvB,SAAS,EAAE,SAAS,gBACR,KAAK,YAEjB,eAAM,CAAC,EAAC,2FAA2F,GAAG,GAClG,CACP,CAAC;AAEF,eAAe,KAAK,CAAC"}
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- declare const MinusCircle: ({ className, title, }: {
3
- className?: string | undefined;
4
- title?: string | undefined;
5
- }) => JSX.Element;
6
- export default MinusCircle;
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- const MinusCircle = ({ className, title, }) => (_jsxs("svg", { ...(!title ? { 'aria-hidden': 'true' } : {}), focusable: "false", role: "img", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 1024 1024", className: className, "aria-label": title, children: [_jsx("path", { d: "M696 480H328c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8z" }), _jsx("path", { d: "M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm0 820c-205.4 0-372-166.6-372-372s166.6-372 372-372 372 166.6 372 372-166.6 372-372 372z" })] }));
3
- export default MinusCircle;
4
- //# sourceMappingURL=MinusCircle.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"MinusCircle.js","sourceRoot":"","sources":["../../../src/components/icons/MinusCircle.tsx"],"names":[],"mappings":";AAEA,MAAM,WAAW,GAAG,CAAC,EACnB,SAAS,EACT,KAAK,GAIN,EAAE,EAAE,CAAC,CACJ,kBACM,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,aAAa,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAC7C,SAAS,EAAC,OAAO,EACjB,IAAI,EAAC,KAAK,EACV,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,eAAe,EACvB,SAAS,EAAE,SAAS,gBACR,KAAK,aAEjB,eAAM,CAAC,EAAC,2FAA2F,GAAG,EACtG,eAAM,CAAC,EAAC,+KAA+K,GAAG,IACtL,CACP,CAAC;AAEF,eAAe,WAAW,CAAC"}
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- declare const PaperClip: ({ className, title, }: {
3
- className?: string | undefined;
4
- title?: string | undefined;
5
- }) => JSX.Element;
6
- export default PaperClip;
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- const PaperClip = ({ className, title, }) => (_jsx("svg", { ...(!title ? { 'aria-hidden': 'true' } : {}), focusable: "false", role: "img", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 1024 1024", className: className, "aria-label": title, children: _jsx("path", { d: "M779.3 196.6c-94.2-94.2-247.6-94.2-341.7 0l-261 260.8c-1.7 1.7-2.6 4-2.6 6.4s.9 4.7 2.6 6.4l36.9 36.9a9 9 0 0 0 12.7 0l261-260.8c32.4-32.4 75.5-50.2 121.3-50.2s88.9 17.8 121.2 50.2c32.4 32.4 50.2 75.5 50.2 121.2 0 45.8-17.8 88.8-50.2 121.2l-266 265.9-43.1 43.1c-40.3 40.3-105.8 40.3-146.1 0-19.5-19.5-30.2-45.4-30.2-73s10.7-53.5 30.2-73l263.9-263.8c6.7-6.6 15.5-10.3 24.9-10.3h.1c9.4 0 18.1 3.7 24.7 10.3 6.7 6.7 10.3 15.5 10.3 24.9 0 9.3-3.7 18.1-10.3 24.7L372.4 653c-1.7 1.7-2.6 4-2.6 6.4s.9 4.7 2.6 6.4l36.9 36.9a9 9 0 0 0 12.7 0l215.6-215.6c19.9-19.9 30.8-46.3 30.8-74.4s-11-54.6-30.8-74.4c-41.1-41.1-107.9-41-149 0L463 364 224.8 602.1A172.22 172.22 0 0 0 174 724.8c0 46.3 18.1 89.8 50.8 122.5 33.9 33.8 78.3 50.7 122.7 50.7 44.4 0 88.8-16.9 122.6-50.7l309.2-309C824.8 492.7 850 432 850 367.5c.1-64.6-25.1-125.3-70.7-170.9z" }) }));
3
- export default PaperClip;
4
- //# sourceMappingURL=PaperClip.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"PaperClip.js","sourceRoot":"","sources":["../../../src/components/icons/PaperClip.tsx"],"names":[],"mappings":";AAEA,MAAM,SAAS,GAAG,CAAC,EACjB,SAAS,EACT,KAAK,GAIN,EAAE,EAAE,CAAC,CACJ,iBACM,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,aAAa,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAC7C,SAAS,EAAC,OAAO,EACjB,IAAI,EAAC,KAAK,EACV,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,eAAe,EACvB,SAAS,EAAE,SAAS,gBACR,KAAK,YAEjB,eAAM,CAAC,EAAC,6zBAA6zB,GAAG,GACp0B,CACP,CAAC;AAEF,eAAe,SAAS,CAAC"}
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- declare const Picture: ({ className, title, }: {
3
- className?: string | undefined;
4
- title?: string | undefined;
5
- }) => JSX.Element;
6
- export default Picture;
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx } from "react/jsx-runtime";
2
- const Picture = ({ className, title, }) => (_jsx("svg", { ...(!title ? { 'aria-hidden': 'true' } : {}), focusable: "false", role: "img", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 1024 1024", className: className, "aria-label": title, children: _jsx("path", { d: "M928 160H96c-17.7 0-32 14.3-32 32v640c0 17.7 14.3 32 32 32h832c17.7 0 32-14.3 32-32V192c0-17.7-14.3-32-32-32zm-40 632H136v-39.9l138.5-164.3 150.1 178L658.1 489 888 761.6V792zm0-129.8L664.2 396.8c-3.2-3.8-9-3.8-12.2 0L424.6 666.4l-144-170.7c-3.2-3.8-9-3.8-12.2 0L136 652.7V232h752v430.2zM304 456a88 88 0 1 0 0-176 88 88 0 0 0 0 176zm0-116c15.5 0 28 12.5 28 28s-12.5 28-28 28-28-12.5-28-28 12.5-28 28-28z" }) }));
3
- export default Picture;
4
- //# sourceMappingURL=Picture.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Picture.js","sourceRoot":"","sources":["../../../src/components/icons/Picture.tsx"],"names":[],"mappings":";AAEA,MAAM,OAAO,GAAG,CAAC,EACf,SAAS,EACT,KAAK,GAIN,EAAE,EAAE,CAAC,CACJ,iBACM,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,aAAa,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAC7C,SAAS,EAAC,OAAO,EACjB,IAAI,EAAC,KAAK,EACV,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,eAAe,EACvB,SAAS,EAAE,SAAS,gBACR,KAAK,YAEjB,eAAM,CAAC,EAAC,oZAAoZ,GAAG,GAC3Z,CACP,CAAC;AAEF,eAAe,OAAO,CAAC"}
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- declare const Plus: ({ className, title }: {
3
- className?: string | undefined;
4
- title?: string | undefined;
5
- }) => JSX.Element;
6
- export default Plus;
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- const Plus = ({ className, title }) => (_jsxs("svg", { ...(!title ? { 'aria-hidden': 'true' } : {}), focusable: "false", role: "img", xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 1024 1024", className: className, "aria-label": title, children: [_jsx("path", { d: "M482 152h60q8 0 8 8v704q0 8-8 8h-60q-8 0-8-8V160q0-8 8-8z" }), _jsx("path", { d: "M176 474h672q8 0 8 8v60q0 8-8 8H176q-8 0-8-8v-60q0-8 8-8z" })] }));
3
- export default Plus;
4
- //# sourceMappingURL=Plus.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Plus.js","sourceRoot":"","sources":["../../../src/components/icons/Plus.tsx"],"names":[],"mappings":";AAEA,MAAM,IAAI,GAAG,CAAC,EAAE,SAAS,EAAE,KAAK,EAA0C,EAAE,EAAE,CAAC,CAC7E,kBACM,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,aAAa,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAC7C,SAAS,EAAC,OAAO,EACjB,IAAI,EAAC,KAAK,EACV,KAAK,EAAC,4BAA4B,EAClC,OAAO,EAAC,eAAe,EACvB,SAAS,EAAE,SAAS,gBACR,KAAK,aAEjB,eAAM,CAAC,EAAC,2DAA2D,GAAQ,EAC3E,eAAM,CAAC,EAAC,2DAA2D,GAAQ,IACvE,CACP,CAAC;AAEF,eAAe,IAAI,CAAC"}
@@ -1,4 +0,0 @@
1
- import React from 'react';
2
- export declare const PreviewIcon: React.FC<{
3
- className?: string;
4
- }>;
@@ -1,5 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- export const PreviewIcon = ({ className }) => {
3
- return (_jsxs("svg", { className: className, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: [_jsx("path", { d: "M1 12C1 12 5 4 12 4C19 4 23 12 23 12C23 12 19 20 12 20C5 20 1 12 1 12Z", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }), _jsx("circle", { cx: "12", cy: "12", r: "3", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })] }));
4
- };
5
- //# sourceMappingURL=Preview.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Preview.js","sourceRoot":"","sources":["../../../src/components/icons/Preview.tsx"],"names":[],"mappings":";AAEA,MAAM,CAAC,MAAM,WAAW,GAAqC,CAAC,EAAE,SAAS,EAAE,EAAE,EAAE;IAC7E,OAAO,CACL,eACE,SAAS,EAAE,SAAS,EACpB,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,KAAK,EAAC,4BAA4B,aAElC,eACE,CAAC,EAAC,wEAAwE,EAC1E,MAAM,EAAC,cAAc,EACrB,WAAW,EAAC,KAAK,EACjB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,GACtB,EACF,iBACE,EAAE,EAAC,IAAI,EACP,EAAE,EAAC,IAAI,EACP,CAAC,EAAC,GAAG,EACL,MAAM,EAAC,cAAc,EACrB,WAAW,EAAC,KAAK,EACjB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,GACtB,IACE,CACP,CAAC;AACJ,CAAC,CAAC"}
@@ -1,6 +0,0 @@
1
- import * as React from 'react';
2
- declare const PrintIcon: React.FC<{
3
- className?: string;
4
- title?: string;
5
- }>;
6
- export default PrintIcon;
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- const PrintIcon = ({ className, title }) => (_jsxs("svg", { ...(!title ? { 'aria-hidden': 'true' } : {}), "aria-label": title, className: className, viewBox: "0 -2 32 32", version: "1.1", xmlns: "http://www.w3.org/2000/svg", children: [_jsx("title", { children: title }), _jsx("desc", { children: "Created with Sketch Beta." }), _jsx("defs", {}), _jsx("g", { id: "Page-1", stroke: "none", "stroke-width": "1", fill: "none", "fill-rule": "evenodd", children: _jsx("g", { id: "Icon-Set", transform: "translate(-100.000000, -205.000000)", fill: "#000000", children: _jsx("path", { d: "M130,226 C130,227.104 129.104,228 128,228 L125.858,228 C125.413,226.278 123.862,225 122,225 L110,225 C108.138,225 106.587,226.278 106.142,228 L104,228 C102.896,228 102,227.104 102,226 L102,224 C102,222.896 102.896,222 104,222 L128,222 C129.104,222 130,222.896 130,224 L130,226 L130,226 Z M122,231 L110,231 C108.896,231 108,230.104 108,229 C108,227.896 108.896,227 110,227 L122,227 C123.104,227 124,227.896 124,229 C124,230.104 123.104,231 122,231 L122,231 Z M108,209 C108,207.896 108.896,207 110,207 L122,207 C123.104,207 124,207.896 124,209 L124,220 L108,220 L108,209 L108,209 Z M128,220 L126,220 L126,209 C126,206.791 124.209,205 122,205 L110,205 C107.791,205 106,206.791 106,209 L106,220 L104,220 C101.791,220 100,221.791 100,224 L100,226 C100,228.209 101.791,230 104,230 L106.142,230 C106.587,231.723 108.138,233 110,233 L122,233 C123.862,233 125.413,231.723 125.858,230 L128,230 C130.209,230 132,228.209 132,226 L132,224 C132,221.791 130.209,220 128,220 L128,220 Z", id: "print" }) }) })] }));
3
- export default PrintIcon;
4
- //# sourceMappingURL=Print.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Print.js","sourceRoot":"","sources":["../../../src/components/icons/Print.tsx"],"names":[],"mappings":";AACA,MAAM,SAAS,GAAqD,CAAC,EAAE,SAAS,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,CAC5F,kBACM,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,aAAa,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,gBACjC,KAAK,EACjB,SAAS,EAAE,SAAS,EACpB,OAAO,EAAC,YAAY,EACpB,OAAO,EAAC,KAAK,EACb,KAAK,EAAC,4BAA4B,aAElC,0BAAQ,KAAK,GAAS,EACtB,uDAAsC,EACtC,gBAAa,EACb,YACE,EAAE,EAAC,QAAQ,EACX,MAAM,EAAC,MAAM,kBACA,GAAG,EAChB,IAAI,EAAC,MAAM,eACD,SAAS,YAEnB,YACE,EAAE,EAAC,UAAU,EACb,SAAS,EAAC,qCAAqC,EAC/C,IAAI,EAAC,SAAS,YAEd,eACE,CAAC,EAAC,28BAA28B,EAC78B,EAAE,EAAC,OAAO,GACJ,GACN,GACF,IACA,CACP,CAAC;AACF,eAAe,SAAS,CAAC"}
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- declare const QuestionHelp: ({ className, title, }: {
3
- className?: string | undefined;
4
- title?: string | undefined;
5
- }) => JSX.Element;
6
- export default QuestionHelp;
@@ -1,4 +0,0 @@
1
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- const QuestionHelp = ({ className, title, }) => (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", ...(!title ? { 'aria-hidden': 'true' } : {}), focusable: "false", role: "img", fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", viewBox: "0 0 24 24", className: className, "aria-label": title, children: [_jsx("circle", { cx: "12", cy: "12", r: "10" }), _jsx("path", { d: "M9.09 9a3 3 0 015.83 1c0 2-3 3-3 3" }), _jsx("path", { d: "M12 17L12.01 17" })] }));
3
- export default QuestionHelp;
4
- //# sourceMappingURL=QuestionHelp.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"QuestionHelp.js","sourceRoot":"","sources":["../../../src/components/icons/QuestionHelp.tsx"],"names":[],"mappings":";AAEA,MAAM,YAAY,GAAG,CAAC,EACpB,SAAS,EACT,KAAK,GAIN,EAAE,EAAE,CAAC,CACJ,eACE,KAAK,EAAC,4BAA4B,KAC9B,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,aAAa,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC,EAC7C,SAAS,EAAC,OAAO,EACjB,IAAI,EAAC,KAAK,EACV,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,cAAc,EACrB,aAAa,EAAC,OAAO,EACrB,cAAc,EAAC,OAAO,EACtB,WAAW,EAAC,KAAK,EACjB,OAAO,EAAC,WAAW,EACnB,SAAS,EAAE,SAAS,gBACR,KAAK,aAEjB,iBAAQ,EAAE,EAAC,IAAI,EAAC,EAAE,EAAC,IAAI,EAAC,CAAC,EAAC,IAAI,GAAU,EACxC,eAAM,CAAC,EAAC,oCAAoC,GAAQ,EACpD,eAAM,CAAC,EAAC,iBAAiB,GAAQ,IAC7B,CACP,CAAC;AAEF,eAAe,YAAY,CAAC"}