@logora/debate 0.1.0

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 (1053) hide show
  1. package/.changeset/config.json +11 -0
  2. package/.eslintrc.js +12 -0
  3. package/.github/dependabot.yml +7 -0
  4. package/.github/workflows/master.yml +121 -0
  5. package/.storybook/main.mjs +47 -0
  6. package/.storybook/preview.js +11 -0
  7. package/LICENSE +661 -0
  8. package/README.md +90 -0
  9. package/package.json +101 -0
  10. package/src/components/action/back_link/BackLink.docs.mdx +25 -0
  11. package/src/components/action/back_link/BackLink.jsx +30 -0
  12. package/src/components/action/back_link/BackLink.module.scss +34 -0
  13. package/src/components/action/back_link/BackLink.stories.jsx +28 -0
  14. package/src/components/action/back_link/BackLink.test.jsx +105 -0
  15. package/src/components/action/back_link/index.js +1 -0
  16. package/src/components/action/button/Button.docs.mdx +43 -0
  17. package/src/components/action/button/Button.examples.jsx +60 -0
  18. package/src/components/action/button/Button.jsx +88 -0
  19. package/src/components/action/button/Button.module.scss +133 -0
  20. package/src/components/action/button/Button.stories.jsx +54 -0
  21. package/src/components/action/button/Button.test.jsx +54 -0
  22. package/src/components/action/button/index.js +1 -0
  23. package/src/components/action/icon_text_link/HomeIcon.dev.jsx +9 -0
  24. package/src/components/action/icon_text_link/IconTextLink.docs.mdx +37 -0
  25. package/src/components/action/icon_text_link/IconTextLink.jsx +57 -0
  26. package/src/components/action/icon_text_link/IconTextLink.module.scss +67 -0
  27. package/src/components/action/icon_text_link/IconTextLink.stories.jsx +44 -0
  28. package/src/components/action/icon_text_link/IconTextLink.test.jsx +134 -0
  29. package/src/components/action/icon_text_link/index.js +1 -0
  30. package/src/components/action/link/Link.docs.mdx +23 -0
  31. package/src/components/action/link/Link.jsx +50 -0
  32. package/src/components/action/link/Link.stories.jsx +43 -0
  33. package/src/components/action/link/Link.test.jsx +91 -0
  34. package/src/components/action/link/index.js +1 -0
  35. package/src/components/ad/ad_unit/AdUnit.docs.mdx +23 -0
  36. package/src/components/ad/ad_unit/AdUnit.jsx +75 -0
  37. package/src/components/ad/ad_unit/AdUnit.module.scss +9 -0
  38. package/src/components/ad/ad_unit/AdUnit.stories.jsx +30 -0
  39. package/src/components/ad/ad_unit/AdUnit.test.jsx +63 -0
  40. package/src/components/ad/ad_unit/index.js +1 -0
  41. package/src/components/ad/use_google_ad_manager/index.js +1 -0
  42. package/src/components/ad/use_google_ad_manager/useGoogleAdManager.docs.mdx +27 -0
  43. package/src/components/ad/use_google_ad_manager/useGoogleAdManager.jsx +37 -0
  44. package/src/components/ad/use_google_ad_manager/useGoogleAdManager.test.jsx +47 -0
  45. package/src/components/ad/with_ad/WithAd.docs.mdx +30 -0
  46. package/src/components/ad/with_ad/WithAd.jsx +51 -0
  47. package/src/components/ad/with_ad/WithAd.test.jsx +104 -0
  48. package/src/components/ad/with_ad/index.js +1 -0
  49. package/src/components/argument/argument/Argument.docs.mdx +60 -0
  50. package/src/components/argument/argument/Argument.jsx +358 -0
  51. package/src/components/argument/argument/Argument.module.scss +233 -0
  52. package/src/components/argument/argument/Argument.stories.jsx +232 -0
  53. package/src/components/argument/argument/Argument.test.jsx +303 -0
  54. package/src/components/argument/argument/ReplyFooter.jsx +47 -0
  55. package/src/components/argument/argument/ReplyFooter.module.scss +77 -0
  56. package/src/components/argument/argument/index.js +2 -0
  57. package/src/components/argument/argument/useRichContent.jsx +18 -0
  58. package/src/components/argument/top_arguments/TopArguments.docs.mdx +22 -0
  59. package/src/components/argument/top_arguments/TopArguments.jsx +90 -0
  60. package/src/components/argument/top_arguments/TopArguments.module.scss +37 -0
  61. package/src/components/argument/top_arguments/TopArguments.stories.jsx +156 -0
  62. package/src/components/argument/top_arguments/TopArguments.test.jsx +67 -0
  63. package/src/components/argument/top_arguments/index.js +1 -0
  64. package/src/components/auth/auth_initializer/AuthInitializer.alltest.js +21 -0
  65. package/src/components/auth/auth_initializer/AuthInitializer.docs.mdx +34 -0
  66. package/src/components/auth/auth_initializer/AuthInitializer.jsx +61 -0
  67. package/src/components/auth/auth_initializer/index.js +1 -0
  68. package/src/components/auth/auth_modal/AuthModal.alltest.js +30 -0
  69. package/src/components/auth/auth_modal/AuthModal.docs.mdx +26 -0
  70. package/src/components/auth/auth_modal/AuthModal.jsx +99 -0
  71. package/src/components/auth/auth_modal/AuthModal.module.scss +9 -0
  72. package/src/components/auth/auth_modal/AuthModal.stories.jsx +90 -0
  73. package/src/components/auth/auth_modal/index.js +1 -0
  74. package/src/components/auth/facebook_login_button/FacebookIcon.jsx +7 -0
  75. package/src/components/auth/facebook_login_button/FacebookLoginButton.docs.mdx +34 -0
  76. package/src/components/auth/facebook_login_button/FacebookLoginButton.jsx +25 -0
  77. package/src/components/auth/facebook_login_button/FacebookLoginButton.module.scss +32 -0
  78. package/src/components/auth/facebook_login_button/FacebookLoginButton.stories.jsx +35 -0
  79. package/src/components/auth/facebook_login_button/FacebookLoginButton.test.jsx +68 -0
  80. package/src/components/auth/facebook_login_button/index.js +1 -0
  81. package/src/components/auth/google_login_button/GoogleIcon.jsx +10 -0
  82. package/src/components/auth/google_login_button/GoogleLoginButton.docs.mdx +43 -0
  83. package/src/components/auth/google_login_button/GoogleLoginButton.jsx +27 -0
  84. package/src/components/auth/google_login_button/GoogleLoginButton.module.scss +28 -0
  85. package/src/components/auth/google_login_button/GoogleLoginButton.stories.jsx +35 -0
  86. package/src/components/auth/google_login_button/GoogleLoginButton.test.jsx +69 -0
  87. package/src/components/auth/google_login_button/index.js +1 -0
  88. package/src/components/auth/login_form/LoginForm.docs.mdx +24 -0
  89. package/src/components/auth/login_form/LoginForm.jsx +65 -0
  90. package/src/components/auth/login_form/LoginForm.module.scss +36 -0
  91. package/src/components/auth/login_form/LoginForm.stories.jsx +42 -0
  92. package/src/components/auth/login_form/LoginForm.test.jsx +94 -0
  93. package/src/components/auth/login_form/index.js +1 -0
  94. package/src/components/auth/oauth2_button/OAuth2Button.docs.mdx +32 -0
  95. package/src/components/auth/oauth2_button/OAuth2Button.jsx +79 -0
  96. package/src/components/auth/oauth2_button/OAuth2Button.module.scss +10 -0
  97. package/src/components/auth/oauth2_button/OAuth2Button.stories.jsx +48 -0
  98. package/src/components/auth/oauth2_button/OAuth2Button.test.jsx +306 -0
  99. package/src/components/auth/oauth2_button/index.js +1 -0
  100. package/src/components/auth/providers/AuthProvider.docs.mdx +35 -0
  101. package/src/components/auth/providers/AuthProvider.js +23 -0
  102. package/src/components/auth/providers/AuthProviderFactory.js +20 -0
  103. package/src/components/auth/providers/FormAuth.js +36 -0
  104. package/src/components/auth/providers/JWTAuth.js +35 -0
  105. package/src/components/auth/providers/OAuth2ServerAuth.js +47 -0
  106. package/src/components/auth/providers/PasswordAuth.js +31 -0
  107. package/src/components/auth/providers/index.js +1 -0
  108. package/src/components/auth/providers/tests/AuthProviderFactory.test.jsx +53 -0
  109. package/src/components/auth/providers/tests/FormAuth.test.jsx +45 -0
  110. package/src/components/auth/providers/tests/JWTAuth.test.jsx +57 -0
  111. package/src/components/auth/providers/tests/OAuth2ServerAuth.test.jsx +78 -0
  112. package/src/components/auth/providers/tests/PasswordAuth.test.jsx +43 -0
  113. package/src/components/auth/signup_form/SignupForm.docs.mdx +29 -0
  114. package/src/components/auth/signup_form/SignupForm.jsx +125 -0
  115. package/src/components/auth/signup_form/SignupForm.module.scss +21 -0
  116. package/src/components/auth/signup_form/SignupForm.stories.jsx +40 -0
  117. package/src/components/auth/signup_form/SignupForm.test.jsx +144 -0
  118. package/src/components/auth/signup_form/index.js +1 -0
  119. package/src/components/auth/social_auth_form/SocialAuthForm.docs.mdx +33 -0
  120. package/src/components/auth/social_auth_form/SocialAuthForm.jsx +170 -0
  121. package/src/components/auth/social_auth_form/SocialAuthForm.module.scss +141 -0
  122. package/src/components/auth/social_auth_form/SocialAuthForm.stories.jsx +82 -0
  123. package/src/components/auth/social_auth_form/SocialAuthForm.test.jsx +201 -0
  124. package/src/components/auth/social_auth_form/index.js +1 -0
  125. package/src/components/auth/sso_form/SSOForm.docs.mdx +39 -0
  126. package/src/components/auth/sso_form/SSOForm.jsx +243 -0
  127. package/src/components/auth/sso_form/SSOForm.module.scss +99 -0
  128. package/src/components/auth/sso_form/SSOForm.stories.jsx +117 -0
  129. package/src/components/auth/sso_form/SSOForm.test.jsx +83 -0
  130. package/src/components/auth/sso_form/index.js +1 -0
  131. package/src/components/auth/use_auth/AuthContext.js +3 -0
  132. package/src/components/auth/use_auth/AuthProvider.jsx +21 -0
  133. package/src/components/auth/use_auth/AuthProvider.test.jsx +26 -0
  134. package/src/components/auth/use_auth/AuthStorage.js +33 -0
  135. package/src/components/auth/use_auth/AuthStorage.test.jsx +165 -0
  136. package/src/components/auth/use_auth/authTokenHandler.js +67 -0
  137. package/src/components/auth/use_auth/authTokenHandler.test.jsx +117 -0
  138. package/src/components/auth/use_auth/index.js +7 -0
  139. package/src/components/auth/use_auth/useAuth.docs.mdx +34 -0
  140. package/src/components/auth/use_auth/useAuth.js +8 -0
  141. package/src/components/auth/use_auth/useAuthActions.js +77 -0
  142. package/src/components/auth/use_auth/useAuthInterceptor.jsx +42 -0
  143. package/src/components/chart/line_chart/LineChart.docs.mdx +34 -0
  144. package/src/components/chart/line_chart/LineChart.jsx +107 -0
  145. package/src/components/chart/line_chart/LineChart.module.scss +54 -0
  146. package/src/components/chart/line_chart/LineChart.stories.jsx +49 -0
  147. package/src/components/chart/line_chart/LineChart.test.jsx +12 -0
  148. package/src/components/chart/line_chart/index.js +1 -0
  149. package/src/components/chart/pie_chart/PieChart.docs.mdx +26 -0
  150. package/src/components/chart/pie_chart/PieChart.jsx +102 -0
  151. package/src/components/chart/pie_chart/PieChart.module.scss +17 -0
  152. package/src/components/chart/pie_chart/PieChart.stories.jsx +36 -0
  153. package/src/components/chart/pie_chart/PieChart.test.jsx +12 -0
  154. package/src/components/chart/pie_chart/index.js +1 -0
  155. package/src/components/consultation/consultation_box/ConsultationBox.docs.mdx +21 -0
  156. package/src/components/consultation/consultation_box/ConsultationBox.jsx +101 -0
  157. package/src/components/consultation/consultation_box/ConsultationBox.module.scss +105 -0
  158. package/src/components/consultation/consultation_box/ConsultationBox.stories.jsx +96 -0
  159. package/src/components/consultation/consultation_box/ConsultationBox.test.jsx +58 -0
  160. package/src/components/consultation/consultation_box/index.js +1 -0
  161. package/src/components/data/axios_client/httpClient.docs.mdx +4 -0
  162. package/src/components/data/axios_client/httpClient.js +11 -0
  163. package/src/components/data/axios_client/index.js +1 -0
  164. package/src/components/data/config_provider/ConfigProvider.docs.mdx +26 -0
  165. package/src/components/data/config_provider/ConfigProvider.jsx +21 -0
  166. package/src/components/data/config_provider/ConfigProvider.test.jsx +39 -0
  167. package/src/components/data/config_provider/index.js +4 -0
  168. package/src/components/data/config_provider/useConfig.jsx +8 -0
  169. package/src/components/data/config_provider/useRoutes.jsx +8 -0
  170. package/src/components/data/config_provider/withConfig.jsx +8 -0
  171. package/src/components/data/data_provider/DataProvider.docs.mdx +52 -0
  172. package/src/components/data/data_provider/DataProvider.jsx +165 -0
  173. package/src/components/data/data_provider/DataProvider.test.jsx +419 -0
  174. package/src/components/data/data_provider/DataProviderContext.jsx +3 -0
  175. package/src/components/data/data_provider/index.js +4 -0
  176. package/src/components/data/data_provider/useData.jsx +9 -0
  177. package/src/components/data/data_provider/useDataProvider.jsx +8 -0
  178. package/src/components/data/data_provider/useDataProvider.test.jsx +38 -0
  179. package/src/components/debate/debate_box/DebateBox.docs.mdx +23 -0
  180. package/src/components/debate/debate_box/DebateBox.jsx +136 -0
  181. package/src/components/debate/debate_box/DebateBox.module.scss +209 -0
  182. package/src/components/debate/debate_box/DebateBox.stories.jsx +157 -0
  183. package/src/components/debate/debate_box/DebateBox.test.jsx +117 -0
  184. package/src/components/debate/debate_box/index.js +1 -0
  185. package/src/components/dialog/announcement_dialog/AnnouncementDialog.docs.mdx +24 -0
  186. package/src/components/dialog/announcement_dialog/AnnouncementDialog.jsx +37 -0
  187. package/src/components/dialog/announcement_dialog/AnnouncementDialog.module.scss +35 -0
  188. package/src/components/dialog/announcement_dialog/AnnouncementDialog.stories.jsx +44 -0
  189. package/src/components/dialog/announcement_dialog/AnnouncementDialog.test.jsx +35 -0
  190. package/src/components/dialog/announcement_dialog/HomeIcon.dev.jsx +9 -0
  191. package/src/components/dialog/announcement_dialog/index.js +1 -0
  192. package/src/components/dialog/confirm_modal/ConfirmModal.docs.mdx +25 -0
  193. package/src/components/dialog/confirm_modal/ConfirmModal.jsx +53 -0
  194. package/src/components/dialog/confirm_modal/ConfirmModal.module.scss +30 -0
  195. package/src/components/dialog/confirm_modal/ConfirmModal.stories.jsx +36 -0
  196. package/src/components/dialog/confirm_modal/ConfirmModal.test.jsx +176 -0
  197. package/src/components/dialog/confirm_modal/index.js +1 -0
  198. package/src/components/dialog/countdown/Countdown.docs.mdx +23 -0
  199. package/src/components/dialog/countdown/Countdown.jsx +36 -0
  200. package/src/components/dialog/countdown/Countdown.stories.jsx +33 -0
  201. package/src/components/dialog/countdown/Countdown.test.jsx +51 -0
  202. package/src/components/dialog/countdown/index.js +1 -0
  203. package/src/components/dialog/dialog_box/DialogBox.docs.mdx +25 -0
  204. package/src/components/dialog/dialog_box/DialogBox.jsx +53 -0
  205. package/src/components/dialog/dialog_box/DialogBox.module.scss +145 -0
  206. package/src/components/dialog/dialog_box/DialogBox.stories.jsx +45 -0
  207. package/src/components/dialog/dialog_box/DialogBox.test.jsx +40 -0
  208. package/src/components/dialog/dialog_box/index.js +1 -0
  209. package/src/components/dialog/drawer/Drawer.docs.mdx +31 -0
  210. package/src/components/dialog/drawer/Drawer.jsx +159 -0
  211. package/src/components/dialog/drawer/Drawer.module.scss +136 -0
  212. package/src/components/dialog/drawer/Drawer.stories.jsx +194 -0
  213. package/src/components/dialog/drawer/Drawer.test.jsx +15 -0
  214. package/src/components/dialog/drawer/index.js +1 -0
  215. package/src/components/dialog/dropdown/Dropdown.docs.mdx +28 -0
  216. package/src/components/dialog/dropdown/Dropdown.jsx +59 -0
  217. package/src/components/dialog/dropdown/Dropdown.module.scss +41 -0
  218. package/src/components/dialog/dropdown/Dropdown.stories.jsx +42 -0
  219. package/src/components/dialog/dropdown/Dropdown.test.jsx +126 -0
  220. package/src/components/dialog/dropdown/index.js +1 -0
  221. package/src/components/dialog/modal/Modal.docs.mdx +39 -0
  222. package/src/components/dialog/modal/Modal.jsx +101 -0
  223. package/src/components/dialog/modal/Modal.module.scss +99 -0
  224. package/src/components/dialog/modal/Modal.stories.jsx +53 -0
  225. package/src/components/dialog/modal/Modal.test.jsx +115 -0
  226. package/src/components/dialog/modal/ModalProvider.jsx +26 -0
  227. package/src/components/dialog/modal/ModalProvider.test.jsx +39 -0
  228. package/src/components/dialog/modal/index.js +3 -0
  229. package/src/components/dialog/modal/useModal.jsx +6 -0
  230. package/src/components/dialog/toast/Toast.docs.mdx +21 -0
  231. package/src/components/dialog/toast/Toast.jsx +44 -0
  232. package/src/components/dialog/toast/Toast.module.scss +66 -0
  233. package/src/components/dialog/toast/Toast.stories.jsx +42 -0
  234. package/src/components/dialog/toast/Toast.test.jsx +21 -0
  235. package/src/components/dialog/toast/index.js +1 -0
  236. package/src/components/dialog/toast_provider/ToastContext.js +3 -0
  237. package/src/components/dialog/toast_provider/ToastProvider.docs.mdx +36 -0
  238. package/src/components/dialog/toast_provider/ToastProvider.jsx +35 -0
  239. package/src/components/dialog/toast_provider/ToastProvider.module.scss +14 -0
  240. package/src/components/dialog/toast_provider/ToastProvider.test.jsx +64 -0
  241. package/src/components/dialog/toast_provider/index.js +2 -0
  242. package/src/components/dialog/toast_provider/useToast.jsx +8 -0
  243. package/src/components/dialog/tooltip/Tooltip.docs.mdx +20 -0
  244. package/src/components/dialog/tooltip/Tooltip.jsx +53 -0
  245. package/src/components/dialog/tooltip/Tooltip.module.scss +92 -0
  246. package/src/components/dialog/tooltip/Tooltip.stories.jsx +76 -0
  247. package/src/components/dialog/tooltip/Tooltip.test.jsx +67 -0
  248. package/src/components/dialog/tooltip/index.js +3 -0
  249. package/src/components/embed/embed_header/EmbedHeader.docs.mdx +25 -0
  250. package/src/components/embed/embed_header/EmbedHeader.jsx +61 -0
  251. package/src/components/embed/embed_header/EmbedHeader.module.scss +148 -0
  252. package/src/components/embed/embed_header/EmbedHeader.stories.jsx +54 -0
  253. package/src/components/embed/embed_header/EmbedHeader.test.jsx +70 -0
  254. package/src/components/embed/embed_header/index.js +1 -0
  255. package/src/components/error/standard_error_boundary/StandardErrorBoundary.docs.mdx +26 -0
  256. package/src/components/error/standard_error_boundary/StandardErrorBoundary.jsx +27 -0
  257. package/src/components/error/standard_error_boundary/StandardErrorBoundary.module.scss +8 -0
  258. package/src/components/error/standard_error_boundary/StandardErrorBoundary.test.jsx +56 -0
  259. package/src/components/error/standard_error_boundary/index.js +1 -0
  260. package/src/components/follow/follow_button/FollowButton.docs.mdx +41 -0
  261. package/src/components/follow/follow_button/FollowButton.jsx +40 -0
  262. package/src/components/follow/follow_button/FollowButton.module.scss +17 -0
  263. package/src/components/follow/follow_button/FollowButton.stories.jsx +58 -0
  264. package/src/components/follow/follow_button/FollowButton.test.jsx +45 -0
  265. package/src/components/follow/follow_button/index.js +1 -0
  266. package/src/components/follow/use_follow/index.js +1 -0
  267. package/src/components/follow/use_follow/useFollow.docs.mdx +24 -0
  268. package/src/components/follow/use_follow/useFollow.jsx +60 -0
  269. package/src/components/follow/use_follow/useFollow.test.jsx +94 -0
  270. package/src/components/forms/form/extract-form-data.js +14 -0
  271. package/src/components/forms/form/form-context.js +3 -0
  272. package/src/components/forms/form/form.docs.mdx +232 -0
  273. package/src/components/forms/form/form.jsx +26 -0
  274. package/src/components/forms/form/form.stories.jsx +119 -0
  275. package/src/components/forms/form/form.test.jsx +3 -0
  276. package/src/components/forms/form/index.js +6 -0
  277. package/src/components/forms/form/use-form-context.js +43 -0
  278. package/src/components/forms/form/use-form.js +4 -0
  279. package/src/components/forms/use_form_validation/index.js +1 -0
  280. package/src/components/forms/use_form_validation/useFormValidation.docs.mdx +40 -0
  281. package/src/components/forms/use_form_validation/useFormValidation.jsx +114 -0
  282. package/src/components/forms/use_form_validation/useFormValidation.test.jsx +91 -0
  283. package/src/components/gamification/badge_box/BadgeBox.docs.mdx +25 -0
  284. package/src/components/gamification/badge_box/BadgeBox.jsx +74 -0
  285. package/src/components/gamification/badge_box/BadgeBox.module.scss +103 -0
  286. package/src/components/gamification/badge_box/BadgeBox.stories.jsx +64 -0
  287. package/src/components/gamification/badge_box/BadgeBox.test.jsx +113 -0
  288. package/src/components/gamification/badge_box/index.js +1 -0
  289. package/src/components/gamification/point_box/PointBox.docs.mdx +19 -0
  290. package/src/components/gamification/point_box/PointBox.jsx +28 -0
  291. package/src/components/gamification/point_box/PointBox.module.scss +38 -0
  292. package/src/components/gamification/point_box/PointBox.stories.jsx +32 -0
  293. package/src/components/gamification/point_box/PointBox.test.jsx +21 -0
  294. package/src/components/gamification/point_box/index.js +1 -0
  295. package/src/components/hooks/use_auth_required/index.js +1 -0
  296. package/src/components/hooks/use_auth_required/useAuthRequired.docs.mdx +22 -0
  297. package/src/components/hooks/use_auth_required/useAuthRequired.jsx +28 -0
  298. package/src/components/hooks/use_auth_required/useAuthRequired.test.jsx +85 -0
  299. package/src/components/hooks/use_css_theme/index.js +1 -0
  300. package/src/components/hooks/use_css_theme/useCssTheme.docs.mdx +34 -0
  301. package/src/components/hooks/use_css_theme/useCssTheme.js +27 -0
  302. package/src/components/hooks/use_css_theme/useCssTheme.stories.jsx +41 -0
  303. package/src/components/hooks/use_css_theme/useCssTheme.test.jsx +31 -0
  304. package/src/components/hooks/use_font_loader/index.js +1 -0
  305. package/src/components/hooks/use_font_loader/useFontLoader.docs.mdx +24 -0
  306. package/src/components/hooks/use_font_loader/useFontLoader.js +16 -0
  307. package/src/components/hooks/use_font_loader/useFontLoader.test.jsx +64 -0
  308. package/src/components/hooks/use_matomo/index.js +1 -0
  309. package/src/components/hooks/use_matomo/useMatomo.docs.mdx +28 -0
  310. package/src/components/hooks/use_matomo/useMatomo.js +17 -0
  311. package/src/components/hooks/use_matomo/useMatomo.test.jsx +24 -0
  312. package/src/components/hooks/use_relative_time/index.js +1 -0
  313. package/src/components/hooks/use_relative_time/useRelativeTime.docs.mdx +35 -0
  314. package/src/components/hooks/use_relative_time/useRelativeTime.jsx +40 -0
  315. package/src/components/hooks/use_relative_time/useRelativeTime.test.jsx +82 -0
  316. package/src/components/hooks/use_responsive/ResponsiveContext.jsx +3 -0
  317. package/src/components/hooks/use_responsive/ResponsiveProvider.jsx +52 -0
  318. package/src/components/hooks/use_responsive/index.js +2 -0
  319. package/src/components/hooks/use_responsive/useResponsive.docs.mdx +46 -0
  320. package/src/components/hooks/use_responsive/useResponsive.jsx +8 -0
  321. package/src/components/hooks/use_responsive/useResponsive.stories.jsx +49 -0
  322. package/src/components/hooks/use_responsive/useResponsive.test.jsx +54 -0
  323. package/src/components/icons/bild_icons/Alarm.jsx +7 -0
  324. package/src/components/icons/bild_icons/Announcement.jsx +16 -0
  325. package/src/components/icons/bild_icons/Arrow.jsx +7 -0
  326. package/src/components/icons/bild_icons/BildIcons.docs.mdx +21 -0
  327. package/src/components/icons/bild_icons/BildIcons.stories.jsx +123 -0
  328. package/src/components/icons/bild_icons/BildIcons.test.jsx +15 -0
  329. package/src/components/icons/bild_icons/Blockquote.jsx +7 -0
  330. package/src/components/icons/bild_icons/Bold.jsx +7 -0
  331. package/src/components/icons/bild_icons/Camera.jsx +8 -0
  332. package/src/components/icons/bild_icons/Chat.jsx +16 -0
  333. package/src/components/icons/bild_icons/Check.jsx +7 -0
  334. package/src/components/icons/bild_icons/CheckCircle.jsx +17 -0
  335. package/src/components/icons/bild_icons/Checkbox.jsx +8 -0
  336. package/src/components/icons/bild_icons/Clap.jsx +9 -0
  337. package/src/components/icons/bild_icons/Clock.jsx +7 -0
  338. package/src/components/icons/bild_icons/Close.jsx +7 -0
  339. package/src/components/icons/bild_icons/Code.jsx +18 -0
  340. package/src/components/icons/bild_icons/Community.jsx +7 -0
  341. package/src/components/icons/bild_icons/Crown.jsx +7 -0
  342. package/src/components/icons/bild_icons/Document.jsx +7 -0
  343. package/src/components/icons/bild_icons/Downvote.jsx +7 -0
  344. package/src/components/icons/bild_icons/Ellipsis.jsx +8 -0
  345. package/src/components/icons/bild_icons/ExpertBadge.jsx +11 -0
  346. package/src/components/icons/bild_icons/Facebook.jsx +7 -0
  347. package/src/components/icons/bild_icons/Flag.jsx +7 -0
  348. package/src/components/icons/bild_icons/Home.jsx +7 -0
  349. package/src/components/icons/bild_icons/Italic.jsx +7 -0
  350. package/src/components/icons/bild_icons/LightArrow.jsx +7 -0
  351. package/src/components/icons/bild_icons/Link.jsx +8 -0
  352. package/src/components/icons/bild_icons/Login.jsx +11 -0
  353. package/src/components/icons/bild_icons/Logora.jsx +24 -0
  354. package/src/components/icons/bild_icons/Mail.jsx +7 -0
  355. package/src/components/icons/bild_icons/MinusCircle.jsx +16 -0
  356. package/src/components/icons/bild_icons/MobileClose.jsx +8 -0
  357. package/src/components/icons/bild_icons/MobileMenu.jsx +10 -0
  358. package/src/components/icons/bild_icons/Next.jsx +10 -0
  359. package/src/components/icons/bild_icons/OpenBlank.jsx +15 -0
  360. package/src/components/icons/bild_icons/OrderedList.jsx +7 -0
  361. package/src/components/icons/bild_icons/PauseCircle.jsx +10 -0
  362. package/src/components/icons/bild_icons/Point.jsx +8 -0
  363. package/src/components/icons/bild_icons/Question.jsx +8 -0
  364. package/src/components/icons/bild_icons/Refresh.jsx +7 -0
  365. package/src/components/icons/bild_icons/Reply.jsx +7 -0
  366. package/src/components/icons/bild_icons/Search.jsx +7 -0
  367. package/src/components/icons/bild_icons/Send.jsx +7 -0
  368. package/src/components/icons/bild_icons/Share.jsx +14 -0
  369. package/src/components/icons/bild_icons/SmallArrow.jsx +11 -0
  370. package/src/components/icons/bild_icons/Source.jsx +7 -0
  371. package/src/components/icons/bild_icons/Suggestion.jsx +7 -0
  372. package/src/components/icons/bild_icons/Twitter.jsx +10 -0
  373. package/src/components/icons/bild_icons/Underline.jsx +7 -0
  374. package/src/components/icons/bild_icons/Upvote.jsx +7 -0
  375. package/src/components/icons/bild_icons/User.jsx +7 -0
  376. package/src/components/icons/bild_icons/Versus.jsx +11 -0
  377. package/src/components/icons/bild_icons/Votebox.jsx +7 -0
  378. package/src/components/icons/bild_icons/index.js +52 -0
  379. package/src/components/icons/hero_icons/Alarm.jsx +7 -0
  380. package/src/components/icons/hero_icons/Announcement.jsx +7 -0
  381. package/src/components/icons/hero_icons/Arrow.jsx +7 -0
  382. package/src/components/icons/hero_icons/Blockquote.jsx +14 -0
  383. package/src/components/icons/hero_icons/Bold.jsx +7 -0
  384. package/src/components/icons/hero_icons/Camera.jsx +8 -0
  385. package/src/components/icons/hero_icons/Chat.jsx +7 -0
  386. package/src/components/icons/hero_icons/Check.jsx +8 -0
  387. package/src/components/icons/hero_icons/CheckCircle.jsx +17 -0
  388. package/src/components/icons/hero_icons/Checkbox.jsx +7 -0
  389. package/src/components/icons/hero_icons/Clap.jsx +7 -0
  390. package/src/components/icons/hero_icons/Clock.jsx +7 -0
  391. package/src/components/icons/hero_icons/Close.jsx +8 -0
  392. package/src/components/icons/hero_icons/Code.jsx +7 -0
  393. package/src/components/icons/hero_icons/Community.jsx +7 -0
  394. package/src/components/icons/hero_icons/Crown.jsx +7 -0
  395. package/src/components/icons/hero_icons/Downvote.jsx +8 -0
  396. package/src/components/icons/hero_icons/Ellipsis.jsx +7 -0
  397. package/src/components/icons/hero_icons/ExpertBadge.jsx +7 -0
  398. package/src/components/icons/hero_icons/Facebook.jsx +7 -0
  399. package/src/components/icons/hero_icons/Flag.jsx +7 -0
  400. package/src/components/icons/hero_icons/HeroIcons.docs.mdx +19 -0
  401. package/src/components/icons/hero_icons/HeroIcons.stories.jsx +121 -0
  402. package/src/components/icons/hero_icons/HeroIcons.test.jsx +15 -0
  403. package/src/components/icons/hero_icons/Home.jsx +7 -0
  404. package/src/components/icons/hero_icons/Italic.jsx +7 -0
  405. package/src/components/icons/hero_icons/LightArrow.jsx +7 -0
  406. package/src/components/icons/hero_icons/Link.jsx +7 -0
  407. package/src/components/icons/hero_icons/Login.jsx +7 -0
  408. package/src/components/icons/hero_icons/Logora.jsx +24 -0
  409. package/src/components/icons/hero_icons/Mail.jsx +7 -0
  410. package/src/components/icons/hero_icons/MinusCircle.jsx +16 -0
  411. package/src/components/icons/hero_icons/MobileClose.jsx +7 -0
  412. package/src/components/icons/hero_icons/MobileMenu.jsx +7 -0
  413. package/src/components/icons/hero_icons/Next.jsx +8 -0
  414. package/src/components/icons/hero_icons/OpenBlank.jsx +7 -0
  415. package/src/components/icons/hero_icons/OrderedList.jsx +19 -0
  416. package/src/components/icons/hero_icons/PauseCircle.jsx +10 -0
  417. package/src/components/icons/hero_icons/Point.jsx +8 -0
  418. package/src/components/icons/hero_icons/Question.jsx +7 -0
  419. package/src/components/icons/hero_icons/Refresh.jsx +7 -0
  420. package/src/components/icons/hero_icons/Reply.jsx +7 -0
  421. package/src/components/icons/hero_icons/Search.jsx +7 -0
  422. package/src/components/icons/hero_icons/Send.jsx +7 -0
  423. package/src/components/icons/hero_icons/Share.jsx +8 -0
  424. package/src/components/icons/hero_icons/SmallArrow.jsx +7 -0
  425. package/src/components/icons/hero_icons/Source.jsx +8 -0
  426. package/src/components/icons/hero_icons/Suggestion.jsx +9 -0
  427. package/src/components/icons/hero_icons/Twitter.jsx +10 -0
  428. package/src/components/icons/hero_icons/Underline.jsx +14 -0
  429. package/src/components/icons/hero_icons/Upvote.jsx +7 -0
  430. package/src/components/icons/hero_icons/User.jsx +7 -0
  431. package/src/components/icons/hero_icons/Versus.jsx +7 -0
  432. package/src/components/icons/hero_icons/Votebox.jsx +7 -0
  433. package/src/components/icons/hero_icons/index.js +51 -0
  434. package/src/components/icons/icon/Icon.docs.mdx +20 -0
  435. package/src/components/icons/icon/Icon.jsx +32 -0
  436. package/src/components/icons/icon/Icon.test.jsx +33 -0
  437. package/src/components/icons/icon/index.js +1 -0
  438. package/src/components/icons/icon_provider/IconProvider.docs.mdx +28 -0
  439. package/src/components/icons/icon_provider/IconProvider.jsx +19 -0
  440. package/src/components/icons/icon_provider/IconProvider.test.jsx +24 -0
  441. package/src/components/icons/icon_provider/index.js +1 -0
  442. package/src/components/icons/krone_icons/Alarm.jsx +27 -0
  443. package/src/components/icons/krone_icons/Announcement.jsx +16 -0
  444. package/src/components/icons/krone_icons/Arrow.jsx +7 -0
  445. package/src/components/icons/krone_icons/Blockquote.jsx +7 -0
  446. package/src/components/icons/krone_icons/Bold.jsx +7 -0
  447. package/src/components/icons/krone_icons/Camera.jsx +8 -0
  448. package/src/components/icons/krone_icons/Chat.jsx +29 -0
  449. package/src/components/icons/krone_icons/Check.jsx +7 -0
  450. package/src/components/icons/krone_icons/CheckBox.jsx +7 -0
  451. package/src/components/icons/krone_icons/CheckCircle.jsx +17 -0
  452. package/src/components/icons/krone_icons/Clap.jsx +29 -0
  453. package/src/components/icons/krone_icons/Clock.jsx +7 -0
  454. package/src/components/icons/krone_icons/Close.jsx +7 -0
  455. package/src/components/icons/krone_icons/Code.jsx +18 -0
  456. package/src/components/icons/krone_icons/Community.jsx +7 -0
  457. package/src/components/icons/krone_icons/Crown.jsx +7 -0
  458. package/src/components/icons/krone_icons/Document.jsx +7 -0
  459. package/src/components/icons/krone_icons/Downvote.jsx +7 -0
  460. package/src/components/icons/krone_icons/Ellipsis.jsx +18 -0
  461. package/src/components/icons/krone_icons/ExpertBadge.jsx +29 -0
  462. package/src/components/icons/krone_icons/Facebook.jsx +7 -0
  463. package/src/components/icons/krone_icons/Flag.jsx +7 -0
  464. package/src/components/icons/krone_icons/Home.jsx +29 -0
  465. package/src/components/icons/krone_icons/Italic.jsx +7 -0
  466. package/src/components/icons/krone_icons/KroneIcons.docs.mdx +21 -0
  467. package/src/components/icons/krone_icons/KroneIcons.stories.jsx +124 -0
  468. package/src/components/icons/krone_icons/KroneIcons.test.jsx +15 -0
  469. package/src/components/icons/krone_icons/LightArrow.jsx +7 -0
  470. package/src/components/icons/krone_icons/Link.jsx +8 -0
  471. package/src/components/icons/krone_icons/Login.jsx +11 -0
  472. package/src/components/icons/krone_icons/Logora.jsx +24 -0
  473. package/src/components/icons/krone_icons/Mail.jsx +7 -0
  474. package/src/components/icons/krone_icons/MinusCircle.jsx +16 -0
  475. package/src/components/icons/krone_icons/MobileClose.jsx +8 -0
  476. package/src/components/icons/krone_icons/MobileMenu.jsx +10 -0
  477. package/src/components/icons/krone_icons/Next.jsx +10 -0
  478. package/src/components/icons/krone_icons/OpenBlank.jsx +15 -0
  479. package/src/components/icons/krone_icons/OrderedList.jsx +7 -0
  480. package/src/components/icons/krone_icons/PauseCircle.jsx +10 -0
  481. package/src/components/icons/krone_icons/Point.jsx +8 -0
  482. package/src/components/icons/krone_icons/Question.jsx +29 -0
  483. package/src/components/icons/krone_icons/Refresh.jsx +7 -0
  484. package/src/components/icons/krone_icons/Reply.jsx +18 -0
  485. package/src/components/icons/krone_icons/Search.jsx +7 -0
  486. package/src/components/icons/krone_icons/Send.jsx +19 -0
  487. package/src/components/icons/krone_icons/Share.jsx +16 -0
  488. package/src/components/icons/krone_icons/SmallArrow.jsx +11 -0
  489. package/src/components/icons/krone_icons/Source.jsx +7 -0
  490. package/src/components/icons/krone_icons/Suggestion.jsx +29 -0
  491. package/src/components/icons/krone_icons/Twitter.jsx +10 -0
  492. package/src/components/icons/krone_icons/Underline.jsx +7 -0
  493. package/src/components/icons/krone_icons/Upvote.jsx +29 -0
  494. package/src/components/icons/krone_icons/User.jsx +30 -0
  495. package/src/components/icons/krone_icons/Versus.jsx +9 -0
  496. package/src/components/icons/krone_icons/Votebox.jsx +29 -0
  497. package/src/components/icons/krone_icons/index.js +52 -0
  498. package/src/components/icons/regular_icons/Alarm.jsx +7 -0
  499. package/src/components/icons/regular_icons/Announcement.jsx +16 -0
  500. package/src/components/icons/regular_icons/Arrow.jsx +7 -0
  501. package/src/components/icons/regular_icons/Blockquote.jsx +7 -0
  502. package/src/components/icons/regular_icons/Bold.jsx +7 -0
  503. package/src/components/icons/regular_icons/Camera.jsx +8 -0
  504. package/src/components/icons/regular_icons/Chat.jsx +10 -0
  505. package/src/components/icons/regular_icons/Check.jsx +7 -0
  506. package/src/components/icons/regular_icons/CheckCircle.jsx +17 -0
  507. package/src/components/icons/regular_icons/Checkbox.jsx +8 -0
  508. package/src/components/icons/regular_icons/Clap.jsx +7 -0
  509. package/src/components/icons/regular_icons/Clock.jsx +7 -0
  510. package/src/components/icons/regular_icons/Close.jsx +7 -0
  511. package/src/components/icons/regular_icons/Code.jsx +18 -0
  512. package/src/components/icons/regular_icons/Community.jsx +7 -0
  513. package/src/components/icons/regular_icons/Crown.jsx +7 -0
  514. package/src/components/icons/regular_icons/Document.jsx +7 -0
  515. package/src/components/icons/regular_icons/Downvote.jsx +7 -0
  516. package/src/components/icons/regular_icons/Ellipsis.jsx +8 -0
  517. package/src/components/icons/regular_icons/ExpertBadge.jsx +11 -0
  518. package/src/components/icons/regular_icons/Facebook.jsx +7 -0
  519. package/src/components/icons/regular_icons/Flag.jsx +7 -0
  520. package/src/components/icons/regular_icons/Home.jsx +7 -0
  521. package/src/components/icons/regular_icons/Italic.jsx +7 -0
  522. package/src/components/icons/regular_icons/LightArrow.jsx +7 -0
  523. package/src/components/icons/regular_icons/Link.jsx +8 -0
  524. package/src/components/icons/regular_icons/Login.jsx +11 -0
  525. package/src/components/icons/regular_icons/Logora.jsx +24 -0
  526. package/src/components/icons/regular_icons/Mail.jsx +7 -0
  527. package/src/components/icons/regular_icons/MinusCircle.jsx +16 -0
  528. package/src/components/icons/regular_icons/MobileClose.jsx +8 -0
  529. package/src/components/icons/regular_icons/MobileMenu.jsx +10 -0
  530. package/src/components/icons/regular_icons/Next.jsx +10 -0
  531. package/src/components/icons/regular_icons/OpenBlank.jsx +15 -0
  532. package/src/components/icons/regular_icons/OrderedList.jsx +7 -0
  533. package/src/components/icons/regular_icons/PauseCircle.jsx +10 -0
  534. package/src/components/icons/regular_icons/Point.jsx +8 -0
  535. package/src/components/icons/regular_icons/Question.jsx +8 -0
  536. package/src/components/icons/regular_icons/Refresh.jsx +7 -0
  537. package/src/components/icons/regular_icons/RegularIcons.docs.mdx +21 -0
  538. package/src/components/icons/regular_icons/RegularIcons.stories.jsx +123 -0
  539. package/src/components/icons/regular_icons/RegularIcons.test.jsx +15 -0
  540. package/src/components/icons/regular_icons/Reply.jsx +7 -0
  541. package/src/components/icons/regular_icons/Search.jsx +7 -0
  542. package/src/components/icons/regular_icons/Send.jsx +7 -0
  543. package/src/components/icons/regular_icons/Share.jsx +14 -0
  544. package/src/components/icons/regular_icons/SmallArrow.jsx +11 -0
  545. package/src/components/icons/regular_icons/Source.jsx +7 -0
  546. package/src/components/icons/regular_icons/Suggestion.jsx +7 -0
  547. package/src/components/icons/regular_icons/Twitter.jsx +10 -0
  548. package/src/components/icons/regular_icons/Underline.jsx +7 -0
  549. package/src/components/icons/regular_icons/Upvote.jsx +7 -0
  550. package/src/components/icons/regular_icons/User.jsx +7 -0
  551. package/src/components/icons/regular_icons/Versus.jsx +9 -0
  552. package/src/components/icons/regular_icons/Votebox.jsx +7 -0
  553. package/src/components/icons/regular_icons/index.js +52 -0
  554. package/src/components/icons/spiegel_icons/Alarm.jsx +7 -0
  555. package/src/components/icons/spiegel_icons/Announcement.jsx +16 -0
  556. package/src/components/icons/spiegel_icons/Arrow.jsx +7 -0
  557. package/src/components/icons/spiegel_icons/Blockquote.jsx +14 -0
  558. package/src/components/icons/spiegel_icons/Bold.jsx +7 -0
  559. package/src/components/icons/spiegel_icons/Camera.jsx +8 -0
  560. package/src/components/icons/spiegel_icons/Chat.jsx +7 -0
  561. package/src/components/icons/spiegel_icons/Check.jsx +11 -0
  562. package/src/components/icons/spiegel_icons/CheckCircle.jsx +8 -0
  563. package/src/components/icons/spiegel_icons/Checkbox.jsx +14 -0
  564. package/src/components/icons/spiegel_icons/Clap.jsx +15 -0
  565. package/src/components/icons/spiegel_icons/Clock.jsx +15 -0
  566. package/src/components/icons/spiegel_icons/Close.jsx +7 -0
  567. package/src/components/icons/spiegel_icons/Code.jsx +18 -0
  568. package/src/components/icons/spiegel_icons/Community.jsx +7 -0
  569. package/src/components/icons/spiegel_icons/Crown.jsx +7 -0
  570. package/src/components/icons/spiegel_icons/Downvote.jsx +7 -0
  571. package/src/components/icons/spiegel_icons/Ellipsis.jsx +8 -0
  572. package/src/components/icons/spiegel_icons/ExpertBadge.jsx +16 -0
  573. package/src/components/icons/spiegel_icons/Facebook.jsx +7 -0
  574. package/src/components/icons/spiegel_icons/Flag.jsx +8 -0
  575. package/src/components/icons/spiegel_icons/Home.jsx +7 -0
  576. package/src/components/icons/spiegel_icons/Italic.jsx +7 -0
  577. package/src/components/icons/spiegel_icons/LightArrow.jsx +7 -0
  578. package/src/components/icons/spiegel_icons/Link.jsx +17 -0
  579. package/src/components/icons/spiegel_icons/Login.jsx +7 -0
  580. package/src/components/icons/spiegel_icons/Logora.jsx +24 -0
  581. package/src/components/icons/spiegel_icons/Mail.jsx +7 -0
  582. package/src/components/icons/spiegel_icons/MinusCircle.jsx +8 -0
  583. package/src/components/icons/spiegel_icons/MobileClose.jsx +8 -0
  584. package/src/components/icons/spiegel_icons/MobileMenu.jsx +10 -0
  585. package/src/components/icons/spiegel_icons/Next.jsx +10 -0
  586. package/src/components/icons/spiegel_icons/OpenBlank.jsx +15 -0
  587. package/src/components/icons/spiegel_icons/OrderedList.jsx +20 -0
  588. package/src/components/icons/spiegel_icons/PauseCircle.jsx +8 -0
  589. package/src/components/icons/spiegel_icons/Point.jsx +8 -0
  590. package/src/components/icons/spiegel_icons/Question.jsx +17 -0
  591. package/src/components/icons/spiegel_icons/Refresh.jsx +7 -0
  592. package/src/components/icons/spiegel_icons/Reply.jsx +7 -0
  593. package/src/components/icons/spiegel_icons/Search.jsx +7 -0
  594. package/src/components/icons/spiegel_icons/Send.jsx +7 -0
  595. package/src/components/icons/spiegel_icons/Share.jsx +14 -0
  596. package/src/components/icons/spiegel_icons/SmallArrow.jsx +7 -0
  597. package/src/components/icons/spiegel_icons/Source.jsx +7 -0
  598. package/src/components/icons/spiegel_icons/SpiegelIcons.docs.mdx +21 -0
  599. package/src/components/icons/spiegel_icons/SpiegelIcons.stories.jsx +121 -0
  600. package/src/components/icons/spiegel_icons/SpiegelIcons.test.jsx +15 -0
  601. package/src/components/icons/spiegel_icons/Suggestion.jsx +7 -0
  602. package/src/components/icons/spiegel_icons/Twitter.jsx +10 -0
  603. package/src/components/icons/spiegel_icons/Underline.jsx +14 -0
  604. package/src/components/icons/spiegel_icons/Upvote.jsx +7 -0
  605. package/src/components/icons/spiegel_icons/User.jsx +7 -0
  606. package/src/components/icons/spiegel_icons/Versus.jsx +11 -0
  607. package/src/components/icons/spiegel_icons/Votebox.jsx +14 -0
  608. package/src/components/icons/spiegel_icons/index.js +51 -0
  609. package/src/components/information/information_box/InformationBox.docs.mdx +28 -0
  610. package/src/components/information/information_box/InformationBox.jsx +54 -0
  611. package/src/components/information/information_box/InformationBox.module.scss +92 -0
  612. package/src/components/information/information_box/InformationBox.stories.jsx +50 -0
  613. package/src/components/information/information_box/InformationBox.test.jsx +94 -0
  614. package/src/components/information/information_box/index.js +1 -0
  615. package/src/components/input/argument_input/ArgumentInput.docs.mdx +29 -0
  616. package/src/components/input/argument_input/ArgumentInput.jsx +420 -0
  617. package/src/components/input/argument_input/ArgumentInput.module.scss +166 -0
  618. package/src/components/input/argument_input/ArgumentInput.stories.jsx +181 -0
  619. package/src/components/input/argument_input/ArgumentInput.test.jsx +482 -0
  620. package/src/components/input/argument_input/index.js +1 -0
  621. package/src/components/input/checkbox/hidden/hidden-checkbox.docs.mdx +4 -0
  622. package/src/components/input/checkbox/hidden/hidden-checkbox.jsx +8 -0
  623. package/src/components/input/checkbox/hidden/hidden-checkbox.module.scss +28 -0
  624. package/src/components/input/checkbox/hidden/hidden-checkbox.stories.jsx +73 -0
  625. package/src/components/input/checkbox/hidden/index.js +1 -0
  626. package/src/components/input/checkbox/indicator/checkbox-indicator.docs.mdx +9 -0
  627. package/src/components/input/checkbox/indicator/checkbox-indicator.jsx +17 -0
  628. package/src/components/input/checkbox/indicator/checkbox-indicator.module.scss +26 -0
  629. package/src/components/input/checkbox/indicator/checkbox-indicator.stories.jsx +51 -0
  630. package/src/components/input/checkbox/indicator/index.js +1 -0
  631. package/src/components/input/checkbox/label/checkbox-label.docs.mdx +39 -0
  632. package/src/components/input/checkbox/label/checkbox-label.jsx +40 -0
  633. package/src/components/input/checkbox/label/checkbox.stories.jsx +57 -0
  634. package/src/components/input/checkbox/label/index.js +1 -0
  635. package/src/components/input/input_provider/InputProvider.docs.mdx +38 -0
  636. package/src/components/input/input_provider/InputProvider.jsx +16 -0
  637. package/src/components/input/input_provider/InputProvider.test.jsx +102 -0
  638. package/src/components/input/input_provider/index.js +2 -0
  639. package/src/components/input/input_provider/useInput.jsx +8 -0
  640. package/src/components/input/search_input/SearchInput.docs.mdx +25 -0
  641. package/src/components/input/search_input/SearchInput.jsx +71 -0
  642. package/src/components/input/search_input/SearchInput.module.scss +18 -0
  643. package/src/components/input/search_input/SearchInput.stories.jsx +45 -0
  644. package/src/components/input/search_input/SearchInput.test.jsx +95 -0
  645. package/src/components/input/search_input/index.js +1 -0
  646. package/src/components/input/select/Select.docs.mdx +37 -0
  647. package/src/components/input/select/Select.jsx +102 -0
  648. package/src/components/input/select/Select.module.scss +72 -0
  649. package/src/components/input/select/Select.stories.jsx +75 -0
  650. package/src/components/input/select/Select.test.jsx +136 -0
  651. package/src/components/input/select/index.js +1 -0
  652. package/src/components/input/text_editor/EditorTheme.js +71 -0
  653. package/src/components/input/text_editor/TextEditor.docs.mdx +31 -0
  654. package/src/components/input/text_editor/TextEditor.jsx +205 -0
  655. package/src/components/input/text_editor/TextEditor.module.scss +140 -0
  656. package/src/components/input/text_editor/TextEditor.stories.jsx +227 -0
  657. package/src/components/input/text_editor/TextEditor.test.jsx +654 -0
  658. package/src/components/input/text_editor/index.js +2 -0
  659. package/src/components/input/text_editor/lexicalToHtml.js +23 -0
  660. package/src/components/input/text_editor/plugins/AutoSavePlugin.jsx +37 -0
  661. package/src/components/input/text_editor/plugins/FocusPlugin.jsx +19 -0
  662. package/src/components/input/text_editor/plugins/MaxLengthPlugin.jsx +44 -0
  663. package/src/components/input/text_editor/plugins/ResetPlugin.jsx +35 -0
  664. package/src/components/input/text_editor/plugins/SetContentPlugin.jsx +24 -0
  665. package/src/components/input/text_editor/plugins/SetRichContentPlugin.jsx +20 -0
  666. package/src/components/input/text_editor/plugins/ToolbarPlugin.jsx +233 -0
  667. package/src/components/input/text_editor/plugins/ToolbarPlugin.module.scss +77 -0
  668. package/src/components/input/text_input/TextInput.docs.mdx +73 -0
  669. package/src/components/input/text_input/TextInput.jsx +46 -0
  670. package/src/components/input/text_input/TextInput.module.scss +146 -0
  671. package/src/components/input/text_input/TextInput.stories.jsx +101 -0
  672. package/src/components/input/text_input/TextInput.test.jsx +64 -0
  673. package/src/components/input/text_input/color-accent.js +16 -0
  674. package/src/components/input/text_input/index.js +3 -0
  675. package/src/components/input/text_input/message.jsx +12 -0
  676. package/src/components/input/toggle/Toggle.docs.mdx +23 -0
  677. package/src/components/input/toggle/Toggle.jsx +25 -0
  678. package/src/components/input/toggle/Toggle.module.scss +73 -0
  679. package/src/components/input/toggle/Toggle.stories.jsx +42 -0
  680. package/src/components/input/toggle/Toggle.test.jsx +39 -0
  681. package/src/components/input/toggle/index.js +1 -0
  682. package/src/components/input/toggle_position/TogglePosition.docs.mdx +20 -0
  683. package/src/components/input/toggle_position/TogglePosition.jsx +55 -0
  684. package/src/components/input/toggle_position/TogglePosition.module.scss +46 -0
  685. package/src/components/input/toggle_position/TogglePosition.stories.jsx +96 -0
  686. package/src/components/input/toggle_position/TogglePosition.test.jsx +66 -0
  687. package/src/components/input/toggle_position/index.js +1 -0
  688. package/src/components/intl/intl_provider/IntlContext.jsx +3 -0
  689. package/src/components/intl/intl_provider/IntlProvider.docs.mdx +37 -0
  690. package/src/components/intl/intl_provider/IntlProvider.jsx +92 -0
  691. package/src/components/intl/intl_provider/IntlProvider.test.jsx +153 -0
  692. package/src/components/intl/intl_provider/index.js +3 -0
  693. package/src/components/intl/intl_provider/locales/en.json +4 -0
  694. package/src/components/intl/intl_provider/locales/es.json +4 -0
  695. package/src/components/intl/intl_provider/locales/fr.json +6 -0
  696. package/src/components/intl/intl_provider/locales/index.js +11 -0
  697. package/src/components/intl/intl_provider/useLocale.jsx +8 -0
  698. package/src/components/list/list_provider/ListProvider.docs.mdx +51 -0
  699. package/src/components/list/list_provider/ListProvider.jsx +32 -0
  700. package/src/components/list/list_provider/ListProvider.stories.jsx +92 -0
  701. package/src/components/list/list_provider/ListProvider.test.jsx +137 -0
  702. package/src/components/list/list_provider/index.js +2 -0
  703. package/src/components/list/list_provider/useList.jsx +8 -0
  704. package/src/components/list/paginated_list/PaginatedList.docs.mdx +68 -0
  705. package/src/components/list/paginated_list/PaginatedList.jsx +397 -0
  706. package/src/components/list/paginated_list/PaginatedList.module.scss +88 -0
  707. package/src/components/list/paginated_list/PaginatedList.stories.jsx +301 -0
  708. package/src/components/list/paginated_list/PaginatedList.test.jsx +1335 -0
  709. package/src/components/list/paginated_list/VotePaginatedList.jsx +26 -0
  710. package/src/components/list/paginated_list/VotePaginatedList.test.jsx +1518 -0
  711. package/src/components/list/paginated_list/action_bar/ActionBar.jsx +132 -0
  712. package/src/components/list/paginated_list/action_bar/ActionBar.module.scss +81 -0
  713. package/src/components/list/paginated_list/index.js +3 -0
  714. package/src/components/list/pagination/Pagination.docs.mdx +32 -0
  715. package/src/components/list/pagination/Pagination.jsx +58 -0
  716. package/src/components/list/pagination/Pagination.module.scss +10 -0
  717. package/src/components/list/pagination/Pagination.stories.jsx +44 -0
  718. package/src/components/list/pagination/Pagination.test.jsx +80 -0
  719. package/src/components/list/pagination/index.js +1 -0
  720. package/src/components/modal/side_modal/SideModal.docs.mdx +31 -0
  721. package/src/components/modal/side_modal/SideModal.jsx +85 -0
  722. package/src/components/modal/side_modal/SideModal.module.scss +83 -0
  723. package/src/components/modal/side_modal/SideModal.stories.jsx +112 -0
  724. package/src/components/modal/side_modal/SideModal.test.jsx +36 -0
  725. package/src/components/modal/side_modal/index.js +1 -0
  726. package/src/components/navbar/navbar_button/NavbarButton.docs.mdx +37 -0
  727. package/src/components/navbar/navbar_button/NavbarButton.jsx +43 -0
  728. package/src/components/navbar/navbar_button/NavbarButton.module.scss +45 -0
  729. package/src/components/navbar/navbar_button/NavbarButton.stories.jsx +93 -0
  730. package/src/components/navbar/navbar_button/NavbarButton.test.jsx +67 -0
  731. package/src/components/navbar/navbar_button/index.js +1 -0
  732. package/src/components/navbar/navbar_modal/NavbarModal.docs.mdx +24 -0
  733. package/src/components/navbar/navbar_modal/NavbarModal.jsx +175 -0
  734. package/src/components/navbar/navbar_modal/NavbarModal.module.scss +132 -0
  735. package/src/components/navbar/navbar_modal/NavbarModal.stories.jsx +96 -0
  736. package/src/components/navbar/navbar_modal/NavbarModal.test.jsx +155 -0
  737. package/src/components/navbar/navbar_modal/index.js +1 -0
  738. package/src/components/notification/notification_item/NotificationItem.docs.mdx +35 -0
  739. package/src/components/notification/notification_item/NotificationItem.jsx +71 -0
  740. package/src/components/notification/notification_item/NotificationItem.module.scss +56 -0
  741. package/src/components/notification/notification_item/NotificationItem.stories.jsx +121 -0
  742. package/src/components/notification/notification_item/NotificationItem.test.jsx +97 -0
  743. package/src/components/notification/notification_item/index.js +1 -0
  744. package/src/components/notification/notification_menu/NotificationMenu.docs.mdx +25 -0
  745. package/src/components/notification/notification_menu/NotificationMenu.jsx +61 -0
  746. package/src/components/notification/notification_menu/NotificationMenu.module.scss +49 -0
  747. package/src/components/notification/notification_menu/NotificationMenu.stories.jsx +94 -0
  748. package/src/components/notification/notification_menu/NotificationMenu.test.jsx +131 -0
  749. package/src/components/notification/notification_menu/index.js +1 -0
  750. package/src/components/progress/loader/Loader.docs.mdx +13 -0
  751. package/src/components/progress/loader/Loader.jsx +9 -0
  752. package/src/components/progress/loader/Loader.module.scss +26 -0
  753. package/src/components/progress/loader/Loader.stories.jsx +11 -0
  754. package/src/components/progress/loader/Loader.test.jsx +11 -0
  755. package/src/components/progress/loader/index.js +3 -0
  756. package/src/components/progress/progress_bar/ProgressBar.docs.mdx +29 -0
  757. package/src/components/progress/progress_bar/ProgressBar.jsx +75 -0
  758. package/src/components/progress/progress_bar/ProgressBar.module.scss +87 -0
  759. package/src/components/progress/progress_bar/ProgressBar.stories.jsx +43 -0
  760. package/src/components/progress/progress_bar/ProgressBar.test.jsx +126 -0
  761. package/src/components/progress/progress_bar/index.js +1 -0
  762. package/src/components/proposal/proposal_box/ProposalBox.docs.mdx +39 -0
  763. package/src/components/proposal/proposal_box/ProposalBox.jsx +108 -0
  764. package/src/components/proposal/proposal_box/ProposalBox.module.scss +80 -0
  765. package/src/components/proposal/proposal_box/ProposalBox.stories.jsx +161 -0
  766. package/src/components/proposal/proposal_box/ProposalBox.test.jsx +137 -0
  767. package/src/components/proposal/proposal_box/index.js +1 -0
  768. package/src/components/report/report_box/ReportBox.docs.mdx +35 -0
  769. package/src/components/report/report_box/ReportBox.jsx +120 -0
  770. package/src/components/report/report_box/ReportBox.module.scss +54 -0
  771. package/src/components/report/report_box/ReportBox.stories.jsx +247 -0
  772. package/src/components/report/report_box/ReportBox.test.jsx +232 -0
  773. package/src/components/report/report_box/index.js +1 -0
  774. package/src/components/section/section_box/SectionBox.docs.mdx +19 -0
  775. package/src/components/section/section_box/SectionBox.jsx +32 -0
  776. package/src/components/section/section_box/SectionBox.module.scss +57 -0
  777. package/src/components/section/section_box/SectionBox.stories.jsx +39 -0
  778. package/src/components/section/section_box/SectionBox.test.jsx +44 -0
  779. package/src/components/section/section_box/index.js +1 -0
  780. package/src/components/share/share_box/ShareBox.docs.mdx +27 -0
  781. package/src/components/share/share_box/ShareBox.jsx +71 -0
  782. package/src/components/share/share_box/ShareBox.module.scss +38 -0
  783. package/src/components/share/share_box/ShareBox.stories.jsx +42 -0
  784. package/src/components/share/share_box/ShareBox.test.jsx +142 -0
  785. package/src/components/share/share_box/index.js +1 -0
  786. package/src/components/share/share_button/ShareButton.docs.mdx +26 -0
  787. package/src/components/share/share_button/ShareButton.jsx +102 -0
  788. package/src/components/share/share_button/ShareButton.module.scss +68 -0
  789. package/src/components/share/share_button/ShareButton.stories.jsx +51 -0
  790. package/src/components/share/share_button/ShareButton.test.jsx +117 -0
  791. package/src/components/share/share_button/index.js +1 -0
  792. package/src/components/share/share_modal/ShareModal.docs.mdx +29 -0
  793. package/src/components/share/share_modal/ShareModal.jsx +49 -0
  794. package/src/components/share/share_modal/ShareModal.module.scss +21 -0
  795. package/src/components/share/share_modal/ShareModal.stories.jsx +48 -0
  796. package/src/components/share/share_modal/ShareModal.test.jsx +70 -0
  797. package/src/components/share/share_modal/index.js +1 -0
  798. package/src/components/skeleton/box_skeleton/BoxSkeleton.docs.mdx +14 -0
  799. package/src/components/skeleton/box_skeleton/BoxSkeleton.jsx +38 -0
  800. package/src/components/skeleton/box_skeleton/BoxSkeleton.stories.jsx +46 -0
  801. package/src/components/skeleton/box_skeleton/BoxSkeleton.test.jsx +39 -0
  802. package/src/components/skeleton/box_skeleton/index.js +1 -0
  803. package/src/components/skeleton/user_content_skeleton/UserContentSkeleton.docs.mdx +15 -0
  804. package/src/components/skeleton/user_content_skeleton/UserContentSkeleton.jsx +56 -0
  805. package/src/components/skeleton/user_content_skeleton/UserContentSkeleton.module.scss +78 -0
  806. package/src/components/skeleton/user_content_skeleton/UserContentSkeleton.stories.jsx +44 -0
  807. package/src/components/skeleton/user_content_skeleton/UserContentSkeleton.test.jsx +55 -0
  808. package/src/components/skeleton/user_content_skeleton/index.js +1 -0
  809. package/src/components/source/context_source_box/ContextSourceBox.docs.mdx +27 -0
  810. package/src/components/source/context_source_box/ContextSourceBox.jsx +38 -0
  811. package/src/components/source/context_source_box/ContextSourceBox.module.scss +50 -0
  812. package/src/components/source/context_source_box/ContextSourceBox.stories.jsx +36 -0
  813. package/src/components/source/context_source_box/ContextSourceBox.test.jsx +46 -0
  814. package/src/components/source/context_source_box/index.js +1 -0
  815. package/src/components/source/context_source_list/ContextSourceList.docs.mdx +37 -0
  816. package/src/components/source/context_source_list/ContextSourceList.jsx +42 -0
  817. package/src/components/source/context_source_list/ContextSourceList.module.scss +38 -0
  818. package/src/components/source/context_source_list/ContextSourceList.stories.jsx +39 -0
  819. package/src/components/source/context_source_list/ContextSourceList.test.jsx +47 -0
  820. package/src/components/source/context_source_list/index.js +1 -0
  821. package/src/components/source/source_box/SourceBox.docs.mdx +23 -0
  822. package/src/components/source/source_box/SourceBox.jsx +43 -0
  823. package/src/components/source/source_box/SourceBox.module.scss +43 -0
  824. package/src/components/source/source_box/SourceBox.stories.jsx +26 -0
  825. package/src/components/source/source_box/SourceBox.test.jsx +30 -0
  826. package/src/components/source/source_box/index.js +1 -0
  827. package/src/components/source/source_list_item/SourceListItem.docs.mdx +23 -0
  828. package/src/components/source/source_list_item/SourceListItem.jsx +28 -0
  829. package/src/components/source/source_list_item/SourceListItem.module.scss +33 -0
  830. package/src/components/source/source_list_item/SourceListItem.stories.jsx +40 -0
  831. package/src/components/source/source_list_item/SourceListItem.test.jsx +41 -0
  832. package/src/components/source/source_list_item/index.js +1 -0
  833. package/src/components/source/source_modal/SourceModal.docs.mdx +29 -0
  834. package/src/components/source/source_modal/SourceModal.jsx +157 -0
  835. package/src/components/source/source_modal/SourceModal.module.scss +45 -0
  836. package/src/components/source/source_modal/SourceModal.stories.jsx +82 -0
  837. package/src/components/source/source_modal/SourceModal.test.jsx +180 -0
  838. package/src/components/source/source_modal/index.js +1 -0
  839. package/src/components/styles/display/_display.scss +127 -0
  840. package/src/components/styles/display/display.docs.mdx +8 -0
  841. package/src/components/styles/display/index.scss +1 -0
  842. package/src/components/styles/flex/_flex.scss +55 -0
  843. package/src/components/styles/flex/flex.docs.mdx +8 -0
  844. package/src/components/styles/flex/index.scss +1 -0
  845. package/src/components/styles/spacing/_spacing.scss +107 -0
  846. package/src/components/styles/spacing/index.scss +1 -0
  847. package/src/components/styles/spacing/spacing.docs.mdx +8 -0
  848. package/src/components/styles/tabs/_tabs.scss +159 -0
  849. package/src/components/styles/tabs/index.scss +1 -0
  850. package/src/components/styles/tabs/tabs.docs.mdx +8 -0
  851. package/src/components/styles/theme/_theme.scss +51 -0
  852. package/src/components/styles/theme/index.scss +1 -0
  853. package/src/components/styles/theme/theme.docs.mdx +89 -0
  854. package/src/components/suggestion/suggestion_banner/SuggestionBanner.docs.mdx +35 -0
  855. package/src/components/suggestion/suggestion_banner/SuggestionBanner.jsx +86 -0
  856. package/src/components/suggestion/suggestion_banner/SuggestionBanner.module.scss +93 -0
  857. package/src/components/suggestion/suggestion_banner/SuggestionBanner.stories.jsx +128 -0
  858. package/src/components/suggestion/suggestion_banner/SuggestionBanner.test.jsx +237 -0
  859. package/src/components/suggestion/suggestion_banner/index.js +1 -0
  860. package/src/components/suggestion/suggestion_box/SuggestionBox.docs.mdx +39 -0
  861. package/src/components/suggestion/suggestion_box/SuggestionBox.jsx +112 -0
  862. package/src/components/suggestion/suggestion_box/SuggestionBox.module.scss +55 -0
  863. package/src/components/suggestion/suggestion_box/SuggestionBox.stories.jsx +147 -0
  864. package/src/components/suggestion/suggestion_box/SuggestionBox.test.jsx +184 -0
  865. package/src/components/suggestion/suggestion_box/index.js +1 -0
  866. package/src/components/suggestion/suggestion_input/SuggestionInput.docs.mdx +19 -0
  867. package/src/components/suggestion/suggestion_input/SuggestionInput.jsx +212 -0
  868. package/src/components/suggestion/suggestion_input/SuggestionInput.module.scss +50 -0
  869. package/src/components/suggestion/suggestion_input/SuggestionInput.stories.jsx +87 -0
  870. package/src/components/suggestion/suggestion_input/SuggestionInput.test.jsx +77 -0
  871. package/src/components/suggestion/suggestion_input/index.js +1 -0
  872. package/src/components/summary/argument_summary_box/ArgumentSummaryBox.docs.mdx +19 -0
  873. package/src/components/summary/argument_summary_box/ArgumentSummaryBox.jsx +40 -0
  874. package/src/components/summary/argument_summary_box/ArgumentSummaryBox.module.scss +67 -0
  875. package/src/components/summary/argument_summary_box/ArgumentSummaryBox.stories.jsx +57 -0
  876. package/src/components/summary/argument_summary_box/ArgumentSummaryBox.test.jsx +18 -0
  877. package/src/components/summary/argument_summary_box/index.js +1 -0
  878. package/src/components/summary/keyword_box/KeywordBox.docs.mdx +21 -0
  879. package/src/components/summary/keyword_box/KeywordBox.jsx +43 -0
  880. package/src/components/summary/keyword_box/KeywordBox.module.scss +54 -0
  881. package/src/components/summary/keyword_box/KeywordBox.stories.jsx +49 -0
  882. package/src/components/summary/keyword_box/KeywordBox.test.jsx +47 -0
  883. package/src/components/summary/keyword_box/index.js +1 -0
  884. package/src/components/summary/summary/Summary.docs.mdx +23 -0
  885. package/src/components/summary/summary/Summary.jsx +93 -0
  886. package/src/components/summary/summary/Summary.module.scss +26 -0
  887. package/src/components/summary/summary/Summary.stories.jsx +95 -0
  888. package/src/components/summary/summary/Summary.test.jsx +116 -0
  889. package/src/components/summary/summary/index.js +1 -0
  890. package/src/components/summary/summary_box/SummaryBox.docs.mdx +19 -0
  891. package/src/components/summary/summary_box/SummaryBox.jsx +39 -0
  892. package/src/components/summary/summary_box/SummaryBox.module.scss +56 -0
  893. package/src/components/summary/summary_box/SummaryBox.stories.jsx +83 -0
  894. package/src/components/summary/summary_box/SummaryBox.test.jsx +47 -0
  895. package/src/components/summary/summary_box/SummaryBoxComposition.module.scss +3 -0
  896. package/src/components/summary/summary_box/index.js +1 -0
  897. package/src/components/tag/tag/Tag.docs.mdx +19 -0
  898. package/src/components/tag/tag/Tag.jsx +35 -0
  899. package/src/components/tag/tag/Tag.module.scss +34 -0
  900. package/src/components/tag/tag/Tag.stories.jsx +70 -0
  901. package/src/components/tag/tag/Tag.test.jsx +29 -0
  902. package/src/components/tag/tag/index.js +1 -0
  903. package/src/components/text/expandable_text/ArrowIcon.jsx +7 -0
  904. package/src/components/text/expandable_text/ExpandableText.docs.mdx +42 -0
  905. package/src/components/text/expandable_text/ExpandableText.jsx +81 -0
  906. package/src/components/text/expandable_text/ExpandableText.module.scss +76 -0
  907. package/src/components/text/expandable_text/ExpandableText.stories.jsx +63 -0
  908. package/src/components/text/expandable_text/ExpandableText.test.jsx +23 -0
  909. package/src/components/text/expandable_text/index.js +1 -0
  910. package/src/components/text/read_more/ReadMore.docs.mdx +23 -0
  911. package/src/components/text/read_more/ReadMore.jsx +104 -0
  912. package/src/components/text/read_more/ReadMore.module.scss +51 -0
  913. package/src/components/text/read_more/ReadMore.stories.jsx +141 -0
  914. package/src/components/text/read_more/ReadMore.test.jsx +87 -0
  915. package/src/components/text/read_more/index.js +1 -0
  916. package/src/components/tools/hash_scroll/HashScroll.docs.mdx +27 -0
  917. package/src/components/tools/hash_scroll/HashScroll.jsx +36 -0
  918. package/src/components/tools/hash_scroll/HashScroll.test.jsx +66 -0
  919. package/src/components/tools/hash_scroll/index.js +1 -0
  920. package/src/components/tools/scroll_to_top/ScrollToTop.docs.mdx +28 -0
  921. package/src/components/tools/scroll_to_top/ScrollToTop.jsx +22 -0
  922. package/src/components/tools/scroll_to_top/ScrollToTop.stories.jsx +40 -0
  923. package/src/components/tools/scroll_to_top/ScrollToTop.test.jsx +36 -0
  924. package/src/components/tools/scroll_to_top/index.js +1 -0
  925. package/src/components/translation/translated_content/TranslatedContent.jsx +24 -0
  926. package/src/components/translation/translated_content/TranslatedContent.test.jsx +30 -0
  927. package/src/components/translation/translated_content/index.js +3 -0
  928. package/src/components/translation/translated_content/useTranslatedContent.docs.mdx +80 -0
  929. package/src/components/translation/translated_content/useTranslatedContent.jsx +57 -0
  930. package/src/components/translation/translated_content/useTranslatedContent.test.jsx +118 -0
  931. package/src/components/translation/translation_button/TranslationButton.docs.mdx +18 -0
  932. package/src/components/translation/translation_button/TranslationButton.jsx +46 -0
  933. package/src/components/translation/translation_button/TranslationButton.module.scss +10 -0
  934. package/src/components/translation/translation_button/TranslationButton.stories.jsx +30 -0
  935. package/src/components/translation/translation_button/TranslationButton.test.jsx +35 -0
  936. package/src/components/translation/translation_button/index.js +1 -0
  937. package/src/components/user/author_box/AuthorBox.docs.mdx +35 -0
  938. package/src/components/user/author_box/AuthorBox.jsx +128 -0
  939. package/src/components/user/author_box/AuthorBox.module.scss +110 -0
  940. package/src/components/user/author_box/AuthorBox.stories.jsx +193 -0
  941. package/src/components/user/author_box/AuthorBox.test.jsx +171 -0
  942. package/src/components/user/author_box/index.js +1 -0
  943. package/src/components/user/avatar/Avatar.docs.mdx +31 -0
  944. package/src/components/user/avatar/Avatar.jsx +63 -0
  945. package/src/components/user/avatar/Avatar.module.scss +30 -0
  946. package/src/components/user/avatar/Avatar.stories.jsx +79 -0
  947. package/src/components/user/avatar/Avatar.test.jsx +114 -0
  948. package/src/components/user/avatar/DefaultAvatar.jsx +13 -0
  949. package/src/components/user/avatar/index.js +1 -0
  950. package/src/components/user/avatar_selector/AvatarSelector.docs.mdx +25 -0
  951. package/src/components/user/avatar_selector/AvatarSelector.jsx +65 -0
  952. package/src/components/user/avatar_selector/AvatarSelector.module.scss +105 -0
  953. package/src/components/user/avatar_selector/AvatarSelector.stories.jsx +46 -0
  954. package/src/components/user/avatar_selector/AvatarSelector.test.jsx +98 -0
  955. package/src/components/user/avatar_selector/index.js +1 -0
  956. package/src/components/user/update_user_info_modal/UpdateUserInfoModal.docs.mdx +22 -0
  957. package/src/components/user/update_user_info_modal/UpdateUserInfoModal.jsx +254 -0
  958. package/src/components/user/update_user_info_modal/UpdateUserInfoModal.module.scss +176 -0
  959. package/src/components/user/update_user_info_modal/UpdateUserInfoModal.stories.jsx +113 -0
  960. package/src/components/user/update_user_info_modal/UpdateUserInfoModal.test.jsx +213 -0
  961. package/src/components/user/update_user_info_modal/index.js +2 -0
  962. package/src/components/user/update_user_info_modal/useUpdateUserInfo.jsx +40 -0
  963. package/src/components/user/user_box/UserBox.docs.mdx +21 -0
  964. package/src/components/user/user_box/UserBox.jsx +59 -0
  965. package/src/components/user/user_box/UserBox.module.scss +86 -0
  966. package/src/components/user/user_box/UserBox.stories.jsx +82 -0
  967. package/src/components/user/user_box/UserBox.test.jsx +95 -0
  968. package/src/components/user/user_box/index.js +1 -0
  969. package/src/components/user/user_box_small/UserBoxSmall.docs.mdx +20 -0
  970. package/src/components/user/user_box_small/UserBoxSmall.jsx +36 -0
  971. package/src/components/user/user_box_small/UserBoxSmall.module.scss +21 -0
  972. package/src/components/user/user_box_small/UserBoxSmall.stories.jsx +38 -0
  973. package/src/components/user/user_box_small/UserBoxSmall.test.jsx +49 -0
  974. package/src/components/user/user_box_small/index.js +1 -0
  975. package/src/components/user_content/content_footer/ContentFooter.docs.mdx +36 -0
  976. package/src/components/user_content/content_footer/ContentFooter.jsx +234 -0
  977. package/src/components/user_content/content_footer/ContentFooter.module.scss +79 -0
  978. package/src/components/user_content/content_footer/ContentFooter.stories.jsx +438 -0
  979. package/src/components/user_content/content_footer/ContentFooter.test.jsx +246 -0
  980. package/src/components/user_content/content_footer/index.js +1 -0
  981. package/src/components/user_content/content_header/ContentHeader.docs.mdx +27 -0
  982. package/src/components/user_content/content_header/ContentHeader.jsx +131 -0
  983. package/src/components/user_content/content_header/ContentHeader.module.scss +111 -0
  984. package/src/components/user_content/content_header/ContentHeader.stories.jsx +221 -0
  985. package/src/components/user_content/content_header/ContentHeader.test.jsx +98 -0
  986. package/src/components/user_content/content_header/index.js +1 -0
  987. package/src/components/user_content/summary_content_box/SummaryContentBox.docs.mdx +25 -0
  988. package/src/components/user_content/summary_content_box/SummaryContentBox.jsx +89 -0
  989. package/src/components/user_content/summary_content_box/SummaryContentBox.module.scss +65 -0
  990. package/src/components/user_content/summary_content_box/SummaryContentBox.stories.jsx +130 -0
  991. package/src/components/user_content/summary_content_box/SummaryContentBox.test.jsx +169 -0
  992. package/src/components/user_content/summary_content_box/index.js +1 -0
  993. package/src/components/user_content/use_delete_content/index.js +1 -0
  994. package/src/components/user_content/use_delete_content/useDeleteContent.docs.mdx +34 -0
  995. package/src/components/user_content/use_delete_content/useDeleteContent.jsx +55 -0
  996. package/src/components/user_content/use_delete_content/useDeleteContent.test.jsx +78 -0
  997. package/src/components/user_content/use_report_content/ReportModal.docs.mdx +54 -0
  998. package/src/components/user_content/use_report_content/ReportModal.jsx +187 -0
  999. package/src/components/user_content/use_report_content/ReportModal.module.scss +121 -0
  1000. package/src/components/user_content/use_report_content/ReportModal.stories.jsx +61 -0
  1001. package/src/components/user_content/use_report_content/ReportModal.test.jsx +51 -0
  1002. package/src/components/user_content/use_report_content/index.js +2 -0
  1003. package/src/components/user_content/use_report_content/useReportContent.docs.mdx +24 -0
  1004. package/src/components/user_content/use_report_content/useReportContent.jsx +32 -0
  1005. package/src/components/user_content/use_report_content/useReportContent.test.jsx +138 -0
  1006. package/src/components/util/lang_emojis/index.js +1 -0
  1007. package/src/components/util/lang_emojis/langEmojis.docs.mdx +10 -0
  1008. package/src/components/util/lang_emojis/langEmojis.js +72 -0
  1009. package/src/components/util/lang_emojis/langEmojis.test.jsx +63 -0
  1010. package/src/components/util/location/Location.docs.mdx +18 -0
  1011. package/src/components/util/location/Location.js +84 -0
  1012. package/src/components/util/location/Location.test.jsx +24 -0
  1013. package/src/components/util/location/index.js +1 -0
  1014. package/src/components/util/unique_by/index.js +1 -0
  1015. package/src/components/util/unique_by/uniqueBy.docs.mdx +24 -0
  1016. package/src/components/util/unique_by/uniqueBy.js +9 -0
  1017. package/src/components/util/unique_by/uniqueBy.test.jsx +29 -0
  1018. package/src/components/vote/suggestion_vote_box/SuggestionVoteBox.docs.mdx +24 -0
  1019. package/src/components/vote/suggestion_vote_box/SuggestionVoteBox.jsx +87 -0
  1020. package/src/components/vote/suggestion_vote_box/SuggestionVoteBox.module.scss +17 -0
  1021. package/src/components/vote/suggestion_vote_box/SuggestionVoteBox.stories.jsx +97 -0
  1022. package/src/components/vote/suggestion_vote_box/SuggestionVoteBox.test.jsx +182 -0
  1023. package/src/components/vote/suggestion_vote_box/index.js +1 -0
  1024. package/src/components/vote/up_down_vote_box/UpDownVoteBox.docs.mdx +24 -0
  1025. package/src/components/vote/up_down_vote_box/UpDownVoteBox.jsx +64 -0
  1026. package/src/components/vote/up_down_vote_box/UpDownVoteBox.module.scss +35 -0
  1027. package/src/components/vote/up_down_vote_box/UpDownVoteBox.stories.jsx +97 -0
  1028. package/src/components/vote/up_down_vote_box/UpDownVoteBox.test.jsx +173 -0
  1029. package/src/components/vote/up_down_vote_box/index.js +1 -0
  1030. package/src/components/vote/use_vote/index.js +1 -0
  1031. package/src/components/vote/use_vote/useVote.docs.mdx +42 -0
  1032. package/src/components/vote/use_vote/useVote.jsx +165 -0
  1033. package/src/components/vote/use_vote/useVote.test.jsx +294 -0
  1034. package/src/components/vote/vote_box/VoteBox.docs.mdx +45 -0
  1035. package/src/components/vote/vote_box/VoteBox.jsx +420 -0
  1036. package/src/components/vote/vote_box/VoteBox.module.scss +254 -0
  1037. package/src/components/vote/vote_box/VoteBox.stories.jsx +319 -0
  1038. package/src/components/vote/vote_box/VoteBox.test.jsx +256 -0
  1039. package/src/components/vote/vote_box/index.js +1 -0
  1040. package/src/components/vote/vote_button/VoteButton.docs.mdx +24 -0
  1041. package/src/components/vote/vote_button/VoteButton.jsx +59 -0
  1042. package/src/components/vote/vote_button/VoteButton.module.scss +35 -0
  1043. package/src/components/vote/vote_button/VoteButton.stories.jsx +97 -0
  1044. package/src/components/vote/vote_button/VoteButton.test.jsx +167 -0
  1045. package/src/components/vote/vote_button/index.js +1 -0
  1046. package/src/components/vote/vote_provider/VoteProvider.docs.mdx +68 -0
  1047. package/src/components/vote/vote_provider/VoteProvider.jsx +63 -0
  1048. package/src/components/vote/vote_provider/VoteProvider.stories.jsx +99 -0
  1049. package/src/components/vote/vote_provider/VoteProvider.test.jsx +137 -0
  1050. package/src/components/vote/vote_provider/index.js +2 -0
  1051. package/src/index.js +127 -0
  1052. package/vitest.config.mjs +52 -0
  1053. package/vitest.setup.js +4 -0
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+
3
+ export const Refresh = (props) => (
4
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
5
+ <path d="M12,2a10.032,10.032,0,0,1,7.122,3H16a1,1,0,0,0-1,1h0a1,1,0,0,0,1,1h4.143A1.858,1.858,0,0,0,22,5.143V1a1,1,0,0,0-1-1h0a1,1,0,0,0-1,1V3.078A11.981,11.981,0,0,0,.05,10.9a1.007,1.007,0,0,0,1,1.1h0a.982.982,0,0,0,.989-.878A10.014,10.014,0,0,1,12,2Z"/><path d="M22.951,12a.982.982,0,0,0-.989.878A9.986,9.986,0,0,1,4.878,19H8a1,1,0,0,0,1-1H9a1,1,0,0,0-1-1H3.857A1.856,1.856,0,0,0,2,18.857V23a1,1,0,0,0,1,1H3a1,1,0,0,0,1-1V20.922A11.981,11.981,0,0,0,23.95,13.1a1.007,1.007,0,0,0-1-1.1Z"/>
6
+ </svg>
7
+ )
@@ -0,0 +1,18 @@
1
+ import React from 'react';
2
+
3
+ export const Reply = (props) => (
4
+ <svg
5
+ width="24"
6
+ height="24"
7
+ viewBox="0 0 24 24"
8
+ fill="none"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ {...props}
11
+ >
12
+ <path
13
+ fillRule="evenodd"
14
+ clipRule="evenodd"
15
+ d="M19.06 3.58988L20.41 4.93988C21.2 5.71988 21.2 6.98988 20.41 7.76988L7.18 20.9999H3V16.8199L13.4 6.40988L16.23 3.58988C17.01 2.80988 18.28 2.80988 19.06 3.58988ZM5 18.9999L6.41 19.0599L16.23 9.22988L14.82 7.81988L5 17.6399V18.9999Z"
16
+ />
17
+ </svg>
18
+ )
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+
3
+ export const Search = (props) => (
4
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
5
+ <path d="M23.707,22.293l-5.969-5.969a10.016,10.016,0,1,0-1.414,1.414l5.969,5.969a1,1,0,0,0,1.414-1.414ZM10,18a8,8,0,1,1,8-8A8.009,8.009,0,0,1,10,18Z"/>
6
+ </svg>
7
+ )
@@ -0,0 +1,19 @@
1
+ import React from 'react';
2
+
3
+ export const Send = (props) => (
4
+ <svg
5
+ {...props}
6
+ width={props.width || "24"}
7
+ height={props.height || "24"}
8
+ viewBox="0 0 24 24"
9
+ fill="none"
10
+ xmlns="http://www.w3.org/2000/svg"
11
+ >
12
+ <mask style={{ maskType: 'alpha' }} maskUnits="userSpaceOnUse" x="0" y="0" width="24" height="24">
13
+ <rect width="24" height="24" fill="#D9D9D9" />
14
+ </mask>
15
+ <g>
16
+ <path d="M3 20V14L11 12L3 10V4L22 12L3 20Z" />
17
+ </g>
18
+ </svg>
19
+ )
@@ -0,0 +1,16 @@
1
+ import React from 'react';
2
+
3
+ export const Share = (props) => (
4
+ <svg
5
+ width="24"
6
+ height="24"
7
+ viewBox="0 0 24 24"
8
+ fill="none"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ {...props}
11
+ >
12
+ <path
13
+ d="M12.5147 7.26316C3.84082 7.26316 2.61516 16.4211 3.08657 21C4.97221 13.4211 10.1577 12.1579 12.5147 12.4737V16.7368L21 10.1053L12.5147 3V7.26316Z"
14
+ />
15
+ </svg>
16
+ )
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+
3
+ export const SmallArrow = (props) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ viewBox="0 0 24 24"
7
+ {...props}
8
+ >
9
+ <path d="M6.414,9H17.586a1,1,0,0,1,.707,1.707l-5.586,5.586a1,1,0,0,1-1.414,0L5.707,10.707A1,1,0,0,1,6.414,9Z" />
10
+ </svg>
11
+ )
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+
3
+ export const Source = (props) => (
4
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
5
+ <path d="M22.2,2.163a4.992,4.992,0,0,0-4.1-1.081l-3.822.694A4,4,0,0,0,12,3.065,4,4,0,0,0,9.716,1.776L5.9,1.082A5,5,0,0,0,0,6V16.793a5,5,0,0,0,4.105,4.919l6.286,1.143a9,9,0,0,0,3.218,0L19.9,21.712A5,5,0,0,0,24,16.793V6A4.983,4.983,0,0,0,22.2,2.163ZM11,20.928c-.084-.012-.168-.026-.252-.041L4.463,19.745A3,3,0,0,1,2,16.793V6A3,3,0,0,1,5,3a3.081,3.081,0,0,1,.54.049l3.82.7A2,2,0,0,1,11,5.712Zm11-4.135a3,3,0,0,1-2.463,2.952l-6.285,1.142c-.084.015-.168.029-.252.041V5.712a2,2,0,0,1,1.642-1.968l3.821-.7A3,3,0,0,1,22,6Z"/>
6
+ </svg>
7
+ )
@@ -0,0 +1,29 @@
1
+ import React from 'react';
2
+
3
+ export const Suggestion = (props) => (
4
+ <svg
5
+ width="24"
6
+ height="24"
7
+ viewBox="0 0 24 24"
8
+ fill="none"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ {...props}
11
+ >
12
+ <mask
13
+ id="mask0_167_6303"
14
+ style={{ maskType: 'alpha' }}
15
+ maskUnits="userSpaceOnUse"
16
+ x="0"
17
+ y="0"
18
+ width="24"
19
+ height="24"
20
+ >
21
+ <rect width="24" height="24" fill="#D9D9D9" />
22
+ </mask>
23
+ <g mask="url(#mask0_167_6303)">
24
+ <path
25
+ d="M10 18C9.45 18 8.97917 17.8042 8.5875 17.4125C8.19583 17.0208 8 16.55 8 16V14.75C7.05 14.1 6.3125 13.2667 5.7875 12.25C5.2625 11.2333 5 10.15 5 9C5 7.05 5.67917 5.39583 7.0375 4.0375C8.39583 2.67917 10.05 2 12 2C13.95 2 15.6042 2.67917 16.9625 4.0375C18.3208 5.39583 19 7.05 19 9C19 10.15 18.7375 11.2292 18.2125 12.2375C17.6875 13.2458 16.95 14.0833 16 14.75V16C16 16.55 15.8042 17.0208 15.4125 17.4125C15.0208 17.8042 14.55 18 14 18H10ZM10 16H14V13.7L14.85 13.1C15.5333 12.6333 16.0625 12.0375 16.4375 11.3125C16.8125 10.5875 17 9.81667 17 9C17 7.61667 16.5125 6.4375 15.5375 5.4625C14.5625 4.4875 13.3833 4 12 4C10.6167 4 9.4375 4.4875 8.4625 5.4625C7.4875 6.4375 7 7.61667 7 9C7 9.81667 7.1875 10.5875 7.5625 11.3125C7.9375 12.0375 8.46667 12.6333 9.15 13.1L10 13.7V16ZM10 22C9.71667 22 9.47917 21.9042 9.2875 21.7125C9.09583 21.5208 9 21.2833 9 21V20H15V21C15 21.2833 14.9042 21.5208 14.7125 21.7125C14.5208 21.9042 14.2833 22 14 22H10Z"
26
+ />
27
+ </g>
28
+ </svg>
29
+ )
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+
3
+ export const Twitter = (props) => (
4
+ <svg viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg" {...props}>
5
+ <path d="M29.1169 21.1716L47.3303 0H43.0143L27.1997 18.383L14.5685 0H0L19.1008 27.7983L0 50H4.31623L21.0169 30.5869L34.3563 50H48.9249L29.1169 21.1716ZM5.87143 3.2492H12.5009L43.0164 46.8986H36.3869L5.87143 3.2492Z" fill="black"/>
6
+ <path d="M29.1169 21.1716L47.3303 0H43.0143L27.1997 18.383L14.5685 0H0L19.1008 27.7983L0 50H4.31623L21.0169 30.5869L34.3563 50H48.9249L29.1169 21.1716ZM5.87143 3.2492H12.5009L43.0164 46.8986H36.3869L5.87143 3.2492Z" fill="black"/>
7
+ <path d="M29.1169 21.1716L47.3303 0H43.0143L27.1997 18.383L14.5685 0H0L19.1008 27.7983L0 50H4.31623L21.0169 30.5869L34.3563 50H48.9249L29.1169 21.1716ZM5.87143 3.2492H12.5009L43.0164 46.8986H36.3869L5.87143 3.2492Z" fill="black"/>
8
+ <path d="M29.1169 21.1716L47.3303 0H43.0143L27.1997 18.383L14.5685 0H0L19.1008 27.7983L0 50H4.31623L21.0169 30.5869L34.3563 50H48.9249L29.1169 21.1716ZM5.87143 3.2492H12.5009L43.0164 46.8986H36.3869L5.87143 3.2492Z" fill="black"/>
9
+ </svg>
10
+ )
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+
3
+ export const Underline = (props) => (
4
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
5
+ <path d="M12 17c3.31 0 6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6v8c0 3.31 2.69 6 6 6zm-7 2v2h14v-2H5z"/>
6
+ </svg>
7
+ );
@@ -0,0 +1,29 @@
1
+ import React from 'react';
2
+
3
+ export const Upvote = (props) => (
4
+ <svg
5
+ width="24"
6
+ height="24"
7
+ viewBox="0 0 24 24"
8
+ fill="none"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ {...props}
11
+ >
12
+ <mask
13
+ id="mask0_167_6296"
14
+ style={{ maskType: 'alpha' }}
15
+ maskUnits="userSpaceOnUse"
16
+ x="0"
17
+ y="0"
18
+ width="24"
19
+ height="24"
20
+ >
21
+ <rect width="24" height="24" fill="#D9D9D9" />
22
+ </mask>
23
+ <g mask="url(#mask0_167_6296)">
24
+ <path
25
+ d="M18 21H7V8L14 1L15.25 2.25C15.3667 2.36667 15.4625 2.525 15.5375 2.725C15.6125 2.925 15.65 3.11667 15.65 3.3V3.65L14.55 8H21C21.5333 8 22 8.2 22.4 8.6C22.8 9 23 9.46667 23 10V12C23 12.1167 22.9833 12.2417 22.95 12.375C22.9167 12.5083 22.8833 12.6333 22.85 12.75L19.85 19.8C19.7 20.1333 19.45 20.4167 19.1 20.65C18.75 20.8833 18.3833 21 18 21ZM9 19H18L21 12V10H12L13.35 4.5L9 8.85V19ZM7 8V10H4V19H7V21H2V8H7Z"
26
+ />
27
+ </g>
28
+ </svg>
29
+ )
@@ -0,0 +1,30 @@
1
+ import React from 'react';
2
+
3
+ export const User = (props) => (
4
+ <svg
5
+ width="24"
6
+ height="24"
7
+ viewBox="0 0 24 24"
8
+ fill="none"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ {...props}
11
+ >
12
+ <mask
13
+ id="mask0_167_6306"
14
+ style={{ maskType: 'alpha' }}
15
+ maskUnits="userSpaceOnUse"
16
+ x="0"
17
+ y="0"
18
+ width="24"
19
+ height="24"
20
+ >
21
+ <rect width="24" height="24" fill="#D9D9D9" />
22
+ </mask>
23
+ <g mask="url(#mask0_167_6306)">
24
+ <path
25
+ d="M1 20V17.2C1 16.6333 1.14583 16.1125 1.4375 15.6375C1.72917 15.1625 2.11667 14.8 2.6 14.55C3.63333 14.0333 4.68333 13.6458 5.75 13.3875C6.81667 13.1292 7.9 13 9 13C10.1 13 11.1833 13.1292 12.25 13.3875C13.3167 13.6458 14.3667 14.0333 15.4 14.55C15.8833 14.8 16.2708 15.1625 16.5625 15.6375C16.8542 16.1125 17 16.6333 17 17.2V20H1ZM19 20V17C19 16.2667 18.7958 15.5625 18.3875 14.8875C17.9792 14.2125 17.4 13.6333 16.65 13.15C17.5 13.25 18.3 13.4208 19.05 13.6625C19.8 13.9042 20.5 14.2 21.15 14.55C21.75 14.8833 22.2083 15.2542 22.525 15.6625C22.8417 16.0708 23 16.5167 23 17V20H19ZM9 12C7.9 12 6.95833 11.6083 6.175 10.825C5.39167 10.0417 5 9.1 5 8C5 6.9 5.39167 5.95833 6.175 5.175C6.95833 4.39167 7.9 4 9 4C10.1 4 11.0417 4.39167 11.825 5.175C12.6083 5.95833 13 6.9 13 8C13 9.1 12.6083 10.0417 11.825 10.825C11.0417 11.6083 10.1 12 9 12ZM19 8C19 9.1 18.6083 10.0417 17.825 10.825C17.0417 11.6083 16.1 12 15 12C14.8167 12 14.5833 11.9792 14.3 11.9375C14.0167 11.8958 13.7833 11.85 13.6 11.8C14.05 11.2667 14.3958 10.675 14.6375 10.025C14.8792 9.375 15 8.7 15 8C15 7.3 14.8792 6.625 14.6375 5.975C14.3958 5.325 14.05 4.73333 13.6 4.2C13.8333 4.11667 14.0667 4.0625 14.3 4.0375C14.5333 4.0125 14.7667 4 15 4C16.1 4 17.0417 4.39167 17.825 5.175C18.6083 5.95833 19 6.9 19 8ZM3 18H15V17.2C15 17.0167 14.9542 16.85 14.8625 16.7C14.7708 16.55 14.65 16.4333 14.5 16.35C13.6 15.9 12.6917 15.5625 11.775 15.3375C10.8583 15.1125 9.93333 15 9 15C8.06667 15 7.14167 15.1125 6.225 15.3375C5.30833 15.5625 4.4 15.9 3.5 16.35C3.35 16.4333 3.22917 16.55 3.1375 16.7C3.04583 16.85 3 17.0167 3 17.2V18ZM9 10C9.55 10 10.0208 9.80417 10.4125 9.4125C10.8042 9.02083 11 8.55 11 8C11 7.45 10.8042 6.97917 10.4125 6.5875C10.0208 6.19583 9.55 6 9 6C8.45 6 7.97917 6.19583 7.5875 6.5875C7.19583 6.97917 7 7.45 7 8C7 8.55 7.19583 9.02083 7.5875 9.4125C7.97917 9.80417 8.45 10 9 10Z"
26
+ fill="black"
27
+ />
28
+ </g>
29
+ </svg>
30
+ )
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+
3
+ export const Versus = (props) => (
4
+ <svg viewBox="0 0 28 28" xmlns="http://www.w3.org/2000/svg" {...props}>
5
+ <path
6
+ d="M14.8686 11L11.8386 18H10.2386L7.21859 11H8.96859L11.0986 16L13.2586 11H14.8686ZM17.753 18.12C17.1997 18.12 16.663 18.0467 16.143 17.9C15.6297 17.7467 15.2164 17.55 14.903 17.31L15.453 16.09C15.753 16.31 16.1097 16.4867 16.523 16.62C16.9364 16.7533 17.3497 16.82 17.763 16.82C18.223 16.82 18.563 16.7533 18.783 16.62C19.003 16.48 19.113 16.2967 19.113 16.07C19.113 15.9033 19.0464 15.7667 18.913 15.66C18.7864 15.5467 18.6197 15.4567 18.413 15.39C18.213 15.3233 17.9397 15.25 17.593 15.17C17.0597 15.0433 16.623 14.9167 16.283 14.79C15.943 14.6633 15.6497 14.46 15.403 14.18C15.163 13.9 15.043 13.5267 15.043 13.06C15.043 12.6533 15.153 12.2867 15.373 11.96C15.593 11.6267 15.923 11.3633 16.363 11.17C16.8097 10.9767 17.353 10.88 17.993 10.88C18.4397 10.88 18.8764 10.9333 19.303 11.04C19.7297 11.1467 20.103 11.3 20.423 11.5L19.923 12.73C19.2764 12.3633 18.6297 12.18 17.983 12.18C17.5297 12.18 17.193 12.2533 16.973 12.4C16.7597 12.5467 16.653 12.74 16.653 12.98C16.653 13.22 16.7764 13.4 17.023 13.52C17.2764 13.6333 17.6597 13.7467 18.173 13.86C18.7064 13.9867 19.143 14.1133 19.483 14.24C19.823 14.3667 20.113 14.5667 20.353 14.84C20.5997 15.1133 20.723 15.4833 20.723 15.95C20.723 16.35 20.6097 16.7167 20.383 17.05C20.163 17.3767 19.8297 17.6367 19.383 17.83C18.9364 18.0233 18.393 18.12 17.753 18.12Z"
7
+ />
8
+ </svg>
9
+ )
@@ -0,0 +1,29 @@
1
+ import React from 'react';
2
+
3
+ export const Votebox = (props) => (
4
+ <svg
5
+ width="24"
6
+ height="24"
7
+ viewBox="0 0 24 24"
8
+ fill="none"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ {...props}
11
+ >
12
+ <mask
13
+ id="mask0_167_6307"
14
+ style={{ maskType: 'alpha' }}
15
+ maskUnits="userSpaceOnUse"
16
+ x="0"
17
+ y="0"
18
+ width="24"
19
+ height="24"
20
+ >
21
+ <rect width="24" height="24" fill="#D9D9D9" />
22
+ </mask>
23
+ <g mask="url(#mask0_167_6307)">
24
+ <path
25
+ d="M5 22C4.45 22 3.97917 21.8041 3.5875 21.4125C3.19583 21.0208 3 20.55 3 20V15.45L5.75 12.325L7.175 13.75L5.175 16H18.825L16.875 13.8L18.3 12.375L21 15.45V20C21 20.55 20.8042 21.0208 20.4125 21.4125C20.0208 21.8041 19.55 22 19 22H5ZM5 20H19V18H5V20ZM10.625 14.375L7.1 10.85C6.71667 10.4666 6.52917 9.9958 6.5375 9.43747C6.54583 8.87913 6.74167 8.4083 7.125 8.02497L12.025 3.12497C12.4083 2.74163 12.8833 2.54163 13.45 2.52497C14.0167 2.5083 14.4917 2.69163 14.875 3.07497L18.4 6.59997C18.7833 6.9833 18.9833 7.44997 19 7.99997C19.0167 8.54997 18.8333 9.01663 18.45 9.39997L13.45 14.4C13.0667 14.7833 12.5958 14.9708 12.0375 14.9625C11.4792 14.9541 11.0083 14.7583 10.625 14.375ZM17 8.02497L13.475 4.49997L8.525 9.44997L12.05 12.975L17 8.02497Z"
26
+ />
27
+ </g>
28
+ </svg>
29
+ )
@@ -0,0 +1,52 @@
1
+ export { Alarm } from "./Alarm"
2
+ export { Announcement } from "./Announcement"
3
+ export { Arrow } from "./Arrow"
4
+ export { Blockquote } from "./Blockquote"
5
+ export { Bold } from "./Bold"
6
+ export { Camera } from "./Camera"
7
+ export { Chat } from "./Chat"
8
+ export { CheckBox } from "./CheckBox"
9
+ export { Check } from "./Check"
10
+ export { Clap } from "./Clap"
11
+ export { Clock } from "./Clock"
12
+ export { Close } from "./Close"
13
+ export { Code } from "./Code"
14
+ export { Community } from "./Community"
15
+ export { Crown } from "./Crown"
16
+ export { Document } from "./Document"
17
+ export { Downvote } from "./Downvote"
18
+ export { Ellipsis } from "./Ellipsis"
19
+ export { ExpertBadge } from "./ExpertBadge"
20
+ export { Facebook } from "./Facebook"
21
+ export { Home } from "./Home"
22
+ export { Italic } from "./Italic"
23
+ export { LightArrow } from "./LightArrow"
24
+ export { Link } from "./Link"
25
+ export { Login } from "./Login"
26
+ export { Logora } from "./Logora"
27
+ export { Mail } from "./Mail"
28
+ export { MobileClose } from "./MobileClose"
29
+ export { MobileMenu } from "./MobileMenu"
30
+ export { Next } from "./Next"
31
+ export { OpenBlank } from "./OpenBlank"
32
+ export { OrderedList } from "./OrderedList"
33
+ export { Point } from "./Point"
34
+ export { Question } from "./Question"
35
+ export { Refresh } from "./Refresh"
36
+ export { Reply } from "./Reply"
37
+ export { Search } from "./Search"
38
+ export { Send } from "./Send"
39
+ export { Share } from "./Share"
40
+ export { SmallArrow } from "./SmallArrow"
41
+ export { Source } from "./Source"
42
+ export { Suggestion } from './Suggestion';
43
+ export { Twitter } from "./Twitter"
44
+ export { Underline } from "./Underline"
45
+ export { Upvote } from "./Upvote";
46
+ export { User } from "./User"
47
+ export { Votebox } from './Votebox';
48
+ export { Versus } from './Versus';
49
+ export { Flag } from './Flag';
50
+ export { CheckCircle } from './CheckCircle';
51
+ export { MinusCircle} from './MinusCircle'
52
+ export { PauseCircle} from './PauseCircle'
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+
3
+ export const Alarm = (props) => (
4
+ <svg viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg" {...props} >
5
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M30.1824 7.02718C30.1824 4.75938 27.9853 2.7027 25.3076 2.7027C22.6297 2.7027 20.4324 4.75947 20.4324 7.02718V7.98188L19.5326 8.30087C14.0527 10.2434 11.4527 15.5412 11.4527 22.1621V33.2881H10.1013C6.31513 33.2881 4.7027 35.2386 4.7027 36.6665V39.1892C4.7027 39.5726 4.85077 39.8397 5.06454 40.0283C5.29777 40.234 5.63116 40.3605 5.97297 40.3605H44.6419C44.9837 40.3605 45.3171 40.234 45.5503 40.0283C45.7641 39.8397 45.9122 39.5726 45.9122 39.1892V36.6665C45.9122 35.2394 44.3007 33.2881 40.5067 33.2881H39.1554V22.1621C39.1554 15.54 36.5612 10.2431 31.0823 8.30087L30.1824 7.98188V7.02718ZM25.3076 0C28.8726 0 32.2895 2.5279 32.8153 6.07549C39.1898 8.76985 41.8581 15.205 41.8581 22.1621V30.6622C45.6917 31.1043 48.6148 33.4207 48.6148 36.6665V39.1892C48.6148 41.6664 46.5347 43.0632 44.6419 43.0632H33.9924C33.0746 46.9546 29.5204 50 25.3038 50C21.086 50 17.5384 46.9535 16.6218 43.0632H5.97297C4.08013 43.0632 2 41.6664 2 39.1892V36.6665C2 33.4218 4.92152 31.1051 8.75 30.6624V22.1621C8.75 15.2038 11.4252 8.76952 17.7995 6.07548C18.3254 2.52784 21.7427 0 25.3076 0ZM25.3038 47.2973C27.992 47.2973 30.3318 45.4777 31.1804 43.0632H19.4335C20.2808 45.4785 22.6167 47.2973 25.3038 47.2973Z" />
6
+ </svg>
7
+ )
@@ -0,0 +1,16 @@
1
+ import React from 'react';
2
+
3
+ export const Announcement = (props) => (
4
+ <svg viewBox="0 0 25 25" xmlns="http://www.w3.org/2000/svg" {...props}>
5
+ <circle
6
+ cx="12.5"
7
+ cy="12.5" r="11.5"
8
+ fill="none"
9
+ stroke="#000"
10
+ />
11
+ <path
12
+ d="M10.884 7.1H14.046L13.519 14.869H11.411L10.884 7.1ZM12.465 19.136C12.0003 19.136 11.6093 18.9887 11.292 18.694C10.986 18.388 10.833 18.0197 10.833 17.589C10.833 17.1583 10.986 16.8013 11.292 16.518C11.598 16.2233 11.989 16.076 12.465 16.076C12.941 16.076 13.332 16.2233 13.638 16.518C13.944 16.8013 14.097 17.1583 14.097 17.589C14.097 18.0197 13.9383 18.388 13.621 18.694C13.315 18.9887 12.9297 19.136 12.465 19.136Z"
13
+ fill="#000"
14
+ />
15
+ </svg>
16
+ )
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+
3
+ export const Arrow = (props) => (
4
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
5
+ <path d="M19,11H9l3.29-3.29a1,1,0,0,0,0-1.42,1,1,0,0,0-1.41,0l-4.29,4.3A2,2,0,0,0,6,12H6a2,2,0,0,0,.59,1.4l4.29,4.3a1,1,0,1,0,1.41-1.42L9,13H19a1,1,0,0,0,0-2Z"/>
6
+ </svg>
7
+ )
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+
3
+ export const Blockquote = (props) => (
4
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
5
+ <path d="M6 17h3l2-4V7H5v6h3zm8 0h3l2-4V7h-6v6h3z"/>
6
+ </svg>
7
+ );
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+
3
+ export const Bold = (props) => (
4
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
5
+ <path d="M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79 0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z"/>
6
+ </svg>
7
+ );
@@ -0,0 +1,8 @@
1
+ import React from "react";
2
+
3
+ export const Camera = (props) => (
4
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
5
+ <path d="M19,4h-.508L16.308,1.168A3.023,3.023,0,0,0,13.932,0H10.068A3.023,3.023,0,0,0,7.692,1.168L5.508,4H5A5.006,5.006,0,0,0,0,9V19a5.006,5.006,0,0,0,5,5H19a5.006,5.006,0,0,0,5-5V9A5.006,5.006,0,0,0,19,4ZM9.276,2.39A1.006,1.006,0,0,1,10.068,2h3.864a1.008,1.008,0,0,1,.792.39L15.966,4H8.034ZM22,19a3,3,0,0,1-3,3H5a3,3,0,0,1-3-3V9A3,3,0,0,1,5,6H19a3,3,0,0,1,3,3Z"/>
6
+ <path d="M12,8a6,6,0,1,0,6,6A6.006,6.006,0,0,0,12,8Zm0,10a4,4,0,1,1,4-4A4,4,0,0,1,12,18Z"/>
7
+ </svg>
8
+ )
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+
3
+ export const Chat = (props) => (
4
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
5
+ <path d="M24,11.247A12.012,12.012,0,1,0,12.017,24H19a5.005,5.005,0,0,0,5-5V11.247ZM22,19a3,3,0,0,1-3,3H12.017a10.041,10.041,0,0,1-7.476-3.343,9.917,9.917,0,0,1-2.476-7.814,10.043,10.043,0,0,1,8.656-8.761A10.564,10.564,0,0,1,12.021,2,9.921,9.921,0,0,1,18.4,4.3,10.041,10.041,0,0,1,22,11.342Z"/>
6
+ <path d="M8,9h4a1,1,0,0,0,0-2H8A1,1,0,0,0,8,9Z"/>
7
+ <path d="M16,11H8a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Z"/>
8
+ <path d="M16,15H8a1,1,0,0,0,0,2h8a1,1,0,0,0,0-2Z"/>
9
+ </svg>
10
+ )
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+
3
+ export const Check = (props) => (
4
+ <svg viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg" {...props}>
5
+ <path d="M36.8236 13.5557C37.8227 14.3327 38.0026 15.7725 37.2256 16.7715L20.8002 37.8899L12.75 27.1562C11.9906 26.1437 12.1958 24.7073 13.2083 23.9479C14.2209 23.1885 15.6573 23.3937 16.4167 24.4062L20.8664 30.3393L33.6077 13.9576C34.3848 12.9586 35.8246 12.7786 36.8236 13.5557Z" />
6
+ </svg>
7
+ );
@@ -0,0 +1,17 @@
1
+ import React from 'react';
2
+
3
+ export const CheckCircle = (props) => (
4
+ <svg
5
+ xmlns="http://www.w3.org/2000/svg"
6
+ viewBox="0 0 24 24"
7
+ fill="none"
8
+ stroke="currentColor"
9
+ strokeWidth="2"
10
+ strokeLinecap="round"
11
+ strokeLinejoin="round"
12
+ {...props}
13
+ >
14
+ <circle cx="12" cy="12" r="10" />
15
+ <path d="M9 12l2 2 4-4" />
16
+ </svg>
17
+ );
@@ -0,0 +1,8 @@
1
+ import React from "react";
2
+
3
+ export const Checkbox = (props) => (
4
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
5
+ <path d="M19,0H5A5.006,5.006,0,0,0,0,5V19a5.006,5.006,0,0,0,5,5H19a5.006,5.006,0,0,0,5-5V5A5.006,5.006,0,0,0,19,0Zm3,19a3,3,0,0,1-3,3H5a3,3,0,0,1-3-3V5A3,3,0,0,1,5,2H19a3,3,0,0,1,3,3Z"/>
6
+ <path d="M9.333,15.919,5.414,12A1,1,0,0,0,4,12H4a1,1,0,0,0,0,1.414l3.919,3.919a2,2,0,0,0,2.829,0L20,8.081a1,1,0,0,0,0-1.414h0a1,1,0,0,0-1.414,0Z"/>
7
+ </svg>
8
+ )
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+
3
+ export const Clap = (props) => (
4
+ <svg viewBox="0 0 13 13" xmlns="http://www.w3.org/2000/svg" {...props}>
5
+ <path fillRule="evenodd" clipRule="evenodd" d="M11.6167 4.86236L12.0389 4.37862C12.4397 3.93764 12.4696 3.21456 12.1066 2.73246C11.9693 2.55555 11.7879 2.43096 11.5871 2.37563L11.6726 2.27782C12.0747 1.83725 12.1045 1.11281 11.7402 0.630981C11.5535 0.39082 11.2882 0.249974 11.0075 0.242051C10.7267 0.235767 10.4553 0.358853 10.2543 0.583714L10.2072 0.637675C10.0265 0.441092 9.78898 0.327705 9.53986 0.319372C9.25986 0.313361 8.98951 0.436857 8.78988 0.661991L8.30356 1.21909C8.19337 0.692592 7.78278 0.321012 7.31006 0.319919H7.30863C7.03828 0.319645 6.77903 0.443005 6.58834 0.662538L4.73228 2.78888C4.69746 2.44449 4.55674 2.12564 4.33517 1.88944C4.03346 1.57728 3.57087 1.59217 3.2849 1.92304L1.52651 3.93737C-0.0810269 5.72464 -0.175953 8.64455 1.31078 10.5639C2.31191 11.8399 3.84086 12.3888 5.29861 11.9953C5.48393 12.0242 5.67069 12.0389 5.85767 12.0395C6.94968 12.0403 7.99672 11.5407 8.76543 10.652L12.0699 6.86944C12.4697 6.42682 12.499 5.70401 12.1368 5.22082C11.9996 5.04309 11.818 4.91796 11.6167 4.86236ZM11.7434 3.10623C11.9292 3.36838 11.908 3.75007 11.6945 3.98299L10.6109 5.22437C10.607 5.22011 10.6029 5.21635 10.5989 5.2126C10.5955 5.2095 10.5921 5.2064 10.5889 5.20306C10.5715 5.18544 10.554 5.1685 10.5359 5.15251C10.5179 5.13653 10.4929 5.11672 10.4706 5.09992L10.4561 5.08879L10.4561 5.08878C10.4433 5.07889 10.4304 5.0689 10.4172 5.06099C10.3909 5.04391 10.3634 5.02943 10.3361 5.01508L10.3199 5.00626C10.3097 5.0006 10.2996 4.99497 10.289 4.99022C10.2447 4.96973 10.199 4.95306 10.1525 4.94036L10.49 4.55348L10.5747 4.4569C10.6178 4.40649 10.6573 4.35212 10.6924 4.29419C10.7037 4.27615 10.7135 4.25757 10.7234 4.23897L10.733 4.22083C10.7491 4.1901 10.7645 4.15922 10.7784 4.12739C10.7924 4.09542 10.8087 4.05526 10.8214 4.01797C10.8236 4.01111 10.8256 4.00408 10.8275 3.99715L10.8308 3.98574L10.8334 3.97712C10.8804 3.8233 10.9 3.66018 10.8908 3.49762V3.49502C10.8874 3.44229 10.8811 3.3897 10.8717 3.33778C10.8706 3.33143 10.8692 3.32504 10.8678 3.31862L10.8678 3.3186L10.8649 3.30431L10.8602 3.27927L10.8602 3.27925C10.8566 3.25982 10.8532 3.24086 10.8481 3.22344L10.9702 3.08355L10.974 3.07904C11.0763 2.96156 11.2164 2.89804 11.3611 2.90336C11.5075 2.90733 11.646 2.98082 11.7434 3.10623ZM10.9943 0.801062C10.847 0.796417 10.7044 0.861034 10.5997 0.979885L10.4787 1.11841C10.4941 1.17428 10.5058 1.23138 10.5137 1.28931C10.5163 1.30749 10.5176 1.32684 10.5188 1.34653L10.5205 1.371C10.5235 1.40966 10.5251 1.44791 10.5251 1.48657C10.5249 1.51649 10.5239 1.5445 10.5219 1.5725C10.5186 1.61663 10.5132 1.66048 10.5058 1.70392C10.5046 1.71122 10.5036 1.71854 10.5026 1.72586L10.5026 1.72587L10.5026 1.72589C10.5007 1.73911 10.4989 1.75235 10.496 1.76553C10.4824 1.82987 10.4642 1.89299 10.4417 1.95405C10.4381 1.9641 10.4342 1.97302 10.4302 1.98196L10.4302 1.98201C10.4279 1.98727 10.4255 1.99253 10.4233 1.99804C10.4016 2.05146 10.3765 2.1031 10.3483 2.15241L10.3465 2.15563C10.3413 2.16516 10.3362 2.17448 10.3305 2.1837C10.2938 2.24585 10.2523 2.30391 10.2064 2.35746L10.1208 2.45541H10.1234C10.1681 2.46798 10.212 2.4841 10.2548 2.5035C10.2678 2.50947 10.2803 2.51646 10.2929 2.52346L10.2929 2.52348L10.293 2.52349L10.3105 2.53314L10.3197 2.53803C10.3418 2.54969 10.3655 2.56226 10.3837 2.57399C10.4013 2.58545 10.4182 2.59837 10.4348 2.61111L10.4348 2.61111L10.4438 2.61798C10.4608 2.63092 10.4764 2.64375 10.4937 2.65791L10.5016 2.66443C10.5223 2.68123 10.5417 2.70049 10.5613 2.72044C10.564 2.72335 10.567 2.72604 10.57 2.72877C10.5733 2.73181 10.5767 2.73488 10.5799 2.73833L10.623 2.68847L10.6279 2.6826L11.3272 1.88192C11.5417 1.64996 11.5636 1.26772 11.3776 1.00557C11.28 0.879613 11.1412 0.80557 10.9943 0.801062ZM2.7405 11.1163C2.33754 10.8846 1.97537 10.5694 1.67246 10.1869C0.36187 8.488 0.449998 5.90866 1.87257 4.33245L3.63096 2.31813C3.68391 2.2572 3.7557 2.22278 3.83071 2.22237C3.89404 2.22141 3.95509 2.24805 4.00172 2.29709C4.15878 2.46553 4.24941 2.69982 4.25299 2.94626C4.25657 3.19271 4.17261 3.43014 4.02056 3.60445L2.36688 5.49774C2.30332 5.56796 2.27791 5.67205 2.30021 5.76987C2.32263 5.86768 2.3893 5.94404 2.47468 5.96959C2.56007 5.99527 2.65082 5.96604 2.71224 5.89336L4.36413 4.00117L6.93321 1.05817C7.03267 0.943419 7.16814 0.879075 7.30934 0.879485C7.52554 0.879622 7.72052 1.0288 7.80328 1.25776C7.88593 1.48658 7.84025 1.74997 7.68737 1.92524L4.93643 5.07725C4.87287 5.14747 4.84747 5.25157 4.86977 5.34938C4.89219 5.44719 4.95885 5.52356 5.04424 5.5491C5.12962 5.57479 5.22037 5.54555 5.28179 5.47287L8.03297 2.32086L9.13594 1.05762C9.23981 0.938774 9.38172 0.874021 9.52852 0.878665C9.6752 0.88331 9.8139 0.956806 9.91192 1.08194C9.97942 1.16924 10.0221 1.27811 10.034 1.39396C10.034 1.40147 10.034 1.40967 10.0352 1.41746C10.0377 1.44696 10.0383 1.47661 10.0371 1.50612C10.0371 1.51272 10.0365 1.51933 10.0358 1.52593L10.0348 1.53726C10.0324 1.56541 10.0286 1.59341 10.0232 1.62114C10.0213 1.63125 10.0191 1.64122 10.0166 1.65133C10.0095 1.68098 10.0006 1.71008 9.99027 1.73835C9.98789 1.74532 9.98538 1.75229 9.98264 1.75912C9.95259 1.83371 9.91133 1.9016 9.86052 1.95966L9.29371 2.60897L9.16039 2.76157L9.15896 2.76348V2.76485L6.03762 6.33871C5.97417 6.40907 5.94865 6.51303 5.97107 6.61084C5.99337 6.70865 6.06004 6.78502 6.14542 6.8107C6.23081 6.83625 6.32168 6.80715 6.38298 6.73434L9.503 3.1602C9.50906 3.15326 9.51564 3.14757 9.52224 3.14186C9.52656 3.13813 9.53088 3.13439 9.53508 3.13028C9.63192 3.03711 9.75367 2.98493 9.88008 2.98219H9.89475C9.93112 2.98329 9.96726 2.98861 10.0027 2.9979C10.1094 3.02673 10.2058 3.09257 10.2785 3.18643C10.3337 3.25815 10.3719 3.34489 10.3893 3.43834C10.4319 3.66429 10.3709 3.89953 10.2277 4.06251L10.1788 4.11838L9.18793 5.25075C9.18727 5.2515 9.18677 5.25232 9.18633 5.25317C9.18607 5.25366 9.18583 5.25416 9.18559 5.25465C9.1849 5.2561 9.18421 5.25754 9.18305 5.25881L7.13868 7.60086C7.07512 7.67107 7.04972 7.77503 7.07202 7.87298C7.09432 7.9708 7.1611 8.04716 7.24649 8.07271C7.33187 8.09839 7.42263 8.06916 7.48392 7.99648L9.53556 5.64801C9.61081 5.56153 9.70705 5.50293 9.81175 5.48011L9.81879 5.47793C9.85456 5.47055 9.89093 5.46755 9.92731 5.46891C9.9601 5.47028 9.99278 5.47506 10.025 5.48326L10.0352 5.4849C10.0431 5.48697 10.0507 5.49028 10.0582 5.49352L10.0582 5.49353C10.0626 5.49541 10.0669 5.49727 10.0711 5.49883C10.1632 5.53107 10.2461 5.59132 10.3107 5.67315C10.3337 5.70238 10.3539 5.73435 10.371 5.7685C10.4883 6.02861 10.443 6.34609 10.2594 6.54977L6.95468 10.3335C6.88754 10.4104 6.81825 10.4833 6.74718 10.5533C6.74048 10.5597 6.73372 10.5659 6.72698 10.5721C6.7204 10.5781 6.71383 10.5841 6.70734 10.5903C6.6507 10.6443 6.59322 10.6963 6.53443 10.746C6.5115 10.7654 6.48799 10.7837 6.46482 10.8018L6.46454 10.802C6.41422 10.8423 6.3633 10.8811 6.31166 10.9184C6.28328 10.9389 6.25502 10.9585 6.22616 10.978C6.17738 11.0102 6.12992 11.041 6.08091 11.0709C6.04859 11.0906 6.01615 11.1101 5.98312 11.1285C5.9378 11.1542 5.89153 11.1781 5.84514 11.2014L5.81672 11.2159L5.8167 11.2159C5.78942 11.2299 5.76208 11.244 5.73376 11.2572C5.70683 11.2699 5.67842 11.2815 5.65007 11.293L5.65005 11.293L5.6151 11.3074L5.58134 11.3215L5.58131 11.3215C5.5468 11.3359 5.51235 11.3504 5.47736 11.3632C5.47225 11.3652 5.46706 11.3668 5.4619 11.3684L5.45006 11.3723C5.37874 11.3974 5.30659 11.4206 5.23385 11.4408C5.23336 11.4408 5.23288 11.441 5.23242 11.4412C5.23173 11.4415 5.23106 11.442 5.23036 11.4425C5.22948 11.4431 5.22856 11.4438 5.22753 11.4441C4.39073 11.675 3.50968 11.5587 2.7405 11.1163ZM6.56568 11.3994C7.26916 11.2373 7.91468 10.8391 8.42008 10.2556L11.7248 6.47162C11.9385 6.23775 11.9604 5.85537 11.7752 5.59144C11.677 5.46603 11.5381 5.39254 11.391 5.3883C11.2441 5.38393 11.1021 5.44923 10.9985 5.56876L10.878 5.70701C10.8823 5.72247 10.8856 5.74019 10.8885 5.75599C10.8898 5.76281 10.891 5.76928 10.8922 5.77505C10.8935 5.78138 10.8949 5.78763 10.8962 5.79384C10.8989 5.80623 10.9016 5.81845 10.9038 5.83092C10.912 5.87778 10.9176 5.92518 10.9206 5.97286V5.99799C10.9275 6.14963 10.9095 6.30154 10.8673 6.44567C10.8658 6.45093 10.8643 6.4562 10.8629 6.46147C10.8584 6.47768 10.8539 6.49386 10.8486 6.50974C10.8372 6.54239 10.8246 6.57408 10.8109 6.60591C10.7949 6.64334 10.7771 6.67996 10.7579 6.71534C10.7546 6.72145 10.7513 6.72758 10.748 6.7337C10.7404 6.74795 10.7328 6.76214 10.7242 6.77599C10.6886 6.83583 10.6486 6.89211 10.6046 6.94389L7.30005 10.7294C7.28846 10.7426 7.27597 10.7548 7.26345 10.7669C7.25355 10.7766 7.24363 10.7862 7.2341 10.7964C7.14836 10.8907 7.06118 10.9825 6.97007 11.0664C6.94148 11.0933 6.91154 11.1179 6.88159 11.1424C6.86707 11.1543 6.85255 11.1662 6.83818 11.1784C6.76257 11.243 6.68685 11.3068 6.60814 11.3647C6.60093 11.37 6.59411 11.3759 6.58728 11.3818C6.58021 11.3879 6.57315 11.394 6.56568 11.3994Z"/>
6
+ </svg>
7
+ )
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+
3
+ export const Clock = (props) => (
4
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128" {...props}>
5
+ <path d="M 64 11 C 34.8 11 11 34.8 11 64 C 11 93.2 34.8 117 64 117 C 93.2 117 117 93.2 117 64 C 117 34.8 93.2 11 64 11 z M 64 17 C 89.9 17 111 38.1 111 64 C 111 89.9 89.9 111 64 111 C 38.1 111 17 89.9 17 64 C 17 38.1 38.1 17 64 17 z M 64 26 C 62.3 26 61 27.3 61 29 L 61 54.5 C 56.9 55.8 54 59.6 54 64 C 54 69.5 58.5 74 64 74 C 68.5 74 72.3 71.1 73.5 67 L 89 67 C 90.7 67 92 65.7 92 64 C 92 62.3 90.7 61 89 61 L 73.5 61 C 72.5 57.9 70.1 55.4 67 54.5 L 67 29 C 67 27.3 65.7 26 64 26 z M 64 60 C 66.2 60 68 61.8 68 64 C 68 66.2 66.2 68 64 68 C 61.8 68 60 66.2 60 64 C 60 61.8 61.8 60 64 60 z"/>
6
+ </svg>
7
+ )
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+
3
+ export const Close = (props) => (
4
+ <svg viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg" {...props}>
5
+ <path d="M13.0001 1C12.8125 0.81253 12.5582 0.707214 12.2931 0.707214C12.0279 0.707214 11.7736 0.81253 11.5861 1L7.00006 5.586L2.41406 1C2.22653 0.81253 1.97223 0.707214 1.70706 0.707214C1.4419 0.707214 1.18759 0.81253 1.00006 1C0.812591 1.18753 0.707275 1.44184 0.707275 1.707C0.707275 1.97216 0.812591 2.22647 1.00006 2.414L5.58606 7L1.00006 11.586C0.812591 11.7735 0.707275 12.0278 0.707275 12.293C0.707275 12.5582 0.812591 12.8125 1.00006 13C1.18759 13.1875 1.4419 13.2928 1.70706 13.2928C1.97223 13.2928 2.22653 13.1875 2.41406 13L7.00006 8.414L11.5861 13C11.7736 13.1875 12.0279 13.2928 12.2931 13.2928C12.5582 13.2928 12.8125 13.1875 13.0001 13C13.1875 12.8125 13.2928 12.5582 13.2928 12.293C13.2928 12.0278 13.1875 11.7735 13.0001 11.586L8.41406 7L13.0001 2.414C13.1875 2.22647 13.2928 1.97216 13.2928 1.707C13.2928 1.44184 13.1875 1.18753 13.0001 1Z" />
6
+ </svg>
7
+ )
@@ -0,0 +1,18 @@
1
+ import React from "react";
2
+
3
+ export const Code = (props) => (
4
+ <svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" {...props}>
5
+ <path
6
+ d="M6.147 10.473 3.238 8.187l2.91-2.078M9.784 10.473l2.909-2.286-2.91-2.078"
7
+ stroke="#000"
8
+ fill="none"
9
+ />
10
+ <path
11
+ transform="matrix(.27976 -.96007 .92211 .38692 7.22 11.54)"
12
+ strokeWidth={0.7}
13
+ stroke="#000"
14
+ d="M0-.35h6.565"
15
+ />
16
+ <rect x={0.5} y={0.5} width={15} height={15} rx={2.5} fill="none" stroke="#000" />
17
+ </svg>
18
+ )
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+
3
+ export const Community = (props) => (
4
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
5
+ <path d="M12,16a4,4,0,1,1,4-4A4,4,0,0,1,12,16Zm0-6a2,2,0,1,0,2,2A2,2,0,0,0,12,10Zm6,13A6,6,0,0,0,6,23a1,1,0,0,0,2,0,4,4,0,0,1,8,0,1,1,0,0,0,2,0ZM18,8a4,4,0,1,1,4-4A4,4,0,0,1,18,8Zm0-6a2,2,0,1,0,2,2A2,2,0,0,0,18,2Zm6,13a6.006,6.006,0,0,0-6-6,1,1,0,0,0,0,2,4,4,0,0,1,4,4,1,1,0,0,0,2,0ZM6,8a4,4,0,1,1,4-4A4,4,0,0,1,6,8ZM6,2A2,2,0,1,0,8,4,2,2,0,0,0,6,2ZM2,15a4,4,0,0,1,4-4A1,1,0,0,0,6,9a6.006,6.006,0,0,0-6,6,1,1,0,0,0,2,0Z"/>
6
+ </svg>
7
+ )
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+
3
+ export const Crown = (props) => (
4
+ <svg viewBox="0 0 15 13" xmlns="http://www.w3.org/2000/svg" {...props}>
5
+ <path d="M14.229 1.34473C14.0006 1.2496 13.7491 1.22459 13.5064 1.2729C13.2638 1.3212 13.041 1.44064 12.8665 1.61598L11.2502 3.23223L8.38399 0.365983C8.14958 0.131644 7.8317 0 7.50024 0C7.16879 0 6.8509 0.131644 6.61649 0.365983L3.75024 3.23223L2.13399 1.61598C1.95918 1.44122 1.73647 1.32221 1.49403 1.274C1.25159 1.22579 1.0003 1.25055 0.771926 1.34514C0.543551 1.43972 0.348347 1.5999 0.210992 1.80541C0.0736367 2.01092 0.000296921 2.25255 0.000244141 2.49973L0.000244141 9.11598C0.00123655 9.94448 0.330795 10.7388 0.916632 11.3246C1.50247 11.9104 2.29675 12.24 3.12524 12.241H11.8752C12.7037 12.24 13.498 11.9104 14.0839 11.3246C14.6697 10.7388 14.9993 9.94448 15.0002 9.11598V2.49973C15.0003 2.25253 14.9271 2.01085 14.7898 1.80526C14.6525 1.59968 14.4574 1.43941 14.229 1.34473Z" />
6
+ </svg>
7
+ )
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+
3
+ export const Document = (props) => (
4
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" {...props}>
5
+ <path d="M 13 4 C 10.250484 4 8 6.2504839 8 9 L 8 40 C 8 42.749516 10.250484 45 13 45 L 35 45 C 37.749516 45 40 42.749516 40 40 L 40 20 A 1.0001 1.0001 0 1 0 38 20 L 38 40 C 38 41.668484 36.668484 43 35 43 L 13 43 C 11.331516 43 10 41.668484 10 40 L 10 9 C 10 7.3315161 11.331516 6 13 6 L 26.757812 6 C 26.848824 6 26.910938 6.0874954 27 6.0996094 L 27 13 C 27 15.197334 28.802666 17 31 17 L 39 17 A 1.0001 1.0001 0 0 0 39.707031 15.292969 L 29.585938 5.171875 C 28.836398 4.4210018 27.818469 4 26.757812 4 L 13 4 z M 29 7.4140625 L 36.585938 15 L 31 15 C 29.883334 15 29 14.116666 29 13 L 29 7.4140625 z M 16 24 A 1.0001 1.0001 0 1 0 16 26 L 32 26 A 1.0001 1.0001 0 1 0 32 24 L 16 24 z M 16 29 A 1.0001 1.0001 0 1 0 16 31 L 32 31 A 1.0001 1.0001 0 1 0 32 29 L 16 29 z M 16 34 A 1.0001 1.0001 0 1 0 16 36 L 26 36 A 1.0001 1.0001 0 1 0 26 34 L 16 34 z"/>
6
+ </svg>
7
+ )
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+
3
+ export const Downvote = (props) => (
4
+ <svg viewBox="0 0 27 25" xmlns="http://www.w3.org/2000/svg" {...props}>
5
+ <path d="M26.0359 12.8125L25.2696 7.60417C25.0812 6.36451 24.435 5.23074 23.4484 4.40882C22.4618 3.5869 21.2003 3.13138 19.893 3.125H5.43525C3.99426 3.12665 2.61279 3.67592 1.59385 4.65231C0.574921 5.62871 0.00172608 6.95251 0 8.33333L0 13.5417C0.00172608 14.9225 0.574921 16.2463 1.59385 17.2227C2.61279 18.1991 3.99426 18.7483 5.43525 18.75H8.38333L10.4639 22.7896C10.8137 23.4704 11.4072 24.0081 12.1362 24.3045C12.8652 24.6009 13.6811 24.6364 14.4352 24.4044C15.1892 24.1724 15.831 23.6884 16.2436 23.0407C16.6563 22.393 16.8122 21.6247 16.683 20.876L16.3177 18.75H20.654C21.432 18.75 22.2011 18.59 22.909 18.2807C23.617 17.9714 24.2474 17.52 24.7577 16.9571C25.2679 16.3942 25.6461 15.7329 25.8666 15.0178C26.0871 14.3028 26.1449 13.5508 26.0359 12.8125ZM5.43525 5.20833H7.60935V16.6667H5.43525C4.57034 16.6667 3.74085 16.3374 3.12927 15.7514C2.51769 15.1653 2.1741 14.3705 2.1741 13.5417V8.33333C2.1741 7.50453 2.51769 6.70968 3.12927 6.12362C3.74085 5.53757 4.57034 5.20833 5.43525 5.20833V5.20833ZM23.115 15.5917C22.8089 15.9291 22.4308 16.1997 22.0063 16.3852C21.5817 16.5706 21.1206 16.6666 20.654 16.6667H15.0372C14.8795 16.6666 14.7237 16.6995 14.5806 16.7629C14.4375 16.8263 14.3105 16.9188 14.2084 17.034C14.1064 17.1491 14.0316 17.2842 13.9895 17.4298C13.9473 17.5754 13.9387 17.728 13.9642 17.8771L14.5382 21.2104C14.5658 21.3651 14.5574 21.5238 14.5136 21.675C14.4698 21.8263 14.3917 21.9664 14.2849 22.0854C14.1597 22.2148 14.0042 22.3138 13.8313 22.3743C13.6583 22.4349 13.4728 22.4552 13.2901 22.4336C13.1073 22.4121 12.9325 22.3493 12.78 22.2503C12.6275 22.1514 12.5018 22.0192 12.413 21.8646L10.0335 17.2479C9.9707 17.1324 9.8859 17.0293 9.78345 16.9438V5.20833H19.893C20.6782 5.21108 21.4361 5.48409 22.0287 5.9776C22.6214 6.47111 23.0092 7.15225 23.1216 7.89688L23.889 13.1052C23.9534 13.5486 23.9176 14.0001 23.7841 14.4291C23.6505 14.858 23.4224 15.2545 23.115 15.5917V15.5917Z" />
6
+ </svg>
7
+ )
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+
3
+ export const Ellipsis = (props) => (
4
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
5
+ <path d="M3.8 9.582c-.433.093-.947.374-1.316.722-.667.627-.974 1.319-.974 2.196 0 .849.298 1.547.916 2.144.603.582 1.251.846 2.074.846.849 0 1.547-.298 2.144-.916.582-.603.846-1.251.846-2.074 0-.877-.307-1.569-.974-2.196-.376-.354-.886-.63-1.336-.724-.348-.073-1.035-.072-1.38.002m7.44.018a3.007 3.007 0 0 0-2.015 4.044c.349.859 1.179 1.569 2.082 1.78.355.082 1.031.082 1.386 0 .903-.211 1.733-.921 2.082-1.78.367-.902.271-1.969-.247-2.764a3.737 3.737 0 0 0-1-.958c-.471-.28-.816-.372-1.448-.388-.445-.012-.593 0-.84.066m7.56-.018c-.433.093-.947.374-1.316.722-.667.627-.974 1.319-.974 2.196 0 .849.298 1.547.916 2.144.603.582 1.251.846 2.074.846.849 0 1.547-.298 2.144-.916.582-.603.846-1.251.846-2.074 0-.877-.307-1.569-.974-2.196-.376-.354-.886-.63-1.336-.724-.348-.073-1.035-.072-1.38.002m-13.464 1.11c.424.201.771.548.974.975.149.312.15.315.15.833 0 .515-.001.523-.144.82-.357.744-1.018 1.169-1.816 1.169s-1.459-.425-1.816-1.169c-.143-.297-.144-.305-.144-.82 0-.518.001-.521.15-.833a2.13 2.13 0 0 1 1.25-1.093c.106-.036.315-.05.622-.042.439.011.479.019.774.16m7.227-.108c.723.212 1.301.88 1.409 1.629a2.015 2.015 0 0 1-1.372 2.192c-.52.164-1.202.082-1.64-.197-.486-.309-.852-.867-.932-1.421a2.019 2.019 0 0 1 1.372-2.192c.286-.092.869-.098 1.163-.011m7.773.108c.424.201.771.548.974.975.149.312.15.315.15.833 0 .515-.001.523-.144.82-.357.744-1.018 1.169-1.816 1.169s-1.459-.425-1.816-1.169c-.143-.297-.144-.305-.144-.82 0-.518.001-.521.15-.833a2.13 2.13 0 0 1 1.25-1.093c.106-.036.315-.05.622-.042.439.011.479.019.774.16"/>
6
+ {/* <path d="M7 12.5C7 11.125 5.875 10 4.5 10C3.125 10 2 11.125 2 12.5C2 13.875 3.125 15 4.5 15C5.875 15 7 13.875 7 12.5ZM9.5 12.5C9.5 13.875 10.625 15 12 15C13.375 15 14.5 13.875 14.5 12.5C14.5 11.125 13.375 10 12 10C10.625 10 9.5 11.125 9.5 12.5ZM17 12.5C17 13.875 18.125 15 19.5 15C20.875 15 22 13.875 22 12.5C22 11.125 20.875 10 19.5 10C18.125 10 17 11.125 17 12.5Z" stroke="black"/> */}
7
+ </svg>
8
+ )
@@ -0,0 +1,11 @@
1
+ import React from 'react';
2
+
3
+ export const ExpertBadge = (props) => (
4
+ <svg viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg" {...props}>
5
+ <path d="M229.56 345.72C226.081 342.24 221.746 339.737 216.993 338.463C212.239 337.189 207.234 337.19 202.48 338.464L193.444 340.884C189.367 341.978 185.094 342.135 180.947 341.342C176.8 340.55 172.887 338.829 169.5 336.308H169.476L107.736 443.248L167.2 427.316L183.132 486.772L256 360.548C252.318 360.552 248.671 359.828 245.269 358.419C241.867 357.01 238.777 354.942 236.176 352.336L229.56 345.72Z" fill="#AFD8FF"/>
6
+ <path d="M342.5 336.308C339.114 338.83 335.2 340.552 331.053 341.344C326.906 342.137 322.633 341.979 318.556 340.884L309.52 338.464C304.766 337.19 299.761 337.189 295.008 338.463C290.254 339.737 285.92 342.24 282.44 345.72L275.824 352.336C273.223 354.942 270.133 357.01 266.731 358.419C263.329 359.828 259.682 360.552 256 360.548L328.876 486.772L344.8 427.316L404.252 443.248L342.524 336.316L342.5 336.308Z" fill="#AFD8FF"/>
7
+ <path d="M408.832 219.328L415.448 212.712C420.705 207.454 423.659 200.323 423.659 192.888C423.659 185.452 420.705 178.321 415.448 173.064L408.832 166.448C405.352 162.968 402.849 158.633 401.575 153.88C400.302 149.126 400.302 144.121 401.576 139.368L403.976 130.332C405.901 123.153 404.896 115.504 401.184 109.066C397.471 102.629 391.353 97.9285 384.176 95.9996L375.136 93.5796C370.383 92.3044 366.049 89.8013 362.57 86.3217C359.09 82.8421 356.587 78.5084 355.312 73.7556L352.892 64.7156C350.966 57.5343 346.268 51.4116 339.829 47.6941C333.39 43.9766 325.738 42.9685 318.556 44.8916L309.52 47.3156C304.766 48.5889 299.761 48.5886 295.008 47.3149C290.255 46.0413 285.92 43.539 282.44 40.0596L275.824 33.4396C270.566 28.1821 263.435 25.2285 256 25.2285C248.565 25.2285 241.434 28.1821 236.176 33.4396L229.56 40.0556C226.08 43.535 221.745 46.0373 216.992 47.3109C212.238 48.5846 207.233 48.5849 202.48 47.3116L193.444 44.8876C186.262 42.9645 178.61 43.9726 172.171 47.6901C165.732 51.4076 161.033 57.5303 159.108 64.7116L156.688 73.7516C155.413 78.5044 152.91 82.8381 149.43 86.3177C145.95 89.7973 141.617 92.3004 136.864 93.5756L127.824 95.9996C120.643 97.9252 114.522 102.623 110.804 109.061C107.087 115.499 106.078 123.15 108 130.332L110.424 139.368C111.697 144.121 111.697 149.126 110.423 153.88C109.15 158.633 106.647 162.968 103.168 166.448L96.5519 173.064C91.2944 178.321 88.3408 185.452 88.3408 192.888C88.3408 200.323 91.2944 207.454 96.5519 212.712L103.168 219.328C106.647 222.808 109.15 227.142 110.423 231.896C111.697 236.649 111.697 241.654 110.424 246.408L108 255.444C106.077 262.626 107.085 270.277 110.802 276.716C114.52 283.155 120.643 287.854 127.824 289.78L136.864 292.2C141.617 293.473 145.952 295.976 149.432 299.456C152.912 302.936 155.414 307.27 156.688 312.024L159.108 321.064C161.033 328.245 165.732 334.367 172.172 338.084C178.611 341.801 186.262 342.808 193.444 340.884L202.48 338.464C207.233 337.19 212.239 337.189 216.992 338.463C221.746 339.737 226.08 342.24 229.56 345.72L236.176 352.336C241.434 357.593 248.565 360.547 256 360.547C263.435 360.547 270.566 357.593 275.824 352.336L282.44 345.72C285.92 342.24 290.254 339.737 295.008 338.463C299.761 337.189 304.766 337.19 309.52 338.464L318.556 340.884C325.737 342.808 333.389 341.801 339.828 338.084C346.267 334.367 350.966 328.245 352.892 321.064L355.312 312.024C356.586 307.27 359.088 302.936 362.568 299.456C366.048 295.976 370.382 293.473 375.136 292.2L384.176 289.78C387.732 288.827 391.066 287.183 393.987 284.942C396.908 282.701 399.359 279.906 401.2 276.718C403.041 273.529 404.236 270.01 404.716 266.359C405.197 262.709 404.953 259 404 255.444L401.6 246.408C400.323 241.656 400.319 236.652 401.588 231.899C402.858 227.145 405.356 222.81 408.832 219.328Z" fill="#223C55"/>
8
+ <path d="M256 305.072C318.51 305.072 369.184 254.398 369.184 191.888C369.184 129.378 318.51 78.7041 256 78.7041C193.491 78.7041 142.816 129.378 142.816 191.888C142.816 254.398 193.491 305.072 256 305.072Z" fill="#AFD8FF"/>
9
+ <path d="M320.832 169.492L298.964 147.624L244.168 202.416L213.036 171.284L191.168 193.152L244.168 246.152L320.832 169.492Z" fill="#223C55"/>
10
+ </svg>
11
+ )
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+
3
+ export const Facebook = (props) => (
4
+ <svg viewBox="0 0 300 522" xmlns="http://www.w3.org/2000/svg" {...props}>
5
+ <path d="M180 512H98.008c-13.695 0-24.836-11.14-24.836-24.836V302.227H25.336C11.64 302.227.5 291.082.5 277.39v-79.246c0-13.696 11.14-24.836 24.836-24.836h47.836v-39.684c0-39.348 12.355-72.824 35.726-96.805C132.375 12.73 165.184 0 203.778 0l62.53.102c13.672.023 24.794 11.164 24.794 24.835v73.579c0 13.695-11.137 24.836-24.829 24.836l-42.101.015c-12.84 0-16.11 2.574-16.809 3.363-1.152 1.31-2.523 5.008-2.523 15.223v31.352h58.27c4.386 0 8.636 1.082 12.288 3.12 7.88 4.403 12.778 12.727 12.778 21.723l-.031 79.247c0 13.687-11.141 24.828-24.836 24.828h-58.47v184.941C204.84 500.86 193.696 512 180 512zm-76.813-30.016h71.633V288.79c0-9.144 7.442-16.582 16.582-16.582h66.727l.027-68.883h-66.758c-9.14 0-16.578-7.437-16.578-16.582v-44.789c0-11.726 1.192-25.062 10.043-35.086 10.696-12.117 27.551-13.515 39.301-13.515l36.922-.016V30.109l-57.332-.093c-62.024 0-100.566 39.703-100.566 103.609v53.117c0 9.14-7.438 16.582-16.579 16.582H30.516v68.883h56.093c9.141 0 16.579 7.438 16.579 16.582zM266.25 30.117h.004zm0 0" />
6
+ </svg>
7
+ )
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+
3
+ export const Flag = (props) => (
4
+ <svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" {...props}>
5
+ <path d="M3.2 1C3.2 0.447 2.753 0 2.2 0S1.2 0.447 1.2 1V2.4 9.6 12.8 19.2c0 0.707 0.573 1.28 1.28 1.28s1.28-0.573 1.28-1.28v-5.12l2.57-0.644c1.644-0.412 3.384-0.22 4.902 0.536 1.768 0.884 3.82 0.992 5.668 0.296l1.388-0.52c0.5-0.188 0.832-0.664 0.832-1.196V4.332c0-0.92-0.968-1.52-1.792-1.108l-0.384 0.192c-1.852 0.928-4.032 0.928-5.884 0-1.404-0.704-3.016-0.88-4.54-0.5L3.2 1.92V1z"/>
6
+ </svg>
7
+ )
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+
3
+ export const Home = (props) => (
4
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
5
+ <path d="M23.121,9.069,15.536,1.483a5.008,5.008,0,0,0-7.072,0L.879,9.069A2.978,2.978,0,0,0,0,11.19v9.817a3,3,0,0,0,3,3H21a3,3,0,0,0,3-3V11.19A2.978,2.978,0,0,0,23.121,9.069ZM15,22.007H9V18.073a3,3,0,0,1,6,0Zm7-1a1,1,0,0,1-1,1H17V18.073a5,5,0,0,0-10,0v3.934H3a1,1,0,0,1-1-1V11.19a1.008,1.008,0,0,1,.293-.707L9.878,2.9a3.008,3.008,0,0,1,4.244,0l7.585,7.586A1.008,1.008,0,0,1,22,11.19Z"/>
6
+ </svg>
7
+ )
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+
3
+ export const Italic = (props) => (
4
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
5
+ <path d="M10 4v3h2.21l-3.42 8H6v3h8v-3h-2.21l3.42-8H18V4z"/>
6
+ </svg>
7
+ );
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+
3
+ export const LightArrow = (props) => (
4
+ <svg viewBox="0 0 50 25" xmlns="http://www.w3.org/2000/svg" {...props}>
5
+ <path d="M2.449.112C1.543.343.729 1.028.303 1.917c-.235.488-.26.619-.261 1.333 0 .722.024.843.274 1.375.264.56.756 1.064 12.479 12.792L25 29.625l12.205-12.208C48.928 5.689 49.42 5.185 49.684 4.625c.25-.532.274-.653.274-1.375-.001-.714-.026-.845-.26-1.333C48.914.28 47.047-.418 45.386.305c-.477.208-1.173.884-10.448 10.145L25 20.373l-9.937-9.923C5.683 1.085 5.095.515 4.599.299 3.972.025 3.09-.051 2.449.112"/>
6
+ </svg>
7
+ )