quickblox-react-ui-kit 0.4.6-beta.2 → 0.4.6-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (887) hide show
  1. package/.prettierignore +4 -4
  2. package/.prettierrc +10 -10
  3. package/.storybook/main.ts +26 -26
  4. package/.storybook/preview.ts +16 -16
  5. package/LICENSE.md +18 -18
  6. package/dist/App.d.ts +3 -3
  7. package/dist/CommonTypes/BaseViewModel.d.ts +58 -58
  8. package/dist/CommonTypes/CommonTypes.d.ts +189 -189
  9. package/dist/CommonTypes/FunctionResult.d.ts +4 -4
  10. package/dist/Data/Creator.d.ts +30 -30
  11. package/dist/Data/DefaultConfigurations.d.ts +7 -7
  12. package/dist/Data/Stubs.d.ts +31 -31
  13. package/dist/Data/dto/dialog/LocalDialogDTO.d.ts +16 -16
  14. package/dist/Data/dto/dialog/LocalDialogsDTO.d.ts +9 -9
  15. package/dist/Data/dto/dialog/RemoteDialogDTO.d.ts +18 -18
  16. package/dist/Data/dto/dialog/RemoteDialogsDTO.d.ts +9 -9
  17. package/dist/Data/dto/file/LocalFileDTO.d.ts +10 -10
  18. package/dist/Data/dto/file/RemoteFileDTO.d.ts +10 -10
  19. package/dist/Data/dto/message/LocalMessageDTO.d.ts +20 -20
  20. package/dist/Data/dto/message/LocalMessagesDTO.d.ts +9 -9
  21. package/dist/Data/dto/message/RemoteMessageDTO.d.ts +23 -23
  22. package/dist/Data/dto/message/RemoteMessagesDTO.d.ts +9 -9
  23. package/dist/Data/dto/user/LocalUserDTO.d.ts +14 -14
  24. package/dist/Data/dto/user/LocalUsersDTO.d.ts +9 -9
  25. package/dist/Data/dto/user/RemoteUserDTO.d.ts +14 -14
  26. package/dist/Data/dto/user/RemoteUsersDTO.d.ts +9 -9
  27. package/dist/Data/mapper/DialogLocalDTOMapper.d.ts +17 -17
  28. package/dist/Data/mapper/DialogRemoteDTOMapper.d.ts +18 -18
  29. package/dist/Data/mapper/FileLocalDTOMapper.d.ts +8 -8
  30. package/dist/Data/mapper/FileRemoteDTOMapper.d.ts +8 -8
  31. package/dist/Data/mapper/IMapper.d.ts +4 -4
  32. package/dist/Data/mapper/MessageLocalDTOMapper.d.ts +8 -8
  33. package/dist/Data/mapper/MessageRemoteDTOMapper.d.ts +10 -10
  34. package/dist/Data/mapper/UserLocalDTOMapper.d.ts +9 -9
  35. package/dist/Data/mapper/UserRemoteDTOMapper.d.ts +9 -9
  36. package/dist/Data/repository/ConnectionRepository.d.ts +17 -17
  37. package/dist/Data/repository/DialogsRepository.d.ts +31 -31
  38. package/dist/Data/repository/EventMessagesRepository.d.ts +36 -36
  39. package/dist/Data/repository/FileRepository.d.ts +14 -14
  40. package/dist/Data/repository/MessagesRepository.d.ts +24 -24
  41. package/dist/Data/repository/UsersRepository.d.ts +18 -18
  42. package/dist/Data/source/AISource.d.ts +13 -13
  43. package/dist/Data/source/exception/LocalDataSourceException.d.ts +10 -10
  44. package/dist/Data/source/exception/MapperDTOException.d.ts +9 -9
  45. package/dist/Data/source/exception/RemoteDataSourceException.d.ts +15 -15
  46. package/dist/Data/source/exception/RepositoryException.d.ts +15 -15
  47. package/dist/Data/source/local/ChatLocalStorageDataSource.d.ts +8 -8
  48. package/dist/Data/source/local/ILocalDataSource.d.ts +25 -25
  49. package/dist/Data/source/local/ILocalFileDataSource.d.ts +7 -7
  50. package/dist/Data/source/local/LocalDataSource.d.ts +28 -28
  51. package/dist/Data/source/local/LocalFileDataSource.d.ts +8 -8
  52. package/dist/Data/source/remote/IRemoteDataSource.d.ts +41 -41
  53. package/dist/Data/source/remote/Mapper/DialogDTOMapper.d.ts +10 -10
  54. package/dist/Data/source/remote/Mapper/FileDTOMapper.d.ts +7 -7
  55. package/dist/Data/source/remote/Mapper/IDTOMapper.d.ts +4 -4
  56. package/dist/Data/source/remote/Mapper/MessageDTOMapper.d.ts +25 -25
  57. package/dist/Data/source/remote/Mapper/UserDTOMapper.d.ts +7 -7
  58. package/dist/Data/source/remote/RemoteDataSource.d.ts +100 -94
  59. package/dist/Domain/entity/Chat.d.ts +4 -4
  60. package/dist/Domain/entity/ChatMessageAttachmentEntity.d.ts +14 -14
  61. package/dist/Domain/entity/CustomDataEntity.d.ts +3 -3
  62. package/dist/Domain/entity/DialogEntity.d.ts +13 -13
  63. package/dist/Domain/entity/DialogEventInfo.d.ts +18 -18
  64. package/dist/Domain/entity/DialogTypes.d.ts +5 -5
  65. package/dist/Domain/entity/EventMessageType.d.ts +5 -5
  66. package/dist/Domain/entity/FileEntity.d.ts +10 -10
  67. package/dist/Domain/entity/FileTypes.d.ts +6 -6
  68. package/dist/Domain/entity/GroupDialogEntity.d.ts +19 -19
  69. package/dist/Domain/entity/LastMessageEntity.d.ts +5 -5
  70. package/dist/Domain/entity/MessageEntity.d.ts +24 -24
  71. package/dist/Domain/entity/NotificationTypes.d.ts +6 -6
  72. package/dist/Domain/entity/PrivateDialogEntity.d.ts +16 -16
  73. package/dist/Domain/entity/PublicDialogEntity.d.ts +18 -18
  74. package/dist/Domain/entity/UserEntity.d.ts +13 -13
  75. package/dist/Domain/exception/domain/DomainExecption.d.ts +4 -4
  76. package/dist/Domain/repository/IDialogsRepository.d.ts +21 -21
  77. package/dist/Domain/repository/IFileRepository.d.ts +6 -6
  78. package/dist/Domain/repository/IMessagesRepository.d.ts +15 -15
  79. package/dist/Domain/repository/IUsersRepository.d.ts +8 -8
  80. package/dist/Domain/repository/Pagination.d.ts +16 -16
  81. package/dist/Domain/use_cases/CreateDialogUseCase.d.ts +13 -13
  82. package/dist/Domain/use_cases/ForwardMessagesUseCase.d.ts +13 -13
  83. package/dist/Domain/use_cases/GetAllDialogsUseCase.d.ts +8 -8
  84. package/dist/Domain/use_cases/GetAllDialogsUseCaseWithMock.d.ts +10 -10
  85. package/dist/Domain/use_cases/GetAllMessagesForDialog.d.ts +11 -11
  86. package/dist/Domain/use_cases/GetAllUsersUseCase.d.ts +11 -11
  87. package/dist/Domain/use_cases/GetDialogByIdUseCase.d.ts +9 -9
  88. package/dist/Domain/use_cases/GetUsersByIdsUseCase.d.ts +9 -9
  89. package/dist/Domain/use_cases/LeaveDialogUseCase.d.ts +19 -19
  90. package/dist/Domain/use_cases/RemoveUsersFromTheDialogUseCase.d.ts +13 -13
  91. package/dist/Domain/use_cases/ReplyMessagesUseCase.d.ts +10 -10
  92. package/dist/Domain/use_cases/SendTextMessageUseCase.d.ts +9 -9
  93. package/dist/Domain/use_cases/SubscribeToDialogEventsUseCase.d.ts +17 -17
  94. package/dist/Domain/use_cases/SubscribeToDialogsUpdatesUseCase.d.ts +11 -11
  95. package/dist/Domain/use_cases/SubscribeToDialogsUpdatesUseCaseWithMock.d.ts +11 -11
  96. package/dist/Domain/use_cases/SyncDialogsUseCase.d.ts +23 -23
  97. package/dist/Domain/use_cases/UpdateCurrentDialogInDataSourceUseCase.d.ts +12 -12
  98. package/dist/Domain/use_cases/UpdateDialogUseCase.d.ts +13 -13
  99. package/dist/Domain/use_cases/UploadFileUseCase.d.ts +9 -9
  100. package/dist/Domain/use_cases/UserTypingMessageUseCase.d.ts +13 -13
  101. package/dist/Domain/use_cases/ai/AIAnswerAssistUseCase.d.ts +13 -13
  102. package/dist/Domain/use_cases/ai/AIAnswerAssistWithProxyUseCase.d.ts +13 -13
  103. package/dist/Domain/use_cases/ai/AIAnswerAssistWithSDKUseCase.d.ts +11 -11
  104. package/dist/Domain/use_cases/ai/AIRephraseUseCase.d.ts +15 -15
  105. package/dist/Domain/use_cases/ai/AIRephraseWithProxyUseCase.d.ts +15 -15
  106. package/dist/Domain/use_cases/ai/AITranslateUseCase.d.ts +14 -14
  107. package/dist/Domain/use_cases/ai/AITranslateWithProxyUseCase.d.ts +14 -14
  108. package/dist/Domain/use_cases/ai/AITranslateWithSDKUseCase.d.ts +12 -12
  109. package/dist/Domain/use_cases/base/BaseUseCase.d.ts +5 -5
  110. package/dist/Domain/use_cases/base/IUseCase.d.ts +5 -5
  111. package/dist/Domain/use_cases/base/Subscribable/ISubscribable.d.ts +5 -5
  112. package/dist/Domain/use_cases/base/Subscribable/SubscriptionPerformer.d.ts +24 -24
  113. package/dist/Presentation/Views/Dialog/AIComponents/AIAssist/AIAssist.d.ts +16 -16
  114. package/dist/Presentation/Views/Dialog/AIComponents/AIAssistComponent/AIAssistComponent.d.ts +8 -8
  115. package/dist/Presentation/Views/Dialog/AIComponents/AITranslate/AITranslate.d.ts +20 -20
  116. package/dist/Presentation/Views/Dialog/AIComponents/AITranslateComponent/AITranslateComponent.d.ts +11 -11
  117. package/dist/Presentation/Views/Dialog/AIWidgets/AIMessageWidget.d.ts +25 -25
  118. package/dist/Presentation/Views/Dialog/AIWidgets/AIRephraseWidget/AIRephraseWidget.d.ts +23 -23
  119. package/dist/Presentation/Views/Dialog/AIWidgets/AIWidgetActions/AIWidgetActions.d.ts +15 -15
  120. package/dist/Presentation/Views/Dialog/AIWidgets/ErrorMessageIcon.d.ts +10 -10
  121. package/dist/Presentation/Views/Dialog/AIWidgets/SliderMenu.d.ts +23 -23
  122. package/dist/Presentation/Views/Dialog/AIWidgets/Tone.d.ts +7 -7
  123. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidget.d.ts +2 -2
  124. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidgetWithProxy.d.ts +2 -2
  125. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidgetWithSDK.d.ts +3 -3
  126. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIRephraseMessageWidget.d.ts +2 -2
  127. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIRephraseMessageWidgetWithProxy.d.ts +2 -2
  128. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidget.d.ts +2 -2
  129. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidgetWithProxy.d.ts +2 -2
  130. package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidgetWithSDK.d.ts +3 -3
  131. package/dist/Presentation/Views/Dialog/AIWidgets/useDefaultVoiceInputWidget.d.ts +2 -2
  132. package/dist/Presentation/Views/Dialog/ContextMenu/ContextMenu.d.ts +12 -12
  133. package/dist/Presentation/Views/Dialog/Dialog.d.ts +18 -18
  134. package/dist/Presentation/Views/Dialog/DialogHeader/DialogBackIcon/DialogBackIcon.d.ts +8 -8
  135. package/dist/Presentation/Views/Dialog/DialogHeader/DialogHeader.d.ts +13 -13
  136. package/dist/Presentation/Views/Dialog/DialogHeader/DialogInfoIcon/DialogInfoIcon.d.ts +10 -10
  137. package/dist/Presentation/Views/Dialog/DialogViewModel.d.ts +18 -18
  138. package/dist/Presentation/Views/Dialog/DropDownMenu/DropDownMenu.d.ts +25 -25
  139. package/dist/Presentation/Views/Dialog/DropDownMenu/ItemDropDownMenu/ItemDropDownMenu.d.ts +11 -11
  140. package/dist/Presentation/Views/Dialog/ErrorToast/ErrorToast.d.ts +7 -7
  141. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogListItem/DialogListItem.d.ts +14 -14
  142. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogsWithSearch.d.ts +12 -12
  143. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/SearchComponent/SearchComponent.d.ts +8 -8
  144. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessageFlow.d.ts +14 -14
  145. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessagePreview/ForwardMessagePreview.d.ts +9 -9
  146. package/dist/Presentation/Views/Dialog/ForwardMessageFlow/InputForForwarding/InputForForwarding.d.ts +11 -11
  147. package/dist/Presentation/Views/Dialog/InputMessage/InputMessage.d.ts +21 -21
  148. package/dist/Presentation/Views/Dialog/Message/HighLightLink/HighLightLink.d.ts +9 -9
  149. package/dist/Presentation/Views/Dialog/Message/IncomingForwardedMessage/IncomingForwardedMessage.d.ts +27 -27
  150. package/dist/Presentation/Views/Dialog/Message/IncomingMessage/AvatarContentIncomingUser/AvatarContentIncomingUser.d.ts +5 -5
  151. package/dist/Presentation/Views/Dialog/Message/IncomingMessage/IncomingMessage.d.ts +30 -30
  152. package/dist/Presentation/Views/Dialog/Message/IncomingMessage/MessageContentComponent/MessageContentComponent.d.ts +12 -12
  153. package/dist/Presentation/Views/Dialog/Message/IncomingRepliedMessage/IncomingRepliedMessage.d.ts +27 -27
  154. package/dist/Presentation/Views/Dialog/Message/Message.d.ts +24 -24
  155. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/AudioAttachment/AudioAttachment.d.ts +8 -8
  156. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/DefaultAttachment/DefaultAttachment.d.ts +8 -8
  157. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/ImageAttachment/ImageAttachment.d.ts +8 -8
  158. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/MessageAttachment.d.ts +11 -11
  159. package/dist/Presentation/Views/Dialog/Message/MessageAttachment/VideoAttachment/VideoAttachment.d.ts +8 -8
  160. package/dist/Presentation/Views/Dialog/Message/MessageContextMenu/MessageContextMenu.d.ts +14 -14
  161. package/dist/Presentation/Views/Dialog/Message/OutgoinForwardedMessage/OutgoinForwardedMessage.d.ts +18 -18
  162. package/dist/Presentation/Views/Dialog/Message/OutgoingMessage/OutgoingMessage.d.ts +15 -15
  163. package/dist/Presentation/Views/Dialog/Message/OutgoingRepliedMessage/OutgoingRepliedMessage.d.ts +16 -16
  164. package/dist/Presentation/Views/Dialog/MessageContextMenu/MessageContextMenu.d.ts +12 -12
  165. package/dist/Presentation/Views/Dialog/MessageItem/MessageItem.d.ts +24 -23
  166. package/dist/Presentation/Views/Dialog/SystemDateBanner/SystemDateBanner.d.ts +7 -7
  167. package/dist/Presentation/Views/Dialog/SystemMessageBanner/SystemMessageBanner.d.ts +7 -7
  168. package/dist/Presentation/Views/Dialog/VoiceMessage/VoiceMessage.d.ts +8 -8
  169. package/dist/Presentation/Views/Dialog/useDialogViewModel.d.ts +4 -4
  170. package/dist/Presentation/Views/DialogInfo/DialogInfo.d.ts +21 -21
  171. package/dist/Presentation/Views/DialogInfo/DialogMemberButton/DialogMembersButton.d.ts +10 -10
  172. package/dist/Presentation/Views/DialogInfo/MembersList/MembersList.d.ts +11 -11
  173. package/dist/Presentation/Views/DialogInfo/UsersList/SingleUser/SingleUser.d.ts +9 -9
  174. package/dist/Presentation/Views/DialogInfo/UsersList/UsersList.d.ts +11 -11
  175. package/dist/Presentation/Views/DialogInfo/UsersList/UsersListViewModel.d.ts +11 -11
  176. package/dist/Presentation/Views/DialogInfo/UsersList/useUsersListViewModel.d.ts +3 -3
  177. package/dist/Presentation/Views/DialogList/DialogList.d.ts +14 -14
  178. package/dist/Presentation/Views/DialogList/DialogListViewModel.d.ts +17 -17
  179. package/dist/Presentation/Views/DialogList/useDialogListViewModel.d.ts +4 -4
  180. package/dist/Presentation/Views/DialogListHeader/DialogListHeader.d.ts +15 -15
  181. package/dist/Presentation/Views/EditDialog/EditDialog.d.ts +20 -20
  182. package/dist/Presentation/Views/EditDialog/UserAvatar/UserAvatar.d.ts +11 -11
  183. package/dist/Presentation/Views/Flow/CreateDialog/CreateDialog.d.ts +13 -13
  184. package/dist/Presentation/Views/Flow/CreateDialogFlow/CreateNewDialogFlow.d.ts +11 -11
  185. package/dist/Presentation/Views/Flow/LeaveDialogFlow/LeaveDialogFlow.d.ts +9 -9
  186. package/dist/Presentation/Views/InviteMembers/InviteMembers.d.ts +16 -16
  187. package/dist/Presentation/Views/InviteMembers/InviteMembersViewModel.d.ts +13 -13
  188. package/dist/Presentation/Views/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.d.ts +13 -13
  189. package/dist/Presentation/Views/InviteMembers/InviteUsersResultViewModel.d.ts +6 -6
  190. package/dist/Presentation/Views/InviteMembers/NotFoundContent/NotFoundContent.d.ts +7 -7
  191. package/dist/Presentation/Views/InviteMembers/useInviteMembersViewModel.d.ts +2 -2
  192. package/dist/Presentation/Views/PreviewDialog/PreviewDialog.d.ts +37 -37
  193. package/dist/Presentation/Views/PreviewDialog/PreviewDialogContextMenu/PreviewDialogContextMenu.d.ts +12 -12
  194. package/dist/Presentation/Views/PreviewDialog/PreviewDialogViewModel.d.ts +11 -11
  195. package/dist/Presentation/Views/YesNoQuestion/YesNoQuestion.d.ts +13 -13
  196. package/dist/Presentation/components/Button.d.ts +4 -4
  197. package/dist/Presentation/components/Navbar.d.ts +1 -1
  198. package/dist/Presentation/components/TextInput.d.ts +1 -1
  199. package/dist/Presentation/components/UI/Buttons/ActiveButton/ActiveButton.d.ts +9 -9
  200. package/dist/Presentation/components/UI/Buttons/MainBoundedButton/MainBoundedButton.d.ts +11 -11
  201. package/dist/Presentation/components/UI/Buttons/MainButton/MainButton.d.ts +21 -21
  202. package/dist/Presentation/components/UI/Elements/SwitchButton/SwitchButton.d.ts +11 -11
  203. package/dist/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.d.ts +12 -12
  204. package/dist/Presentation/components/UI/Placeholders/LoaderComponent/LoaderComponent.d.ts +3 -3
  205. package/dist/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.d.ts +11 -11
  206. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/AIWidget/index.d.ts +3 -3
  207. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/BookIcon/BookIcon.d.ts +2 -2
  208. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/BotIcon/BotIcon.d.ts +3 -3
  209. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/HammerIcon/index.d.ts +2 -2
  210. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/HandshakeIcon/index.d.ts +2 -2
  211. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/MuscleIcon/index.d.ts +2 -2
  212. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/NecktieIcon/index.d.ts +2 -2
  213. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/NeutralFaceIcon/index.d.ts +2 -2
  214. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/PalmsUpTogetherIcon/index.d.ts +2 -2
  215. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/PerformingArtsIcon/index.d.ts +2 -2
  216. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/PointUpIcon/index.d.ts +2 -2
  217. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/SmileyIcon/index.d.ts +2 -2
  218. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/SmirkIcon/index.d.ts +2 -2
  219. package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/WhiteCheckMarkIcon/index.d.ts +2 -2
  220. package/dist/Presentation/components/UI/svgs/Icons/Actions/Add/index.d.ts +3 -3
  221. package/dist/Presentation/components/UI/svgs/Icons/Actions/AddContact/index.d.ts +3 -3
  222. package/dist/Presentation/components/UI/svgs/Icons/Actions/Archive/index.d.ts +3 -3
  223. package/dist/Presentation/components/UI/svgs/Icons/Actions/AssistAnswer/index.d.ts +3 -3
  224. package/dist/Presentation/components/UI/svgs/Icons/Actions/Copy/index.d.ts +3 -3
  225. package/dist/Presentation/components/UI/svgs/Icons/Actions/Delete/index.d.ts +3 -3
  226. package/dist/Presentation/components/UI/svgs/Icons/Actions/Download/index.d.ts +3 -3
  227. package/dist/Presentation/components/UI/svgs/Icons/Actions/Edit/index.d.ts +3 -3
  228. package/dist/Presentation/components/UI/svgs/Icons/Actions/EditDots/index.d.ts +3 -3
  229. package/dist/Presentation/components/UI/svgs/Icons/Actions/Emoji/index.d.ts +3 -3
  230. package/dist/Presentation/components/UI/svgs/Icons/Actions/ForwardFilled/index.d.ts +3 -3
  231. package/dist/Presentation/components/UI/svgs/Icons/Actions/Hungup/index.d.ts +3 -3
  232. package/dist/Presentation/components/UI/svgs/Icons/Actions/IncomeCall/index.d.ts +3 -3
  233. package/dist/Presentation/components/UI/svgs/Icons/Actions/Like/index.d.ts +3 -3
  234. package/dist/Presentation/components/UI/svgs/Icons/Actions/NewChat/index.d.ts +3 -3
  235. package/dist/Presentation/components/UI/svgs/Icons/Actions/OutcomeCall/index.d.ts +3 -3
  236. package/dist/Presentation/components/UI/svgs/Icons/Actions/Phone/index.d.ts +3 -3
  237. package/dist/Presentation/components/UI/svgs/Icons/Actions/PhoneFilled/index.d.ts +3 -3
  238. package/dist/Presentation/components/UI/svgs/Icons/Actions/Remove/index.d.ts +3 -3
  239. package/dist/Presentation/components/UI/svgs/Icons/Actions/Remove2/index.d.ts +3 -3
  240. package/dist/Presentation/components/UI/svgs/Icons/Actions/ReplyFilled/index.d.ts +3 -3
  241. package/dist/Presentation/components/UI/svgs/Icons/Actions/Send/index.d.ts +3 -3
  242. package/dist/Presentation/components/UI/svgs/Icons/Actions/Share/index.d.ts +3 -3
  243. package/dist/Presentation/components/UI/svgs/Icons/Actions/Summarize/index.d.ts +3 -3
  244. package/dist/Presentation/components/UI/svgs/Icons/Actions/SwapCamera/index.d.ts +3 -3
  245. package/dist/Presentation/components/UI/svgs/Icons/Actions/Tone/index.d.ts +3 -3
  246. package/dist/Presentation/components/UI/svgs/Icons/Actions/Unarchive/index.d.ts +3 -3
  247. package/dist/Presentation/components/UI/svgs/Icons/Actions/VideoIcon/index.d.ts +3 -3
  248. package/dist/Presentation/components/UI/svgs/Icons/Actions/Voice/index.d.ts +3 -3
  249. package/dist/Presentation/components/UI/svgs/Icons/Contents/Brodcast/index.d.ts +3 -3
  250. package/dist/Presentation/components/UI/svgs/Icons/Contents/Chat/index.d.ts +3 -3
  251. package/dist/Presentation/components/UI/svgs/Icons/Contents/ChatFilled/index.d.ts +3 -3
  252. package/dist/Presentation/components/UI/svgs/Icons/Contents/Conference/index.d.ts +3 -3
  253. package/dist/Presentation/components/UI/svgs/Icons/Contents/Contact/index.d.ts +3 -3
  254. package/dist/Presentation/components/UI/svgs/Icons/Contents/ContactFilled/index.d.ts +3 -3
  255. package/dist/Presentation/components/UI/svgs/Icons/Contents/GroupChat/index.d.ts +3 -3
  256. package/dist/Presentation/components/UI/svgs/Icons/Contents/Notifications/index.d.ts +3 -3
  257. package/dist/Presentation/components/UI/svgs/Icons/Contents/PrivateChat/index.d.ts +3 -3
  258. package/dist/Presentation/components/UI/svgs/Icons/Contents/PublicChannel/index.d.ts +3 -3
  259. package/dist/Presentation/components/UI/svgs/Icons/Contents/Stream/index.d.ts +3 -3
  260. package/dist/Presentation/components/UI/svgs/Icons/Contents/StreamFilled/index.d.ts +3 -3
  261. package/dist/Presentation/components/UI/svgs/Icons/Contents/User/index.d.ts +3 -3
  262. package/dist/Presentation/components/UI/svgs/Icons/IconsCommonTypes.d.ts +6 -6
  263. package/dist/Presentation/components/UI/svgs/Icons/Media/Attachment/index.d.ts +3 -3
  264. package/dist/Presentation/components/UI/svgs/Icons/Media/AudioFile/index.d.ts +3 -3
  265. package/dist/Presentation/components/UI/svgs/Icons/Media/BrokenFile/index.d.ts +3 -3
  266. package/dist/Presentation/components/UI/svgs/Icons/Media/Camera/index.d.ts +3 -3
  267. package/dist/Presentation/components/UI/svgs/Icons/Media/GifFile/index.d.ts +3 -3
  268. package/dist/Presentation/components/UI/svgs/Icons/Media/ImageEmpty/index.d.ts +3 -3
  269. package/dist/Presentation/components/UI/svgs/Icons/Media/ImageFile/index.d.ts +3 -3
  270. package/dist/Presentation/components/UI/svgs/Icons/Media/ImageFilled/index.d.ts +3 -3
  271. package/dist/Presentation/components/UI/svgs/Icons/Media/LinkWeb/index.d.ts +3 -3
  272. package/dist/Presentation/components/UI/svgs/Icons/Media/Location/index.d.ts +3 -3
  273. package/dist/Presentation/components/UI/svgs/Icons/Media/TextDocument/index.d.ts +3 -3
  274. package/dist/Presentation/components/UI/svgs/Icons/Media/Translate/index.d.ts +3 -3
  275. package/dist/Presentation/components/UI/svgs/Icons/Media/VideoFile/index.d.ts +3 -3
  276. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Admin/index.d.ts +3 -3
  277. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Banned/index.d.ts +3 -3
  278. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Freeze/index.d.ts +3 -3
  279. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Moderations/index.d.ts +3 -3
  280. package/dist/Presentation/components/UI/svgs/Icons/Moderation/Muted/index.d.ts +3 -3
  281. package/dist/Presentation/components/UI/svgs/Icons/Navigation/ArrowLeft/index.d.ts +3 -3
  282. package/dist/Presentation/components/UI/svgs/Icons/Navigation/ArrowRight/index.d.ts +3 -3
  283. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Back/index.d.ts +3 -3
  284. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Close/index.d.ts +3 -3
  285. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Down/index.d.ts +3 -3
  286. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Leave/index.d.ts +3 -3
  287. package/dist/Presentation/components/UI/svgs/Icons/Navigation/More/index.d.ts +3 -3
  288. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Next/index.d.ts +3 -3
  289. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Plus/index.d.ts +3 -3
  290. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Refresh/index.d.ts +3 -3
  291. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Search/index.d.ts +3 -3
  292. package/dist/Presentation/components/UI/svgs/Icons/Navigation/Settings/index.d.ts +3 -3
  293. package/dist/Presentation/components/UI/svgs/Icons/Navigation/SettingsField/index.d.ts +3 -3
  294. package/dist/Presentation/components/UI/svgs/Icons/Status/Error/index.d.ts +3 -3
  295. package/dist/Presentation/components/UI/svgs/Icons/Status/Help/index.d.ts +3 -3
  296. package/dist/Presentation/components/UI/svgs/Icons/Status/Information/index.d.ts +3 -3
  297. package/dist/Presentation/components/UI/svgs/Icons/Status/InformationFill/index.d.ts +3 -3
  298. package/dist/Presentation/components/UI/svgs/Icons/Status/Loader/index.d.ts +3 -3
  299. package/dist/Presentation/components/UI/svgs/Icons/Status/Mention/index.d.ts +3 -3
  300. package/dist/Presentation/components/UI/svgs/Icons/Status/Sent/index.d.ts +3 -3
  301. package/dist/Presentation/components/UI/svgs/Icons/Status/ViewedDelivered/index.d.ts +3 -3
  302. package/dist/Presentation/components/UI/svgs/Icons/Toggle/CameraOff/index.d.ts +3 -3
  303. package/dist/Presentation/components/UI/svgs/Icons/Toggle/CameraOn/index.d.ts +3 -3
  304. package/dist/Presentation/components/UI/svgs/Icons/Toggle/CheckOff/index.d.ts +3 -3
  305. package/dist/Presentation/components/UI/svgs/Icons/Toggle/CheckOn/index.d.ts +3 -3
  306. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Favourite/index.d.ts +3 -3
  307. package/dist/Presentation/components/UI/svgs/Icons/Toggle/FavouriteFilled/index.d.ts +3 -3
  308. package/dist/Presentation/components/UI/svgs/Icons/Toggle/FullScreen/inex.d.ts +3 -3
  309. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Hide/index.d.ts +3 -3
  310. package/dist/Presentation/components/UI/svgs/Icons/Toggle/ImagePlay/index.d.ts +3 -3
  311. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Louder/index.d.ts +3 -3
  312. package/dist/Presentation/components/UI/svgs/Icons/Toggle/MicOff/index.d.ts +3 -3
  313. package/dist/Presentation/components/UI/svgs/Icons/Toggle/MicOn/index.d.ts +3 -3
  314. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Minimize/index.d.ts +3 -3
  315. package/dist/Presentation/components/UI/svgs/Icons/Toggle/NotifyOff/index.d.ts +3 -3
  316. package/dist/Presentation/components/UI/svgs/Icons/Toggle/NotifyOn/index.d.ts +3 -3
  317. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Pause/index.d.ts +3 -3
  318. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Quite/index.d.ts +3 -3
  319. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Record/index.d.ts +3 -3
  320. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Screenshare/index.d.ts +3 -3
  321. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Show/index.d.ts +3 -3
  322. package/dist/Presentation/components/UI/svgs/Icons/Toggle/Speaker/index.d.ts +3 -3
  323. package/dist/Presentation/components/UI/svgs/Icons/Toggle/SpeakerOff/index.d.ts +3 -3
  324. package/dist/Presentation/components/UI/svgs/Icons/Toggle/StopRecord/index.d.ts +3 -3
  325. package/dist/Presentation/components/UI/svgs/Icons/Toggle/StopShare/index.d.ts +3 -3
  326. package/dist/Presentation/components/containers/ColumnContainer/ColumnContainer.d.ts +5 -5
  327. package/dist/Presentation/components/containers/RowCenterContainer/RowCenterContainer.d.ts +33 -33
  328. package/dist/Presentation/components/containers/RowLeftContainer/RowLeftContainer.d.ts +33 -33
  329. package/dist/Presentation/components/containers/RowRightContainer/RowRightContainer.d.ts +33 -33
  330. package/dist/Presentation/components/containers/ScrollableContainer/ScrollableContainer.d.ts +16 -16
  331. package/dist/Presentation/components/containers/SectionList/hooks/createUseComponent.d.ts +3 -3
  332. package/dist/Presentation/components/containers/SectionList/hooks/index.d.ts +4 -4
  333. package/dist/Presentation/components/containers/SectionList/hooks/useMobileLayout.d.ts +1 -1
  334. package/dist/Presentation/components/containers/SectionList/hooks/usePrevious.d.ts +1 -1
  335. package/dist/Presentation/components/containers/SectionList/hooks/useVisibility.d.ts +1 -1
  336. package/dist/Presentation/components/containers/SectionList/index.d.ts +3 -3
  337. package/dist/Presentation/components/containers/SectionList/useComponent.d.ts +28 -28
  338. package/dist/Presentation/icons/actions/index.d.ts +26 -26
  339. package/dist/Presentation/icons/contents/index.d.ts +13 -13
  340. package/dist/Presentation/icons/index.d.ts +7 -7
  341. package/dist/Presentation/icons/media/index.d.ts +12 -12
  342. package/dist/Presentation/icons/moderation/index.d.ts +5 -5
  343. package/dist/Presentation/icons/navigation/index.d.ts +12 -12
  344. package/dist/Presentation/icons/status/index.d.ts +7 -7
  345. package/dist/Presentation/icons/toggle/index.d.ts +23 -23
  346. package/dist/Presentation/layouts/Desktop/DesktopLayout.d.ts +13 -13
  347. package/dist/Presentation/layouts/Desktop/QuickBloxUIKitDesktopLayout.d.ts +6 -6
  348. package/dist/Presentation/layouts/LayoutCommonTypes.d.ts +6 -6
  349. package/dist/Presentation/layouts/TestStage/CompanyLogo/CompanyLogo.d.ts +3 -3
  350. package/dist/Presentation/layouts/TestStage/LoginView/Login.d.ts +9 -9
  351. package/dist/Presentation/providers/ProviderProps.d.ts +4 -4
  352. package/dist/Presentation/providers/QuickBloxUIKitProvider/QuickBloxUIKitProvider.d.ts +47 -47
  353. package/dist/Presentation/providers/QuickBloxUIKitProvider/useEventMessagesRepository.d.ts +3 -3
  354. package/dist/Presentation/providers/QuickBloxUIKitProvider/useQBConnection.d.ts +8 -8
  355. package/dist/Presentation/providers/QuickBloxUIKitProvider/useQbInitializedDataContext.d.ts +3 -3
  356. package/dist/Presentation/providers/QuickBloxUIKitProvider/useQbUIKitDataContext.d.ts +3 -3
  357. package/dist/Presentation/themes/DarkTheme.d.ts +21 -21
  358. package/dist/Presentation/themes/DefaultThemes/CustomTheme.d.ts +21 -21
  359. package/dist/Presentation/themes/DefaultThemes/DefaultTheme.d.ts +21 -21
  360. package/dist/Presentation/themes/LightTheme.d.ts +21 -21
  361. package/dist/Presentation/themes/ThemeScheme.d.ts +43 -43
  362. package/dist/Presentation/themes/UiKitTheme.d.ts +20 -20
  363. package/dist/Presentation/ui-components/Avatar/Avatar.d.ts +9 -9
  364. package/dist/Presentation/ui-components/Avatar/avatar.stories.d.ts +8 -8
  365. package/dist/Presentation/ui-components/Badge/Badge.d.ts +9 -9
  366. package/dist/Presentation/ui-components/Badge/Badge.stories.d.ts +8 -8
  367. package/dist/Presentation/ui-components/Button/Button.d.ts +12 -12
  368. package/dist/Presentation/ui-components/Button/Button.stories.d.ts +83 -83
  369. package/dist/Presentation/ui-components/CheckBox/CheckBox.d.ts +8 -8
  370. package/dist/Presentation/ui-components/DialogBanner/DialogBanner.d.ts +7 -7
  371. package/dist/Presentation/ui-components/DialogBanner/DialogBanner.stories.d.ts +34 -34
  372. package/dist/Presentation/ui-components/DialogItemPreview/DialogItemPreview.d.ts +16 -16
  373. package/dist/Presentation/ui-components/DialogItemPreview/DialogItemPreview.stories.d.ts +9 -9
  374. package/dist/Presentation/ui-components/DialogWindow/DialogWindow.d.ts +12 -12
  375. package/dist/Presentation/ui-components/DialogWindow/DialogWindow.stories.d.ts +6 -6
  376. package/dist/Presentation/ui-components/Dropdown/Dropdown.d.ts +12 -12
  377. package/dist/Presentation/ui-components/Dropdown/Dropdown.stories.d.ts +28 -28
  378. package/dist/Presentation/ui-components/Dropdown/DropdownOption.d.ts +13 -13
  379. package/dist/Presentation/ui-components/Header/Header.d.ts +13 -13
  380. package/dist/Presentation/ui-components/Header/Header.stories.d.ts +9 -9
  381. package/dist/Presentation/ui-components/Loader/Loader.d.ts +7 -7
  382. package/dist/Presentation/ui-components/Loader/Loader.stories.d.ts +44 -44
  383. package/dist/Presentation/ui-components/Message/Bubble/AttachmentBubble/AttachmentBubble.d.ts +7 -7
  384. package/dist/Presentation/ui-components/Message/Bubble/AudioBubble/AudioBubble.d.ts +10 -10
  385. package/dist/Presentation/ui-components/Message/Bubble/FileBubble/FileBubble.d.ts +8 -8
  386. package/dist/Presentation/ui-components/Message/Bubble/ImageBubble/ImageBubble.d.ts +7 -7
  387. package/dist/Presentation/ui-components/Message/Bubble/TextBubble/TextBubble.d.ts +7 -7
  388. package/dist/Presentation/ui-components/Message/Bubble/VideoBubble/VideoBubble.d.ts +8 -8
  389. package/dist/Presentation/ui-components/Message/FileUrl/FileUrl.d.ts +7 -7
  390. package/dist/Presentation/ui-components/Message/Message.d.ts +18 -18
  391. package/dist/Presentation/ui-components/Message/Message.stories.d.ts +8 -8
  392. package/dist/Presentation/ui-components/Message/MessageCaption/MessageCaption.d.ts +8 -8
  393. package/dist/Presentation/ui-components/Message/TimeAndStatus/TimeAndStatus.d.ts +7 -7
  394. package/dist/Presentation/ui-components/MessageInput/AttachmentUploader/AttachmentUploader.d.ts +8 -8
  395. package/dist/Presentation/ui-components/MessageInput/MessageInput.d.ts +21 -21
  396. package/dist/Presentation/ui-components/MessageInput/MessageInput.stories.d.ts +8 -8
  397. package/dist/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyImagePreviewAttachment/ReplyImagePreviewAttachment.d.ts +8 -8
  398. package/dist/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyMessagePreview.d.ts +11 -11
  399. package/dist/Presentation/ui-components/MessageInput/VoiceRecordingProgress/VoiceRecordingProgress.d.ts +11 -11
  400. package/dist/Presentation/ui-components/MessageSeparator/MessageSeparator.d.ts +7 -7
  401. package/dist/Presentation/ui-components/MessageSeparator/MessageSeparator.stories.d.ts +44 -44
  402. package/dist/Presentation/ui-components/Placeholder/Placeholder.d.ts +10 -10
  403. package/dist/Presentation/ui-components/Placeholder/Placeholder.stories.d.ts +7 -7
  404. package/dist/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.d.ts +8 -8
  405. package/dist/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.d.ts +9 -9
  406. package/dist/Presentation/ui-components/SettingsItem/SettingsItem.d.ts +12 -12
  407. package/dist/Presentation/ui-components/SettingsItem/SettingsItem.stories.d.ts +8 -8
  408. package/dist/Presentation/ui-components/TextField/TextField.d.ts +13 -13
  409. package/dist/Presentation/ui-components/TextField/TextField.stories.d.ts +8 -8
  410. package/dist/Presentation/ui-components/Toast/Toast.stories.d.ts +6 -6
  411. package/dist/Presentation/ui-components/Toast/ToastProvider.d.ts +8 -8
  412. package/dist/Presentation/ui-components/UserListItem/UserListItem.d.ts +10 -10
  413. package/dist/Presentation/ui-components/UserListItem/UserListItem.stories.d.ts +86 -86
  414. package/dist/Presentation/ui-components/index.d.ts +19 -19
  415. package/dist/QBconfig.d.ts +2 -2
  416. package/dist/hooks/useModal.d.ts +5 -5
  417. package/dist/hooks/useQuickBloxUIKit.d.ts +108 -108
  418. package/dist/index-ui.d.ts +62 -62
  419. package/dist/index-ui.js +20824 -20718
  420. package/dist/index-ui.js.map +1 -1
  421. package/dist/index.d.ts +1 -1
  422. package/dist/qb-api-calls/index.d.ts +79 -79
  423. package/dist/setupTests.d.ts +1 -1
  424. package/dist/utils/DateTimeFormatter.d.ts +6 -6
  425. package/dist/utils/formatFileSize.d.ts +1 -1
  426. package/dist/utils/parse.d.ts +7 -7
  427. package/dist/utils/utils.d.ts +12 -12
  428. package/package.json +114 -114
  429. package/public/index.html +47 -47
  430. package/public/manifest.json +25 -25
  431. package/public/robots.txt +3 -3
  432. package/src/App.scss +3 -3
  433. package/src/Data/Creator.ts +4 -2
  434. package/src/Data/source/remote/Mapper/DialogDTOMapper.ts +26 -7
  435. package/src/Data/source/remote/Mapper/MessageDTOMapper.ts +7 -1
  436. package/src/Data/source/remote/RemoteDataSource.ts +24 -10
  437. package/src/Domain/use_cases/GetUsersByIdsUseCase.ts +6 -3
  438. package/src/Presentation/Views/Dialog/AIComponents/AIAssist/AIAssist.scss +39 -39
  439. package/src/Presentation/Views/Dialog/AIComponents/AIAssistComponent/AIAssistComponent.scss +32 -32
  440. package/src/Presentation/Views/Dialog/AIComponents/AITranslate/AITranslate.scss +77 -77
  441. package/src/Presentation/Views/Dialog/AIComponents/AITranslateComponent/AITranslateComponent.scss +47 -47
  442. package/src/Presentation/Views/Dialog/AIWidgets/AIRephraseWidget/AIRephraseWidget.scss +25 -25
  443. package/src/Presentation/Views/Dialog/AIWidgets/AIWidgetActions/AIWidgetActions.scss +55 -55
  444. package/src/Presentation/Views/Dialog/ContextMenu/ContextMenu.scss +58 -58
  445. package/src/Presentation/Views/Dialog/Dialog.scss +368 -368
  446. package/src/Presentation/Views/Dialog/DialogHeader/DialogBackIcon/DialogBackIcon.scss +29 -29
  447. package/src/Presentation/Views/Dialog/DialogHeader/DialogHeader.scss +114 -114
  448. package/src/Presentation/Views/Dialog/DialogHeader/DialogInfoIcon/DialogInfoIcon.scss +53 -53
  449. package/src/Presentation/Views/Dialog/DropDownMenu/DropDownMenu.scss +84 -84
  450. package/src/Presentation/Views/Dialog/DropDownMenu/ItemDropDownMenu/ItemDropDownMenu.scss +50 -50
  451. package/src/Presentation/Views/Dialog/ErrorToast/ErrorToast.scss +26 -26
  452. package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogListItem/DialogListItem.scss +74 -74
  453. package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogsWithSearch.scss +50 -50
  454. package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/SearchComponent/SearchComponent.scss +98 -98
  455. package/src/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessageFlow.scss +159 -159
  456. package/src/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessagePreview/ForwardMessagePreview.scss +100 -100
  457. package/src/Presentation/Views/Dialog/ForwardMessageFlow/InputForForwarding/InputForForwarding.scss +95 -95
  458. package/src/Presentation/Views/Dialog/InputMessage/InputMessage.scss +92 -92
  459. package/src/Presentation/Views/Dialog/Message/HighLightLink/HighLightLink.scss +97 -97
  460. package/src/Presentation/Views/Dialog/Message/IncomingForwardedMessage/IncomingForwardedMessage.scss +250 -250
  461. package/src/Presentation/Views/Dialog/Message/IncomingMessage/AvatarContentIncomingUser/AvatarContentIncomingUser.scss +22 -22
  462. package/src/Presentation/Views/Dialog/Message/IncomingMessage/IncomingMessage.scss +241 -241
  463. package/src/Presentation/Views/Dialog/Message/IncomingMessage/MessageContentComponent/MessageContentComponent.scss +4 -4
  464. package/src/Presentation/Views/Dialog/Message/IncomingRepliedMessage/IncomingRepliedMessage.scss +250 -250
  465. package/src/Presentation/Views/Dialog/Message/MessageAttachment/AudioAttachment/AudioAttachment.scss +31 -31
  466. package/src/Presentation/Views/Dialog/Message/MessageAttachment/DefaultAttachment/DefaultAttachment.scss +76 -76
  467. package/src/Presentation/Views/Dialog/Message/MessageAttachment/ImageAttachment/ImageAttachment.scss +14 -14
  468. package/src/Presentation/Views/Dialog/Message/MessageAttachment/VideoAttachment/VideoAttachment.scss +18 -18
  469. package/src/Presentation/Views/Dialog/Message/MessageContextMenu/MessageContextMenu.scss +10 -10
  470. package/src/Presentation/Views/Dialog/Message/OutgoinForwardedMessage/OutgoinForwardedMessage.scss +160 -160
  471. package/src/Presentation/Views/Dialog/Message/OutgoingMessage/OutgoingMessage.scss +122 -122
  472. package/src/Presentation/Views/Dialog/Message/OutgoingRepliedMessage/OutgoingRepliedMessage.scss +155 -155
  473. package/src/Presentation/Views/Dialog/MessageContextMenu/MessageContextMenu.scss +19 -19
  474. package/src/Presentation/Views/Dialog/MessageItem/MessageItem.scss +21 -21
  475. package/src/Presentation/Views/Dialog/MessageItem/MessageItem.tsx +12 -8
  476. package/src/Presentation/Views/Dialog/SystemDateBanner/SystemDateBanner.scss +23 -23
  477. package/src/Presentation/Views/Dialog/SystemMessageBanner/SystemMessageBanner.scss +21 -21
  478. package/src/Presentation/Views/DialogInfo/DialogInfo.scss +237 -237
  479. package/src/Presentation/Views/DialogInfo/DialogMemberButton/DialogMembersButton.scss +42 -42
  480. package/src/Presentation/Views/DialogInfo/MembersList/MembersList.scss +85 -85
  481. package/src/Presentation/Views/DialogInfo/UsersList/SingleUser/SingleUser.scss +66 -66
  482. package/src/Presentation/Views/DialogList/DialogList.scss +150 -150
  483. package/src/Presentation/Views/DialogListHeader/DialogListHeader.scss +68 -68
  484. package/src/Presentation/Views/EditDialog/EditDialog.scss +175 -175
  485. package/src/Presentation/Views/EditDialog/UserAvatar/UserAvatar.scss +32 -32
  486. package/src/Presentation/Views/Flow/CreateDialog/CreateDialog.scss +93 -93
  487. package/src/Presentation/Views/Flow/CreateDialog/CreateDialog.tsx +12 -12
  488. package/src/Presentation/Views/InviteMembers/InviteMembers.scss +202 -202
  489. package/src/Presentation/Views/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.scss +90 -90
  490. package/src/Presentation/Views/InviteMembers/NotFoundContent/NotFoundContent.scss +38 -38
  491. package/src/Presentation/Views/Navigation/More.svg +7 -7
  492. package/src/Presentation/Views/PreviewDialog/PreviewDialog.scss +211 -211
  493. package/src/Presentation/Views/PreviewDialog/PreviewDialogContextMenu/PreviewDialogContextMenu.scss +9 -9
  494. package/src/Presentation/Views/YesNoQuestion/YesNoQuestion.scss +11 -11
  495. package/src/Presentation/components/Button.js +4 -4
  496. package/src/Presentation/components/TextInput.js +9 -9
  497. package/src/Presentation/components/UI/Buttons/MainButton/MainButton.css +103 -103
  498. package/src/Presentation/components/UI/Elements/SwitchButton/SwitchButton.scss +61 -61
  499. package/src/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.scss +74 -74
  500. package/src/Presentation/components/UI/Placeholders/LoaderComponent/LoaderComponent.scss +21 -21
  501. package/src/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.scss +3 -3
  502. package/src/Presentation/components/UI/svgs/Icons/AIWidgets/AIWidget/Send.svg +3 -3
  503. package/src/Presentation/components/UI/svgs/Icons/AIWidgets/BotIcon/BotIcon.svg +5 -5
  504. package/src/Presentation/components/UI/svgs/Icons/Actions/Add/Add.svg +3 -3
  505. package/src/Presentation/components/UI/svgs/Icons/Actions/AddContact/Add contact.svg +3 -3
  506. package/src/Presentation/components/UI/svgs/Icons/Actions/Archive/Archive.svg +3 -3
  507. package/src/Presentation/components/UI/svgs/Icons/Actions/AssistAnswer/AssistAnswer.svg +3 -3
  508. package/src/Presentation/components/UI/svgs/Icons/Actions/Copy/Copy.svg +3 -3
  509. package/src/Presentation/components/UI/svgs/Icons/Actions/Delete/Delete.svg +3 -3
  510. package/src/Presentation/components/UI/svgs/Icons/Actions/Download/Download.svg +3 -3
  511. package/src/Presentation/components/UI/svgs/Icons/Actions/Edit/Edit.svg +3 -3
  512. package/src/Presentation/components/UI/svgs/Icons/Actions/EditDots/EditDots.svg +3 -3
  513. package/src/Presentation/components/UI/svgs/Icons/Actions/Emoji/Emoji.svg +3 -3
  514. package/src/Presentation/components/UI/svgs/Icons/Actions/ForwardFilled/Forward filled.svg +3 -3
  515. package/src/Presentation/components/UI/svgs/Icons/Actions/Hungup/Hungup.svg +3 -3
  516. package/src/Presentation/components/UI/svgs/Icons/Actions/IncomeCall/Income call.svg +3 -3
  517. package/src/Presentation/components/UI/svgs/Icons/Actions/Like/Like.svg +3 -3
  518. package/src/Presentation/components/UI/svgs/Icons/Actions/NewChat/New chat.svg +3 -3
  519. package/src/Presentation/components/UI/svgs/Icons/Actions/OutcomeCall/Outcome call.svg +3 -3
  520. package/src/Presentation/components/UI/svgs/Icons/Actions/Phone/Phone.svg +3 -3
  521. package/src/Presentation/components/UI/svgs/Icons/Actions/PhoneFilled/Phone filled.svg +3 -3
  522. package/src/Presentation/components/UI/svgs/Icons/Actions/Remove/Remove.svg +3 -3
  523. package/src/Presentation/components/UI/svgs/Icons/Actions/Remove2/Remove2.svg +3 -3
  524. package/src/Presentation/components/UI/svgs/Icons/Actions/ReplyFilled/Reply filled.svg +3 -3
  525. package/src/Presentation/components/UI/svgs/Icons/Actions/Send/Send.svg +3 -3
  526. package/src/Presentation/components/UI/svgs/Icons/Actions/Share/Share.svg +3 -3
  527. package/src/Presentation/components/UI/svgs/Icons/Actions/Summarize/Summarize.svg +6 -6
  528. package/src/Presentation/components/UI/svgs/Icons/Actions/SwapCamera/Swap camera.svg +3 -3
  529. package/src/Presentation/components/UI/svgs/Icons/Actions/Tone/Tone.svg +3 -3
  530. package/src/Presentation/components/UI/svgs/Icons/Actions/Unarchive/Unarchive.svg +3 -3
  531. package/src/Presentation/components/UI/svgs/Icons/Actions/VideoIcon/Video.svg +3 -3
  532. package/src/Presentation/components/UI/svgs/Icons/Actions/Voice/Voice.svg +3 -3
  533. package/src/Presentation/components/UI/svgs/Icons/Contents/Brodcast/Broadcast.svg +7 -7
  534. package/src/Presentation/components/UI/svgs/Icons/Contents/Chat/Chat.svg +3 -3
  535. package/src/Presentation/components/UI/svgs/Icons/Contents/ChatFilled/Chat filled.svg +3 -3
  536. package/src/Presentation/components/UI/svgs/Icons/Contents/Conference/Conference.svg +3 -3
  537. package/src/Presentation/components/UI/svgs/Icons/Contents/Contact/Contact.svg +3 -3
  538. package/src/Presentation/components/UI/svgs/Icons/Contents/ContactFilled/Contact filled.svg +3 -3
  539. package/src/Presentation/components/UI/svgs/Icons/Contents/GroupChat/Group chat.svg +3 -3
  540. package/src/Presentation/components/UI/svgs/Icons/Contents/Notifications/Notifications.svg +3 -3
  541. package/src/Presentation/components/UI/svgs/Icons/Contents/PrivateChat/Private chat.svg +3 -3
  542. package/src/Presentation/components/UI/svgs/Icons/Contents/PublicChannel/Public channel.svg +7 -7
  543. package/src/Presentation/components/UI/svgs/Icons/Contents/Stream/Stream.svg +3 -3
  544. package/src/Presentation/components/UI/svgs/Icons/Contents/StreamFilled/Stream filled.svg +3 -3
  545. package/src/Presentation/components/UI/svgs/Icons/Contents/User/User.svg +3 -3
  546. package/src/Presentation/components/UI/svgs/Icons/Media/Attachment/Attachment.svg +3 -3
  547. package/src/Presentation/components/UI/svgs/Icons/Media/AudioFile/Audio file.svg +3 -3
  548. package/src/Presentation/components/UI/svgs/Icons/Media/BrokenFile/Broken file.svg +3 -3
  549. package/src/Presentation/components/UI/svgs/Icons/Media/Camera/Camera.svg +3 -3
  550. package/src/Presentation/components/UI/svgs/Icons/Media/GifFile/GIF file.svg +3 -3
  551. package/src/Presentation/components/UI/svgs/Icons/Media/ImageEmpty/Image.svg +3 -3
  552. package/src/Presentation/components/UI/svgs/Icons/Media/ImageFile/File.svg +3 -3
  553. package/src/Presentation/components/UI/svgs/Icons/Media/ImageFilled/Image filled.svg +3 -3
  554. package/src/Presentation/components/UI/svgs/Icons/Media/LinkWeb/Link.svg +3 -3
  555. package/src/Presentation/components/UI/svgs/Icons/Media/Location/Location.svg +4 -4
  556. package/src/Presentation/components/UI/svgs/Icons/Media/TextDocument/Text document.svg +3 -3
  557. package/src/Presentation/components/UI/svgs/Icons/Media/Translate/Translate.svg +3 -3
  558. package/src/Presentation/components/UI/svgs/Icons/Media/VideoFile/Video file.svg +3 -3
  559. package/src/Presentation/components/UI/svgs/Icons/Moderation/Admin/Admin.svg +3 -3
  560. package/src/Presentation/components/UI/svgs/Icons/Moderation/Banned/Banned.svg +3 -3
  561. package/src/Presentation/components/UI/svgs/Icons/Moderation/Freeze/Freeze.svg +3 -3
  562. package/src/Presentation/components/UI/svgs/Icons/Moderation/Moderations/Moderations.svg +3 -3
  563. package/src/Presentation/components/UI/svgs/Icons/Moderation/Muted/Muted.svg +3 -3
  564. package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowLeft/Arrow left.svg +3 -3
  565. package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowRight/Arrow right.svg +3 -3
  566. package/src/Presentation/components/UI/svgs/Icons/Navigation/Back/Back.svg +3 -3
  567. package/src/Presentation/components/UI/svgs/Icons/Navigation/Close/Close.svg +3 -3
  568. package/src/Presentation/components/UI/svgs/Icons/Navigation/Down/Down.svg +3 -3
  569. package/src/Presentation/components/UI/svgs/Icons/Navigation/Leave/Leave.svg +3 -3
  570. package/src/Presentation/components/UI/svgs/Icons/Navigation/More/More.svg +7 -7
  571. package/src/Presentation/components/UI/svgs/Icons/Navigation/Next/Next.svg +3 -3
  572. package/src/Presentation/components/UI/svgs/Icons/Navigation/Plus/Plus.svg +3 -3
  573. package/src/Presentation/components/UI/svgs/Icons/Navigation/Refresh/Refresh.svg +3 -3
  574. package/src/Presentation/components/UI/svgs/Icons/Navigation/Search/Search.svg +3 -3
  575. package/src/Presentation/components/UI/svgs/Icons/Navigation/Settings/Settings.svg +3 -3
  576. package/src/Presentation/components/UI/svgs/Icons/Navigation/SettingsField/Settings filled.svg +3 -3
  577. package/src/Presentation/components/UI/svgs/Icons/Status/Error/Error.svg +3 -3
  578. package/src/Presentation/components/UI/svgs/Icons/Status/Help/Help.svg +3 -3
  579. package/src/Presentation/components/UI/svgs/Icons/Status/Information/Information.svg +3 -3
  580. package/src/Presentation/components/UI/svgs/Icons/Status/Loader/Loader.svg +3 -3
  581. package/src/Presentation/components/UI/svgs/Icons/Status/Mention/Mention.svg +3 -3
  582. package/src/Presentation/components/UI/svgs/Icons/Status/Sent/Sent.svg +3 -3
  583. package/src/Presentation/components/UI/svgs/Icons/Status/ViewedDelivered/Viewed_Delivered.svg +3 -3
  584. package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOff/Camera off.svg +3 -3
  585. package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOn/Camera on.svg +3 -3
  586. package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOff/Check off.svg +3 -3
  587. package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOn/Check on.svg +3 -3
  588. package/src/Presentation/components/UI/svgs/Icons/Toggle/Favourite/Favourite.svg +3 -3
  589. package/src/Presentation/components/UI/svgs/Icons/Toggle/FavouriteFilled/Favourite filled.svg +3 -3
  590. package/src/Presentation/components/UI/svgs/Icons/Toggle/FullScreen/Full screen.svg +3 -3
  591. package/src/Presentation/components/UI/svgs/Icons/Toggle/Hide/Hide.svg +3 -3
  592. package/src/Presentation/components/UI/svgs/Icons/Toggle/ImagePlay/Play.svg +3 -3
  593. package/src/Presentation/components/UI/svgs/Icons/Toggle/Louder/Louder.svg +3 -3
  594. package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOff/Mic off.svg +3 -3
  595. package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOn/Mic on.svg +4 -4
  596. package/src/Presentation/components/UI/svgs/Icons/Toggle/Minimize/Minimize.svg +3 -3
  597. package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOff/Notify off.svg +3 -3
  598. package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOn/Notify on.svg +3 -3
  599. package/src/Presentation/components/UI/svgs/Icons/Toggle/Pause/Pause.svg +3 -3
  600. package/src/Presentation/components/UI/svgs/Icons/Toggle/Quite/Quite.svg +3 -3
  601. package/src/Presentation/components/UI/svgs/Icons/Toggle/Record/Record.svg +3 -3
  602. package/src/Presentation/components/UI/svgs/Icons/Toggle/Screenshare/Screenshare.svg +3 -3
  603. package/src/Presentation/components/UI/svgs/Icons/Toggle/Show/Show.svg +3 -3
  604. package/src/Presentation/components/UI/svgs/Icons/Toggle/Speaker/Speaker.svg +3 -3
  605. package/src/Presentation/components/UI/svgs/Icons/Toggle/SpeakerOff/Speaker off.svg +3 -3
  606. package/src/Presentation/components/UI/svgs/Icons/Toggle/StopRecord/Stop record.svg +3 -3
  607. package/src/Presentation/components/UI/svgs/Icons/Toggle/StopShare/Stop share.svg +3 -3
  608. package/src/Presentation/components/containers/ColumnContainer/ColumnContainer.scss +16 -16
  609. package/src/Presentation/components/containers/RowCenterContainer/RowCenterContainer.scss +45 -45
  610. package/src/Presentation/components/containers/RowLeftContainer/RowLeftContainer.scss +45 -45
  611. package/src/Presentation/components/containers/RowRightContainer/RowRightContainer.scss +46 -46
  612. package/src/Presentation/components/containers/ScrollableContainer/ScrollableContainer.scss +45 -45
  613. package/src/Presentation/components/containers/SectionList/styles.css +50 -50
  614. package/src/Presentation/icons/actions/add-contact.svg +3 -3
  615. package/src/Presentation/icons/actions/add.svg +3 -3
  616. package/src/Presentation/icons/actions/archive.svg +3 -3
  617. package/src/Presentation/icons/actions/copy.svg +3 -3
  618. package/src/Presentation/icons/actions/delete.svg +3 -3
  619. package/src/Presentation/icons/actions/download.svg +3 -3
  620. package/src/Presentation/icons/actions/edit.svg +3 -3
  621. package/src/Presentation/icons/actions/emoji.svg +3 -3
  622. package/src/Presentation/icons/actions/forward-filled.svg +3 -3
  623. package/src/Presentation/icons/actions/hungup.svg +3 -3
  624. package/src/Presentation/icons/actions/income-call.svg +3 -3
  625. package/src/Presentation/icons/actions/like.svg +3 -3
  626. package/src/Presentation/icons/actions/new-chat.svg +3 -3
  627. package/src/Presentation/icons/actions/outcome-call.svg +3 -3
  628. package/src/Presentation/icons/actions/phone-filled.svg +3 -3
  629. package/src/Presentation/icons/actions/phone.svg +3 -3
  630. package/src/Presentation/icons/actions/remove-2.svg +3 -3
  631. package/src/Presentation/icons/actions/remove.svg +3 -3
  632. package/src/Presentation/icons/actions/rephrase.svg +6 -6
  633. package/src/Presentation/icons/actions/reply-filled.svg +3 -3
  634. package/src/Presentation/icons/actions/robot.svg +5 -5
  635. package/src/Presentation/icons/actions/send.svg +3 -3
  636. package/src/Presentation/icons/actions/share.svg +3 -3
  637. package/src/Presentation/icons/actions/swap-camera.svg +3 -3
  638. package/src/Presentation/icons/actions/translate.svg +3 -3
  639. package/src/Presentation/icons/actions/unarchive.svg +3 -3
  640. package/src/Presentation/icons/actions/video.svg +3 -3
  641. package/src/Presentation/icons/actions/voice.svg +3 -3
  642. package/src/Presentation/icons/contents/broadcast.svg +7 -7
  643. package/src/Presentation/icons/contents/chat-filled.svg +3 -3
  644. package/src/Presentation/icons/contents/chat.svg +3 -3
  645. package/src/Presentation/icons/contents/conference.svg +3 -3
  646. package/src/Presentation/icons/contents/contact-filled.svg +3 -3
  647. package/src/Presentation/icons/contents/contact.svg +3 -3
  648. package/src/Presentation/icons/contents/group-chat.svg +3 -3
  649. package/src/Presentation/icons/contents/notifications.svg +3 -3
  650. package/src/Presentation/icons/contents/private-chat.svg +3 -3
  651. package/src/Presentation/icons/contents/public-channel.svg +7 -7
  652. package/src/Presentation/icons/contents/stream-filled.svg +3 -3
  653. package/src/Presentation/icons/contents/stream.svg +3 -3
  654. package/src/Presentation/icons/contents/user.svg +3 -3
  655. package/src/Presentation/icons/media/attachment.svg +3 -3
  656. package/src/Presentation/icons/media/audio-file.svg +3 -3
  657. package/src/Presentation/icons/media/broken-file.svg +3 -3
  658. package/src/Presentation/icons/media/camera.svg +3 -3
  659. package/src/Presentation/icons/media/file.svg +3 -3
  660. package/src/Presentation/icons/media/gif-file.svg +3 -3
  661. package/src/Presentation/icons/media/image-filled.svg +3 -3
  662. package/src/Presentation/icons/media/image.svg +3 -3
  663. package/src/Presentation/icons/media/link.svg +3 -3
  664. package/src/Presentation/icons/media/location.svg +4 -4
  665. package/src/Presentation/icons/media/text-document.svg +3 -3
  666. package/src/Presentation/icons/media/video-file.svg +3 -3
  667. package/src/Presentation/icons/moderation/admin.svg +3 -3
  668. package/src/Presentation/icons/moderation/banned.svg +3 -3
  669. package/src/Presentation/icons/moderation/freeze.svg +3 -3
  670. package/src/Presentation/icons/moderation/moderations.svg +3 -3
  671. package/src/Presentation/icons/moderation/muted.svg +3 -3
  672. package/src/Presentation/icons/navigation/arrow-left.svg +3 -3
  673. package/src/Presentation/icons/navigation/arrow-right.svg +3 -3
  674. package/src/Presentation/icons/navigation/back.svg +3 -3
  675. package/src/Presentation/icons/navigation/close.svg +3 -3
  676. package/src/Presentation/icons/navigation/down.svg +3 -3
  677. package/src/Presentation/icons/navigation/leave.svg +3 -3
  678. package/src/Presentation/icons/navigation/more.svg +3 -3
  679. package/src/Presentation/icons/navigation/next.svg +3 -3
  680. package/src/Presentation/icons/navigation/plus.svg +3 -3
  681. package/src/Presentation/icons/navigation/refresh.svg +3 -3
  682. package/src/Presentation/icons/navigation/search.svg +3 -3
  683. package/src/Presentation/icons/navigation/settings-filled.svg +3 -3
  684. package/src/Presentation/icons/navigation/settings.svg +3 -3
  685. package/src/Presentation/icons/status/error.svg +3 -3
  686. package/src/Presentation/icons/status/help.svg +3 -3
  687. package/src/Presentation/icons/status/information.svg +3 -3
  688. package/src/Presentation/icons/status/loader.svg +3 -3
  689. package/src/Presentation/icons/status/mention.svg +3 -3
  690. package/src/Presentation/icons/status/sent.svg +3 -3
  691. package/src/Presentation/icons/status/viewed-delivered.svg +3 -3
  692. package/src/Presentation/icons/toggle/camera-off.svg +3 -3
  693. package/src/Presentation/icons/toggle/camera-on.svg +3 -3
  694. package/src/Presentation/icons/toggle/check-off.svg +3 -3
  695. package/src/Presentation/icons/toggle/check-on.svg +3 -3
  696. package/src/Presentation/icons/toggle/favorite.svg +3 -3
  697. package/src/Presentation/icons/toggle/favourite.svg +3 -3
  698. package/src/Presentation/icons/toggle/full-screen.svg +3 -3
  699. package/src/Presentation/icons/toggle/hide.svg +3 -3
  700. package/src/Presentation/icons/toggle/louder.svg +3 -3
  701. package/src/Presentation/icons/toggle/mic-off.svg +3 -3
  702. package/src/Presentation/icons/toggle/mic-on.svg +4 -4
  703. package/src/Presentation/icons/toggle/minimize.svg +3 -3
  704. package/src/Presentation/icons/toggle/notify-off.svg +3 -3
  705. package/src/Presentation/icons/toggle/notify-on.svg +3 -3
  706. package/src/Presentation/icons/toggle/pause.svg +3 -3
  707. package/src/Presentation/icons/toggle/play.svg +3 -3
  708. package/src/Presentation/icons/toggle/quite.svg +3 -3
  709. package/src/Presentation/icons/toggle/record.svg +3 -3
  710. package/src/Presentation/icons/toggle/screenshare.svg +3 -3
  711. package/src/Presentation/icons/toggle/show.svg +3 -3
  712. package/src/Presentation/icons/toggle/speaker off.svg +3 -3
  713. package/src/Presentation/icons/toggle/speaker-off.svg +3 -3
  714. package/src/Presentation/icons/toggle/speaker.svg +3 -3
  715. package/src/Presentation/icons/toggle/stop-record.svg +3 -3
  716. package/src/Presentation/icons/toggle/stop-share.svg +3 -3
  717. package/src/Presentation/layouts/Desktop/DesktopLayout.scss +62 -62
  718. package/src/Presentation/layouts/Desktop/QuickBloxUIKitDesktopLayout.tsx +96 -31
  719. package/src/Presentation/layouts/TestStage/LoginView/Login.scss +72 -72
  720. package/src/Presentation/themes/styles/_fonts.scss +32 -32
  721. package/src/Presentation/themes/styles/_mixins.scss +6 -6
  722. package/src/Presentation/themes/styles/_theme_colors_scheme.scss +56 -56
  723. package/src/Presentation/themes/styles/_theme_colors_scheme_green.scss +57 -57
  724. package/src/Presentation/themes/styles/_theme_colors_scheme_pink.scss +72 -72
  725. package/src/Presentation/themes/styles/_theme_dark.scss +37 -37
  726. package/src/Presentation/themes/styles/_theme_light.scss +38 -38
  727. package/src/Presentation/themes/styles/_variables.scss +54 -54
  728. package/src/Presentation/ui-components/Avatar/Avatar.scss +58 -58
  729. package/src/Presentation/ui-components/Badge/Badge.scss +23 -23
  730. package/src/Presentation/ui-components/Button/Button.scss +133 -133
  731. package/src/Presentation/ui-components/CheckBox/CheckBox.scss +10 -10
  732. package/src/Presentation/ui-components/DialogBanner/DialogBanner.scss +29 -29
  733. package/src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.scss +71 -71
  734. package/src/Presentation/ui-components/DialogWindow/DialogWindow.scss +56 -56
  735. package/src/Presentation/ui-components/Dropdown/Dropdown.scss +82 -82
  736. package/src/Presentation/ui-components/Dropdown/Dropdown.tsx +4 -4
  737. package/src/Presentation/ui-components/Dropdown/DropdownOption.tsx +3 -3
  738. package/src/Presentation/ui-components/Header/Header.scss +72 -72
  739. package/src/Presentation/ui-components/Loader/Loader.scss +27 -27
  740. package/src/Presentation/ui-components/Message/Bubble/AudioBubble/AudioBubble.scss +86 -86
  741. package/src/Presentation/ui-components/Message/Bubble/FileBubble/FileBubble.scss +29 -29
  742. package/src/Presentation/ui-components/Message/Bubble/ImageBubble/ImageBubble.scss +16 -16
  743. package/src/Presentation/ui-components/Message/Bubble/TextBubble/TextBubble.scss +40 -40
  744. package/src/Presentation/ui-components/Message/Bubble/VideoBubble/VideoBubble.scss +27 -27
  745. package/src/Presentation/ui-components/Message/FileUrl/FileUrl.scss +58 -58
  746. package/src/Presentation/ui-components/Message/Message.scss +136 -136
  747. package/src/Presentation/ui-components/Message/Message.tsx +16 -4
  748. package/src/Presentation/ui-components/Message/MessageCaption/MessageCaption.scss +90 -90
  749. package/src/Presentation/ui-components/Message/TimeAndStatus/TimeAndStatus.scss +51 -51
  750. package/src/Presentation/ui-components/MessageInput/MessageInput.scss +137 -137
  751. package/src/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyImagePreviewAttachment/ReplyImagePreviewAttachment.scss +16 -16
  752. package/src/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyMessagePreview.scss +140 -140
  753. package/src/Presentation/ui-components/MessageInput/VoiceRecordingProgress/VoiceRecordingProgress.scss +35 -35
  754. package/src/Presentation/ui-components/MessageSeparator/MessageSeparator.scss +30 -30
  755. package/src/Presentation/ui-components/Placeholder/Placeholder.scss +51 -51
  756. package/src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.scss +30 -30
  757. package/src/Presentation/ui-components/SettingsItem/SettingsItem.scss +69 -69
  758. package/src/Presentation/ui-components/TextField/TextField.scss +91 -91
  759. package/src/Presentation/ui-components/Toast/Toast.scss +22 -22
  760. package/src/Presentation/ui-components/UserListItem/UserListItem.scss +33 -33
  761. package/src/QBconfig.ts +7 -7
  762. package/src/hooks/useQuickBloxUIKit.ts +2 -2
  763. package/src/index.scss +28 -28
  764. package/src/package_artan_react_ui.json +91 -91
  765. package/src/package_original.json +115 -115
  766. package/storybook-static/favicon.ico +0 -0
  767. package/storybook-static/favicon.svg +7 -1
  768. package/storybook-static/index.html +46 -100
  769. package/storybook-static/index.json +1 -1
  770. package/storybook-static/logo192.png +0 -0
  771. package/storybook-static/logo512.png +0 -0
  772. package/storybook-static/manifest.json +25 -0
  773. package/storybook-static/project.json +1 -1
  774. package/storybook-static/robots.txt +3 -0
  775. package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js +3 -0
  776. package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js.LEGAL.txt +0 -0
  777. package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js +12 -0
  778. package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js.LEGAL.txt +0 -0
  779. package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js +62 -0
  780. package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js.LEGAL.txt +18 -0
  781. package/storybook-static/sb-addons/essentials-measure-5/manager-bundle.js +3 -0
  782. package/storybook-static/sb-addons/essentials-measure-5/manager-bundle.js.LEGAL.txt +0 -0
  783. package/storybook-static/sb-addons/essentials-outline-6/manager-bundle.js +3 -0
  784. package/storybook-static/sb-addons/essentials-outline-6/manager-bundle.js.LEGAL.txt +0 -0
  785. package/storybook-static/sb-addons/essentials-toolbars-4/manager-bundle.js +3 -0
  786. package/storybook-static/sb-addons/essentials-toolbars-4/manager-bundle.js.LEGAL.txt +0 -0
  787. package/storybook-static/sb-addons/interactions-7/manager-bundle.js +12 -0
  788. package/storybook-static/sb-addons/interactions-7/manager-bundle.js.LEGAL.txt +0 -0
  789. package/storybook-static/sb-addons/links-0/manager-bundle.js +3 -0
  790. package/storybook-static/sb-addons/links-0/manager-bundle.js.LEGAL.txt +0 -0
  791. package/storybook-static/sb-addons/viewport-8/manager-bundle.js +3 -0
  792. package/storybook-static/sb-addons/viewport-8/manager-bundle.js.LEGAL.txt +0 -0
  793. package/storybook-static/sb-common-assets/fonts.css +31 -0
  794. package/storybook-static/sb-manager/WithTooltip-V3YHNWJZ-MXTFSDU5.js +1 -0
  795. package/storybook-static/sb-manager/chunk-5QAFKPS7.js +7 -0
  796. package/storybook-static/sb-manager/chunk-7PRFHFSS.js +9 -0
  797. package/storybook-static/sb-manager/chunk-XE6LDGTE.js +406 -0
  798. package/storybook-static/sb-manager/chunk-YDUB7CS6.js +348 -0
  799. package/storybook-static/sb-manager/chunk-ZEU7PDD3.js +1 -0
  800. package/storybook-static/sb-manager/formatter-SWP5E3XI-7BGIK6BL.js +156 -0
  801. package/storybook-static/sb-manager/globals-module-info.js +1 -1051
  802. package/storybook-static/sb-manager/globals.js +1 -48
  803. package/storybook-static/sb-manager/index.js +1 -0
  804. package/storybook-static/sb-manager/runtime.js +1 -12048
  805. package/storybook-static/sb-manager/syntaxhighlighter-MJWPISIS-JOSCT6CQ.js +1 -0
  806. package/storybook-static/sb-preview/globals.js +1 -33
  807. package/storybook-static/sb-preview/runtime.js +90 -7723
  808. package/storybook-static/stories.json +1 -0
  809. package/tsconfig.buildlib.json +33 -33
  810. package/tsconfig.json +34 -34
  811. package/typedoc.json +4 -4
  812. package/webpack.config.js +82 -82
  813. package/storybook-static/167.88fc69a9.iframe.bundle.js +0 -1
  814. package/storybook-static/294.b81cdbca.iframe.bundle.js +0 -1
  815. package/storybook-static/363.2cb21716.iframe.bundle.js +0 -2
  816. package/storybook-static/363.2cb21716.iframe.bundle.js.LICENSE.txt +0 -44
  817. package/storybook-static/364.988cd801.iframe.bundle.js +0 -1
  818. package/storybook-static/44.2dce2443.iframe.bundle.js +0 -405
  819. package/storybook-static/44.2dce2443.iframe.bundle.js.LICENSE.txt +0 -19
  820. package/storybook-static/44.2dce2443.iframe.bundle.js.map +0 -1
  821. package/storybook-static/488.3cd3942e.iframe.bundle.js +0 -1
  822. package/storybook-static/559.9e64a6f5.iframe.bundle.js +0 -2
  823. package/storybook-static/559.9e64a6f5.iframe.bundle.js.LICENSE.txt +0 -5
  824. package/storybook-static/735.82f96f8a.iframe.bundle.js +0 -2
  825. package/storybook-static/735.82f96f8a.iframe.bundle.js.LICENSE.txt +0 -9
  826. package/storybook-static/844.59cc9fcc.iframe.bundle.js +0 -95
  827. package/storybook-static/844.59cc9fcc.iframe.bundle.js.LICENSE.txt +0 -19
  828. package/storybook-static/844.59cc9fcc.iframe.bundle.js.map +0 -1
  829. package/storybook-static/936.8546c1d8.iframe.bundle.js +0 -1
  830. package/storybook-static/961.c94da456.iframe.bundle.js +0 -2
  831. package/storybook-static/961.c94da456.iframe.bundle.js.LICENSE.txt +0 -9
  832. package/storybook-static/Presentation-ui-components-Avatar-avatar-stories.5dd31ce9.iframe.bundle.js +0 -2
  833. package/storybook-static/Presentation-ui-components-Avatar-avatar-stories.5dd31ce9.iframe.bundle.js.LICENSE.txt +0 -5
  834. package/storybook-static/Presentation-ui-components-Badge-Badge-stories.6ac75e0c.iframe.bundle.js +0 -2
  835. package/storybook-static/Presentation-ui-components-Badge-Badge-stories.6ac75e0c.iframe.bundle.js.LICENSE.txt +0 -5
  836. package/storybook-static/Presentation-ui-components-Button-Button-stories.e958fce3.iframe.bundle.js +0 -2
  837. package/storybook-static/Presentation-ui-components-Button-Button-stories.e958fce3.iframe.bundle.js.LICENSE.txt +0 -5
  838. package/storybook-static/Presentation-ui-components-DialogBanner-DialogBanner-stories.3e9b31ee.iframe.bundle.js +0 -1
  839. package/storybook-static/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.528c08e7.iframe.bundle.js +0 -2
  840. package/storybook-static/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.528c08e7.iframe.bundle.js.LICENSE.txt +0 -5
  841. package/storybook-static/Presentation-ui-components-DialogWindow-DialogWindow-stories.b1e69362.iframe.bundle.js +0 -2
  842. package/storybook-static/Presentation-ui-components-DialogWindow-DialogWindow-stories.b1e69362.iframe.bundle.js.LICENSE.txt +0 -15
  843. package/storybook-static/Presentation-ui-components-Dropdown-Dropdown-stories.62c3a3cc.iframe.bundle.js +0 -2
  844. package/storybook-static/Presentation-ui-components-Dropdown-Dropdown-stories.62c3a3cc.iframe.bundle.js.LICENSE.txt +0 -5
  845. package/storybook-static/Presentation-ui-components-Header-Header-stories.33ced43a.iframe.bundle.js +0 -2
  846. package/storybook-static/Presentation-ui-components-Header-Header-stories.33ced43a.iframe.bundle.js.LICENSE.txt +0 -5
  847. package/storybook-static/Presentation-ui-components-Loader-Loader-stories.9ffbbddb.iframe.bundle.js +0 -2
  848. package/storybook-static/Presentation-ui-components-Loader-Loader-stories.9ffbbddb.iframe.bundle.js.LICENSE.txt +0 -5
  849. package/storybook-static/Presentation-ui-components-Message-Message-stories.56b66b6d.iframe.bundle.js +0 -2
  850. package/storybook-static/Presentation-ui-components-Message-Message-stories.56b66b6d.iframe.bundle.js.LICENSE.txt +0 -5
  851. package/storybook-static/Presentation-ui-components-MessageInput-MessageInput-stories.4538dec0.iframe.bundle.js +0 -1
  852. package/storybook-static/Presentation-ui-components-MessageSeparator-MessageSeparator-stories.ccfd1b95.iframe.bundle.js +0 -1
  853. package/storybook-static/Presentation-ui-components-Placeholder-Placeholder-stories.87417472.iframe.bundle.js +0 -2
  854. package/storybook-static/Presentation-ui-components-Placeholder-Placeholder-stories.87417472.iframe.bundle.js.LICENSE.txt +0 -5
  855. package/storybook-static/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.c2851879.iframe.bundle.js +0 -2
  856. package/storybook-static/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.c2851879.iframe.bundle.js.LICENSE.txt +0 -5
  857. package/storybook-static/Presentation-ui-components-SettingsItem-SettingsItem-stories.b8aff90f.iframe.bundle.js +0 -2
  858. package/storybook-static/Presentation-ui-components-SettingsItem-SettingsItem-stories.b8aff90f.iframe.bundle.js.LICENSE.txt +0 -5
  859. package/storybook-static/Presentation-ui-components-TextField-TextField-stories.448b262f.iframe.bundle.js +0 -2
  860. package/storybook-static/Presentation-ui-components-TextField-TextField-stories.448b262f.iframe.bundle.js.LICENSE.txt +0 -5
  861. package/storybook-static/Presentation-ui-components-Toast-Toast-stories.b4ff1c4c.iframe.bundle.js +0 -1
  862. package/storybook-static/Presentation-ui-components-UserListItem-UserListItem-stories.8ddeec07.iframe.bundle.js +0 -2
  863. package/storybook-static/Presentation-ui-components-UserListItem-UserListItem-stories.8ddeec07.iframe.bundle.js.LICENSE.txt +0 -5
  864. package/storybook-static/docs-Introduction-mdx.024f959d.iframe.bundle.js +0 -1
  865. package/storybook-static/docs-Styling-mdx.abbdb393.iframe.bundle.js +0 -1
  866. package/storybook-static/iframe.html +0 -511
  867. package/storybook-static/main.b6cefba5.iframe.bundle.js +0 -1
  868. package/storybook-static/nunito-sans-bold-italic.woff2 +0 -0
  869. package/storybook-static/nunito-sans-bold.woff2 +0 -0
  870. package/storybook-static/nunito-sans-italic.woff2 +0 -0
  871. package/storybook-static/nunito-sans-regular.woff2 +0 -0
  872. package/storybook-static/runtime~main.0313ac39.iframe.bundle.js +0 -1
  873. package/storybook-static/sb-addons/chromatic-com-storybook-10/manager-bundle.js +0 -331
  874. package/storybook-static/sb-addons/chromatic-com-storybook-10/manager-bundle.js.LEGAL.txt +0 -51
  875. package/storybook-static/sb-addons/essentials-actions-3/manager-bundle.js +0 -3
  876. package/storybook-static/sb-addons/essentials-backgrounds-5/manager-bundle.js +0 -12
  877. package/storybook-static/sb-addons/essentials-controls-2/manager-bundle.js +0 -402
  878. package/storybook-static/sb-addons/essentials-docs-4/manager-bundle.js +0 -242
  879. package/storybook-static/sb-addons/essentials-measure-8/manager-bundle.js +0 -3
  880. package/storybook-static/sb-addons/essentials-outline-9/manager-bundle.js +0 -3
  881. package/storybook-static/sb-addons/essentials-toolbars-7/manager-bundle.js +0 -3
  882. package/storybook-static/sb-addons/essentials-viewport-6/manager-bundle.js +0 -3
  883. package/storybook-static/sb-addons/interactions-11/manager-bundle.js +0 -222
  884. package/storybook-static/sb-addons/onboarding-1/manager-bundle.js +0 -127
  885. package/storybook-static/sb-addons/storybook-core-core-server-presets-0/common-manager-bundle.js +0 -3
  886. package/storybook-static/sb-common-assets/favicon.svg +0 -1
  887. package/storybook-static/sb-manager/globals-runtime.js +0 -41591
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M33.0001 7.33325L36.6667 14.6666H31.1667L27.5001 7.33325H23.8334L27.5001 14.6666H22.0001L18.3334 7.33325H14.6667L18.3334 14.6666H12.8334L9.16675 7.33325H7.33341C5.31675 7.33325 3.68508 8.98325 3.68508 10.9999L3.66675 32.9999C3.66675 35.0166 5.31675 36.6666 7.33341 36.6666H36.6667C38.6834 36.6666 40.3334 35.0166 40.3334 32.9999V7.33325H33.0001Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M33.0001 7.33325L36.6667 14.6666H31.1667L27.5001 7.33325H23.8334L27.5001 14.6666H22.0001L18.3334 7.33325H14.6667L18.3334 14.6666H12.8334L9.16675 7.33325H7.33341C5.31675 7.33325 3.68508 8.98325 3.68508 10.9999L3.66675 32.9999C3.66675 35.0166 5.31675 36.6666 7.33341 36.6666H36.6667C38.6834 36.6666 40.3334 35.0166 40.3334 32.9999V7.33325H33.0001Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M17.7466 24.1817L21.9999 20.955L26.2349 24.1817L24.6216 18.9567L28.8749 15.5833H23.6683L21.9999 10.4317L20.3316 15.5833H15.1249L19.3599 18.9567L17.7466 24.1817ZM36.6666 17.4167C36.6666 9.31333 30.1033 2.75 21.9999 2.75C13.8966 2.75 7.33325 9.31333 7.33325 17.4167C7.33325 21.1383 8.72659 24.5117 10.9999 27.0967V41.25L21.9999 37.5833L32.9999 41.25V27.0967C35.2733 24.5117 36.6666 21.1383 36.6666 17.4167ZM21.9999 6.41667C28.0683 6.41667 32.9999 11.3483 32.9999 17.4167C32.9999 23.485 28.0683 28.4167 21.9999 28.4167C15.9316 28.4167 10.9999 23.485 10.9999 17.4167C10.9999 11.3483 15.9316 6.41667 21.9999 6.41667ZM21.9999 33.9167L14.6666 35.7867V30.1033C16.8299 31.35 19.3233 32.0833 21.9999 32.0833C24.6766 32.0833 27.1699 31.35 29.3333 30.1033V35.7867L21.9999 33.9167Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M17.7466 24.1817L21.9999 20.955L26.2349 24.1817L24.6216 18.9567L28.8749 15.5833H23.6683L21.9999 10.4317L20.3316 15.5833H15.1249L19.3599 18.9567L17.7466 24.1817ZM36.6666 17.4167C36.6666 9.31333 30.1033 2.75 21.9999 2.75C13.8966 2.75 7.33325 9.31333 7.33325 17.4167C7.33325 21.1383 8.72659 24.5117 10.9999 27.0967V41.25L21.9999 37.5833L32.9999 41.25V27.0967C35.2733 24.5117 36.6666 21.1383 36.6666 17.4167ZM21.9999 6.41667C28.0683 6.41667 32.9999 11.3483 32.9999 17.4167C32.9999 23.485 28.0683 28.4167 21.9999 28.4167C15.9316 28.4167 10.9999 23.485 10.9999 17.4167C10.9999 11.3483 15.9316 6.41667 21.9999 6.41667ZM21.9999 33.9167L14.6666 35.7867V30.1033C16.8299 31.35 19.3233 32.0833 21.9999 32.0833C24.6766 32.0833 27.1699 31.35 29.3333 30.1033V35.7867L21.9999 33.9167Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M22.0001 3.66675C11.8801 3.66675 3.66675 11.8801 3.66675 22.0001C3.66675 32.1201 11.8801 40.3334 22.0001 40.3334C32.1201 40.3334 40.3334 32.1201 40.3334 22.0001C40.3334 11.8801 32.1201 3.66675 22.0001 3.66675ZM22.0001 36.6667C13.8967 36.6667 7.33341 30.1034 7.33341 22.0001C7.33341 18.6084 8.48841 15.4917 10.4317 13.0167L30.9834 33.5684C28.5084 35.5117 25.3917 36.6667 22.0001 36.6667ZM33.5684 30.9834L13.0167 10.4317C15.4917 8.48841 18.6084 7.33341 22.0001 7.33341C30.1034 7.33341 36.6667 13.8967 36.6667 22.0001C36.6667 25.3917 35.5117 28.5084 33.5684 30.9834Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M22.0001 3.66675C11.8801 3.66675 3.66675 11.8801 3.66675 22.0001C3.66675 32.1201 11.8801 40.3334 22.0001 40.3334C32.1201 40.3334 40.3334 32.1201 40.3334 22.0001C40.3334 11.8801 32.1201 3.66675 22.0001 3.66675ZM22.0001 36.6667C13.8967 36.6667 7.33341 30.1034 7.33341 22.0001C7.33341 18.6084 8.48841 15.4917 10.4317 13.0167L30.9834 33.5684C28.5084 35.5117 25.3917 36.6667 22.0001 36.6667ZM33.5684 30.9834L13.0167 10.4317C15.4917 8.48841 18.6084 7.33341 22.0001 7.33341C30.1034 7.33341 36.6667 13.8967 36.6667 22.0001C36.6667 25.3917 35.5117 28.5084 33.5684 30.9834Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M40.3334 20.1667H32.6884L38.6284 14.2267L36.0434 11.6234L27.5001 20.1667H23.8334V16.5001L32.3767 7.95675L29.7734 5.37175L23.8334 11.3117V3.66675H20.1667V11.3117L14.2267 5.37175L11.6234 7.95675L20.1667 16.5001V20.1667H16.5001L7.95675 11.6234L5.37175 14.2267L11.3117 20.1667H3.66675V23.8334H11.3117L5.37175 29.7734L7.95675 32.3767L16.5001 23.8334H20.1667V27.5001L11.6234 36.0434L14.2267 38.6284L20.1667 32.6884V40.3334H23.8334V32.6884L29.7734 38.6284L32.3767 36.0434L23.8334 27.5001V23.8334H27.5001L36.0434 32.3767L38.6284 29.7734L32.6884 23.8334H40.3334V20.1667Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M40.3334 20.1667H32.6884L38.6284 14.2267L36.0434 11.6234L27.5001 20.1667H23.8334V16.5001L32.3767 7.95675L29.7734 5.37175L23.8334 11.3117V3.66675H20.1667V11.3117L14.2267 5.37175L11.6234 7.95675L20.1667 16.5001V20.1667H16.5001L7.95675 11.6234L5.37175 14.2267L11.3117 20.1667H3.66675V23.8334H11.3117L5.37175 29.7734L7.95675 32.3767L16.5001 23.8334H20.1667V27.5001L11.6234 36.0434L14.2267 38.6284L20.1667 32.6884V40.3334H23.8334V32.6884L29.7734 38.6284L32.3767 36.0434L23.8334 27.5001V23.8334H27.5001L36.0434 32.3767L38.6284 29.7734L32.6884 23.8334H40.3334V20.1667Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M5.5 31.1667V34.8333H16.5V31.1667H5.5ZM5.5 9.16667V12.8333H23.8333V9.16667H5.5ZM23.8333 38.5V34.8333H38.5V31.1667H23.8333V27.5H20.1667V38.5H23.8333ZM12.8333 16.5V20.1667H5.5V23.8333H12.8333V27.5H16.5V16.5H12.8333ZM38.5 23.8333V20.1667H20.1667V23.8333H38.5ZM27.5 16.5H31.1667V12.8333H38.5V9.16667H31.1667V5.5H27.5V16.5Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5.5 31.1667V34.8333H16.5V31.1667H5.5ZM5.5 9.16667V12.8333H23.8333V9.16667H5.5ZM23.8333 38.5V34.8333H38.5V31.1667H23.8333V27.5H20.1667V38.5H23.8333ZM12.8333 16.5V20.1667H5.5V23.8333H12.8333V27.5H16.5V16.5H12.8333ZM38.5 23.8333V20.1667H20.1667V23.8333H38.5ZM27.5 16.5H31.1667V12.8333H38.5V9.16667H31.1667V5.5H27.5V16.5Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M7.95658 5.38086L5.37158 7.96586L13.3649 15.9592L12.8332 16.5092H5.49992V27.5092H12.8332L21.9999 36.6759V24.5942L29.6632 32.2575C28.4716 33.1559 27.1332 33.8709 25.6666 34.2925V38.0692C28.1233 37.5192 30.3783 36.3825 32.2849 34.8609L36.0433 38.6192L38.6283 36.0342L7.95658 5.38086ZM18.3332 27.8209L14.3549 23.8425H9.16658V20.1759H14.3549L15.9682 18.5625L18.3332 20.9275V27.8209ZM34.8333 22.0092C34.8333 23.5125 34.5583 24.9609 34.0816 26.2992L36.8866 29.1042C37.9133 26.9592 38.4999 24.5575 38.4999 22.0092C38.4999 14.1625 33.0183 7.59919 25.6666 5.93086V9.70753C30.9649 11.2842 34.8333 16.1975 34.8333 22.0092ZM21.9999 7.34253L18.5532 10.7892L21.9999 14.2359V7.34253ZM30.2499 22.0092C30.2499 18.7642 28.3799 15.9775 25.6666 14.6209V17.9025L30.2132 22.4492C30.2316 22.3025 30.2499 22.1559 30.2499 22.0092Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M7.95658 5.38086L5.37158 7.96586L13.3649 15.9592L12.8332 16.5092H5.49992V27.5092H12.8332L21.9999 36.6759V24.5942L29.6632 32.2575C28.4716 33.1559 27.1332 33.8709 25.6666 34.2925V38.0692C28.1233 37.5192 30.3783 36.3825 32.2849 34.8609L36.0433 38.6192L38.6283 36.0342L7.95658 5.38086ZM18.3332 27.8209L14.3549 23.8425H9.16658V20.1759H14.3549L15.9682 18.5625L18.3332 20.9275V27.8209ZM34.8333 22.0092C34.8333 23.5125 34.5583 24.9609 34.0816 26.2992L36.8866 29.1042C37.9133 26.9592 38.4999 24.5575 38.4999 22.0092C38.4999 14.1625 33.0183 7.59919 25.6666 5.93086V9.70753C30.9649 11.2842 34.8333 16.1975 34.8333 22.0092ZM21.9999 7.34253L18.5532 10.7892L21.9999 14.2359V7.34253ZM30.2499 22.0092C30.2499 18.7642 28.3799 15.9775 25.6666 14.6209V17.9025L30.2132 22.4492C30.2316 22.3025 30.2499 22.1559 30.2499 22.0092Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M16.5001 34.8334L19.0851 32.2484L10.6884 23.8334H40.3334V20.1667H10.6884L19.1034 11.7517L16.5001 9.16669L3.66675 22L16.5001 34.8334Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.5001 34.8334L19.0851 32.2484L10.6884 23.8334H40.3334V20.1667H10.6884L19.1034 11.7517L16.5001 9.16669L3.66675 22L16.5001 34.8334Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M28.5001 9.16669L25.9151 11.7517L34.3117 20.1667H4.66675V23.8334H34.3117L25.8967 32.2484L28.5001 34.8334L41.3334 22L28.5001 9.16669Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M28.5001 9.16669L25.9151 11.7517L34.3117 20.1667H4.66675V23.8334H34.3117L25.8967 32.2484L28.5001 34.8334L41.3334 22L28.5001 9.16669Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M36.6668 20.1667H14.3552L24.6035 9.91834L22.0002 7.33334L7.3335 22L22.0002 36.6667L24.5852 34.0817L14.3552 23.8333H36.6668V20.1667Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M36.6668 20.1667H14.3552L24.6035 9.91834L22.0002 7.33334L7.3335 22L22.0002 36.6667L24.5852 34.0817L14.3552 23.8333H36.6668V20.1667Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M35.8332 11.7517L33.2482 9.16666L22.9998 19.415L12.7515 9.16666L10.1665 11.7517L20.4148 22L10.1665 32.2483L12.7515 34.8333L22.9998 24.585L33.2482 34.8333L35.8332 32.2483L25.5848 22L35.8332 11.7517Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M35.8332 11.7517L33.2482 9.16666L22.9998 19.415L12.7515 9.16666L10.1665 11.7517L20.4148 22L10.1665 32.2483L12.7515 34.8333L22.9998 24.585L33.2482 34.8333L35.8332 32.2483L25.5848 22L35.8332 11.7517Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M30.415 16.2075L22 24.6042L13.585 16.2075L11 18.7925L22 29.7925L33 18.7925L30.415 16.2075Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M30.415 16.2075L22 24.6042L13.585 16.2075L11 18.7925L22 29.7925L33 18.7925L30.415 16.2075Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M31.1667 14.6667L28.5817 17.2517L31.4783 20.1667H16.5V23.8333H31.4783L28.5817 26.73L31.1667 29.3333L38.5 22L31.1667 14.6667ZM9.16667 9.16667H22V5.5H9.16667C7.15 5.5 5.5 7.15 5.5 9.16667V34.8333C5.5 36.85 7.15 38.5 9.16667 38.5H22V34.8333H9.16667V9.16667Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M31.1667 14.6667L28.5817 17.2517L31.4783 20.1667H16.5V23.8333H31.4783L28.5817 26.73L31.1667 29.3333L38.5 22L31.1667 14.6667ZM9.16667 9.16667H22V5.5H9.16667C7.15 5.5 5.5 7.15 5.5 9.16667V34.8333C5.5 36.85 7.15 38.5 9.16667 38.5H22V34.8333H9.16667V9.16667Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,7 +1,7 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g id="Navigation/More">
3
- <g id="Vector">
4
- <path d="M21.9999 14.6667C24.0166 14.6667 25.6666 13.0167 25.6666 11C25.6666 8.98334 24.0166 7.33334 21.9999 7.33334C19.9833 7.33334 18.3333 8.98334 18.3333 11C18.3333 13.0167 19.9833 14.6667 21.9999 14.6667ZM21.9999 18.3333C19.9833 18.3333 18.3333 19.9833 18.3333 22C18.3333 24.0167 19.9833 25.6667 21.9999 25.6667C24.0166 25.6667 25.6666 24.0167 25.6666 22C25.6666 19.9833 24.0166 18.3333 21.9999 18.3333ZM21.9999 29.3333C19.9833 29.3333 18.3333 30.9833 18.3333 33C18.3333 35.0167 19.9833 36.6667 21.9999 36.6667C24.0166 36.6667 25.6666 35.0167 25.6666 33C25.6666 30.9833 24.0166 29.3333 21.9999 29.3333Z" fill="#0B121B"/>
5
- </g>
6
- </g>
7
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="Navigation/More">
3
+ <g id="Vector">
4
+ <path d="M21.9999 14.6667C24.0166 14.6667 25.6666 13.0167 25.6666 11C25.6666 8.98334 24.0166 7.33334 21.9999 7.33334C19.9833 7.33334 18.3333 8.98334 18.3333 11C18.3333 13.0167 19.9833 14.6667 21.9999 14.6667ZM21.9999 18.3333C19.9833 18.3333 18.3333 19.9833 18.3333 22C18.3333 24.0167 19.9833 25.6667 21.9999 25.6667C24.0166 25.6667 25.6666 24.0167 25.6666 22C25.6666 19.9833 24.0166 18.3333 21.9999 18.3333ZM21.9999 29.3333C19.9833 29.3333 18.3333 30.9833 18.3333 33C18.3333 35.0167 19.9833 36.6667 21.9999 36.6667C24.0166 36.6667 25.6666 35.0167 25.6666 33C25.6666 30.9833 24.0166 29.3333 21.9999 29.3333Z" fill="#0B121B"/>
5
+ </g>
6
+ </g>
7
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M17.7925 11L15.2075 13.585L23.6042 22L15.2075 30.415L17.7925 33L28.7925 22L17.7925 11Z" fill="black"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M17.7925 11L15.2075 13.585L23.6042 22L15.2075 30.415L17.7925 33L28.7925 22L17.7925 11Z" fill="black"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M34.8334 23.8333H23.8334V34.8333H20.1667V23.8333H9.16675V20.1667H20.1667V9.16666H23.8334V20.1667H34.8334V23.8333Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M34.8334 23.8333H23.8334V34.8333H20.1667V23.8333H9.16675V20.1667H20.1667V9.16666H23.8334V20.1667H34.8334V23.8333Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M32.3492 11.6416C29.6909 8.98331 26.0425 7.33331 21.9909 7.33331C13.8875 7.33331 7.34253 13.8966 7.34253 22C7.34253 30.1033 13.8875 36.6666 21.9909 36.6666C28.8292 36.6666 34.5309 31.9916 36.1625 25.6666H32.3492C30.8459 29.9383 26.7759 33 21.9909 33C15.9225 33 10.9909 28.0683 10.9909 22C10.9909 15.9316 15.9225 11 21.9909 11C25.0342 11 27.7475 12.265 29.7275 14.2633L23.8242 20.1666H36.6575V7.33331L32.3492 11.6416Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M32.3492 11.6416C29.6909 8.98331 26.0425 7.33331 21.9909 7.33331C13.8875 7.33331 7.34253 13.8966 7.34253 22C7.34253 30.1033 13.8875 36.6666 21.9909 36.6666C28.8292 36.6666 34.5309 31.9916 36.1625 25.6666H32.3492C30.8459 29.9383 26.7759 33 21.9909 33C15.9225 33 10.9909 28.0683 10.9909 22C10.9909 15.9316 15.9225 11 21.9909 11C25.0342 11 27.7475 12.265 29.7275 14.2633L23.8242 20.1666H36.6575V7.33331L32.3492 11.6416Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M28.8842 26.1342H27.4359L26.9225 25.6392C28.7192 23.5492 29.8009 20.8358 29.8009 17.8842C29.8009 11.3025 24.4659 5.9675 17.8842 5.9675C11.3025 5.9675 5.96753 11.3025 5.96753 17.8842C5.96753 24.4658 11.3025 29.8008 17.8842 29.8008C20.8359 29.8008 23.5492 28.7192 25.6392 26.9225L26.1342 27.4358V28.8842L35.3009 38.0325L38.0325 35.3008L28.8842 26.1342ZM17.8842 26.1342C13.3192 26.1342 9.6342 22.4492 9.6342 17.8842C9.6342 13.3192 13.3192 9.63417 17.8842 9.63417C22.4492 9.63417 26.1342 13.3192 26.1342 17.8842C26.1342 22.4492 22.4492 26.1342 17.8842 26.1342Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M28.8842 26.1342H27.4359L26.9225 25.6392C28.7192 23.5492 29.8009 20.8358 29.8009 17.8842C29.8009 11.3025 24.4659 5.9675 17.8842 5.9675C11.3025 5.9675 5.96753 11.3025 5.96753 17.8842C5.96753 24.4658 11.3025 29.8008 17.8842 29.8008C20.8359 29.8008 23.5492 28.7192 25.6392 26.9225L26.1342 27.4358V28.8842L35.3009 38.0325L38.0325 35.3008L28.8842 26.1342ZM17.8842 26.1342C13.3192 26.1342 9.6342 22.4492 9.6342 17.8842C9.6342 13.3192 13.3192 9.63417 17.8842 9.63417C22.4492 9.63417 26.1342 13.3192 26.1342 17.8842C26.1342 22.4492 22.4492 26.1342 17.8842 26.1342Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M35.6258 23.7967C35.6991 23.21 35.7541 22.6233 35.7541 22C35.7541 21.3767 35.6991 20.79 35.6258 20.2033L39.4941 17.1783C39.8424 16.9033 39.9341 16.4083 39.7141 16.005L36.0474 9.66166C35.8824 9.36832 35.5708 9.20332 35.2408 9.20332C35.1308 9.20332 35.0208 9.22166 34.9291 9.25832L30.3641 11.0917C29.4108 10.3583 28.3841 9.75332 27.2658 9.29499L26.5691 4.43666C26.5141 3.99666 26.1291 3.66666 25.6708 3.66666H18.3374C17.8791 3.66666 17.4941 3.99666 17.4391 4.43666L16.7424 9.29499C15.6241 9.75332 14.5974 10.3767 13.6441 11.0917L9.0791 9.25832C8.9691 9.22166 8.8591 9.20332 8.7491 9.20332C8.43743 9.20332 8.12577 9.36832 7.96077 9.66166L4.2941 16.005C4.05577 16.4083 4.16577 16.9033 4.5141 17.1783L8.38243 20.2033C8.3091 20.79 8.2541 21.395 8.2541 22C8.2541 22.605 8.3091 23.21 8.38243 23.7967L4.5141 26.8217C4.16577 27.0967 4.0741 27.5917 4.2941 27.995L7.96077 34.3383C8.12577 34.6317 8.43743 34.7967 8.76743 34.7967C8.87743 34.7967 8.98743 34.7783 9.0791 34.7417L13.6441 32.9083C14.5974 33.6417 15.6241 34.2467 16.7424 34.705L17.4391 39.5633C17.4941 40.0033 17.8791 40.3333 18.3374 40.3333H25.6708C26.1291 40.3333 26.5141 40.0033 26.5691 39.5633L27.2658 34.705C28.3841 34.2467 29.4108 33.6233 30.3641 32.9083L34.9291 34.7417C35.0391 34.7783 35.1491 34.7967 35.2591 34.7967C35.5708 34.7967 35.8824 34.6317 36.0474 34.3383L39.7141 27.995C39.9341 27.5917 39.8424 27.0967 39.4941 26.8217L35.6258 23.7967ZM31.9958 20.6617C32.0691 21.23 32.0874 21.615 32.0874 22C32.0874 22.385 32.0508 22.7883 31.9958 23.3383L31.7391 25.41L33.3708 26.6933L35.3508 28.2333L34.0674 30.4517L31.7391 29.5167L29.8324 28.7467L28.1824 29.9933C27.3941 30.58 26.6424 31.02 25.8908 31.3317L23.9474 32.12L23.6541 34.1917L23.2874 36.6667H20.7208L20.0791 32.12L18.1358 31.3317C17.3474 31.0017 16.6141 30.58 15.8808 30.03L14.2124 28.7467L12.2691 29.535L9.94077 30.47L8.65743 28.2517L10.6374 26.7117L12.2691 25.4283L12.0124 23.3567C11.9574 22.7883 11.9208 22.3667 11.9208 22C11.9208 21.6333 11.9574 21.2117 12.0124 20.6617L12.2691 18.59L10.6374 17.3067L8.65743 15.7667L9.94077 13.5483L12.2691 14.4833L14.1758 15.2533L15.8258 14.0067C16.6141 13.42 17.3658 12.98 18.1174 12.6683L20.0608 11.88L20.3541 9.80832L20.7208 7.33332H23.2691L23.9108 11.88L25.8541 12.6683C26.6424 12.9983 27.3758 13.42 28.1091 13.97L29.7774 15.2533L31.7208 14.465L34.0491 13.53L35.3324 15.7483L33.3708 17.3067L31.7391 18.59L31.9958 20.6617ZM22.0041 14.6667C17.9524 14.6667 14.6708 17.9483 14.6708 22C14.6708 26.0517 17.9524 29.3333 22.0041 29.3333C26.0558 29.3333 29.3374 26.0517 29.3374 22C29.3374 17.9483 26.0558 14.6667 22.0041 14.6667ZM22.0041 25.6667C19.9874 25.6667 18.3374 24.0167 18.3374 22C18.3374 19.9833 19.9874 18.3333 22.0041 18.3333C24.0208 18.3333 25.6708 19.9833 25.6708 22C25.6708 24.0167 24.0208 25.6667 22.0041 25.6667Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M35.6258 23.7967C35.6991 23.21 35.7541 22.6233 35.7541 22C35.7541 21.3767 35.6991 20.79 35.6258 20.2033L39.4941 17.1783C39.8424 16.9033 39.9341 16.4083 39.7141 16.005L36.0474 9.66166C35.8824 9.36832 35.5708 9.20332 35.2408 9.20332C35.1308 9.20332 35.0208 9.22166 34.9291 9.25832L30.3641 11.0917C29.4108 10.3583 28.3841 9.75332 27.2658 9.29499L26.5691 4.43666C26.5141 3.99666 26.1291 3.66666 25.6708 3.66666H18.3374C17.8791 3.66666 17.4941 3.99666 17.4391 4.43666L16.7424 9.29499C15.6241 9.75332 14.5974 10.3767 13.6441 11.0917L9.0791 9.25832C8.9691 9.22166 8.8591 9.20332 8.7491 9.20332C8.43743 9.20332 8.12577 9.36832 7.96077 9.66166L4.2941 16.005C4.05577 16.4083 4.16577 16.9033 4.5141 17.1783L8.38243 20.2033C8.3091 20.79 8.2541 21.395 8.2541 22C8.2541 22.605 8.3091 23.21 8.38243 23.7967L4.5141 26.8217C4.16577 27.0967 4.0741 27.5917 4.2941 27.995L7.96077 34.3383C8.12577 34.6317 8.43743 34.7967 8.76743 34.7967C8.87743 34.7967 8.98743 34.7783 9.0791 34.7417L13.6441 32.9083C14.5974 33.6417 15.6241 34.2467 16.7424 34.705L17.4391 39.5633C17.4941 40.0033 17.8791 40.3333 18.3374 40.3333H25.6708C26.1291 40.3333 26.5141 40.0033 26.5691 39.5633L27.2658 34.705C28.3841 34.2467 29.4108 33.6233 30.3641 32.9083L34.9291 34.7417C35.0391 34.7783 35.1491 34.7967 35.2591 34.7967C35.5708 34.7967 35.8824 34.6317 36.0474 34.3383L39.7141 27.995C39.9341 27.5917 39.8424 27.0967 39.4941 26.8217L35.6258 23.7967ZM31.9958 20.6617C32.0691 21.23 32.0874 21.615 32.0874 22C32.0874 22.385 32.0508 22.7883 31.9958 23.3383L31.7391 25.41L33.3708 26.6933L35.3508 28.2333L34.0674 30.4517L31.7391 29.5167L29.8324 28.7467L28.1824 29.9933C27.3941 30.58 26.6424 31.02 25.8908 31.3317L23.9474 32.12L23.6541 34.1917L23.2874 36.6667H20.7208L20.0791 32.12L18.1358 31.3317C17.3474 31.0017 16.6141 30.58 15.8808 30.03L14.2124 28.7467L12.2691 29.535L9.94077 30.47L8.65743 28.2517L10.6374 26.7117L12.2691 25.4283L12.0124 23.3567C11.9574 22.7883 11.9208 22.3667 11.9208 22C11.9208 21.6333 11.9574 21.2117 12.0124 20.6617L12.2691 18.59L10.6374 17.3067L8.65743 15.7667L9.94077 13.5483L12.2691 14.4833L14.1758 15.2533L15.8258 14.0067C16.6141 13.42 17.3658 12.98 18.1174 12.6683L20.0608 11.88L20.3541 9.80832L20.7208 7.33332H23.2691L23.9108 11.88L25.8541 12.6683C26.6424 12.9983 27.3758 13.42 28.1091 13.97L29.7774 15.2533L31.7208 14.465L34.0491 13.53L35.3324 15.7483L33.3708 17.3067L31.7391 18.59L31.9958 20.6617ZM22.0041 14.6667C17.9524 14.6667 14.6708 17.9483 14.6708 22C14.6708 26.0517 17.9524 29.3333 22.0041 29.3333C26.0558 29.3333 29.3374 26.0517 29.3374 22C29.3374 17.9483 26.0558 14.6667 22.0041 14.6667ZM22.0041 25.6667C19.9874 25.6667 18.3374 24.0167 18.3374 22C18.3374 19.9833 19.9874 18.3333 22.0041 18.3333C24.0208 18.3333 25.6708 19.9833 25.6708 22C25.6708 24.0167 24.0208 25.6667 22.0041 25.6667Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M35.09 23.7233C35.1634 23.1733 35.2 22.605 35.2 22C35.2 21.4133 35.1634 20.8267 35.0717 20.2767L38.7934 17.38C39.1234 17.1233 39.215 16.6283 39.0134 16.2617L35.4934 10.175C35.2734 9.77166 34.815 9.64333 34.4117 9.77166L30.03 11.5317C29.1134 10.835 28.1417 10.2483 27.06 9.80833L26.4 5.15166C26.3267 4.71166 25.96 4.39999 25.52 4.39999H18.48C18.04 4.39999 17.6917 4.71166 17.6184 5.15166L16.9584 9.80833C15.8767 10.2483 14.8867 10.8533 13.9884 11.5317L9.6067 9.77166C9.20337 9.62499 8.74504 9.77166 8.52504 10.175L5.02337 16.2617C4.80337 16.6467 4.8767 17.1233 5.24337 17.38L8.96504 20.2767C8.87337 20.8267 8.80004 21.4317 8.80004 22C8.80004 22.5683 8.8367 23.1733 8.92837 23.7233L5.2067 26.62C4.8767 26.8767 4.78504 27.3717 4.98671 27.7383L8.5067 33.825C8.7267 34.2283 9.18504 34.3567 9.58837 34.2283L13.97 32.4683C14.8867 33.165 15.8584 33.7517 16.94 34.1917L17.6 38.8483C17.6917 39.2883 18.04 39.6 18.48 39.6H25.52C25.96 39.6 26.3267 39.2883 26.3817 38.8483L27.0417 34.1917C28.1234 33.7517 29.1134 33.165 30.0117 32.4683L34.3934 34.2283C34.7967 34.375 35.255 34.2283 35.475 33.825L38.995 27.7383C39.215 27.335 39.1234 26.8767 38.775 26.62L35.09 23.7233ZM22 28.6C18.37 28.6 15.4 25.63 15.4 22C15.4 18.37 18.37 15.4 22 15.4C25.63 15.4 28.6 18.37 28.6 22C28.6 25.63 25.63 28.6 22 28.6Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M35.09 23.7233C35.1634 23.1733 35.2 22.605 35.2 22C35.2 21.4133 35.1634 20.8267 35.0717 20.2767L38.7934 17.38C39.1234 17.1233 39.215 16.6283 39.0134 16.2617L35.4934 10.175C35.2734 9.77166 34.815 9.64333 34.4117 9.77166L30.03 11.5317C29.1134 10.835 28.1417 10.2483 27.06 9.80833L26.4 5.15166C26.3267 4.71166 25.96 4.39999 25.52 4.39999H18.48C18.04 4.39999 17.6917 4.71166 17.6184 5.15166L16.9584 9.80833C15.8767 10.2483 14.8867 10.8533 13.9884 11.5317L9.6067 9.77166C9.20337 9.62499 8.74504 9.77166 8.52504 10.175L5.02337 16.2617C4.80337 16.6467 4.8767 17.1233 5.24337 17.38L8.96504 20.2767C8.87337 20.8267 8.80004 21.4317 8.80004 22C8.80004 22.5683 8.8367 23.1733 8.92837 23.7233L5.2067 26.62C4.8767 26.8767 4.78504 27.3717 4.98671 27.7383L8.5067 33.825C8.7267 34.2283 9.18504 34.3567 9.58837 34.2283L13.97 32.4683C14.8867 33.165 15.8584 33.7517 16.94 34.1917L17.6 38.8483C17.6917 39.2883 18.04 39.6 18.48 39.6H25.52C25.96 39.6 26.3267 39.2883 26.3817 38.8483L27.0417 34.1917C28.1234 33.7517 29.1134 33.165 30.0117 32.4683L34.3934 34.2283C34.7967 34.375 35.255 34.2283 35.475 33.825L38.995 27.7383C39.215 27.335 39.1234 26.8767 38.775 26.62L35.09 23.7233ZM22 28.6C18.37 28.6 15.4 25.63 15.4 22C15.4 18.37 18.37 15.4 22 15.4C25.63 15.4 28.6 18.37 28.6 22C28.6 25.63 25.63 28.6 22 28.6Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M21.9999 11.8983L35.8049 35.7499H8.19492L21.9999 11.8983ZM21.9999 4.58325L1.83325 39.4166H42.1666L21.9999 4.58325ZM23.8333 30.2499H20.1666V33.9166H23.8333V30.2499ZM23.8333 19.2499H20.1666V26.5833H23.8333V19.2499Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M21.9999 11.8983L35.8049 35.7499H8.19492L21.9999 11.8983ZM21.9999 4.58325L1.83325 39.4166H42.1666L21.9999 4.58325ZM23.8333 30.2499H20.1666V33.9166H23.8333V30.2499ZM23.8333 19.2499H20.1666V26.5833H23.8333V19.2499Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M20.1667 33.0001H23.8334V29.3334H20.1667V33.0001ZM22.0001 3.66675C11.8801 3.66675 3.66675 11.8801 3.66675 22.0001C3.66675 32.1201 11.8801 40.3334 22.0001 40.3334C32.1201 40.3334 40.3334 32.1201 40.3334 22.0001C40.3334 11.8801 32.1201 3.66675 22.0001 3.66675ZM22.0001 36.6667C13.9151 36.6667 7.33341 30.0851 7.33341 22.0001C7.33341 13.9151 13.9151 7.33341 22.0001 7.33341C30.0851 7.33341 36.6667 13.9151 36.6667 22.0001C36.6667 30.0851 30.0851 36.6667 22.0001 36.6667ZM22.0001 11.0001C17.9484 11.0001 14.6667 14.2817 14.6667 18.3334H18.3334C18.3334 16.3167 19.9834 14.6667 22.0001 14.6667C24.0167 14.6667 25.6667 16.3167 25.6667 18.3334C25.6667 22.0001 20.1667 21.5417 20.1667 27.5001H23.8334C23.8334 23.3751 29.3334 22.9167 29.3334 18.3334C29.3334 14.2817 26.0517 11.0001 22.0001 11.0001Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M20.1667 33.0001H23.8334V29.3334H20.1667V33.0001ZM22.0001 3.66675C11.8801 3.66675 3.66675 11.8801 3.66675 22.0001C3.66675 32.1201 11.8801 40.3334 22.0001 40.3334C32.1201 40.3334 40.3334 32.1201 40.3334 22.0001C40.3334 11.8801 32.1201 3.66675 22.0001 3.66675ZM22.0001 36.6667C13.9151 36.6667 7.33341 30.0851 7.33341 22.0001C7.33341 13.9151 13.9151 7.33341 22.0001 7.33341C30.0851 7.33341 36.6667 13.9151 36.6667 22.0001C36.6667 30.0851 30.0851 36.6667 22.0001 36.6667ZM22.0001 11.0001C17.9484 11.0001 14.6667 14.2817 14.6667 18.3334H18.3334C18.3334 16.3167 19.9834 14.6667 22.0001 14.6667C24.0167 14.6667 25.6667 16.3167 25.6667 18.3334C25.6667 22.0001 20.1667 21.5417 20.1667 27.5001H23.8334C23.8334 23.3751 29.3334 22.9167 29.3334 18.3334C29.3334 14.2817 26.0517 11.0001 22.0001 11.0001Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M20.1667 27.5001H23.8334V31.1667H20.1667V27.5001ZM20.1667 12.8334H23.8334V23.8334H20.1667V12.8334ZM21.9817 3.66675C11.8617 3.66675 3.66675 11.8801 3.66675 22.0001C3.66675 32.1201 11.8617 40.3334 21.9817 40.3334C32.1201 40.3334 40.3334 32.1201 40.3334 22.0001C40.3334 11.8801 32.1201 3.66675 21.9817 3.66675ZM22.0001 36.6667C13.8967 36.6667 7.33341 30.1034 7.33341 22.0001C7.33341 13.8967 13.8967 7.33341 22.0001 7.33341C30.1034 7.33341 36.6667 13.8967 36.6667 22.0001C36.6667 30.1034 30.1034 36.6667 22.0001 36.6667Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M20.1667 27.5001H23.8334V31.1667H20.1667V27.5001ZM20.1667 12.8334H23.8334V23.8334H20.1667V12.8334ZM21.9817 3.66675C11.8617 3.66675 3.66675 11.8801 3.66675 22.0001C3.66675 32.1201 11.8617 40.3334 21.9817 40.3334C32.1201 40.3334 40.3334 32.1201 40.3334 22.0001C40.3334 11.8801 32.1201 3.66675 21.9817 3.66675ZM22.0001 36.6667C13.8967 36.6667 7.33341 30.1034 7.33341 22.0001C7.33341 13.8967 13.8967 7.33341 22.0001 7.33341C30.1034 7.33341 36.6667 13.8967 36.6667 22.0001C36.6667 30.1034 30.1034 36.6667 22.0001 36.6667Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M20.1666 7.46163V3.7583C16.4816 4.12497 13.1266 5.59163 10.4133 7.80997L13.0166 10.4316C15.0516 8.85497 17.49 7.79163 20.1666 7.46163ZM33.5866 7.80997C30.8733 5.59163 27.5183 4.12497 23.8333 3.7583V7.46163C26.51 7.79163 28.9483 8.85497 30.9833 10.4316L33.5866 7.80997ZM36.5383 20.1666H40.2416C39.875 16.4816 38.4083 13.1266 36.19 10.4133L33.5683 13.0166C35.145 15.0516 36.2083 17.49 36.5383 20.1666ZM10.4316 13.0166L7.80997 10.4133C5.59163 13.1266 4.12497 16.4816 3.7583 20.1666H7.46163C7.79163 17.49 8.85497 15.0516 10.4316 13.0166ZM7.46163 23.8333H3.7583C4.12497 27.5183 5.59163 30.8733 7.80997 33.5866L10.4316 30.965C8.85497 28.9483 7.79163 26.51 7.46163 23.8333ZM33.5683 30.9833L36.19 33.605C38.4083 30.8916 39.875 27.5183 40.2416 23.8516H36.5383C36.2083 26.51 35.145 28.9483 33.5683 30.9833ZM23.8333 36.5383V40.2416C27.5183 39.875 30.8733 38.4083 33.5866 36.19L30.965 33.5683C28.9483 35.145 26.51 36.2083 23.8333 36.5383ZM10.4133 36.19C13.1266 38.4083 16.5 39.875 20.1666 40.2416V36.5383C17.49 36.2083 15.0516 35.145 13.0166 33.5683L10.4133 36.19Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M20.1666 7.46163V3.7583C16.4816 4.12497 13.1266 5.59163 10.4133 7.80997L13.0166 10.4316C15.0516 8.85497 17.49 7.79163 20.1666 7.46163ZM33.5866 7.80997C30.8733 5.59163 27.5183 4.12497 23.8333 3.7583V7.46163C26.51 7.79163 28.9483 8.85497 30.9833 10.4316L33.5866 7.80997ZM36.5383 20.1666H40.2416C39.875 16.4816 38.4083 13.1266 36.19 10.4133L33.5683 13.0166C35.145 15.0516 36.2083 17.49 36.5383 20.1666ZM10.4316 13.0166L7.80997 10.4133C5.59163 13.1266 4.12497 16.4816 3.7583 20.1666H7.46163C7.79163 17.49 8.85497 15.0516 10.4316 13.0166ZM7.46163 23.8333H3.7583C4.12497 27.5183 5.59163 30.8733 7.80997 33.5866L10.4316 30.965C8.85497 28.9483 7.79163 26.51 7.46163 23.8333ZM33.5683 30.9833L36.19 33.605C38.4083 30.8916 39.875 27.5183 40.2416 23.8516H36.5383C36.2083 26.51 35.145 28.9483 33.5683 30.9833ZM23.8333 36.5383V40.2416C27.5183 39.875 30.8733 38.4083 33.5866 36.19L30.965 33.5683C28.9483 35.145 26.51 36.2083 23.8333 36.5383ZM10.4133 36.19C13.1266 38.4083 16.5 39.875 20.1666 40.2416V36.5383C17.49 36.2083 15.0516 35.145 13.0166 33.5683L10.4133 36.19Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M18.9998 3.66675C8.87984 3.66675 0.666504 11.8801 0.666504 22.0001C0.666504 32.1201 8.87984 40.3334 18.9998 40.3334H28.1665V36.6667H18.9998C11.0432 36.6667 4.33317 29.9567 4.33317 22.0001C4.33317 14.0434 11.0432 7.33341 18.9998 7.33341C26.9565 7.33341 33.6665 14.0434 33.6665 22.0001V24.6217C33.6665 26.0701 32.3648 27.5001 30.9165 27.5001C29.4682 27.5001 28.1665 26.0701 28.1665 24.6217V22.0001C28.1665 16.9401 24.0598 12.8334 18.9998 12.8334C13.9398 12.8334 9.83317 16.9401 9.83317 22.0001C9.83317 27.0601 13.9398 31.1667 18.9998 31.1667C21.5298 31.1667 23.8398 30.1401 25.4898 28.4717C26.6815 30.1034 28.7348 31.1667 30.9165 31.1667C34.5282 31.1667 37.3332 28.2334 37.3332 24.6217V22.0001C37.3332 11.8801 29.1198 3.66675 18.9998 3.66675ZM18.9998 27.5001C15.9565 27.5001 13.4998 25.0434 13.4998 22.0001C13.4998 18.9567 15.9565 16.5001 18.9998 16.5001C22.0432 16.5001 24.4998 18.9567 24.4998 22.0001C24.4998 25.0434 22.0432 27.5001 18.9998 27.5001Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M18.9998 3.66675C8.87984 3.66675 0.666504 11.8801 0.666504 22.0001C0.666504 32.1201 8.87984 40.3334 18.9998 40.3334H28.1665V36.6667H18.9998C11.0432 36.6667 4.33317 29.9567 4.33317 22.0001C4.33317 14.0434 11.0432 7.33341 18.9998 7.33341C26.9565 7.33341 33.6665 14.0434 33.6665 22.0001V24.6217C33.6665 26.0701 32.3648 27.5001 30.9165 27.5001C29.4682 27.5001 28.1665 26.0701 28.1665 24.6217V22.0001C28.1665 16.9401 24.0598 12.8334 18.9998 12.8334C13.9398 12.8334 9.83317 16.9401 9.83317 22.0001C9.83317 27.0601 13.9398 31.1667 18.9998 31.1667C21.5298 31.1667 23.8398 30.1401 25.4898 28.4717C26.6815 30.1034 28.7348 31.1667 30.9165 31.1667C34.5282 31.1667 37.3332 28.2334 37.3332 24.6217V22.0001C37.3332 11.8801 29.1198 3.66675 18.9998 3.66675ZM18.9998 27.5001C15.9565 27.5001 13.4998 25.0434 13.4998 22.0001C13.4998 18.9567 15.9565 16.5001 18.9998 16.5001C22.0432 16.5001 24.4998 18.9567 24.4998 22.0001C24.4998 25.0434 22.0432 27.5001 18.9998 27.5001Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M16.1334 29.1499L8.43337 21.4499L5.8667 24.0166L16.1334 34.2832L38.1334 12.2832L35.5667 9.71655L16.1334 29.1499Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M16.1334 29.1499L8.43337 21.4499L5.8667 24.0166L16.1334 34.2832L38.1334 12.2832L35.5667 9.71655L16.1334 29.1499Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M32.9358 12.2925L30.3508 9.70752L18.7275 21.3309L21.3125 23.9159L32.9358 12.2925ZM40.7092 9.70752L21.3125 29.1042L13.6492 21.4592L11.0642 24.0442L21.3125 34.2925L43.3125 12.2925L40.7092 9.70752ZM0.6875 24.0442L10.9358 34.2925L13.5208 31.7075L3.29083 21.4592L0.6875 24.0442Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M32.9358 12.2925L30.3508 9.70752L18.7275 21.3309L21.3125 23.9159L32.9358 12.2925ZM40.7092 9.70752L21.3125 29.1042L13.6492 21.4592L11.0642 24.0442L21.3125 34.2925L43.3125 12.2925L40.7092 9.70752ZM0.6875 24.0442L10.9358 34.2925L13.5208 31.7075L3.29083 21.4592L0.6875 24.0442Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M39.4166 12.8333L32.0833 20.1666V13.7499C32.0833 12.7416 31.2583 11.9166 30.2499 11.9166H18.9199L39.4166 32.4133V12.8333ZM6.91159 4.58325L4.58325 6.91159L9.58825 11.9166H8.24992C7.24159 11.9166 6.41659 12.7416 6.41659 13.7499V32.0833C6.41659 33.0916 7.24159 33.9166 8.24992 33.9166H30.2499C30.6349 33.9166 30.9649 33.7699 31.2399 33.5866L37.0883 39.4166L39.4166 37.0883L6.91159 4.58325Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M39.4166 12.8333L32.0833 20.1666V13.7499C32.0833 12.7416 31.2583 11.9166 30.2499 11.9166H18.9199L39.4166 32.4133V12.8333ZM6.91159 4.58325L4.58325 6.91159L9.58825 11.9166H8.24992C7.24159 11.9166 6.41659 12.7416 6.41659 13.7499V32.0833C6.41659 33.0916 7.24159 33.9166 8.24992 33.9166H30.2499C30.6349 33.9166 30.9649 33.7699 31.2399 33.5866L37.0883 39.4166L39.4166 37.0883L6.91159 4.58325Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M31.1667 19.25V12.8333C31.1667 11.825 30.3417 11 29.3333 11H7.33333C6.325 11 5.5 11.825 5.5 12.8333V31.1667C5.5 32.175 6.325 33 7.33333 33H29.3333C30.3417 33 31.1667 32.175 31.1667 31.1667V24.75L38.5 32.0833V11.9167L31.1667 19.25Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M31.1667 19.25V12.8333C31.1667 11.825 30.3417 11 29.3333 11H7.33333C6.325 11 5.5 11.825 5.5 12.8333V31.1667C5.5 32.175 6.325 33 7.33333 33H29.3333C30.3417 33 31.1667 32.175 31.1667 31.1667V24.75L38.5 32.0833V11.9167L31.1667 19.25Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M34.8333 5.5H9.16667C7.15 5.5 5.5 7.15 5.5 9.16667V34.8333C5.5 36.85 7.15 38.5 9.16667 38.5H34.8333C36.85 38.5 38.5 36.85 38.5 34.8333V9.16667C38.5 7.15 36.85 5.5 34.8333 5.5ZM34.8333 34.8333H9.16667V9.16667H34.8333V34.8333Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M34.8333 5.5H9.16667C7.15 5.5 5.5 7.15 5.5 9.16667V34.8333C5.5 36.85 7.15 38.5 9.16667 38.5H34.8333C36.85 38.5 38.5 36.85 38.5 34.8333V9.16667C38.5 7.15 36.85 5.5 34.8333 5.5ZM34.8333 34.8333H9.16667V9.16667H34.8333V34.8333Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M34.8333 5.5H9.16667C7.15 5.5 5.5 7.15 5.5 9.16667V34.8333C5.5 36.85 7.15 38.5 9.16667 38.5H34.8333C36.85 38.5 38.5 36.85 38.5 34.8333V9.16667C38.5 7.15 36.85 5.5 34.8333 5.5ZM30.3967 13.8967L32.9817 16.5L18.315 31.1667L10.9817 23.8517L13.585 21.2667L18.315 25.9783L30.3967 13.8967Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M34.8333 5.5H9.16667C7.15 5.5 5.5 7.15 5.5 9.16667V34.8333C5.5 36.85 7.15 38.5 9.16667 38.5H34.8333C36.85 38.5 38.5 36.85 38.5 34.8333V9.16667C38.5 7.15 36.85 5.5 34.8333 5.5ZM30.3967 13.8967L32.9817 16.5L18.315 31.1667L10.9817 23.8517L13.585 21.2667L18.315 25.9783L30.3967 13.8967Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M40.3334 17.8566L27.1517 16.7199L22.0001 4.58325L16.8484 16.7383L3.66675 17.8566L13.6767 26.5283L10.6701 39.4166L22.0001 32.5783L33.3301 39.4166L30.3417 26.5283L40.3334 17.8566ZM22.0001 29.1499L15.1067 33.3116L16.9401 25.4649L10.8534 20.1849L18.8834 19.4883L22.0001 12.0999L25.1351 19.5066L33.1651 20.2033L27.0784 25.4833L28.9117 33.3299L22.0001 29.1499Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M40.3334 17.8566L27.1517 16.7199L22.0001 4.58325L16.8484 16.7383L3.66675 17.8566L13.6767 26.5283L10.6701 39.4166L22.0001 32.5783L33.3301 39.4166L30.3417 26.5283L40.3334 17.8566ZM22.0001 29.1499L15.1067 33.3116L16.9401 25.4649L10.8534 20.1849L18.8834 19.4883L22.0001 12.0999L25.1351 19.5066L33.1651 20.2033L27.0784 25.4833L28.9117 33.3299L22.0001 29.1499Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M21.9998 32.5783L33.3298 39.4166L30.3232 26.5283L40.3332 17.8566L27.1515 16.7383L21.9998 4.58325L16.8482 16.7383L3.6665 17.8566L13.6765 26.5283L10.6698 39.4166L21.9998 32.5783Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M21.9998 32.5783L33.3298 39.4166L30.3232 26.5283L40.3332 17.8566L27.1515 16.7383L21.9998 4.58325L16.8482 16.7383L3.6665 17.8566L13.6765 26.5283L10.6698 39.4166L21.9998 32.5783Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M27.5 5.5L31.7167 9.71667L26.4183 14.9783L29.0217 17.5817L34.2833 12.2833L38.5 16.5V5.5H27.5ZM5.5 16.5L9.71667 12.2833L14.9783 17.5817L17.5817 14.9783L12.2833 9.71667L16.5 5.5H5.5V16.5ZM16.5 38.5L12.2833 34.2833L17.5817 29.0217L14.9783 26.4183L9.71667 31.7167L5.5 27.5V38.5H16.5ZM38.5 27.5L34.2833 31.7167L29.0217 26.4183L26.4183 29.0217L31.7167 34.2833L27.5 38.5H38.5V27.5Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M27.5 5.5L31.7167 9.71667L26.4183 14.9783L29.0217 17.5817L34.2833 12.2833L38.5 16.5V5.5H27.5ZM5.5 16.5L9.71667 12.2833L14.9783 17.5817L17.5817 14.9783L12.2833 9.71667L16.5 5.5H5.5V16.5ZM16.5 38.5L12.2833 34.2833L17.5817 29.0217L14.9783 26.4183L9.71667 31.7167L5.5 27.5V38.5H16.5ZM38.5 27.5L34.2833 31.7167L29.0217 26.4183L26.4183 29.0217L31.7167 34.2833L27.5 38.5H38.5V27.5Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M22.009 11.9166C27.069 11.9166 31.1756 16.0233 31.1756 21.0833C31.1756 22.2749 30.9373 23.3933 30.5156 24.4383L35.869 29.7916C38.6373 27.4816 40.819 24.4933 42.1573 21.0833C38.9856 13.0349 31.1573 7.33325 21.9906 7.33325C19.424 7.33325 16.9673 7.79159 14.694 8.61659L18.654 12.5766C19.699 12.1549 20.8173 11.9166 22.009 11.9166ZM3.67562 6.91159L8.69895 11.9349C5.65562 14.2999 3.27229 17.4533 1.84229 21.0833C5.01395 29.1316 12.8423 34.8333 22.009 34.8333C24.8506 34.8333 27.564 34.2833 30.039 33.2933L30.809 34.0633L36.1806 39.4166L38.509 37.0883L6.00395 4.58325L3.67562 6.91159ZM13.814 17.0499L16.6556 19.8916C16.564 20.2766 16.509 20.6799 16.509 21.0833C16.509 24.1266 18.9656 26.5833 22.009 26.5833C22.4123 26.5833 22.8156 26.5283 23.2006 26.4366L26.0423 29.2783C24.814 29.8833 23.4573 30.2499 22.009 30.2499C16.949 30.2499 12.8423 26.1433 12.8423 21.0833C12.8423 19.6349 13.209 18.2783 13.814 17.0499ZM21.7156 15.6199L27.4906 21.3949L27.5273 21.1016C27.5273 18.0583 25.0706 15.6016 22.0273 15.6016L21.7156 15.6199Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M22.009 11.9166C27.069 11.9166 31.1756 16.0233 31.1756 21.0833C31.1756 22.2749 30.9373 23.3933 30.5156 24.4383L35.869 29.7916C38.6373 27.4816 40.819 24.4933 42.1573 21.0833C38.9856 13.0349 31.1573 7.33325 21.9906 7.33325C19.424 7.33325 16.9673 7.79159 14.694 8.61659L18.654 12.5766C19.699 12.1549 20.8173 11.9166 22.009 11.9166ZM3.67562 6.91159L8.69895 11.9349C5.65562 14.2999 3.27229 17.4533 1.84229 21.0833C5.01395 29.1316 12.8423 34.8333 22.009 34.8333C24.8506 34.8333 27.564 34.2833 30.039 33.2933L30.809 34.0633L36.1806 39.4166L38.509 37.0883L6.00395 4.58325L3.67562 6.91159ZM13.814 17.0499L16.6556 19.8916C16.564 20.2766 16.509 20.6799 16.509 21.0833C16.509 24.1266 18.9656 26.5833 22.009 26.5833C22.4123 26.5833 22.8156 26.5283 23.2006 26.4366L26.0423 29.2783C24.814 29.8833 23.4573 30.2499 22.009 30.2499C16.949 30.2499 12.8423 26.1433 12.8423 21.0833C12.8423 19.6349 13.209 18.2783 13.814 17.0499ZM21.7156 15.6199L27.4906 21.3949L27.5273 21.1016C27.5273 18.0583 25.0706 15.6016 22.0273 15.6016L21.7156 15.6199Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M12.9165 9.16675V34.8334L33.0832 22.0001L12.9165 9.16675Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M12.9165 9.16675V34.8334L33.0832 22.0001L12.9165 9.16675Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M5.5 16.5V27.5H12.8333L22 36.6666V7.3333L12.8333 16.5H5.5ZM18.3333 16.1883V27.8116L14.355 23.8333H9.16667V20.1666H14.355L18.3333 16.1883ZM30.25 22C30.25 18.755 28.38 15.9683 25.6667 14.6116V29.37C28.38 28.0316 30.25 25.245 30.25 22ZM25.6667 5.92163V9.6983C30.965 11.275 34.8333 16.1883 34.8333 22C34.8333 27.8116 30.965 32.725 25.6667 34.3016V38.0783C33.0183 36.41 38.5 29.8466 38.5 22C38.5 14.1533 33.0183 7.58996 25.6667 5.92163Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5.5 16.5V27.5H12.8333L22 36.6666V7.3333L12.8333 16.5H5.5ZM18.3333 16.1883V27.8116L14.355 23.8333H9.16667V20.1666H14.355L18.3333 16.1883ZM30.25 22C30.25 18.755 28.38 15.9683 25.6667 14.6116V29.37C28.38 28.0316 30.25 25.245 30.25 22ZM25.6667 5.92163V9.6983C30.965 11.275 34.8333 16.1883 34.8333 22C34.8333 27.8116 30.965 32.725 25.6667 34.3016V38.0783C33.0183 36.41 38.5 29.8466 38.5 22C38.5 14.1533 33.0183 7.58996 25.6667 5.92163Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M34.8333 21.0833H31.7167C31.7167 22.4399 31.4233 23.7049 30.9283 24.8416L33.1833 27.0966C34.21 25.2999 34.8333 23.2649 34.8333 21.0833ZM27.4633 21.3949C27.4633 21.2849 27.5 21.1933 27.5 21.0833V10.0833C27.5 7.03992 25.0433 4.58325 22 4.58325C18.9567 4.58325 16.5 7.03992 16.5 10.0833V10.4133L27.4633 21.3949ZM7.82833 6.41659L5.5 8.74492L16.5183 19.7633V21.0833C16.5183 24.1266 18.9567 26.5833 22 26.5833C22.4033 26.5833 22.8067 26.5283 23.1917 26.4366L26.235 29.4799C24.9333 30.0849 23.485 30.4333 22 30.4333C16.94 30.4333 12.2833 26.5833 12.2833 21.0833H9.16667C9.16667 27.3349 14.1533 32.5049 20.1667 33.4033V39.4166H23.8333V33.4033C25.5017 33.1649 27.0783 32.5783 28.49 31.7533L36.1717 39.4166L38.5 37.0883L7.82833 6.41659Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M34.8333 21.0833H31.7167C31.7167 22.4399 31.4233 23.7049 30.9283 24.8416L33.1833 27.0966C34.21 25.2999 34.8333 23.2649 34.8333 21.0833ZM27.4633 21.3949C27.4633 21.2849 27.5 21.1933 27.5 21.0833V10.0833C27.5 7.03992 25.0433 4.58325 22 4.58325C18.9567 4.58325 16.5 7.03992 16.5 10.0833V10.4133L27.4633 21.3949ZM7.82833 6.41659L5.5 8.74492L16.5183 19.7633V21.0833C16.5183 24.1266 18.9567 26.5833 22 26.5833C22.4033 26.5833 22.8067 26.5283 23.1917 26.4366L26.235 29.4799C24.9333 30.0849 23.485 30.4333 22 30.4333C16.94 30.4333 12.2833 26.5833 12.2833 21.0833H9.16667C9.16667 27.3349 14.1533 32.5049 20.1667 33.4033V39.4166H23.8333V33.4033C25.5017 33.1649 27.0783 32.5783 28.49 31.7533L36.1717 39.4166L38.5 37.0883L7.82833 6.41659Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,4 +1,4 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M22.0001 26.5833C25.0434 26.5833 27.5001 24.1266 27.5001 21.0833V10.0833C27.5001 7.03992 25.0434 4.58325 22.0001 4.58325C18.9567 4.58325 16.5001 7.03992 16.5001 10.0833V21.0833C16.5001 24.1266 18.9567 26.5833 22.0001 26.5833Z" fill="#0B121B"/>
3
- <path d="M31.1667 21.0833C31.1667 26.1433 27.0601 30.2499 22.0001 30.2499C16.9401 30.2499 12.8334 26.1433 12.8334 21.0833H9.16675C9.16675 27.5549 13.9517 32.8716 20.1667 33.7699V39.4166H23.8334V33.7699C30.0484 32.8716 34.8334 27.5549 34.8334 21.0833H31.1667Z" fill="#0B121B"/>
4
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M22.0001 26.5833C25.0434 26.5833 27.5001 24.1266 27.5001 21.0833V10.0833C27.5001 7.03992 25.0434 4.58325 22.0001 4.58325C18.9567 4.58325 16.5001 7.03992 16.5001 10.0833V21.0833C16.5001 24.1266 18.9567 26.5833 22.0001 26.5833Z" fill="#0B121B"/>
3
+ <path d="M31.1667 21.0833C31.1667 26.1433 27.0601 30.2499 22.0001 30.2499C16.9401 30.2499 12.8334 26.1433 12.8334 21.0833H9.16675C9.16675 27.5549 13.9517 32.8716 20.1667 33.7699V39.4166H23.8334V33.7699C30.0484 32.8716 34.8334 27.5549 34.8334 21.0833H31.1667Z" fill="#0B121B"/>
4
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M17.4999 16.4999V5.49992H13.8333V10.2483L8.16825 4.58325L5.58325 7.16825L11.2483 12.8333H6.49992V16.4999H17.4999ZM39.4999 16.4999V12.8333H34.7516L40.4166 7.16825L37.8316 4.58325L32.1666 10.2483V5.49992H28.4999V16.4999H39.4999ZM6.49992 27.4999V31.1666H11.2483L5.58325 36.8316L8.16825 39.4166L13.8333 33.7516V38.4999H17.4999V27.4999H6.49992ZM28.4999 27.4999V38.4999H32.1666V33.7516L37.8316 39.4166L40.4166 36.8316L34.7516 31.1666H39.4999V27.4999H28.4999Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M17.4999 16.4999V5.49992H13.8333V10.2483L8.16825 4.58325L5.58325 7.16825L11.2483 12.8333H6.49992V16.4999H17.4999ZM39.4999 16.4999V12.8333H34.7516L40.4166 7.16825L37.8316 4.58325L32.1666 10.2483V5.49992H28.4999V16.4999H39.4999ZM6.49992 27.4999V31.1666H11.2483L5.58325 36.8316L8.16825 39.4166L13.8333 33.7516V38.4999H17.4999V27.4999H6.49992ZM28.4999 27.4999V38.4999H32.1666V33.7516L37.8316 39.4166L40.4166 36.8316L34.7516 31.1666H39.4999V27.4999H28.4999Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M35.7501 33.8067L8.74508 5.94L6.41675 8.26833L11.5501 13.4017V13.42C10.5967 15.235 10.0834 17.38 10.0834 19.69V28.8567L6.41675 32.5233V34.3567H31.5884L35.2551 38.0233L37.5834 35.695L35.7501 33.8067ZM21.0834 39.875C23.1184 39.875 24.7501 38.2433 24.7501 36.2083H17.4167C17.4167 38.2433 19.0484 39.875 21.0834 39.875ZM32.0834 26.455V19.7083C32.0834 14.0617 29.0767 9.36833 23.8334 8.12167V6.875C23.8334 5.35333 22.6051 4.125 21.0834 4.125C19.5617 4.125 18.3334 5.35333 18.3334 6.875V8.12167C18.0584 8.17667 17.8017 8.26833 17.5634 8.34167C17.3801 8.39667 17.1967 8.47 17.0134 8.54333H16.9951C16.9767 8.54333 16.9767 8.54333 16.9584 8.56167C16.5367 8.72667 16.1151 8.92833 15.7117 9.13C15.7117 9.13 15.6934 9.13 15.6934 9.14833L32.0834 26.455Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M35.7501 33.8067L8.74508 5.94L6.41675 8.26833L11.5501 13.4017V13.42C10.5967 15.235 10.0834 17.38 10.0834 19.69V28.8567L6.41675 32.5233V34.3567H31.5884L35.2551 38.0233L37.5834 35.695L35.7501 33.8067ZM21.0834 39.875C23.1184 39.875 24.7501 38.2433 24.7501 36.2083H17.4167C17.4167 38.2433 19.0484 39.875 21.0834 39.875ZM32.0834 26.455V19.7083C32.0834 14.0617 29.0767 9.36833 23.8334 8.12167V6.875C23.8334 5.35333 22.6051 4.125 21.0834 4.125C19.5617 4.125 18.3334 5.35333 18.3334 6.875V8.12167C18.0584 8.17667 17.8017 8.26833 17.5634 8.34167C17.3801 8.39667 17.1967 8.47 17.0134 8.54333H16.9951C16.9767 8.54333 16.9767 8.54333 16.9584 8.56167C16.5367 8.72667 16.1151 8.92833 15.7117 9.13C15.7117 9.13 15.6934 9.13 15.6934 9.14833L32.0834 26.455Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M13.8967 7.02167L11.275 4.4C6.87501 7.755 3.97835 12.925 3.72168 18.7917H7.38835C7.66335 13.9333 10.1567 9.68 13.8967 7.02167ZM36.6117 18.7917H40.2783C40.0033 12.925 37.1067 7.755 32.725 4.4L30.1217 7.02167C33.825 9.68 36.3367 13.9333 36.6117 18.7917ZM33 19.7083C33 14.08 29.9933 9.36833 24.75 8.12167V6.875C24.75 5.35333 23.5217 4.125 22 4.125C20.4783 4.125 19.25 5.35333 19.25 6.875V8.12167C13.9883 9.36833 11 14.0617 11 19.7083V28.875L7.33335 32.5417V34.375H36.6667V32.5417L33 28.875V19.7083ZM22 39.875C22.2567 39.875 22.495 39.8567 22.7333 39.8017C23.925 39.545 24.8967 38.7383 25.3733 37.6383C25.5567 37.1983 25.6483 36.7217 25.6483 36.2083H18.315C18.3333 38.225 19.965 39.875 22 39.875Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M13.8967 7.02167L11.275 4.4C6.87501 7.755 3.97835 12.925 3.72168 18.7917H7.38835C7.66335 13.9333 10.1567 9.68 13.8967 7.02167ZM36.6117 18.7917H40.2783C40.0033 12.925 37.1067 7.755 32.725 4.4L30.1217 7.02167C33.825 9.68 36.3367 13.9333 36.6117 18.7917ZM33 19.7083C33 14.08 29.9933 9.36833 24.75 8.12167V6.875C24.75 5.35333 23.5217 4.125 22 4.125C20.4783 4.125 19.25 5.35333 19.25 6.875V8.12167C13.9883 9.36833 11 14.0617 11 19.7083V28.875L7.33335 32.5417V34.375H36.6667V32.5417L33 28.875V19.7083ZM22 39.875C22.2567 39.875 22.495 39.8567 22.7333 39.8017C23.925 39.545 24.8967 38.7383 25.3733 37.6383C25.5567 37.1983 25.6483 36.7217 25.6483 36.2083H18.315C18.3333 38.225 19.965 39.875 22 39.875Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M11 34.8334H18.3333V9.16675H11V34.8334ZM25.6667 9.16675V34.8334H33V9.16675H25.6667Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11 34.8334H18.3333V9.16675H11V34.8334ZM25.6667 9.16675V34.8334H33V9.16675H25.6667Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M29.7917 14.6116V29.3699C32.505 28.0316 34.375 25.2449 34.375 21.9999C34.375 18.7549 32.505 15.9683 29.7917 14.6116ZM9.625 16.4999V27.4999H16.9583L26.125 36.6666V7.33325L16.9583 16.4999H9.625ZM22.4583 16.1883V27.8116L18.48 23.8333H13.2917V20.1666H18.48L22.4583 16.1883Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M29.7917 14.6116V29.3699C32.505 28.0316 34.375 25.2449 34.375 21.9999C34.375 18.7549 32.505 15.9683 29.7917 14.6116ZM9.625 16.4999V27.4999H16.9583L26.125 36.6666V7.33325L16.9583 16.4999H9.625ZM22.4583 16.1883V27.8116L18.48 23.8333H13.2917V20.1666H18.48L22.4583 16.1883Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M22.0002 36.6666C30.1003 36.6666 36.6668 30.1001 36.6668 21.9999C36.6668 13.8997 30.1003 7.33325 22.0002 7.33325C13.9 7.33325 7.3335 13.8997 7.3335 21.9999C7.3335 30.1001 13.9 36.6666 22.0002 36.6666Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M22.0002 36.6666C30.1003 36.6666 36.6668 30.1001 36.6668 21.9999C36.6668 13.8997 30.1003 7.33325 22.0002 7.33325C13.9 7.33325 7.3335 13.8997 7.3335 21.9999C7.3335 30.1001 13.9 36.6666 22.0002 36.6666Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M36.6667 33.0002C38.6833 33.0002 40.315 31.3502 40.315 29.3335L40.3333 11.0002C40.3333 8.96516 38.6833 7.3335 36.6667 7.3335H7.33333C5.29833 7.3335 3.66667 8.96516 3.66667 11.0002V29.3335C3.66667 31.3502 5.29833 33.0002 7.33333 33.0002H0V36.6668H44V33.0002H36.6667ZM23.8333 26.5285V22.5135C18.7367 22.5135 15.3817 24.0718 12.8333 27.5002C13.86 22.6052 16.7017 17.7285 23.8333 16.7385V12.8335L31.1667 19.6718L23.8333 26.5285Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M36.6667 33.0002C38.6833 33.0002 40.315 31.3502 40.315 29.3335L40.3333 11.0002C40.3333 8.96516 38.6833 7.3335 36.6667 7.3335H7.33333C5.29833 7.3335 3.66667 8.96516 3.66667 11.0002V29.3335C3.66667 31.3502 5.29833 33.0002 7.33333 33.0002H0V36.6668H44V33.0002H36.6667ZM23.8333 26.5285V22.5135C18.7367 22.5135 15.3817 24.0718 12.8333 27.5002C13.86 22.6052 16.7017 17.7285 23.8333 16.7385V12.8335L31.1667 19.6718L23.8333 26.5285Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M22.0002 8.25C12.8335 8.25 5.00516 13.9517 1.8335 22C5.00516 30.0483 12.8335 35.75 22.0002 35.75C31.1668 35.75 38.9952 30.0483 42.1668 22C38.9952 13.9517 31.1668 8.25 22.0002 8.25ZM22.0002 31.1667C16.9402 31.1667 12.8335 27.06 12.8335 22C12.8335 16.94 16.9402 12.8333 22.0002 12.8333C27.0602 12.8333 31.1668 16.94 31.1668 22C31.1668 27.06 27.0602 31.1667 22.0002 31.1667ZM22.0002 16.5C18.9568 16.5 16.5002 18.9567 16.5002 22C16.5002 25.0433 18.9568 27.5 22.0002 27.5C25.0435 27.5 27.5002 25.0433 27.5002 22C27.5002 18.9567 25.0435 16.5 22.0002 16.5Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M22.0002 8.25C12.8335 8.25 5.00516 13.9517 1.8335 22C5.00516 30.0483 12.8335 35.75 22.0002 35.75C31.1668 35.75 38.9952 30.0483 42.1668 22C38.9952 13.9517 31.1668 8.25 22.0002 8.25ZM22.0002 31.1667C16.9402 31.1667 12.8335 27.06 12.8335 22C12.8335 16.94 16.9402 12.8333 22.0002 12.8333C27.0602 12.8333 31.1668 16.94 31.1668 22C31.1668 27.06 27.0602 31.1667 22.0002 31.1667ZM22.0002 16.5C18.9568 16.5 16.5002 18.9567 16.5002 22C16.5002 25.0433 18.9568 27.5 22.0002 27.5C25.0435 27.5 27.5002 25.0433 27.5002 22C27.5002 18.9567 25.0435 16.5 22.0002 16.5Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M5.5 16.5V27.5H12.8333L22 36.6666V7.3333L12.8333 16.5H5.5ZM30.25 22C30.25 18.755 28.38 15.9683 25.6667 14.6116V29.37C28.38 28.0316 30.25 25.245 30.25 22ZM25.6667 5.92163V9.6983C30.965 11.275 34.8333 16.1883 34.8333 22C34.8333 27.8116 30.965 32.725 25.6667 34.3016V38.0783C33.0183 36.41 38.5 29.8466 38.5 22C38.5 14.1533 33.0183 7.58996 25.6667 5.92163Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M5.5 16.5V27.5H12.8333L22 36.6666V7.3333L12.8333 16.5H5.5ZM30.25 22C30.25 18.755 28.38 15.9683 25.6667 14.6116V29.37C28.38 28.0316 30.25 25.245 30.25 22ZM25.6667 5.92163V9.6983C30.965 11.275 34.8333 16.1883 34.8333 22C34.8333 27.8116 30.965 32.725 25.6667 34.3016V38.0783C33.0183 36.41 38.5 29.8466 38.5 22C38.5 14.1533 33.0183 7.58996 25.6667 5.92163Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M30.25 22C30.25 18.755 28.38 15.9683 25.6667 14.6117V18.6633L30.1583 23.155C30.2133 22.7883 30.25 22.4033 30.25 22ZM34.8333 22C34.8333 23.7233 34.4667 25.3367 33.8433 26.84L36.6117 29.6083C37.8217 27.335 38.5 24.75 38.5 22C38.5 14.1533 33.0183 7.59 25.6667 5.92167V9.69833C30.965 11.275 34.8333 16.1883 34.8333 22ZM7.82833 5.5L5.5 7.82833L14.1717 16.5H5.5V27.5H12.8333L22 36.6667V24.3283L29.7917 32.12C28.5633 33.0733 27.1883 33.825 25.6667 34.2833V38.06C28.1967 37.4917 30.4883 36.3183 32.4317 34.7417L36.1717 38.5L38.5 36.1717L7.82833 5.5ZM22 7.33333L18.1683 11.165L22 14.9967V7.33333Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M30.25 22C30.25 18.755 28.38 15.9683 25.6667 14.6117V18.6633L30.1583 23.155C30.2133 22.7883 30.25 22.4033 30.25 22ZM34.8333 22C34.8333 23.7233 34.4667 25.3367 33.8433 26.84L36.6117 29.6083C37.8217 27.335 38.5 24.75 38.5 22C38.5 14.1533 33.0183 7.59 25.6667 5.92167V9.69833C30.965 11.275 34.8333 16.1883 34.8333 22ZM7.82833 5.5L5.5 7.82833L14.1717 16.5H5.5V27.5H12.8333L22 36.6667V24.3283L29.7917 32.12C28.5633 33.0733 27.1883 33.825 25.6667 34.2833V38.06C28.1967 37.4917 30.4883 36.3183 32.4317 34.7417L36.1717 38.5L38.5 36.1717L7.82833 5.5ZM22 7.33333L18.1683 11.165L22 14.9967V7.33333Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M11 11H33V33H11V11Z" fill="#0B121B"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M11 11H33V33H11V11Z" fill="#0B121B"/>
3
+ </svg>
@@ -1,3 +1,3 @@
1
- <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M38.9033 32.615L42.57 36.2817H44V32.615H38.9033ZM40.315 28.9483L40.3333 10.615C40.3333 8.58 38.6833 6.94833 36.6667 6.94833H13.2367L22.825 16.5367C23.155 16.4633 23.485 16.4083 23.8333 16.3533V12.4483L31.1667 19.2867L28.27 21.9817L38.4267 32.1383C39.545 31.5333 40.315 30.3233 40.315 28.9483ZM4.38167 2.75L2.035 5.07833L4.85833 7.90167C4.125 8.56167 3.66667 9.53333 3.66667 10.615V28.9483C3.66667 30.965 5.29833 32.615 7.33333 32.615H0V36.2817H33.2383L38.2067 41.25L40.535 38.9217L4.38167 2.75ZM12.8333 27.115C13.4017 24.4017 14.52 21.7067 16.6283 19.6717L19.5433 22.5867C16.72 23.2833 14.5933 24.75 12.8333 27.115Z" fill="black"/>
3
- </svg>
1
+ <svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M38.9033 32.615L42.57 36.2817H44V32.615H38.9033ZM40.315 28.9483L40.3333 10.615C40.3333 8.58 38.6833 6.94833 36.6667 6.94833H13.2367L22.825 16.5367C23.155 16.4633 23.485 16.4083 23.8333 16.3533V12.4483L31.1667 19.2867L28.27 21.9817L38.4267 32.1383C39.545 31.5333 40.315 30.3233 40.315 28.9483ZM4.38167 2.75L2.035 5.07833L4.85833 7.90167C4.125 8.56167 3.66667 9.53333 3.66667 10.615V28.9483C3.66667 30.965 5.29833 32.615 7.33333 32.615H0V36.2817H33.2383L38.2067 41.25L40.535 38.9217L4.38167 2.75ZM12.8333 27.115C13.4017 24.4017 14.52 21.7067 16.6283 19.6717L19.5433 22.5867C16.72 23.2833 14.5933 24.75 12.8333 27.115Z" fill="black"/>
3
+ </svg>
@@ -1,16 +1,16 @@
1
- // $column-container-width: 320px;
2
- $column-container-width: var(--max-width-dialog-list);
3
- .column-container{
4
- width: $column-container-width; // artan changed 12.01.2024
5
- // width: 100%;
6
- display: flex;
7
- flex-flow: column nowrap;
8
- }
9
- // artan changed 12.01.2024
10
- //@media only screen and (max-width: var(--min-width-screen-desktop)) {
11
- // .column-container{
12
- // width: 100%;
13
- // display: flex;
14
- // flex-flow: column nowrap;
15
- // }
16
- //}
1
+ // $column-container-width: 320px;
2
+ $column-container-width: var(--max-width-dialog-list);
3
+ .column-container{
4
+ width: $column-container-width; // artan changed 12.01.2024
5
+ // width: 100%;
6
+ display: flex;
7
+ flex-flow: column nowrap;
8
+ }
9
+ // artan changed 12.01.2024
10
+ //@media only screen and (max-width: var(--min-width-screen-desktop)) {
11
+ // .column-container{
12
+ // width: 100%;
13
+ // display: flex;
14
+ // flex-flow: column nowrap;
15
+ // }
16
+ //}