quickblox-react-ui-kit 0.4.6-beta.1 → 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.
- package/.prettierignore +4 -4
- package/.prettierrc +10 -10
- package/.storybook/main.ts +26 -26
- package/.storybook/preview.ts +16 -16
- package/LICENSE.md +18 -18
- package/dist/App.d.ts +3 -3
- package/dist/CommonTypes/BaseViewModel.d.ts +58 -58
- package/dist/CommonTypes/CommonTypes.d.ts +189 -189
- package/dist/CommonTypes/FunctionResult.d.ts +4 -4
- package/dist/Data/Creator.d.ts +30 -30
- package/dist/Data/DefaultConfigurations.d.ts +7 -7
- package/dist/Data/Stubs.d.ts +31 -31
- package/dist/Data/dto/dialog/LocalDialogDTO.d.ts +16 -16
- package/dist/Data/dto/dialog/LocalDialogsDTO.d.ts +9 -9
- package/dist/Data/dto/dialog/RemoteDialogDTO.d.ts +18 -18
- package/dist/Data/dto/dialog/RemoteDialogsDTO.d.ts +9 -9
- package/dist/Data/dto/file/LocalFileDTO.d.ts +10 -10
- package/dist/Data/dto/file/RemoteFileDTO.d.ts +10 -10
- package/dist/Data/dto/message/LocalMessageDTO.d.ts +20 -20
- package/dist/Data/dto/message/LocalMessagesDTO.d.ts +9 -9
- package/dist/Data/dto/message/RemoteMessageDTO.d.ts +23 -23
- package/dist/Data/dto/message/RemoteMessagesDTO.d.ts +9 -9
- package/dist/Data/dto/user/LocalUserDTO.d.ts +14 -14
- package/dist/Data/dto/user/LocalUsersDTO.d.ts +9 -9
- package/dist/Data/dto/user/RemoteUserDTO.d.ts +14 -14
- package/dist/Data/dto/user/RemoteUsersDTO.d.ts +9 -9
- package/dist/Data/mapper/DialogLocalDTOMapper.d.ts +17 -17
- package/dist/Data/mapper/DialogRemoteDTOMapper.d.ts +18 -18
- package/dist/Data/mapper/FileLocalDTOMapper.d.ts +8 -8
- package/dist/Data/mapper/FileRemoteDTOMapper.d.ts +8 -8
- package/dist/Data/mapper/IMapper.d.ts +4 -4
- package/dist/Data/mapper/MessageLocalDTOMapper.d.ts +8 -8
- package/dist/Data/mapper/MessageRemoteDTOMapper.d.ts +10 -10
- package/dist/Data/mapper/UserLocalDTOMapper.d.ts +9 -9
- package/dist/Data/mapper/UserRemoteDTOMapper.d.ts +9 -9
- package/dist/Data/repository/ConnectionRepository.d.ts +17 -17
- package/dist/Data/repository/DialogsRepository.d.ts +31 -31
- package/dist/Data/repository/EventMessagesRepository.d.ts +36 -36
- package/dist/Data/repository/FileRepository.d.ts +14 -14
- package/dist/Data/repository/MessagesRepository.d.ts +24 -24
- package/dist/Data/repository/UsersRepository.d.ts +18 -18
- package/dist/Data/source/AISource.d.ts +13 -13
- package/dist/Data/source/exception/LocalDataSourceException.d.ts +10 -10
- package/dist/Data/source/exception/MapperDTOException.d.ts +9 -9
- package/dist/Data/source/exception/RemoteDataSourceException.d.ts +15 -15
- package/dist/Data/source/exception/RepositoryException.d.ts +15 -15
- package/dist/Data/source/local/ChatLocalStorageDataSource.d.ts +8 -8
- package/dist/Data/source/local/ILocalDataSource.d.ts +25 -25
- package/dist/Data/source/local/ILocalFileDataSource.d.ts +7 -7
- package/dist/Data/source/local/LocalDataSource.d.ts +28 -28
- package/dist/Data/source/local/LocalFileDataSource.d.ts +8 -8
- package/dist/Data/source/remote/IRemoteDataSource.d.ts +41 -41
- package/dist/Data/source/remote/Mapper/DialogDTOMapper.d.ts +10 -10
- package/dist/Data/source/remote/Mapper/FileDTOMapper.d.ts +7 -7
- package/dist/Data/source/remote/Mapper/IDTOMapper.d.ts +4 -4
- package/dist/Data/source/remote/Mapper/MessageDTOMapper.d.ts +25 -25
- package/dist/Data/source/remote/Mapper/UserDTOMapper.d.ts +7 -7
- package/dist/Data/source/remote/RemoteDataSource.d.ts +100 -94
- package/dist/Domain/entity/Chat.d.ts +4 -4
- package/dist/Domain/entity/ChatMessageAttachmentEntity.d.ts +14 -14
- package/dist/Domain/entity/CustomDataEntity.d.ts +3 -3
- package/dist/Domain/entity/DialogEntity.d.ts +13 -13
- package/dist/Domain/entity/DialogEventInfo.d.ts +18 -18
- package/dist/Domain/entity/DialogTypes.d.ts +5 -5
- package/dist/Domain/entity/EventMessageType.d.ts +5 -5
- package/dist/Domain/entity/FileEntity.d.ts +10 -10
- package/dist/Domain/entity/FileTypes.d.ts +6 -6
- package/dist/Domain/entity/GroupDialogEntity.d.ts +19 -19
- package/dist/Domain/entity/LastMessageEntity.d.ts +5 -5
- package/dist/Domain/entity/MessageEntity.d.ts +24 -24
- package/dist/Domain/entity/NotificationTypes.d.ts +6 -6
- package/dist/Domain/entity/PrivateDialogEntity.d.ts +16 -16
- package/dist/Domain/entity/PublicDialogEntity.d.ts +18 -18
- package/dist/Domain/entity/UserEntity.d.ts +13 -13
- package/dist/Domain/exception/domain/DomainExecption.d.ts +4 -4
- package/dist/Domain/repository/IDialogsRepository.d.ts +21 -21
- package/dist/Domain/repository/IFileRepository.d.ts +6 -6
- package/dist/Domain/repository/IMessagesRepository.d.ts +15 -15
- package/dist/Domain/repository/IUsersRepository.d.ts +8 -8
- package/dist/Domain/repository/Pagination.d.ts +16 -16
- package/dist/Domain/use_cases/CreateDialogUseCase.d.ts +13 -13
- package/dist/Domain/use_cases/ForwardMessagesUseCase.d.ts +13 -13
- package/dist/Domain/use_cases/GetAllDialogsUseCase.d.ts +8 -8
- package/dist/Domain/use_cases/GetAllDialogsUseCaseWithMock.d.ts +10 -10
- package/dist/Domain/use_cases/GetAllMessagesForDialog.d.ts +11 -11
- package/dist/Domain/use_cases/GetAllUsersUseCase.d.ts +11 -11
- package/dist/Domain/use_cases/GetDialogByIdUseCase.d.ts +9 -9
- package/dist/Domain/use_cases/GetUsersByIdsUseCase.d.ts +9 -9
- package/dist/Domain/use_cases/LeaveDialogUseCase.d.ts +19 -19
- package/dist/Domain/use_cases/RemoveUsersFromTheDialogUseCase.d.ts +13 -13
- package/dist/Domain/use_cases/ReplyMessagesUseCase.d.ts +10 -10
- package/dist/Domain/use_cases/SendTextMessageUseCase.d.ts +9 -9
- package/dist/Domain/use_cases/SubscribeToDialogEventsUseCase.d.ts +17 -17
- package/dist/Domain/use_cases/SubscribeToDialogsUpdatesUseCase.d.ts +11 -11
- package/dist/Domain/use_cases/SubscribeToDialogsUpdatesUseCaseWithMock.d.ts +11 -11
- package/dist/Domain/use_cases/SyncDialogsUseCase.d.ts +23 -23
- package/dist/Domain/use_cases/UpdateCurrentDialogInDataSourceUseCase.d.ts +12 -12
- package/dist/Domain/use_cases/UpdateDialogUseCase.d.ts +13 -13
- package/dist/Domain/use_cases/UploadFileUseCase.d.ts +9 -9
- package/dist/Domain/use_cases/UserTypingMessageUseCase.d.ts +13 -13
- package/dist/Domain/use_cases/ai/AIAnswerAssistUseCase.d.ts +13 -13
- package/dist/Domain/use_cases/ai/AIAnswerAssistWithProxyUseCase.d.ts +13 -13
- package/dist/Domain/use_cases/ai/AIAnswerAssistWithSDKUseCase.d.ts +11 -11
- package/dist/Domain/use_cases/ai/AIRephraseUseCase.d.ts +15 -15
- package/dist/Domain/use_cases/ai/AIRephraseWithProxyUseCase.d.ts +15 -15
- package/dist/Domain/use_cases/ai/AITranslateUseCase.d.ts +14 -14
- package/dist/Domain/use_cases/ai/AITranslateWithProxyUseCase.d.ts +14 -14
- package/dist/Domain/use_cases/ai/AITranslateWithSDKUseCase.d.ts +12 -12
- package/dist/Domain/use_cases/base/BaseUseCase.d.ts +5 -5
- package/dist/Domain/use_cases/base/IUseCase.d.ts +5 -5
- package/dist/Domain/use_cases/base/Subscribable/ISubscribable.d.ts +5 -5
- package/dist/Domain/use_cases/base/Subscribable/SubscriptionPerformer.d.ts +24 -24
- package/dist/Presentation/Views/Dialog/AIComponents/AIAssist/AIAssist.d.ts +16 -16
- package/dist/Presentation/Views/Dialog/AIComponents/AIAssistComponent/AIAssistComponent.d.ts +8 -8
- package/dist/Presentation/Views/Dialog/AIComponents/AITranslate/AITranslate.d.ts +20 -20
- package/dist/Presentation/Views/Dialog/AIComponents/AITranslateComponent/AITranslateComponent.d.ts +11 -11
- package/dist/Presentation/Views/Dialog/AIWidgets/AIMessageWidget.d.ts +25 -25
- package/dist/Presentation/Views/Dialog/AIWidgets/AIRephraseWidget/AIRephraseWidget.d.ts +23 -23
- package/dist/Presentation/Views/Dialog/AIWidgets/AIWidgetActions/AIWidgetActions.d.ts +15 -15
- package/dist/Presentation/Views/Dialog/AIWidgets/ErrorMessageIcon.d.ts +10 -10
- package/dist/Presentation/Views/Dialog/AIWidgets/SliderMenu.d.ts +23 -23
- package/dist/Presentation/Views/Dialog/AIWidgets/Tone.d.ts +7 -7
- package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidget.d.ts +2 -2
- package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidgetWithProxy.d.ts +2 -2
- package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIAssistAnswerWidgetWithSDK.d.ts +3 -3
- package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIRephraseMessageWidget.d.ts +2 -2
- package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAIRephraseMessageWidgetWithProxy.d.ts +2 -2
- package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidget.d.ts +2 -2
- package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidgetWithProxy.d.ts +2 -2
- package/dist/Presentation/Views/Dialog/AIWidgets/UseDefaultAITranslateWidgetWithSDK.d.ts +3 -3
- package/dist/Presentation/Views/Dialog/AIWidgets/useDefaultVoiceInputWidget.d.ts +2 -2
- package/dist/Presentation/Views/Dialog/ContextMenu/ContextMenu.d.ts +12 -12
- package/dist/Presentation/Views/Dialog/Dialog.d.ts +18 -18
- package/dist/Presentation/Views/Dialog/DialogHeader/DialogBackIcon/DialogBackIcon.d.ts +8 -8
- package/dist/Presentation/Views/Dialog/DialogHeader/DialogHeader.d.ts +13 -13
- package/dist/Presentation/Views/Dialog/DialogHeader/DialogInfoIcon/DialogInfoIcon.d.ts +10 -10
- package/dist/Presentation/Views/Dialog/DialogViewModel.d.ts +18 -18
- package/dist/Presentation/Views/Dialog/DropDownMenu/DropDownMenu.d.ts +25 -25
- package/dist/Presentation/Views/Dialog/DropDownMenu/ItemDropDownMenu/ItemDropDownMenu.d.ts +11 -11
- package/dist/Presentation/Views/Dialog/ErrorToast/ErrorToast.d.ts +7 -7
- package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogListItem/DialogListItem.d.ts +14 -14
- package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogsWithSearch.d.ts +12 -12
- package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/SearchComponent/SearchComponent.d.ts +8 -8
- package/dist/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessageFlow.d.ts +14 -14
- package/dist/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessagePreview/ForwardMessagePreview.d.ts +9 -9
- package/dist/Presentation/Views/Dialog/ForwardMessageFlow/InputForForwarding/InputForForwarding.d.ts +11 -11
- package/dist/Presentation/Views/Dialog/InputMessage/InputMessage.d.ts +21 -21
- package/dist/Presentation/Views/Dialog/Message/HighLightLink/HighLightLink.d.ts +9 -9
- package/dist/Presentation/Views/Dialog/Message/IncomingForwardedMessage/IncomingForwardedMessage.d.ts +27 -27
- package/dist/Presentation/Views/Dialog/Message/IncomingMessage/AvatarContentIncomingUser/AvatarContentIncomingUser.d.ts +5 -5
- package/dist/Presentation/Views/Dialog/Message/IncomingMessage/IncomingMessage.d.ts +30 -30
- package/dist/Presentation/Views/Dialog/Message/IncomingMessage/MessageContentComponent/MessageContentComponent.d.ts +12 -12
- package/dist/Presentation/Views/Dialog/Message/IncomingRepliedMessage/IncomingRepliedMessage.d.ts +27 -27
- package/dist/Presentation/Views/Dialog/Message/Message.d.ts +24 -24
- package/dist/Presentation/Views/Dialog/Message/MessageAttachment/AudioAttachment/AudioAttachment.d.ts +8 -8
- package/dist/Presentation/Views/Dialog/Message/MessageAttachment/DefaultAttachment/DefaultAttachment.d.ts +8 -8
- package/dist/Presentation/Views/Dialog/Message/MessageAttachment/ImageAttachment/ImageAttachment.d.ts +8 -8
- package/dist/Presentation/Views/Dialog/Message/MessageAttachment/MessageAttachment.d.ts +11 -11
- package/dist/Presentation/Views/Dialog/Message/MessageAttachment/VideoAttachment/VideoAttachment.d.ts +8 -8
- package/dist/Presentation/Views/Dialog/Message/MessageContextMenu/MessageContextMenu.d.ts +14 -14
- package/dist/Presentation/Views/Dialog/Message/OutgoinForwardedMessage/OutgoinForwardedMessage.d.ts +18 -18
- package/dist/Presentation/Views/Dialog/Message/OutgoingMessage/OutgoingMessage.d.ts +15 -15
- package/dist/Presentation/Views/Dialog/Message/OutgoingRepliedMessage/OutgoingRepliedMessage.d.ts +16 -16
- package/dist/Presentation/Views/Dialog/MessageContextMenu/MessageContextMenu.d.ts +12 -12
- package/dist/Presentation/Views/Dialog/MessageItem/MessageItem.d.ts +24 -23
- package/dist/Presentation/Views/Dialog/SystemDateBanner/SystemDateBanner.d.ts +7 -7
- package/dist/Presentation/Views/Dialog/SystemMessageBanner/SystemMessageBanner.d.ts +7 -7
- package/dist/Presentation/Views/Dialog/VoiceMessage/VoiceMessage.d.ts +8 -8
- package/dist/Presentation/Views/Dialog/useDialogViewModel.d.ts +4 -4
- package/dist/Presentation/Views/DialogInfo/DialogInfo.d.ts +21 -21
- package/dist/Presentation/Views/DialogInfo/DialogMemberButton/DialogMembersButton.d.ts +10 -10
- package/dist/Presentation/Views/DialogInfo/MembersList/MembersList.d.ts +11 -11
- package/dist/Presentation/Views/DialogInfo/UsersList/SingleUser/SingleUser.d.ts +9 -9
- package/dist/Presentation/Views/DialogInfo/UsersList/UsersList.d.ts +11 -11
- package/dist/Presentation/Views/DialogInfo/UsersList/UsersListViewModel.d.ts +11 -11
- package/dist/Presentation/Views/DialogInfo/UsersList/useUsersListViewModel.d.ts +3 -3
- package/dist/Presentation/Views/DialogList/DialogList.d.ts +14 -14
- package/dist/Presentation/Views/DialogList/DialogListViewModel.d.ts +17 -17
- package/dist/Presentation/Views/DialogList/useDialogListViewModel.d.ts +4 -4
- package/dist/Presentation/Views/DialogListHeader/DialogListHeader.d.ts +15 -15
- package/dist/Presentation/Views/EditDialog/EditDialog.d.ts +20 -20
- package/dist/Presentation/Views/EditDialog/UserAvatar/UserAvatar.d.ts +11 -11
- package/dist/Presentation/Views/Flow/CreateDialog/CreateDialog.d.ts +13 -13
- package/dist/Presentation/Views/Flow/CreateDialogFlow/CreateNewDialogFlow.d.ts +11 -11
- package/dist/Presentation/Views/Flow/LeaveDialogFlow/LeaveDialogFlow.d.ts +9 -9
- package/dist/Presentation/Views/InviteMembers/InviteMembers.d.ts +16 -16
- package/dist/Presentation/Views/InviteMembers/InviteMembersViewModel.d.ts +13 -13
- package/dist/Presentation/Views/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.d.ts +13 -13
- package/dist/Presentation/Views/InviteMembers/InviteUsersResultViewModel.d.ts +6 -6
- package/dist/Presentation/Views/InviteMembers/NotFoundContent/NotFoundContent.d.ts +7 -7
- package/dist/Presentation/Views/InviteMembers/useInviteMembersViewModel.d.ts +2 -2
- package/dist/Presentation/Views/PreviewDialog/PreviewDialog.d.ts +37 -37
- package/dist/Presentation/Views/PreviewDialog/PreviewDialogContextMenu/PreviewDialogContextMenu.d.ts +12 -12
- package/dist/Presentation/Views/PreviewDialog/PreviewDialogViewModel.d.ts +11 -11
- package/dist/Presentation/Views/YesNoQuestion/YesNoQuestion.d.ts +13 -13
- package/dist/Presentation/components/Button.d.ts +4 -4
- package/dist/Presentation/components/Navbar.d.ts +1 -1
- package/dist/Presentation/components/TextInput.d.ts +1 -1
- package/dist/Presentation/components/UI/Buttons/ActiveButton/ActiveButton.d.ts +9 -9
- package/dist/Presentation/components/UI/Buttons/MainBoundedButton/MainBoundedButton.d.ts +11 -11
- package/dist/Presentation/components/UI/Buttons/MainButton/MainButton.d.ts +21 -21
- package/dist/Presentation/components/UI/Elements/SwitchButton/SwitchButton.d.ts +11 -11
- package/dist/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.d.ts +12 -12
- package/dist/Presentation/components/UI/Placeholders/LoaderComponent/LoaderComponent.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.d.ts +11 -11
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/AIWidget/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/BookIcon/BookIcon.d.ts +2 -2
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/BotIcon/BotIcon.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/HammerIcon/index.d.ts +2 -2
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/HandshakeIcon/index.d.ts +2 -2
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/MuscleIcon/index.d.ts +2 -2
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/NecktieIcon/index.d.ts +2 -2
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/NeutralFaceIcon/index.d.ts +2 -2
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/PalmsUpTogetherIcon/index.d.ts +2 -2
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/PerformingArtsIcon/index.d.ts +2 -2
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/PointUpIcon/index.d.ts +2 -2
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/SmileyIcon/index.d.ts +2 -2
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/SmirkIcon/index.d.ts +2 -2
- package/dist/Presentation/components/UI/svgs/Icons/AIWidgets/WhiteCheckMarkIcon/index.d.ts +2 -2
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Add/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/AddContact/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Archive/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/AssistAnswer/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Copy/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Delete/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Download/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Edit/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/EditDots/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Emoji/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/ForwardFilled/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Hungup/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/IncomeCall/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Like/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/NewChat/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/OutcomeCall/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Phone/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/PhoneFilled/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Remove/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Remove2/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/ReplyFilled/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Send/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Share/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Summarize/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/SwapCamera/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Tone/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Unarchive/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/VideoIcon/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Actions/Voice/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Contents/Brodcast/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Contents/Chat/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Contents/ChatFilled/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Contents/Conference/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Contents/Contact/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Contents/ContactFilled/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Contents/GroupChat/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Contents/Notifications/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Contents/PrivateChat/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Contents/PublicChannel/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Contents/Stream/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Contents/StreamFilled/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Contents/User/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/IconsCommonTypes.d.ts +6 -6
- package/dist/Presentation/components/UI/svgs/Icons/Media/Attachment/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Media/AudioFile/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Media/BrokenFile/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Media/Camera/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Media/GifFile/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Media/ImageEmpty/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Media/ImageFile/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Media/ImageFilled/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Media/LinkWeb/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Media/Location/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Media/TextDocument/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Media/Translate/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Media/VideoFile/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Moderation/Admin/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Moderation/Banned/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Moderation/Freeze/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Moderation/Moderations/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Moderation/Muted/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/ArrowLeft/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/ArrowRight/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Back/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Close/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Down/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Leave/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/More/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Next/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Plus/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Refresh/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Search/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/Settings/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Navigation/SettingsField/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Status/Error/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Status/Help/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Status/Information/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Status/InformationFill/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Status/Loader/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Status/Mention/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Status/Sent/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Status/ViewedDelivered/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/CameraOff/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/CameraOn/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/CheckOff/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/CheckOn/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Favourite/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/FavouriteFilled/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/FullScreen/inex.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Hide/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/ImagePlay/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Louder/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/MicOff/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/MicOn/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Minimize/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/NotifyOff/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/NotifyOn/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Pause/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Quite/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Record/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Screenshare/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Show/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/Speaker/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/SpeakerOff/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/StopRecord/index.d.ts +3 -3
- package/dist/Presentation/components/UI/svgs/Icons/Toggle/StopShare/index.d.ts +3 -3
- package/dist/Presentation/components/containers/ColumnContainer/ColumnContainer.d.ts +5 -5
- package/dist/Presentation/components/containers/RowCenterContainer/RowCenterContainer.d.ts +33 -33
- package/dist/Presentation/components/containers/RowLeftContainer/RowLeftContainer.d.ts +33 -33
- package/dist/Presentation/components/containers/RowRightContainer/RowRightContainer.d.ts +33 -33
- package/dist/Presentation/components/containers/ScrollableContainer/ScrollableContainer.d.ts +16 -16
- package/dist/Presentation/components/containers/SectionList/hooks/createUseComponent.d.ts +3 -3
- package/dist/Presentation/components/containers/SectionList/hooks/index.d.ts +4 -4
- package/dist/Presentation/components/containers/SectionList/hooks/useMobileLayout.d.ts +1 -1
- package/dist/Presentation/components/containers/SectionList/hooks/usePrevious.d.ts +1 -1
- package/dist/Presentation/components/containers/SectionList/hooks/useVisibility.d.ts +1 -1
- package/dist/Presentation/components/containers/SectionList/index.d.ts +3 -3
- package/dist/Presentation/components/containers/SectionList/useComponent.d.ts +28 -28
- package/dist/Presentation/icons/actions/index.d.ts +26 -26
- package/dist/Presentation/icons/contents/index.d.ts +13 -13
- package/dist/Presentation/icons/index.d.ts +7 -7
- package/dist/Presentation/icons/media/index.d.ts +12 -12
- package/dist/Presentation/icons/moderation/index.d.ts +5 -5
- package/dist/Presentation/icons/navigation/index.d.ts +12 -12
- package/dist/Presentation/icons/status/index.d.ts +7 -7
- package/dist/Presentation/icons/toggle/index.d.ts +23 -23
- package/dist/Presentation/layouts/Desktop/DesktopLayout.d.ts +13 -13
- package/dist/Presentation/layouts/Desktop/QuickBloxUIKitDesktopLayout.d.ts +6 -6
- package/dist/Presentation/layouts/LayoutCommonTypes.d.ts +6 -6
- package/dist/Presentation/layouts/TestStage/CompanyLogo/CompanyLogo.d.ts +3 -3
- package/dist/Presentation/layouts/TestStage/LoginView/Login.d.ts +9 -9
- package/dist/Presentation/providers/ProviderProps.d.ts +4 -4
- package/dist/Presentation/providers/QuickBloxUIKitProvider/QuickBloxUIKitProvider.d.ts +47 -47
- package/dist/Presentation/providers/QuickBloxUIKitProvider/useEventMessagesRepository.d.ts +3 -3
- package/dist/Presentation/providers/QuickBloxUIKitProvider/useQBConnection.d.ts +8 -8
- package/dist/Presentation/providers/QuickBloxUIKitProvider/useQbInitializedDataContext.d.ts +3 -3
- package/dist/Presentation/providers/QuickBloxUIKitProvider/useQbUIKitDataContext.d.ts +3 -3
- package/dist/Presentation/themes/DarkTheme.d.ts +21 -21
- package/dist/Presentation/themes/DefaultThemes/CustomTheme.d.ts +21 -21
- package/dist/Presentation/themes/DefaultThemes/DefaultTheme.d.ts +21 -21
- package/dist/Presentation/themes/LightTheme.d.ts +21 -21
- package/dist/Presentation/themes/ThemeScheme.d.ts +43 -43
- package/dist/Presentation/themes/UiKitTheme.d.ts +20 -20
- package/dist/Presentation/ui-components/Avatar/Avatar.d.ts +9 -9
- package/dist/Presentation/ui-components/Avatar/avatar.stories.d.ts +8 -8
- package/dist/Presentation/ui-components/Badge/Badge.d.ts +9 -9
- package/dist/Presentation/ui-components/Badge/Badge.stories.d.ts +8 -8
- package/dist/Presentation/ui-components/Button/Button.d.ts +12 -12
- package/dist/Presentation/ui-components/Button/Button.stories.d.ts +83 -83
- package/dist/Presentation/ui-components/CheckBox/CheckBox.d.ts +8 -8
- package/dist/Presentation/ui-components/DialogBanner/DialogBanner.d.ts +7 -7
- package/dist/Presentation/ui-components/DialogBanner/DialogBanner.stories.d.ts +34 -34
- package/dist/Presentation/ui-components/DialogItemPreview/DialogItemPreview.d.ts +16 -16
- package/dist/Presentation/ui-components/DialogItemPreview/DialogItemPreview.stories.d.ts +9 -9
- package/dist/Presentation/ui-components/DialogWindow/DialogWindow.d.ts +12 -12
- package/dist/Presentation/ui-components/DialogWindow/DialogWindow.stories.d.ts +6 -6
- package/dist/Presentation/ui-components/Dropdown/Dropdown.d.ts +12 -12
- package/dist/Presentation/ui-components/Dropdown/Dropdown.stories.d.ts +28 -28
- package/dist/Presentation/ui-components/Dropdown/DropdownOption.d.ts +13 -13
- package/dist/Presentation/ui-components/Header/Header.d.ts +13 -13
- package/dist/Presentation/ui-components/Header/Header.stories.d.ts +9 -9
- package/dist/Presentation/ui-components/Loader/Loader.d.ts +7 -7
- package/dist/Presentation/ui-components/Loader/Loader.stories.d.ts +44 -44
- package/dist/Presentation/ui-components/Message/Bubble/AttachmentBubble/AttachmentBubble.d.ts +7 -7
- package/dist/Presentation/ui-components/Message/Bubble/AudioBubble/AudioBubble.d.ts +10 -10
- package/dist/Presentation/ui-components/Message/Bubble/FileBubble/FileBubble.d.ts +8 -8
- package/dist/Presentation/ui-components/Message/Bubble/ImageBubble/ImageBubble.d.ts +7 -7
- package/dist/Presentation/ui-components/Message/Bubble/TextBubble/TextBubble.d.ts +7 -7
- package/dist/Presentation/ui-components/Message/Bubble/VideoBubble/VideoBubble.d.ts +8 -8
- package/dist/Presentation/ui-components/Message/FileUrl/FileUrl.d.ts +7 -7
- package/dist/Presentation/ui-components/Message/Message.d.ts +18 -18
- package/dist/Presentation/ui-components/Message/Message.stories.d.ts +8 -8
- package/dist/Presentation/ui-components/Message/MessageCaption/MessageCaption.d.ts +8 -8
- package/dist/Presentation/ui-components/Message/TimeAndStatus/TimeAndStatus.d.ts +7 -7
- package/dist/Presentation/ui-components/MessageInput/AttachmentUploader/AttachmentUploader.d.ts +8 -8
- package/dist/Presentation/ui-components/MessageInput/MessageInput.d.ts +21 -21
- package/dist/Presentation/ui-components/MessageInput/MessageInput.stories.d.ts +8 -8
- package/dist/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyImagePreviewAttachment/ReplyImagePreviewAttachment.d.ts +8 -8
- package/dist/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyMessagePreview.d.ts +11 -11
- package/dist/Presentation/ui-components/MessageInput/VoiceRecordingProgress/VoiceRecordingProgress.d.ts +11 -11
- package/dist/Presentation/ui-components/MessageSeparator/MessageSeparator.d.ts +7 -7
- package/dist/Presentation/ui-components/MessageSeparator/MessageSeparator.stories.d.ts +44 -44
- package/dist/Presentation/ui-components/Placeholder/Placeholder.d.ts +10 -10
- package/dist/Presentation/ui-components/Placeholder/Placeholder.stories.d.ts +7 -7
- package/dist/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.d.ts +8 -8
- package/dist/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.stories.d.ts +9 -9
- package/dist/Presentation/ui-components/SettingsItem/SettingsItem.d.ts +12 -12
- package/dist/Presentation/ui-components/SettingsItem/SettingsItem.stories.d.ts +8 -8
- package/dist/Presentation/ui-components/TextField/TextField.d.ts +13 -13
- package/dist/Presentation/ui-components/TextField/TextField.stories.d.ts +8 -8
- package/dist/Presentation/ui-components/Toast/Toast.stories.d.ts +6 -6
- package/dist/Presentation/ui-components/Toast/ToastProvider.d.ts +8 -8
- package/dist/Presentation/ui-components/UserListItem/UserListItem.d.ts +10 -10
- package/dist/Presentation/ui-components/UserListItem/UserListItem.stories.d.ts +86 -86
- package/dist/Presentation/ui-components/index.d.ts +19 -19
- package/dist/QBconfig.d.ts +2 -2
- package/dist/hooks/useModal.d.ts +5 -5
- package/dist/hooks/useQuickBloxUIKit.d.ts +108 -108
- package/dist/index-ui.d.ts +62 -60
- package/dist/index-ui.js +20829 -20716
- package/dist/index-ui.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/qb-api-calls/index.d.ts +79 -79
- package/dist/setupTests.d.ts +1 -1
- package/dist/utils/DateTimeFormatter.d.ts +6 -6
- package/dist/utils/formatFileSize.d.ts +1 -1
- package/dist/utils/parse.d.ts +7 -7
- package/dist/utils/utils.d.ts +12 -12
- package/package.json +114 -114
- package/public/index.html +47 -47
- package/public/manifest.json +25 -25
- package/public/robots.txt +3 -3
- package/src/App.scss +3 -3
- package/src/Data/Creator.ts +4 -2
- package/src/Data/source/remote/Mapper/DialogDTOMapper.ts +26 -7
- package/src/Data/source/remote/Mapper/MessageDTOMapper.ts +7 -1
- package/src/Data/source/remote/RemoteDataSource.ts +24 -10
- package/src/Domain/use_cases/GetUsersByIdsUseCase.ts +6 -3
- package/src/Presentation/Views/Dialog/AIComponents/AIAssist/AIAssist.scss +39 -39
- package/src/Presentation/Views/Dialog/AIComponents/AIAssistComponent/AIAssistComponent.scss +32 -32
- package/src/Presentation/Views/Dialog/AIComponents/AITranslate/AITranslate.scss +77 -77
- package/src/Presentation/Views/Dialog/AIComponents/AITranslateComponent/AITranslateComponent.scss +47 -47
- package/src/Presentation/Views/Dialog/AIWidgets/AIRephraseWidget/AIRephraseWidget.scss +25 -25
- package/src/Presentation/Views/Dialog/AIWidgets/AIWidgetActions/AIWidgetActions.scss +55 -55
- package/src/Presentation/Views/Dialog/ContextMenu/ContextMenu.scss +58 -58
- package/src/Presentation/Views/Dialog/Dialog.scss +368 -368
- package/src/Presentation/Views/Dialog/DialogHeader/DialogBackIcon/DialogBackIcon.scss +29 -29
- package/src/Presentation/Views/Dialog/DialogHeader/DialogHeader.scss +114 -114
- package/src/Presentation/Views/Dialog/DialogHeader/DialogInfoIcon/DialogInfoIcon.scss +53 -53
- package/src/Presentation/Views/Dialog/DropDownMenu/DropDownMenu.scss +84 -84
- package/src/Presentation/Views/Dialog/DropDownMenu/ItemDropDownMenu/ItemDropDownMenu.scss +50 -50
- package/src/Presentation/Views/Dialog/ErrorToast/ErrorToast.scss +26 -26
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogListItem/DialogListItem.scss +74 -74
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogsWithSearch.scss +50 -50
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/SearchComponent/SearchComponent.scss +98 -98
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessageFlow.scss +159 -159
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessagePreview/ForwardMessagePreview.scss +100 -100
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/InputForForwarding/InputForForwarding.scss +95 -95
- package/src/Presentation/Views/Dialog/InputMessage/InputMessage.scss +92 -92
- package/src/Presentation/Views/Dialog/Message/HighLightLink/HighLightLink.scss +97 -97
- package/src/Presentation/Views/Dialog/Message/IncomingForwardedMessage/IncomingForwardedMessage.scss +250 -250
- package/src/Presentation/Views/Dialog/Message/IncomingMessage/AvatarContentIncomingUser/AvatarContentIncomingUser.scss +22 -22
- package/src/Presentation/Views/Dialog/Message/IncomingMessage/IncomingMessage.scss +241 -241
- package/src/Presentation/Views/Dialog/Message/IncomingMessage/MessageContentComponent/MessageContentComponent.scss +4 -4
- package/src/Presentation/Views/Dialog/Message/IncomingRepliedMessage/IncomingRepliedMessage.scss +250 -250
- package/src/Presentation/Views/Dialog/Message/MessageAttachment/AudioAttachment/AudioAttachment.scss +31 -31
- package/src/Presentation/Views/Dialog/Message/MessageAttachment/DefaultAttachment/DefaultAttachment.scss +76 -76
- package/src/Presentation/Views/Dialog/Message/MessageAttachment/ImageAttachment/ImageAttachment.scss +14 -14
- package/src/Presentation/Views/Dialog/Message/MessageAttachment/VideoAttachment/VideoAttachment.scss +18 -18
- package/src/Presentation/Views/Dialog/Message/MessageContextMenu/MessageContextMenu.scss +10 -10
- package/src/Presentation/Views/Dialog/Message/OutgoinForwardedMessage/OutgoinForwardedMessage.scss +160 -160
- package/src/Presentation/Views/Dialog/Message/OutgoingMessage/OutgoingMessage.scss +122 -122
- package/src/Presentation/Views/Dialog/Message/OutgoingRepliedMessage/OutgoingRepliedMessage.scss +155 -155
- package/src/Presentation/Views/Dialog/MessageContextMenu/MessageContextMenu.scss +19 -19
- package/src/Presentation/Views/Dialog/MessageItem/MessageItem.scss +21 -21
- package/src/Presentation/Views/Dialog/MessageItem/MessageItem.tsx +12 -8
- package/src/Presentation/Views/Dialog/SystemDateBanner/SystemDateBanner.scss +23 -23
- package/src/Presentation/Views/Dialog/SystemMessageBanner/SystemMessageBanner.scss +21 -21
- package/src/Presentation/Views/DialogInfo/DialogInfo.scss +237 -237
- package/src/Presentation/Views/DialogInfo/DialogMemberButton/DialogMembersButton.scss +42 -42
- package/src/Presentation/Views/DialogInfo/MembersList/MembersList.scss +85 -85
- package/src/Presentation/Views/DialogInfo/UsersList/SingleUser/SingleUser.scss +66 -66
- package/src/Presentation/Views/DialogList/DialogList.scss +150 -150
- package/src/Presentation/Views/DialogListHeader/DialogListHeader.scss +68 -68
- package/src/Presentation/Views/EditDialog/EditDialog.scss +175 -175
- package/src/Presentation/Views/EditDialog/UserAvatar/UserAvatar.scss +32 -32
- package/src/Presentation/Views/Flow/CreateDialog/CreateDialog.scss +93 -93
- package/src/Presentation/Views/Flow/CreateDialog/CreateDialog.tsx +12 -12
- package/src/Presentation/Views/InviteMembers/InviteMembers.scss +202 -202
- package/src/Presentation/Views/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox.scss +90 -90
- package/src/Presentation/Views/InviteMembers/NotFoundContent/NotFoundContent.scss +38 -38
- package/src/Presentation/Views/Navigation/More.svg +7 -7
- package/src/Presentation/Views/PreviewDialog/PreviewDialog.scss +211 -211
- package/src/Presentation/Views/PreviewDialog/PreviewDialogContextMenu/PreviewDialogContextMenu.scss +9 -9
- package/src/Presentation/Views/YesNoQuestion/YesNoQuestion.scss +11 -11
- package/src/Presentation/components/Button.js +4 -4
- package/src/Presentation/components/TextInput.js +9 -9
- package/src/Presentation/components/UI/Buttons/MainButton/MainButton.css +103 -103
- package/src/Presentation/components/UI/Elements/SwitchButton/SwitchButton.scss +61 -61
- package/src/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.scss +74 -74
- package/src/Presentation/components/UI/Placeholders/LoaderComponent/LoaderComponent.scss +21 -21
- package/src/Presentation/components/UI/svgs/ActiveSvg/ActiveSvg.scss +3 -3
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/AIWidget/Send.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/AIWidgets/BotIcon/BotIcon.svg +5 -5
- package/src/Presentation/components/UI/svgs/Icons/Actions/Add/Add.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/AddContact/Add contact.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Archive/Archive.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/AssistAnswer/AssistAnswer.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Copy/Copy.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Delete/Delete.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Download/Download.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Edit/Edit.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/EditDots/EditDots.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Emoji/Emoji.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/ForwardFilled/Forward filled.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Hungup/Hungup.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/IncomeCall/Income call.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Like/Like.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/NewChat/New chat.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/OutcomeCall/Outcome call.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Phone/Phone.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/PhoneFilled/Phone filled.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Remove/Remove.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Remove2/Remove2.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/ReplyFilled/Reply filled.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Send/Send.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Share/Share.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Summarize/Summarize.svg +6 -6
- package/src/Presentation/components/UI/svgs/Icons/Actions/SwapCamera/Swap camera.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Tone/Tone.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Unarchive/Unarchive.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/VideoIcon/Video.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Actions/Voice/Voice.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/Brodcast/Broadcast.svg +7 -7
- package/src/Presentation/components/UI/svgs/Icons/Contents/Chat/Chat.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/ChatFilled/Chat filled.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/Conference/Conference.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/Contact/Contact.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/ContactFilled/Contact filled.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/GroupChat/Group chat.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/Notifications/Notifications.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/PrivateChat/Private chat.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/PublicChannel/Public channel.svg +7 -7
- package/src/Presentation/components/UI/svgs/Icons/Contents/Stream/Stream.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/StreamFilled/Stream filled.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Contents/User/User.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/Attachment/Attachment.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/AudioFile/Audio file.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/BrokenFile/Broken file.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/Camera/Camera.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/GifFile/GIF file.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/ImageEmpty/Image.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/ImageFile/File.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/ImageFilled/Image filled.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/LinkWeb/Link.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/Location/Location.svg +4 -4
- package/src/Presentation/components/UI/svgs/Icons/Media/TextDocument/Text document.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/Translate/Translate.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Media/VideoFile/Video file.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Admin/Admin.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Banned/Banned.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Freeze/Freeze.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Moderations/Moderations.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Moderation/Muted/Muted.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowLeft/Arrow left.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/ArrowRight/Arrow right.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Back/Back.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Close/Close.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Down/Down.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Leave/Leave.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/More/More.svg +7 -7
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Next/Next.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Plus/Plus.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Refresh/Refresh.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Search/Search.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/Settings/Settings.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Navigation/SettingsField/Settings filled.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/Error/Error.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/Help/Help.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/Information/Information.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/Loader/Loader.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/Mention/Mention.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/Sent/Sent.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Status/ViewedDelivered/Viewed_Delivered.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOff/Camera off.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CameraOn/Camera on.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOff/Check off.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/CheckOn/Check on.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Favourite/Favourite.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/FavouriteFilled/Favourite filled.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/FullScreen/Full screen.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Hide/Hide.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/ImagePlay/Play.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Louder/Louder.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOff/Mic off.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/MicOn/Mic on.svg +4 -4
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Minimize/Minimize.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOff/Notify off.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/NotifyOn/Notify on.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Pause/Pause.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Quite/Quite.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Record/Record.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Screenshare/Screenshare.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Show/Show.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/Speaker/Speaker.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/SpeakerOff/Speaker off.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/StopRecord/Stop record.svg +3 -3
- package/src/Presentation/components/UI/svgs/Icons/Toggle/StopShare/Stop share.svg +3 -3
- package/src/Presentation/components/containers/ColumnContainer/ColumnContainer.scss +16 -16
- package/src/Presentation/components/containers/RowCenterContainer/RowCenterContainer.scss +45 -45
- package/src/Presentation/components/containers/RowLeftContainer/RowLeftContainer.scss +45 -45
- package/src/Presentation/components/containers/RowRightContainer/RowRightContainer.scss +46 -46
- package/src/Presentation/components/containers/ScrollableContainer/ScrollableContainer.scss +45 -45
- package/src/Presentation/components/containers/SectionList/styles.css +50 -50
- package/src/Presentation/icons/actions/add-contact.svg +3 -3
- package/src/Presentation/icons/actions/add.svg +3 -3
- package/src/Presentation/icons/actions/archive.svg +3 -3
- package/src/Presentation/icons/actions/copy.svg +3 -3
- package/src/Presentation/icons/actions/delete.svg +3 -3
- package/src/Presentation/icons/actions/download.svg +3 -3
- package/src/Presentation/icons/actions/edit.svg +3 -3
- package/src/Presentation/icons/actions/emoji.svg +3 -3
- package/src/Presentation/icons/actions/forward-filled.svg +3 -3
- package/src/Presentation/icons/actions/hungup.svg +3 -3
- package/src/Presentation/icons/actions/income-call.svg +3 -3
- package/src/Presentation/icons/actions/like.svg +3 -3
- package/src/Presentation/icons/actions/new-chat.svg +3 -3
- package/src/Presentation/icons/actions/outcome-call.svg +3 -3
- package/src/Presentation/icons/actions/phone-filled.svg +3 -3
- package/src/Presentation/icons/actions/phone.svg +3 -3
- package/src/Presentation/icons/actions/remove-2.svg +3 -3
- package/src/Presentation/icons/actions/remove.svg +3 -3
- package/src/Presentation/icons/actions/rephrase.svg +6 -6
- package/src/Presentation/icons/actions/reply-filled.svg +3 -3
- package/src/Presentation/icons/actions/robot.svg +5 -5
- package/src/Presentation/icons/actions/send.svg +3 -3
- package/src/Presentation/icons/actions/share.svg +3 -3
- package/src/Presentation/icons/actions/swap-camera.svg +3 -3
- package/src/Presentation/icons/actions/translate.svg +3 -3
- package/src/Presentation/icons/actions/unarchive.svg +3 -3
- package/src/Presentation/icons/actions/video.svg +3 -3
- package/src/Presentation/icons/actions/voice.svg +3 -3
- package/src/Presentation/icons/contents/broadcast.svg +7 -7
- package/src/Presentation/icons/contents/chat-filled.svg +3 -3
- package/src/Presentation/icons/contents/chat.svg +3 -3
- package/src/Presentation/icons/contents/conference.svg +3 -3
- package/src/Presentation/icons/contents/contact-filled.svg +3 -3
- package/src/Presentation/icons/contents/contact.svg +3 -3
- package/src/Presentation/icons/contents/group-chat.svg +3 -3
- package/src/Presentation/icons/contents/notifications.svg +3 -3
- package/src/Presentation/icons/contents/private-chat.svg +3 -3
- package/src/Presentation/icons/contents/public-channel.svg +7 -7
- package/src/Presentation/icons/contents/stream-filled.svg +3 -3
- package/src/Presentation/icons/contents/stream.svg +3 -3
- package/src/Presentation/icons/contents/user.svg +3 -3
- package/src/Presentation/icons/media/attachment.svg +3 -3
- package/src/Presentation/icons/media/audio-file.svg +3 -3
- package/src/Presentation/icons/media/broken-file.svg +3 -3
- package/src/Presentation/icons/media/camera.svg +3 -3
- package/src/Presentation/icons/media/file.svg +3 -3
- package/src/Presentation/icons/media/gif-file.svg +3 -3
- package/src/Presentation/icons/media/image-filled.svg +3 -3
- package/src/Presentation/icons/media/image.svg +3 -3
- package/src/Presentation/icons/media/link.svg +3 -3
- package/src/Presentation/icons/media/location.svg +4 -4
- package/src/Presentation/icons/media/text-document.svg +3 -3
- package/src/Presentation/icons/media/video-file.svg +3 -3
- package/src/Presentation/icons/moderation/admin.svg +3 -3
- package/src/Presentation/icons/moderation/banned.svg +3 -3
- package/src/Presentation/icons/moderation/freeze.svg +3 -3
- package/src/Presentation/icons/moderation/moderations.svg +3 -3
- package/src/Presentation/icons/moderation/muted.svg +3 -3
- package/src/Presentation/icons/navigation/arrow-left.svg +3 -3
- package/src/Presentation/icons/navigation/arrow-right.svg +3 -3
- package/src/Presentation/icons/navigation/back.svg +3 -3
- package/src/Presentation/icons/navigation/close.svg +3 -3
- package/src/Presentation/icons/navigation/down.svg +3 -3
- package/src/Presentation/icons/navigation/leave.svg +3 -3
- package/src/Presentation/icons/navigation/more.svg +3 -3
- package/src/Presentation/icons/navigation/next.svg +3 -3
- package/src/Presentation/icons/navigation/plus.svg +3 -3
- package/src/Presentation/icons/navigation/refresh.svg +3 -3
- package/src/Presentation/icons/navigation/search.svg +3 -3
- package/src/Presentation/icons/navigation/settings-filled.svg +3 -3
- package/src/Presentation/icons/navigation/settings.svg +3 -3
- package/src/Presentation/icons/status/error.svg +3 -3
- package/src/Presentation/icons/status/help.svg +3 -3
- package/src/Presentation/icons/status/information.svg +3 -3
- package/src/Presentation/icons/status/loader.svg +3 -3
- package/src/Presentation/icons/status/mention.svg +3 -3
- package/src/Presentation/icons/status/sent.svg +3 -3
- package/src/Presentation/icons/status/viewed-delivered.svg +3 -3
- package/src/Presentation/icons/toggle/camera-off.svg +3 -3
- package/src/Presentation/icons/toggle/camera-on.svg +3 -3
- package/src/Presentation/icons/toggle/check-off.svg +3 -3
- package/src/Presentation/icons/toggle/check-on.svg +3 -3
- package/src/Presentation/icons/toggle/favorite.svg +3 -3
- package/src/Presentation/icons/toggle/favourite.svg +3 -3
- package/src/Presentation/icons/toggle/full-screen.svg +3 -3
- package/src/Presentation/icons/toggle/hide.svg +3 -3
- package/src/Presentation/icons/toggle/louder.svg +3 -3
- package/src/Presentation/icons/toggle/mic-off.svg +3 -3
- package/src/Presentation/icons/toggle/mic-on.svg +4 -4
- package/src/Presentation/icons/toggle/minimize.svg +3 -3
- package/src/Presentation/icons/toggle/notify-off.svg +3 -3
- package/src/Presentation/icons/toggle/notify-on.svg +3 -3
- package/src/Presentation/icons/toggle/pause.svg +3 -3
- package/src/Presentation/icons/toggle/play.svg +3 -3
- package/src/Presentation/icons/toggle/quite.svg +3 -3
- package/src/Presentation/icons/toggle/record.svg +3 -3
- package/src/Presentation/icons/toggle/screenshare.svg +3 -3
- package/src/Presentation/icons/toggle/show.svg +3 -3
- package/src/Presentation/icons/toggle/speaker off.svg +3 -3
- package/src/Presentation/icons/toggle/speaker-off.svg +3 -3
- package/src/Presentation/icons/toggle/speaker.svg +3 -3
- package/src/Presentation/icons/toggle/stop-record.svg +3 -3
- package/src/Presentation/icons/toggle/stop-share.svg +3 -3
- package/src/Presentation/layouts/Desktop/DesktopLayout.scss +62 -62
- package/src/Presentation/layouts/Desktop/QuickBloxUIKitDesktopLayout.tsx +96 -31
- package/src/Presentation/layouts/TestStage/LoginView/Login.scss +72 -72
- package/src/Presentation/themes/styles/_fonts.scss +32 -32
- package/src/Presentation/themes/styles/_mixins.scss +6 -6
- package/src/Presentation/themes/styles/_theme_colors_scheme.scss +56 -56
- package/src/Presentation/themes/styles/_theme_colors_scheme_green.scss +57 -57
- package/src/Presentation/themes/styles/_theme_colors_scheme_pink.scss +72 -72
- package/src/Presentation/themes/styles/_theme_dark.scss +37 -37
- package/src/Presentation/themes/styles/_theme_light.scss +38 -38
- package/src/Presentation/themes/styles/_variables.scss +54 -54
- package/src/Presentation/ui-components/Avatar/Avatar.scss +58 -58
- package/src/Presentation/ui-components/Badge/Badge.scss +23 -23
- package/src/Presentation/ui-components/Button/Button.scss +133 -133
- package/src/Presentation/ui-components/CheckBox/CheckBox.scss +10 -10
- package/src/Presentation/ui-components/DialogBanner/DialogBanner.scss +29 -29
- package/src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.scss +71 -71
- package/src/Presentation/ui-components/DialogWindow/DialogWindow.scss +56 -56
- package/src/Presentation/ui-components/Dropdown/Dropdown.scss +82 -82
- package/src/Presentation/ui-components/Dropdown/Dropdown.tsx +4 -4
- package/src/Presentation/ui-components/Dropdown/DropdownOption.tsx +3 -3
- package/src/Presentation/ui-components/Header/Header.scss +72 -72
- package/src/Presentation/ui-components/Loader/Loader.scss +27 -27
- package/src/Presentation/ui-components/Message/Bubble/AudioBubble/AudioBubble.scss +86 -86
- package/src/Presentation/ui-components/Message/Bubble/FileBubble/FileBubble.scss +29 -29
- package/src/Presentation/ui-components/Message/Bubble/ImageBubble/ImageBubble.scss +16 -16
- package/src/Presentation/ui-components/Message/Bubble/TextBubble/TextBubble.scss +40 -40
- package/src/Presentation/ui-components/Message/Bubble/VideoBubble/VideoBubble.scss +27 -27
- package/src/Presentation/ui-components/Message/FileUrl/FileUrl.scss +58 -58
- package/src/Presentation/ui-components/Message/Message.scss +136 -136
- package/src/Presentation/ui-components/Message/Message.tsx +16 -4
- package/src/Presentation/ui-components/Message/MessageCaption/MessageCaption.scss +90 -90
- package/src/Presentation/ui-components/Message/TimeAndStatus/TimeAndStatus.scss +51 -51
- package/src/Presentation/ui-components/MessageInput/MessageInput.scss +137 -137
- package/src/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyImagePreviewAttachment/ReplyImagePreviewAttachment.scss +16 -16
- package/src/Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyMessagePreview.scss +140 -140
- package/src/Presentation/ui-components/MessageInput/VoiceRecordingProgress/VoiceRecordingProgress.scss +35 -35
- package/src/Presentation/ui-components/MessageSeparator/MessageSeparator.scss +30 -30
- package/src/Presentation/ui-components/Placeholder/Placeholder.scss +51 -51
- package/src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.scss +30 -30
- package/src/Presentation/ui-components/SettingsItem/SettingsItem.scss +69 -69
- package/src/Presentation/ui-components/TextField/TextField.scss +91 -91
- package/src/Presentation/ui-components/Toast/Toast.scss +22 -22
- package/src/Presentation/ui-components/UserListItem/UserListItem.scss +33 -33
- package/src/QBconfig.ts +7 -7
- package/src/hooks/useQuickBloxUIKit.ts +2 -2
- package/src/index-ui.ts +8 -0
- package/src/index.scss +28 -28
- package/src/package_artan_react_ui.json +91 -91
- package/src/package_original.json +115 -115
- package/storybook-static/favicon.ico +0 -0
- package/storybook-static/favicon.svg +7 -1
- package/storybook-static/index.html +46 -100
- package/storybook-static/index.json +1 -1
- package/storybook-static/logo192.png +0 -0
- package/storybook-static/logo512.png +0 -0
- package/storybook-static/manifest.json +25 -0
- package/storybook-static/project.json +1 -1
- package/storybook-static/robots.txt +3 -0
- package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js +3 -0
- package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js +12 -0
- package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js +62 -0
- package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js.LEGAL.txt +18 -0
- package/storybook-static/sb-addons/essentials-measure-5/manager-bundle.js +3 -0
- package/storybook-static/sb-addons/essentials-measure-5/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/essentials-outline-6/manager-bundle.js +3 -0
- package/storybook-static/sb-addons/essentials-outline-6/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/essentials-toolbars-4/manager-bundle.js +3 -0
- package/storybook-static/sb-addons/essentials-toolbars-4/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/interactions-7/manager-bundle.js +12 -0
- package/storybook-static/sb-addons/interactions-7/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/links-0/manager-bundle.js +3 -0
- package/storybook-static/sb-addons/links-0/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-addons/viewport-8/manager-bundle.js +3 -0
- package/storybook-static/sb-addons/viewport-8/manager-bundle.js.LEGAL.txt +0 -0
- package/storybook-static/sb-common-assets/fonts.css +31 -0
- package/storybook-static/sb-manager/WithTooltip-V3YHNWJZ-MXTFSDU5.js +1 -0
- package/storybook-static/sb-manager/chunk-5QAFKPS7.js +7 -0
- package/storybook-static/sb-manager/chunk-7PRFHFSS.js +9 -0
- package/storybook-static/sb-manager/chunk-XE6LDGTE.js +406 -0
- package/storybook-static/sb-manager/chunk-YDUB7CS6.js +348 -0
- package/storybook-static/sb-manager/chunk-ZEU7PDD3.js +1 -0
- package/storybook-static/sb-manager/formatter-SWP5E3XI-7BGIK6BL.js +156 -0
- package/storybook-static/sb-manager/globals-module-info.js +1 -1051
- package/storybook-static/sb-manager/globals.js +1 -48
- package/storybook-static/sb-manager/index.js +1 -0
- package/storybook-static/sb-manager/runtime.js +1 -12048
- package/storybook-static/sb-manager/syntaxhighlighter-MJWPISIS-JOSCT6CQ.js +1 -0
- package/storybook-static/sb-preview/globals.js +1 -33
- package/storybook-static/sb-preview/runtime.js +90 -7723
- package/storybook-static/stories.json +1 -0
- package/tsconfig.buildlib.json +33 -33
- package/tsconfig.json +34 -34
- package/typedoc.json +4 -4
- package/webpack.config.js +82 -82
- package/storybook-static/167.88fc69a9.iframe.bundle.js +0 -1
- package/storybook-static/294.b81cdbca.iframe.bundle.js +0 -1
- package/storybook-static/363.2cb21716.iframe.bundle.js +0 -2
- package/storybook-static/363.2cb21716.iframe.bundle.js.LICENSE.txt +0 -44
- package/storybook-static/364.988cd801.iframe.bundle.js +0 -1
- package/storybook-static/44.2dce2443.iframe.bundle.js +0 -405
- package/storybook-static/44.2dce2443.iframe.bundle.js.LICENSE.txt +0 -19
- package/storybook-static/44.2dce2443.iframe.bundle.js.map +0 -1
- package/storybook-static/488.3cd3942e.iframe.bundle.js +0 -1
- package/storybook-static/559.9e64a6f5.iframe.bundle.js +0 -2
- package/storybook-static/559.9e64a6f5.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/735.82f96f8a.iframe.bundle.js +0 -2
- package/storybook-static/735.82f96f8a.iframe.bundle.js.LICENSE.txt +0 -9
- package/storybook-static/844.59cc9fcc.iframe.bundle.js +0 -95
- package/storybook-static/844.59cc9fcc.iframe.bundle.js.LICENSE.txt +0 -19
- package/storybook-static/844.59cc9fcc.iframe.bundle.js.map +0 -1
- package/storybook-static/936.8546c1d8.iframe.bundle.js +0 -1
- package/storybook-static/961.c94da456.iframe.bundle.js +0 -2
- package/storybook-static/961.c94da456.iframe.bundle.js.LICENSE.txt +0 -9
- package/storybook-static/Presentation-ui-components-Avatar-avatar-stories.5dd31ce9.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Avatar-avatar-stories.5dd31ce9.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/Presentation-ui-components-Badge-Badge-stories.6ac75e0c.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Badge-Badge-stories.6ac75e0c.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/Presentation-ui-components-Button-Button-stories.e958fce3.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Button-Button-stories.e958fce3.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/Presentation-ui-components-DialogBanner-DialogBanner-stories.3e9b31ee.iframe.bundle.js +0 -1
- package/storybook-static/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.528c08e7.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.528c08e7.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/Presentation-ui-components-DialogWindow-DialogWindow-stories.b1e69362.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-DialogWindow-DialogWindow-stories.b1e69362.iframe.bundle.js.LICENSE.txt +0 -15
- package/storybook-static/Presentation-ui-components-Dropdown-Dropdown-stories.62c3a3cc.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Dropdown-Dropdown-stories.62c3a3cc.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/Presentation-ui-components-Header-Header-stories.33ced43a.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Header-Header-stories.33ced43a.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/Presentation-ui-components-Loader-Loader-stories.9ffbbddb.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Loader-Loader-stories.9ffbbddb.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/Presentation-ui-components-Message-Message-stories.56b66b6d.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Message-Message-stories.56b66b6d.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/Presentation-ui-components-MessageInput-MessageInput-stories.4538dec0.iframe.bundle.js +0 -1
- package/storybook-static/Presentation-ui-components-MessageSeparator-MessageSeparator-stories.ccfd1b95.iframe.bundle.js +0 -1
- package/storybook-static/Presentation-ui-components-Placeholder-Placeholder-stories.87417472.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Placeholder-Placeholder-stories.87417472.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.c2851879.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-PreviewFileMessage-PreviewFileMessage-stories.c2851879.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/Presentation-ui-components-SettingsItem-SettingsItem-stories.b8aff90f.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-SettingsItem-SettingsItem-stories.b8aff90f.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/Presentation-ui-components-TextField-TextField-stories.448b262f.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-TextField-TextField-stories.448b262f.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/Presentation-ui-components-Toast-Toast-stories.b4ff1c4c.iframe.bundle.js +0 -1
- package/storybook-static/Presentation-ui-components-UserListItem-UserListItem-stories.8ddeec07.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-UserListItem-UserListItem-stories.8ddeec07.iframe.bundle.js.LICENSE.txt +0 -5
- package/storybook-static/docs-Introduction-mdx.024f959d.iframe.bundle.js +0 -1
- package/storybook-static/docs-Styling-mdx.abbdb393.iframe.bundle.js +0 -1
- package/storybook-static/iframe.html +0 -511
- package/storybook-static/main.b6cefba5.iframe.bundle.js +0 -1
- package/storybook-static/nunito-sans-bold-italic.woff2 +0 -0
- package/storybook-static/nunito-sans-bold.woff2 +0 -0
- package/storybook-static/nunito-sans-italic.woff2 +0 -0
- package/storybook-static/nunito-sans-regular.woff2 +0 -0
- package/storybook-static/runtime~main.0313ac39.iframe.bundle.js +0 -1
- package/storybook-static/sb-addons/chromatic-com-storybook-10/manager-bundle.js +0 -331
- package/storybook-static/sb-addons/chromatic-com-storybook-10/manager-bundle.js.LEGAL.txt +0 -51
- package/storybook-static/sb-addons/essentials-actions-3/manager-bundle.js +0 -3
- package/storybook-static/sb-addons/essentials-backgrounds-5/manager-bundle.js +0 -12
- package/storybook-static/sb-addons/essentials-controls-2/manager-bundle.js +0 -402
- package/storybook-static/sb-addons/essentials-docs-4/manager-bundle.js +0 -242
- package/storybook-static/sb-addons/essentials-measure-8/manager-bundle.js +0 -3
- package/storybook-static/sb-addons/essentials-outline-9/manager-bundle.js +0 -3
- package/storybook-static/sb-addons/essentials-toolbars-7/manager-bundle.js +0 -3
- package/storybook-static/sb-addons/essentials-viewport-6/manager-bundle.js +0 -3
- package/storybook-static/sb-addons/interactions-11/manager-bundle.js +0 -222
- package/storybook-static/sb-addons/onboarding-1/manager-bundle.js +0 -127
- package/storybook-static/sb-addons/storybook-core-core-server-presets-0/common-manager-bundle.js +0 -3
- package/storybook-static/sb-common-assets/favicon.svg +0 -1
- package/storybook-static/sb-manager/globals-runtime.js +0 -41591
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path id="Vector" fill-rule="evenodd" clip-rule="evenodd" d="M15.7687 4.60889C17.85 4.60889 19.5373 6.27566 19.5373 8.33173V15.7774C19.5373 17.5695 18.2893 19.3012 15.7932 20.9725C16.3014 18.7501 16.1432 17.6388 15.3186 17.6388H8.23152C6.15018 17.6388 4.46292 15.9721 4.46292 13.916V8.33173C4.46292 6.27566 6.15018 4.60889 8.23152 4.60889H15.7687ZM15.7687 8.33173H8.23152C7.71118 8.33173 7.28937 8.74842 7.28937 9.26244V12.0546C7.28937 12.5686 7.71118 12.9853 8.23152 12.9853H15.7687C16.289 12.9853 16.7109 12.5686 16.7109 12.0546V9.26244C16.7109 8.74842 16.289 8.33173 15.7687 8.33173ZM10.1158 9.26244C10.6361 9.26244 11.058 9.67913 11.058 10.1932V11.1239C11.058 11.6379 10.6361 12.0546 10.1158 12.0546C9.59548 12.0546 9.17366 11.6379 9.17366 11.1239V10.1932C9.17366 9.67913 9.59548 9.26244 10.1158 9.26244ZM13.8844 9.26244C14.4047 9.26244 14.8266 9.67913 14.8266 10.1932V11.1239C14.8266 11.6379 14.4047 12.0546 13.8844 12.0546C13.3641 12.0546 12.9423 11.6379 12.9423 11.1239V10.1932C12.9423 9.67913 13.3641 9.26244 13.8844 9.26244ZM2.57862 8.33173H3.52077V13.916H2.57862C2.05829 13.916 1.63647 13.4993 1.63647 12.9853V9.26244C1.63647 8.74842 2.05829 8.33173 2.57862 8.33173ZM20.4794 8.33173H21.4216C21.9419 8.33173 22.3637 8.74842 22.3637 9.26244V12.9853C22.3637 13.4993 21.9419 13.916 21.4216 13.916H20.4794V8.33173Z" fill="#3978FC"/>
|
|
3
|
-
</svg>
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path id="Vector" fill-rule="evenodd" clip-rule="evenodd" d="M15.7687 4.60889C17.85 4.60889 19.5373 6.27566 19.5373 8.33173V15.7774C19.5373 17.5695 18.2893 19.3012 15.7932 20.9725C16.3014 18.7501 16.1432 17.6388 15.3186 17.6388H8.23152C6.15018 17.6388 4.46292 15.9721 4.46292 13.916V8.33173C4.46292 6.27566 6.15018 4.60889 8.23152 4.60889H15.7687ZM15.7687 8.33173H8.23152C7.71118 8.33173 7.28937 8.74842 7.28937 9.26244V12.0546C7.28937 12.5686 7.71118 12.9853 8.23152 12.9853H15.7687C16.289 12.9853 16.7109 12.5686 16.7109 12.0546V9.26244C16.7109 8.74842 16.289 8.33173 15.7687 8.33173ZM10.1158 9.26244C10.6361 9.26244 11.058 9.67913 11.058 10.1932V11.1239C11.058 11.6379 10.6361 12.0546 10.1158 12.0546C9.59548 12.0546 9.17366 11.6379 9.17366 11.1239V10.1932C9.17366 9.67913 9.59548 9.26244 10.1158 9.26244ZM13.8844 9.26244C14.4047 9.26244 14.8266 9.67913 14.8266 10.1932V11.1239C14.8266 11.6379 14.4047 12.0546 13.8844 12.0546C13.3641 12.0546 12.9423 11.6379 12.9423 11.1239V10.1932C12.9423 9.67913 13.3641 9.26244 13.8844 9.26244ZM2.57862 8.33173H3.52077V13.916H2.57862C2.05829 13.916 1.63647 13.4993 1.63647 12.9853V9.26244C1.63647 8.74842 2.05829 8.33173 2.57862 8.33173ZM20.4794 8.33173H21.4216C21.9419 8.33173 22.3637 8.74842 22.3637 9.26244V12.9853C22.3637 13.4993 21.9419 13.916 21.4216 13.916H20.4794V8.33173Z" fill="#3978FC"/>
|
|
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.2502 1.83337H8.25016C6.2335 1.83337 4.5835 3.48337 4.5835 5.50004V31.1667H8.25016V5.50004H30.2502V1.83337ZM35.7502 9.16671H15.5835C13.5668 9.16671 11.9168 10.8167 11.9168 12.8334V38.5C11.9168 40.5167 13.5668 42.1667 15.5835 42.1667H35.7502C37.7668 42.1667 39.4168 40.5167 39.4168 38.5V12.8334C39.4168 10.8167 37.7668 9.16671 35.7502 9.16671ZM35.7502 38.5H15.5835V12.8334H35.7502V38.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="M30.2502 1.83337H8.25016C6.2335 1.83337 4.5835 3.48337 4.5835 5.50004V31.1667H8.25016V5.50004H30.2502V1.83337ZM35.7502 9.16671H15.5835C13.5668 9.16671 11.9168 10.8167 11.9168 12.8334V38.5C11.9168 40.5167 13.5668 42.1667 15.5835 42.1667H35.7502C37.7668 42.1667 39.4168 40.5167 39.4168 38.5V12.8334C39.4168 10.8167 37.7668 9.16671 35.7502 9.16671ZM35.7502 38.5H15.5835V12.8334H35.7502V38.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="M11.0001 34.8333C11.0001 36.85 12.6501 38.5 14.6667 38.5H29.3334C31.3501 38.5 33.0001 36.85 33.0001 34.8333V12.8333H11.0001V34.8333ZM14.6667 16.5H29.3334V34.8333H14.6667V16.5ZM28.4167 7.33333L26.5834 5.5H17.4167L15.5834 7.33333H9.16675V11H34.8334V7.33333H28.4167Z" 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.0001 34.8333C11.0001 36.85 12.6501 38.5 14.6667 38.5H29.3334C31.3501 38.5 33.0001 36.85 33.0001 34.8333V12.8333H11.0001V34.8333ZM14.6667 16.5H29.3334V34.8333H14.6667V16.5ZM28.4167 7.33333L26.5834 5.5H17.4167L15.5834 7.33333H9.16675V11H34.8334V7.33333H28.4167Z" 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 22V34.8333H9.16667V22H5.5V34.8333C5.5 36.85 7.15 38.5 9.16667 38.5H34.8333C36.85 38.5 38.5 36.85 38.5 34.8333V22H34.8333ZM23.8333 23.2283L28.5817 18.4983L31.1667 21.0833L22 30.25L12.8333 21.0833L15.4183 18.4983L20.1667 23.2283V5.5H23.8333V23.2283Z" 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 22V34.8333H9.16667V22H5.5V34.8333C5.5 36.85 7.15 38.5 9.16667 38.5H34.8333C36.85 38.5 38.5 36.85 38.5 34.8333V22H34.8333ZM23.8333 23.2283L28.5817 18.4983L31.1667 21.0833L22 30.25L12.8333 21.0833L15.4183 18.4983L20.1667 23.2283V5.5H23.8333V23.2283Z" 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.4978 31.6273V38.5023H12.3728L32.6495 18.2256L25.7745 11.3506L5.4978 31.6273ZM37.9661 12.9089C38.6811 12.1939 38.6811 11.0389 37.9661 10.3239L33.6761 6.03393C32.9611 5.31893 31.8061 5.31893 31.0911 6.03393L27.7361 9.38893L34.6111 16.2639L37.9661 12.9089Z" 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.4978 31.6273V38.5023H12.3728L32.6495 18.2256L25.7745 11.3506L5.4978 31.6273ZM37.9661 12.9089C38.6811 12.1939 38.6811 11.0389 37.9661 10.3239L33.6761 6.03393C32.9611 5.31893 31.8061 5.31893 31.0911 6.03393L27.7361 9.38893L34.6111 16.2639L37.9661 12.9089Z" fill="#0B121B"/>
|
|
3
|
+
</svg>
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M16 12C17.1 12 18 11.1 18 10C18 8.9 17.1 8 16 8C14.9 8 14 8.9 14 10C14 11.1 14.9 12 16 12ZM16 14C14.9 14 14 14.9 14 16C14 17.1 14.9 18 16 18C17.1 18 18 17.1 18 16C18 14.9 17.1 14 16 14ZM16 20C14.9 20 14 20.9 14 22C14 23.1 14.9 24 16 24C17.1 24 18 23.1 18 22C18 20.9 17.1 20 16 20Z" fill="#636D78"/>
|
|
3
|
-
</svg>
|
|
1
|
+
<svg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M16 12C17.1 12 18 11.1 18 10C18 8.9 17.1 8 16 8C14.9 8 14 8.9 14 10C14 11.1 14.9 12 16 12ZM16 14C14.9 14 14 14.9 14 16C14 17.1 14.9 18 16 18C17.1 18 18 17.1 18 16C18 14.9 17.1 14 16 14ZM16 20C14.9 20 14 20.9 14 22C14 23.1 14.9 24 16 24C17.1 24 18 23.1 18 22C18 20.9 17.1 20 16 20Z" fill="#636D78"/>
|
|
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.9817 3.66663C11.8617 3.66663 3.66675 11.88 3.66675 22C3.66675 32.12 11.8617 40.3333 21.9817 40.3333C32.1201 40.3333 40.3334 32.12 40.3334 22C40.3334 11.88 32.1201 3.66663 21.9817 3.66663ZM22.0001 36.6666C13.8967 36.6666 7.33341 30.1033 7.33341 22C7.33341 13.8966 13.8967 7.33329 22.0001 7.33329C30.1034 7.33329 36.6667 13.8966 36.6667 22C36.6667 30.1033 30.1034 36.6666 22.0001 36.6666ZM28.4167 20.1666C29.9384 20.1666 31.1667 18.9383 31.1667 17.4166C31.1667 15.895 29.9384 14.6666 28.4167 14.6666C26.8951 14.6666 25.6667 15.895 25.6667 17.4166C25.6667 18.9383 26.8951 20.1666 28.4167 20.1666ZM15.5834 20.1666C17.1051 20.1666 18.3334 18.9383 18.3334 17.4166C18.3334 15.895 17.1051 14.6666 15.5834 14.6666C14.0617 14.6666 12.8334 15.895 12.8334 17.4166C12.8334 18.9383 14.0617 20.1666 15.5834 20.1666ZM22.0001 32.0833C26.2717 32.0833 29.9017 29.4066 31.3684 25.6666H12.6317C14.0984 29.4066 17.7284 32.0833 22.0001 32.0833Z" 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.9817 3.66663C11.8617 3.66663 3.66675 11.88 3.66675 22C3.66675 32.12 11.8617 40.3333 21.9817 40.3333C32.1201 40.3333 40.3334 32.12 40.3334 22C40.3334 11.88 32.1201 3.66663 21.9817 3.66663ZM22.0001 36.6666C13.8967 36.6666 7.33341 30.1033 7.33341 22C7.33341 13.8966 13.8967 7.33329 22.0001 7.33329C30.1034 7.33329 36.6667 13.8966 36.6667 22C36.6667 30.1033 30.1034 36.6666 22.0001 36.6666ZM28.4167 20.1666C29.9384 20.1666 31.1667 18.9383 31.1667 17.4166C31.1667 15.895 29.9384 14.6666 28.4167 14.6666C26.8951 14.6666 25.6667 15.895 25.6667 17.4166C25.6667 18.9383 26.8951 20.1666 28.4167 20.1666ZM15.5834 20.1666C17.1051 20.1666 18.3334 18.9383 18.3334 17.4166C18.3334 15.895 17.1051 14.6666 15.5834 14.6666C14.0617 14.6666 12.8334 15.895 12.8334 17.4166C12.8334 18.9383 14.0617 20.1666 15.5834 20.1666ZM22.0001 32.0833C26.2717 32.0833 29.9017 29.4066 31.3684 25.6666H12.6317C14.0984 29.4066 17.7284 32.0833 22.0001 32.0833Z" 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 13.75V8.25L44 21.0833L31.1667 33.9167V28.4167L38.5 21.0833L31.1667 13.75ZM20.1667 15.5833V8.25L33 21.0833L20.1667 33.9167V26.4C11 26.4 4.58333 29.3333 0 35.75C1.83333 26.5833 7.33333 17.4167 20.1667 15.5833Z" 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 13.75V8.25L44 21.0833L31.1667 33.9167V28.4167L38.5 21.0833L31.1667 13.75ZM20.1667 15.5833V8.25L33 21.0833L20.1667 33.9167V26.4C11 26.4 4.58333 29.3333 0 35.75C1.83333 26.5833 7.33333 17.4167 20.1667 15.5833Z" 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 17.545C19.0667 17.545 16.225 18.0033 13.5667 18.865V24.5483C13.5667 25.2633 13.145 25.905 12.54 26.1983C10.7433 27.0966 9.11167 28.2516 7.66333 29.59C7.33333 29.92 6.875 30.1033 6.38 30.1033C5.86667 30.1033 5.40833 29.9016 5.07833 29.5716L0.531667 25.025C0.201667 24.7133 0 24.255 0 23.7416C0 23.2283 0.201667 22.77 0.531667 22.44C6.12333 17.1416 13.6767 13.8783 22 13.8783C30.3233 13.8783 37.8767 17.1416 43.4683 22.44C43.7983 22.77 44 23.2283 44 23.7416C44 24.255 43.7983 24.7133 43.4683 25.0433L38.9217 29.59C38.5917 29.92 38.1333 30.1216 37.62 30.1216C37.125 30.1216 36.6667 29.92 36.3367 29.6083C34.8883 28.2516 33.2383 27.115 31.4417 26.2166C30.8367 25.9233 30.415 25.3 30.415 24.5666V18.8833C27.775 18.0033 24.9333 17.545 22 17.545Z" 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 17.545C19.0667 17.545 16.225 18.0033 13.5667 18.865V24.5483C13.5667 25.2633 13.145 25.905 12.54 26.1983C10.7433 27.0966 9.11167 28.2516 7.66333 29.59C7.33333 29.92 6.875 30.1033 6.38 30.1033C5.86667 30.1033 5.40833 29.9016 5.07833 29.5716L0.531667 25.025C0.201667 24.7133 0 24.255 0 23.7416C0 23.2283 0.201667 22.77 0.531667 22.44C6.12333 17.1416 13.6767 13.8783 22 13.8783C30.3233 13.8783 37.8767 17.1416 43.4683 22.44C43.7983 22.77 44 23.2283 44 23.7416C44 24.255 43.7983 24.7133 43.4683 25.0433L38.9217 29.59C38.5917 29.92 38.1333 30.1216 37.62 30.1216C37.125 30.1216 36.6667 29.92 36.3367 29.6083C34.8883 28.2516 33.2383 27.115 31.4417 26.2166C30.8367 25.9233 30.415 25.3 30.415 24.5666V18.8833C27.775 18.0033 24.9333 17.545 22 17.545Z" 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.1367 19.7908C14.7767 24.9792 19.03 29.2142 24.2183 31.8725L28.2517 27.8392C28.7467 27.3442 29.48 27.1792 30.1217 27.3992C32.175 28.0775 34.3933 28.4442 36.6667 28.4442C37.675 28.4442 38.5 29.2692 38.5 30.2775V36.6758C38.5 37.6842 37.675 38.5092 36.6667 38.5092C19.4517 38.5092 5.5 24.5575 5.5 7.34251C5.5 6.33418 6.325 5.50918 7.33333 5.50918H13.75C14.7583 5.50918 15.5833 6.33418 15.5833 7.34251C15.5833 9.63418 15.95 11.8342 16.6283 13.8875C16.83 14.5292 16.6833 15.2442 16.17 15.7575L12.1367 19.7908ZM36.96 6.77418L35.6583 5.49084L23.8333 17.0408V9.17584H22V20.1758H33V18.3425H25.3917L36.96 6.77418Z" 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.1367 19.7908C14.7767 24.9792 19.03 29.2142 24.2183 31.8725L28.2517 27.8392C28.7467 27.3442 29.48 27.1792 30.1217 27.3992C32.175 28.0775 34.3933 28.4442 36.6667 28.4442C37.675 28.4442 38.5 29.2692 38.5 30.2775V36.6758C38.5 37.6842 37.675 38.5092 36.6667 38.5092C19.4517 38.5092 5.5 24.5575 5.5 7.34251C5.5 6.33418 6.325 5.50918 7.33333 5.50918H13.75C14.7583 5.50918 15.5833 6.33418 15.5833 7.34251C15.5833 9.63418 15.95 11.8342 16.6283 13.8875C16.83 14.5292 16.6833 15.2442 16.17 15.7575L12.1367 19.7908ZM36.96 6.77418L35.6583 5.49084L23.8333 17.0408V9.17584H22V20.1758H33V18.3425H25.3917L36.96 6.77418Z" 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.0003 38.8209L19.342 36.4009C9.90033 27.8392 3.66699 22.1925 3.66699 15.2625C3.66699 9.61587 8.10366 5.1792 13.7503 5.1792C16.9403 5.1792 20.002 6.6642 22.0003 9.01087C23.9987 6.6642 27.0603 5.1792 30.2503 5.1792C35.897 5.1792 40.3337 9.61587 40.3337 15.2625C40.3337 22.1925 34.1003 27.8392 24.6587 36.4192L22.0003 38.8209Z" 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="M22.0003 38.8209L19.342 36.4009C9.90033 27.8392 3.66699 22.1925 3.66699 15.2625C3.66699 9.61587 8.10366 5.1792 13.7503 5.1792C16.9403 5.1792 20.002 6.6642 22.0003 9.01087C23.9987 6.6642 27.0603 5.1792 30.2503 5.1792C35.897 5.1792 40.3337 9.61587 40.3337 15.2625C40.3337 22.1925 34.1003 27.8392 24.6587 36.4192L22.0003 38.8209Z" 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="M40.3334 7.33335C40.3334 5.31669 38.6834 3.66669 36.6667 3.66669H7.33341C5.31675 3.66669 3.66675 5.31669 3.66675 7.33335V29.3334C3.66675 31.35 5.31675 33 7.33341 33H33.0001L40.3334 40.3334V7.33335ZM36.6667 31.4784L34.5217 29.3334H7.33341V7.33335H36.6667V31.4784ZM23.8334 9.16669H20.1667V16.5H12.8334V20.1667H20.1667V27.5H23.8334V20.1667H31.1667V16.5H23.8334V9.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="M40.3334 7.33335C40.3334 5.31669 38.6834 3.66669 36.6667 3.66669H7.33341C5.31675 3.66669 3.66675 5.31669 3.66675 7.33335V29.3334C3.66675 31.35 5.31675 33 7.33341 33H33.0001L40.3334 40.3334V7.33335ZM36.6667 31.4784L34.5217 29.3334H7.33341V7.33335H36.6667V31.4784ZM23.8334 9.16669H20.1667V16.5H12.8334V20.1667H20.1667V27.5H23.8334V20.1667H31.1667V16.5H23.8334V9.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="M31.1667 22L40.3334 12.8333L31.1667 3.66663V9.16663H23.8334V16.5H31.1667V22ZM34.8334 30.25C32.5417 30.25 30.3417 29.8833 28.2884 29.205C27.6467 29.0033 26.9317 29.15 26.4184 29.645L22.3851 33.6783C17.1967 31.0383 12.9434 26.8033 10.3034 21.5966L14.3367 17.545C14.8501 17.0683 14.9967 16.3533 14.7951 15.7116C14.1167 13.6583 13.7501 11.4583 13.7501 9.16663C13.7501 8.15829 12.9251 7.33329 11.9167 7.33329H5.50008C4.49175 7.33329 3.66675 8.15829 3.66675 9.16663C3.66675 26.3816 17.6184 40.3333 34.8334 40.3333C35.8417 40.3333 36.6667 39.5083 36.6667 38.5V32.0833C36.6667 31.075 35.8417 30.25 34.8334 30.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 22L40.3334 12.8333L31.1667 3.66663V9.16663H23.8334V16.5H31.1667V22ZM34.8334 30.25C32.5417 30.25 30.3417 29.8833 28.2884 29.205C27.6467 29.0033 26.9317 29.15 26.4184 29.645L22.3851 33.6783C17.1967 31.0383 12.9434 26.8033 10.3034 21.5966L14.3367 17.545C14.8501 17.0683 14.9967 16.3533 14.7951 15.7116C14.1167 13.6583 13.7501 11.4583 13.7501 9.16663C13.7501 8.15829 12.9251 7.33329 11.9167 7.33329H5.50008C4.49175 7.33329 3.66675 8.15829 3.66675 9.16663C3.66675 26.3816 17.6184 40.3333 34.8334 40.3333C35.8417 40.3333 36.6667 39.5083 36.6667 38.5V32.0833C36.6667 31.075 35.8417 30.25 34.8334 30.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="M11.99 9.16667C12.1 10.7983 12.375 12.3933 12.815 13.915L10.615 16.115C9.86333 13.915 9.38667 11.5867 9.22167 9.16667H11.99ZM30.0667 31.2033C31.625 31.6433 33.22 31.9183 34.8333 32.0283V34.76C32.4133 34.595 30.085 34.1183 27.8667 33.385L30.0667 31.2033ZM13.75 5.5H7.33333C6.325 5.5 5.5 6.325 5.5 7.33333C5.5 24.5483 19.4517 38.5 36.6667 38.5C37.675 38.5 38.5 37.675 38.5 36.6667V30.2683C38.5 29.26 37.675 28.435 36.6667 28.435C34.3933 28.435 32.175 28.0683 30.1217 27.39C29.9383 27.3167 29.7367 27.2983 29.5533 27.2983C29.0767 27.2983 28.6183 27.4817 28.2517 27.83L24.2183 31.8633C19.03 29.205 14.7767 24.97 12.1367 19.7817L16.17 15.7483C16.6833 15.235 16.83 14.52 16.6283 13.8783C15.95 11.825 15.5833 9.625 15.5833 7.33333C15.5833 6.325 14.7583 5.5 13.75 5.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="M11.99 9.16667C12.1 10.7983 12.375 12.3933 12.815 13.915L10.615 16.115C9.86333 13.915 9.38667 11.5867 9.22167 9.16667H11.99ZM30.0667 31.2033C31.625 31.6433 33.22 31.9183 34.8333 32.0283V34.76C32.4133 34.595 30.085 34.1183 27.8667 33.385L30.0667 31.2033ZM13.75 5.5H7.33333C6.325 5.5 5.5 6.325 5.5 7.33333C5.5 24.5483 19.4517 38.5 36.6667 38.5C37.675 38.5 38.5 37.675 38.5 36.6667V30.2683C38.5 29.26 37.675 28.435 36.6667 28.435C34.3933 28.435 32.175 28.0683 30.1217 27.39C29.9383 27.3167 29.7367 27.2983 29.5533 27.2983C29.0767 27.2983 28.6183 27.4817 28.2517 27.83L24.2183 31.8633C19.03 29.205 14.7767 24.97 12.1367 19.7817L16.17 15.7483C16.6833 15.235 16.83 14.52 16.6283 13.8783C15.95 11.825 15.5833 9.625 15.5833 7.33333C15.5833 6.325 14.7583 5.5 13.75 5.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="M36.685 28.1967C34.43 28.1967 32.2483 27.83 30.2133 27.17C29.5717 26.95 28.8567 27.115 28.3617 27.61L25.4833 31.2217C20.295 28.7467 15.4367 24.0717 12.8517 18.7L16.4267 15.6567C16.9217 15.1433 17.0683 14.4283 16.8667 13.7867C16.1883 11.7517 15.84 9.57 15.84 7.315C15.84 6.325 15.015 5.5 14.025 5.5H7.68167C6.69167 5.5 5.5 5.94 5.5 7.315C5.5 24.3467 19.6717 38.5 36.685 38.5C37.9867 38.5 38.5 37.345 38.5 36.3367V30.0117C38.5 29.0217 37.675 28.1967 36.685 28.1967Z" 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.685 28.1967C34.43 28.1967 32.2483 27.83 30.2133 27.17C29.5717 26.95 28.8567 27.115 28.3617 27.61L25.4833 31.2217C20.295 28.7467 15.4367 24.0717 12.8517 18.7L16.4267 15.6567C16.9217 15.1433 17.0683 14.4283 16.8667 13.7867C16.1883 11.7517 15.84 9.57 15.84 7.315C15.84 6.325 15.015 5.5 14.025 5.5H7.68167C6.69167 5.5 5.5 5.94 5.5 7.315C5.5 24.3467 19.6717 38.5 36.685 38.5C37.9867 38.5 38.5 37.345 38.5 36.3367V30.0117C38.5 29.0217 37.675 28.1967 36.685 28.1967Z" 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="M26.7482 14.6666L21.9998 19.415L17.2515 14.6666L14.6665 17.2516L19.4148 22L14.6665 26.7483L17.2515 29.3333L21.9998 24.585L26.7482 29.3333L29.3332 26.7483L24.5848 22L29.3332 17.2516L26.7482 14.6666ZM21.9998 3.66663C11.8615 3.66663 3.6665 11.8616 3.6665 22C3.6665 32.1383 11.8615 40.3333 21.9998 40.3333C32.1382 40.3333 40.3332 32.1383 40.3332 22C40.3332 11.8616 32.1382 3.66663 21.9998 3.66663ZM21.9998 36.6666C13.9148 36.6666 7.33317 30.085 7.33317 22C7.33317 13.915 13.9148 7.33329 21.9998 7.33329C30.0848 7.33329 36.6665 13.915 36.6665 22C36.6665 30.085 30.0848 36.6666 21.9998 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="M26.7482 14.6666L21.9998 19.415L17.2515 14.6666L14.6665 17.2516L19.4148 22L14.6665 26.7483L17.2515 29.3333L21.9998 24.585L26.7482 29.3333L29.3332 26.7483L24.5848 22L29.3332 17.2516L26.7482 14.6666ZM21.9998 3.66663C11.8615 3.66663 3.6665 11.8616 3.6665 22C3.6665 32.1383 11.8615 40.3333 21.9998 40.3333C32.1382 40.3333 40.3332 32.1383 40.3332 22C40.3332 11.8616 32.1382 3.66663 21.9998 3.66663ZM21.9998 36.6666C13.9148 36.6666 7.33317 30.085 7.33317 22C7.33317 13.915 13.9148 7.33329 21.9998 7.33329C30.0848 7.33329 36.6665 13.915 36.6665 22C36.6665 30.085 30.0848 36.6666 21.9998 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="M12.8332 20.1666V23.8333H31.1665V20.1666H12.8332ZM21.9998 3.66663C11.8798 3.66663 3.6665 11.88 3.6665 22C3.6665 32.12 11.8798 40.3333 21.9998 40.3333C32.1198 40.3333 40.3332 32.12 40.3332 22C40.3332 11.88 32.1198 3.66663 21.9998 3.66663ZM21.9998 36.6666C13.9148 36.6666 7.33317 30.085 7.33317 22C7.33317 13.915 13.9148 7.33329 21.9998 7.33329C30.0848 7.33329 36.6665 13.915 36.6665 22C36.6665 30.085 30.0848 36.6666 21.9998 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="M12.8332 20.1666V23.8333H31.1665V20.1666H12.8332ZM21.9998 3.66663C11.8798 3.66663 3.6665 11.88 3.6665 22C3.6665 32.12 11.8798 40.3333 21.9998 40.3333C32.1198 40.3333 40.3332 32.12 40.3332 22C40.3332 11.88 32.1198 3.66663 21.9998 3.66663ZM21.9998 36.6666C13.9148 36.6666 7.33317 30.085 7.33317 22C7.33317 13.915 13.9148 7.33329 21.9998 7.33329C30.0848 7.33329 36.6665 13.915 36.6665 22C36.6665 30.085 30.0848 36.6666 21.9998 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="M18.3333 15.5833V8.25L5.5 21.0833L18.3333 33.9167V26.4C27.5 26.4 33.9167 29.3333 38.5 35.75C36.6667 26.5833 31.1667 17.4167 18.3333 15.5833Z" 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.3333 15.5833V8.25L5.5 21.0833L18.3333 33.9167V26.4C27.5 26.4 33.9167 29.3333 38.5 35.75C36.6667 26.5833 31.1667 17.4167 18.3333 15.5833Z" 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="M2.76833 38.5L41.25 22L2.76833 5.5L2.75 18.3333L30.25 22L2.75 25.6667L2.76833 38.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="M2.76833 38.5L41.25 22L2.76833 5.5L2.75 18.3333L30.25 22L2.75 25.6667L2.76833 38.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="M33.0002 27.5V33H11.0002V27.5H7.3335V33C7.3335 35.0166 8.9835 36.6666 11.0002 36.6666H33.0002C35.0168 36.6666 36.6668 35.0166 36.6668 33V27.5H33.0002ZM12.8335 16.5L15.4185 19.085L20.1668 14.355V29.3333H23.8335V14.355L28.5818 19.085L31.1668 16.5L22.0002 7.33331L12.8335 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="M33.0002 27.5V33H11.0002V27.5H7.3335V33C7.3335 35.0166 8.9835 36.6666 11.0002 36.6666H33.0002C35.0168 36.6666 36.6668 35.0166 36.6668 33V27.5H33.0002ZM12.8335 16.5L15.4185 19.085L20.1668 14.355V29.3333H23.8335V14.355L28.5818 19.085L31.1668 16.5L22.0002 7.33331L12.8335 16.5Z" fill="#0B121B"/>
|
|
3
|
+
</svg>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M36.667 3.66663H7.33366C5.31699 3.66663 3.66699 5.31663 3.66699 7.33329V40.3333L11.0003 33H36.667C38.6837 33 40.3337 31.35 40.3337 29.3333V7.33329C40.3337 5.31663 38.6837 3.66663 36.667 3.66663ZM36.667 29.3333H11.0003L7.33366 33V7.33329H36.667V29.3333Z" fill="#0B121B"/>
|
|
3
|
-
<path d="M12.0002 13C12.0002 12.4477 12.448 12 13.0002 12H22.0002C22.5525 12 23.0002 12.4477 23.0002 13V17C23.0002 17.5523 22.5525 18 22.0002 18H13.0002C12.448 18 12.0002 17.5523 12.0002 17V13Z" fill="#0B121B"/>
|
|
4
|
-
<path d="M26.0002 13C26.0002 12.4477 26.448 12 27.0002 12H31.0002C31.5525 12 32.0002 12.4477 32.0002 13V24C32.0002 24.5523 31.5525 25 31.0002 25H27.0002C26.448 25 26.0002 24.5523 26.0002 24V13Z" fill="#0B121B"/>
|
|
5
|
-
<path d="M15.0002 21C15.0002 20.4477 15.448 20 16.0002 20H22.0002C22.5525 20 23.0002 20.4477 23.0002 21V23C23.0002 23.5523 22.5525 24 22.0002 24H16.0002C15.448 24 15.0002 23.5523 15.0002 23V21Z" fill="#0B121B"/>
|
|
6
|
-
</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.667 3.66663H7.33366C5.31699 3.66663 3.66699 5.31663 3.66699 7.33329V40.3333L11.0003 33H36.667C38.6837 33 40.3337 31.35 40.3337 29.3333V7.33329C40.3337 5.31663 38.6837 3.66663 36.667 3.66663ZM36.667 29.3333H11.0003L7.33366 33V7.33329H36.667V29.3333Z" fill="#0B121B"/>
|
|
3
|
+
<path d="M12.0002 13C12.0002 12.4477 12.448 12 13.0002 12H22.0002C22.5525 12 23.0002 12.4477 23.0002 13V17C23.0002 17.5523 22.5525 18 22.0002 18H13.0002C12.448 18 12.0002 17.5523 12.0002 17V13Z" fill="#0B121B"/>
|
|
4
|
+
<path d="M26.0002 13C26.0002 12.4477 26.448 12 27.0002 12H31.0002C31.5525 12 32.0002 12.4477 32.0002 13V24C32.0002 24.5523 31.5525 25 31.0002 25H27.0002C26.448 25 26.0002 24.5523 26.0002 24V13Z" fill="#0B121B"/>
|
|
5
|
+
<path d="M15.0002 21C15.0002 20.4477 15.448 20 16.0002 20H22.0002C22.5525 20 23.0002 20.4477 23.0002 21V23C23.0002 23.5523 22.5525 24 22.0002 24H16.0002C15.448 24 15.0002 23.5523 15.0002 23V21Z" fill="#0B121B"/>
|
|
6
|
+
</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.6665 9.16667H30.8548L27.4998 5.5H16.4998L13.1448 9.16667H7.33317C5.3165 9.16667 3.6665 10.8167 3.6665 12.8333V34.8333C3.6665 36.85 5.3165 38.5 7.33317 38.5H36.6665C38.6832 38.5 40.3332 36.85 40.3332 34.8333V12.8333C40.3332 10.8167 38.6832 9.16667 36.6665 9.16667ZM27.4998 30.25V25.6667H16.4998V30.25L10.0832 23.8333L16.4998 17.4167V22H27.4998V17.4167L33.9165 23.8333L27.4998 30.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="M36.6665 9.16667H30.8548L27.4998 5.5H16.4998L13.1448 9.16667H7.33317C5.3165 9.16667 3.6665 10.8167 3.6665 12.8333V34.8333C3.6665 36.85 5.3165 38.5 7.33317 38.5H36.6665C38.6832 38.5 40.3332 36.85 40.3332 34.8333V12.8333C40.3332 10.8167 38.6832 9.16667 36.6665 9.16667ZM27.4998 30.25V25.6667H16.4998V30.25L10.0832 23.8333L16.4998 17.4167V22H27.4998V17.4167L33.9165 23.8333L27.4998 30.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="M22 6V0L14 8L22 16V10C28.62 10 34 15.38 34 22C34 24.02 33.5 25.94 32.6 27.6L35.52 30.52C37.08 28.06 38 25.14 38 22C38 13.16 30.84 6 22 6ZM22 34C15.38 34 10 28.62 10 22C10 19.98 10.5 18.06 11.4 16.4L8.48 13.48C6.92 15.94 6 18.86 6 22C6 30.84 13.16 38 22 38V44L30 36L22 28V34Z" 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 6V0L14 8L22 16V10C28.62 10 34 15.38 34 22C34 24.02 33.5 25.94 32.6 27.6L35.52 30.52C37.08 28.06 38 25.14 38 22C38 13.16 30.84 6 22 6ZM22 34C15.38 34 10 28.62 10 22C10 19.98 10.5 18.06 11.4 16.4L8.48 13.48C6.92 15.94 6 18.86 6 22C6 30.84 13.16 38 22 38V44L30 36L22 28V34Z" 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="M37.6567 9.58833L35.1083 6.50833C34.6133 5.885 33.8617 5.5 33 5.5H11C10.1383 5.5 9.38667 5.885 8.87333 6.50833L6.34333 9.58833C5.81167 10.2117 5.5 11.0367 5.5 11.9167V34.8333C5.5 36.85 7.15 38.5 9.16667 38.5H34.8333C36.85 38.5 38.5 36.85 38.5 34.8333V11.9167C38.5 11.0367 38.1883 10.2117 37.6567 9.58833ZM11.44 9.16667H32.56L34.0817 11H9.93667L11.44 9.16667ZM9.16667 34.8333V14.6667H34.8333V34.8333H9.16667ZM14.6667 25.6667H19.3417V31.1667H24.6583V25.6667H29.3333L22 18.3333L14.6667 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="M37.6567 9.58833L35.1083 6.50833C34.6133 5.885 33.8617 5.5 33 5.5H11C10.1383 5.5 9.38667 5.885 8.87333 6.50833L6.34333 9.58833C5.81167 10.2117 5.5 11.0367 5.5 11.9167V34.8333C5.5 36.85 7.15 38.5 9.16667 38.5H34.8333C36.85 38.5 38.5 36.85 38.5 34.8333V11.9167C38.5 11.0367 38.1883 10.2117 37.6567 9.58833ZM11.44 9.16667H32.56L34.0817 11H9.93667L11.44 9.16667ZM9.16667 34.8333V14.6667H34.8333V34.8333H9.16667ZM14.6667 25.6667H19.3417V31.1667H24.6583V25.6667H29.3333L22 18.3333L14.6667 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="M27.5 14.6667V29.3333H9.16667V14.6667H27.5ZM29.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.25V12.8333C31.1667 11.825 30.3417 11 29.3333 11Z" 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 14.6667V29.3333H9.16667V14.6667H27.5ZM29.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.25V12.8333C31.1667 11.825 30.3417 11 29.3333 11Z" 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 26.5834C25.0434 26.5834 27.5001 24.1267 27.5001 21.0834V10.0834C27.5001 7.04004 25.0434 4.58337 22.0001 4.58337C18.9567 4.58337 16.5001 7.04004 16.5001 10.0834V21.0834C16.5001 24.1267 18.9567 26.5834 22.0001 26.5834ZM20.1667 10.0834C20.1667 9.07504 20.9917 8.25004 22.0001 8.25004C23.0084 8.25004 23.8334 9.07504 23.8334 10.0834V21.0834C23.8334 22.0917 23.0084 22.9167 22.0001 22.9167C20.9917 22.9167 20.1667 22.0917 20.1667 21.0834V10.0834ZM31.1667 21.0834C31.1667 26.1434 27.0601 30.25 22.0001 30.25C16.9401 30.25 12.8334 26.1434 12.8334 21.0834H9.16675C9.16675 27.555 13.9517 32.8717 20.1667 33.77V39.4167H23.8334V33.77C30.0484 32.8717 34.8334 27.555 34.8334 21.0834H31.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="M22.0001 26.5834C25.0434 26.5834 27.5001 24.1267 27.5001 21.0834V10.0834C27.5001 7.04004 25.0434 4.58337 22.0001 4.58337C18.9567 4.58337 16.5001 7.04004 16.5001 10.0834V21.0834C16.5001 24.1267 18.9567 26.5834 22.0001 26.5834ZM20.1667 10.0834C20.1667 9.07504 20.9917 8.25004 22.0001 8.25004C23.0084 8.25004 23.8334 9.07504 23.8334 10.0834V21.0834C23.8334 22.0917 23.0084 22.9167 22.0001 22.9167C20.9917 22.9167 20.1667 22.0917 20.1667 21.0834V10.0834ZM31.1667 21.0834C31.1667 26.1434 27.0601 30.25 22.0001 30.25C16.9401 30.25 12.8334 26.1434 12.8334 21.0834H9.16675C9.16675 27.555 13.9517 32.8717 20.1667 33.77V39.4167H23.8334V33.77C30.0484 32.8717 34.8334 27.555 34.8334 21.0834H31.1667Z" 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
|
-
<path d="M13.3832 26.125L15.5832 23.925C13.7498 22.0917 12.8332 19.7084 12.8332 17.5084C12.8332 15.125 13.7498 12.7417 15.5832 11.0917L13.3832 8.8917C10.9998 11.275 9.7165 14.3917 9.7165 17.5084C9.7165 20.625 10.9998 23.7417 13.3832 26.125Z" fill="#0B121B"/>
|
|
3
|
-
<path d="M35.0165 4.4917L32.8165 6.6917C35.7498 9.62503 37.2165 13.6584 37.2165 17.5084C37.2165 21.3584 35.7498 25.3917 32.8165 28.325L35.0165 30.525C38.6832 26.8584 40.3332 22.275 40.3332 17.5084C40.3332 12.7417 38.4998 8.15837 35.0165 4.4917Z" fill="#0B121B"/>
|
|
4
|
-
<path d="M11.1832 6.6917L8.98317 4.4917C5.49984 8.15837 3.6665 12.7417 3.6665 17.5084C3.6665 22.275 5.49984 26.8584 8.98317 30.525L11.1832 28.325C8.24984 25.3917 6.78317 21.3584 6.78317 17.5084C6.78317 13.6584 8.24984 9.62503 11.1832 6.6917Z" fill="#0B121B"/>
|
|
5
|
-
<path d="M30.6165 26.125C32.9998 23.7417 34.2832 20.625 34.2832 17.5084C34.0998 14.3917 32.9998 11.275 30.6165 8.8917L28.4165 11.0917C30.2498 12.925 31.1665 15.3084 31.1665 17.5084C31.1665 19.8917 30.2498 22.275 28.4165 23.925L30.6165 26.125Z" fill="#0B121B"/>
|
|
6
|
-
<path d="M26.5832 17.5084C26.5832 14.9784 24.5298 12.925 21.9998 12.925C19.4698 12.925 17.4165 14.9784 17.4165 17.5084C17.4165 18.9017 18.0398 20.1117 19.0115 20.955L12.8332 39.5084H16.4998L17.7282 35.8417H26.2898L27.4998 39.5084H31.1665L24.9882 20.955C25.9598 20.1117 26.5832 18.9017 26.5832 17.5084ZM18.9382 32.175L21.9998 23.0084L25.0615 32.175H18.9382Z" fill="#0B121B"/>
|
|
7
|
-
</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.3832 26.125L15.5832 23.925C13.7498 22.0917 12.8332 19.7084 12.8332 17.5084C12.8332 15.125 13.7498 12.7417 15.5832 11.0917L13.3832 8.8917C10.9998 11.275 9.7165 14.3917 9.7165 17.5084C9.7165 20.625 10.9998 23.7417 13.3832 26.125Z" fill="#0B121B"/>
|
|
3
|
+
<path d="M35.0165 4.4917L32.8165 6.6917C35.7498 9.62503 37.2165 13.6584 37.2165 17.5084C37.2165 21.3584 35.7498 25.3917 32.8165 28.325L35.0165 30.525C38.6832 26.8584 40.3332 22.275 40.3332 17.5084C40.3332 12.7417 38.4998 8.15837 35.0165 4.4917Z" fill="#0B121B"/>
|
|
4
|
+
<path d="M11.1832 6.6917L8.98317 4.4917C5.49984 8.15837 3.6665 12.7417 3.6665 17.5084C3.6665 22.275 5.49984 26.8584 8.98317 30.525L11.1832 28.325C8.24984 25.3917 6.78317 21.3584 6.78317 17.5084C6.78317 13.6584 8.24984 9.62503 11.1832 6.6917Z" fill="#0B121B"/>
|
|
5
|
+
<path d="M30.6165 26.125C32.9998 23.7417 34.2832 20.625 34.2832 17.5084C34.0998 14.3917 32.9998 11.275 30.6165 8.8917L28.4165 11.0917C30.2498 12.925 31.1665 15.3084 31.1665 17.5084C31.1665 19.8917 30.2498 22.275 28.4165 23.925L30.6165 26.125Z" fill="#0B121B"/>
|
|
6
|
+
<path d="M26.5832 17.5084C26.5832 14.9784 24.5298 12.925 21.9998 12.925C19.4698 12.925 17.4165 14.9784 17.4165 17.5084C17.4165 18.9017 18.0398 20.1117 19.0115 20.955L12.8332 39.5084H16.4998L17.7282 35.8417H26.2898L27.4998 39.5084H31.1665L24.9882 20.955C25.9598 20.1117 26.5832 18.9017 26.5832 17.5084ZM18.9382 32.175L21.9998 23.0084L25.0615 32.175H18.9382Z" fill="#0B121B"/>
|
|
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="M36.6667 3.66663H7.33341C5.31675 3.66663 3.66675 5.31663 3.66675 7.33329V40.3333L11.0001 33H36.6667C38.6834 33 40.3334 31.35 40.3334 29.3333V7.33329C40.3334 5.31663 38.6834 3.66663 36.6667 3.66663ZM36.6667 29.3333H11.0001L7.33341 33V7.33329H36.6667V29.3333Z" 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 3.66663H7.33341C5.31675 3.66663 3.66675 5.31663 3.66675 7.33329V40.3333L11.0001 33H36.6667C38.6834 33 40.3334 31.35 40.3334 29.3333V7.33329C40.3334 5.31663 38.6834 3.66663 36.6667 3.66663ZM36.6667 29.3333H11.0001L7.33341 33V7.33329H36.6667V29.3333Z" 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 3.66663H7.33341C5.31675 3.66663 3.66675 5.31663 3.66675 7.33329V40.3333L11.0001 33H36.6667C38.6834 33 40.3334 31.35 40.3334 29.3333V7.33329C40.3334 5.31663 38.6834 3.66663 36.6667 3.66663Z" 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 3.66663H7.33341C5.31675 3.66663 3.66675 5.31663 3.66675 7.33329V40.3333L11.0001 33H36.6667C38.6834 33 40.3334 31.35 40.3334 29.3333V7.33329C40.3334 5.31663 38.6834 3.66663 36.6667 3.66663Z" 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.33333 23.8333C9.35 23.8333 11 22.1833 11 20.1667C11 18.15 9.35 16.5 7.33333 16.5C5.31667 16.5 3.66667 18.15 3.66667 20.1667C3.66667 22.1833 5.31667 23.8333 7.33333 23.8333ZM9.405 25.85C8.72667 25.74 8.04833 25.6667 7.33333 25.6667C5.51833 25.6667 3.795 26.0517 2.23667 26.73C0.88 27.3167 0 28.6367 0 30.1217V33H8.25V30.0483C8.25 28.5267 8.67167 27.0967 9.405 25.85ZM36.6667 23.8333C38.6833 23.8333 40.3333 22.1833 40.3333 20.1667C40.3333 18.15 38.6833 16.5 36.6667 16.5C34.65 16.5 33 18.15 33 20.1667C33 22.1833 34.65 23.8333 36.6667 23.8333ZM44 30.1217C44 28.6367 43.12 27.3167 41.7633 26.73C40.205 26.0517 38.4817 25.6667 36.6667 25.6667C35.9517 25.6667 35.2733 25.74 34.595 25.85C35.3283 27.0967 35.75 28.5267 35.75 30.0483V33H44V30.1217ZM29.7733 25.025C27.6283 24.0717 24.9883 23.375 22 23.375C19.0117 23.375 16.3717 24.09 14.2267 25.025C12.2467 25.905 11 27.885 11 30.0483V33H33V30.0483C33 27.885 31.7533 25.905 29.7733 25.025ZM14.795 29.3333C14.96 28.9117 15.0333 28.6183 16.4633 28.0683C18.2417 27.3717 20.1117 27.0417 22 27.0417C23.8883 27.0417 25.7583 27.3717 27.5367 28.0683C28.9483 28.6183 29.0217 28.9117 29.205 29.3333H14.795ZM22 14.6667C23.0083 14.6667 23.8333 15.4917 23.8333 16.5C23.8333 17.5083 23.0083 18.3333 22 18.3333C20.9917 18.3333 20.1667 17.5083 20.1667 16.5C20.1667 15.4917 20.9917 14.6667 22 14.6667ZM22 11C18.9567 11 16.5 13.4567 16.5 16.5C16.5 19.5433 18.9567 22 22 22C25.0433 22 27.5 19.5433 27.5 16.5C27.5 13.4567 25.0433 11 22 11Z" 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.33333 23.8333C9.35 23.8333 11 22.1833 11 20.1667C11 18.15 9.35 16.5 7.33333 16.5C5.31667 16.5 3.66667 18.15 3.66667 20.1667C3.66667 22.1833 5.31667 23.8333 7.33333 23.8333ZM9.405 25.85C8.72667 25.74 8.04833 25.6667 7.33333 25.6667C5.51833 25.6667 3.795 26.0517 2.23667 26.73C0.88 27.3167 0 28.6367 0 30.1217V33H8.25V30.0483C8.25 28.5267 8.67167 27.0967 9.405 25.85ZM36.6667 23.8333C38.6833 23.8333 40.3333 22.1833 40.3333 20.1667C40.3333 18.15 38.6833 16.5 36.6667 16.5C34.65 16.5 33 18.15 33 20.1667C33 22.1833 34.65 23.8333 36.6667 23.8333ZM44 30.1217C44 28.6367 43.12 27.3167 41.7633 26.73C40.205 26.0517 38.4817 25.6667 36.6667 25.6667C35.9517 25.6667 35.2733 25.74 34.595 25.85C35.3283 27.0967 35.75 28.5267 35.75 30.0483V33H44V30.1217ZM29.7733 25.025C27.6283 24.0717 24.9883 23.375 22 23.375C19.0117 23.375 16.3717 24.09 14.2267 25.025C12.2467 25.905 11 27.885 11 30.0483V33H33V30.0483C33 27.885 31.7533 25.905 29.7733 25.025ZM14.795 29.3333C14.96 28.9117 15.0333 28.6183 16.4633 28.0683C18.2417 27.3717 20.1117 27.0417 22 27.0417C23.8883 27.0417 25.7583 27.3717 27.5367 28.0683C28.9483 28.6183 29.0217 28.9117 29.205 29.3333H14.795ZM22 14.6667C23.0083 14.6667 23.8333 15.4917 23.8333 16.5C23.8333 17.5083 23.0083 18.3333 22 18.3333C20.9917 18.3333 20.1667 17.5083 20.1667 16.5C20.1667 15.4917 20.9917 14.6667 22 14.6667ZM22 11C18.9567 11 16.5 13.4567 16.5 16.5C16.5 19.5433 18.9567 22 22 22C25.0433 22 27.5 19.5433 27.5 16.5C27.5 13.4567 25.0433 11 22 11Z" 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.66663C11.8801 3.66663 3.66675 11.88 3.66675 22C3.66675 32.12 11.8801 40.3333 22.0001 40.3333C32.1201 40.3333 40.3334 32.12 40.3334 22C40.3334 11.88 32.1201 3.66663 22.0001 3.66663ZM12.9617 33.5133C13.7501 31.8633 18.5534 30.25 22.0001 30.25C25.4467 30.25 30.2684 31.8633 31.0384 33.5133C28.5451 35.4933 25.4101 36.6666 22.0001 36.6666C18.5901 36.6666 15.4551 35.4933 12.9617 33.5133ZM33.6601 30.855C31.0384 27.665 24.6767 26.5833 22.0001 26.5833C19.3234 26.5833 12.9617 27.665 10.3401 30.855C8.47008 28.3983 7.33341 25.3366 7.33341 22C7.33341 13.915 13.9151 7.33329 22.0001 7.33329C30.0851 7.33329 36.6667 13.915 36.6667 22C36.6667 25.3366 35.5301 28.3983 33.6601 30.855ZM22.0001 11C18.4434 11 15.5834 13.86 15.5834 17.4166C15.5834 20.9733 18.4434 23.8333 22.0001 23.8333C25.5567 23.8333 28.4167 20.9733 28.4167 17.4166C28.4167 13.86 25.5567 11 22.0001 11ZM22.0001 20.1666C20.4784 20.1666 19.2501 18.9383 19.2501 17.4166C19.2501 15.895 20.4784 14.6666 22.0001 14.6666C23.5217 14.6666 24.7501 15.895 24.7501 17.4166C24.7501 18.9383 23.5217 20.1666 22.0001 20.1666Z" 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.66663C11.8801 3.66663 3.66675 11.88 3.66675 22C3.66675 32.12 11.8801 40.3333 22.0001 40.3333C32.1201 40.3333 40.3334 32.12 40.3334 22C40.3334 11.88 32.1201 3.66663 22.0001 3.66663ZM12.9617 33.5133C13.7501 31.8633 18.5534 30.25 22.0001 30.25C25.4467 30.25 30.2684 31.8633 31.0384 33.5133C28.5451 35.4933 25.4101 36.6666 22.0001 36.6666C18.5901 36.6666 15.4551 35.4933 12.9617 33.5133ZM33.6601 30.855C31.0384 27.665 24.6767 26.5833 22.0001 26.5833C19.3234 26.5833 12.9617 27.665 10.3401 30.855C8.47008 28.3983 7.33341 25.3366 7.33341 22C7.33341 13.915 13.9151 7.33329 22.0001 7.33329C30.0851 7.33329 36.6667 13.915 36.6667 22C36.6667 25.3366 35.5301 28.3983 33.6601 30.855ZM22.0001 11C18.4434 11 15.5834 13.86 15.5834 17.4166C15.5834 20.9733 18.4434 23.8333 22.0001 23.8333C25.5567 23.8333 28.4167 20.9733 28.4167 17.4166C28.4167 13.86 25.5567 11 22.0001 11ZM22.0001 20.1666C20.4784 20.1666 19.2501 18.9383 19.2501 17.4166C19.2501 15.895 20.4784 14.6666 22.0001 14.6666C23.5217 14.6666 24.7501 15.895 24.7501 17.4166C24.7501 18.9383 23.5217 20.1666 22.0001 20.1666Z" 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.66663C11.8801 3.66663 3.66675 11.88 3.66675 22C3.66675 32.12 11.8801 40.3333 22.0001 40.3333C32.1201 40.3333 40.3334 32.12 40.3334 22C40.3334 11.88 32.1201 3.66663 22.0001 3.66663ZM22.0001 9.16663C25.0434 9.16663 27.5001 11.6233 27.5001 14.6666C27.5001 17.71 25.0434 20.1666 22.0001 20.1666C18.9567 20.1666 16.5001 17.71 16.5001 14.6666C16.5001 11.6233 18.9567 9.16663 22.0001 9.16663ZM22.0001 35.2C17.4167 35.2 13.3651 32.8533 11.0001 29.2966C11.0551 25.6483 18.3334 23.65 22.0001 23.65C25.6484 23.65 32.9451 25.6483 33.0001 29.2966C30.6351 32.8533 26.5834 35.2 22.0001 35.2Z" 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.66663C11.8801 3.66663 3.66675 11.88 3.66675 22C3.66675 32.12 11.8801 40.3333 22.0001 40.3333C32.1201 40.3333 40.3334 32.12 40.3334 22C40.3334 11.88 32.1201 3.66663 22.0001 3.66663ZM22.0001 9.16663C25.0434 9.16663 27.5001 11.6233 27.5001 14.6666C27.5001 17.71 25.0434 20.1666 22.0001 20.1666C18.9567 20.1666 16.5001 17.71 16.5001 14.6666C16.5001 11.6233 18.9567 9.16663 22.0001 9.16663ZM22.0001 35.2C17.4167 35.2 13.3651 32.8533 11.0001 29.2966C11.0551 25.6483 18.3334 23.65 22.0001 23.65C25.6484 23.65 32.9451 25.6483 33.0001 29.2966C30.6351 32.8533 26.5834 35.2 22.0001 35.2Z" 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.2499 23.8333C28.0499 23.8333 24.6216 24.4566 21.9999 25.6666C19.3783 24.4383 15.9499 23.8333 13.7499 23.8333C9.77159 23.8333 1.83325 25.8133 1.83325 29.7916V34.8333H42.1666V29.7916C42.1666 25.8133 34.2283 23.8333 30.2499 23.8333ZM22.9166 32.0833H4.58325V29.7916C4.58325 28.8016 9.27659 26.5833 13.7499 26.5833C18.2233 26.5833 22.9166 28.8016 22.9166 29.7916V32.0833ZM39.4166 32.0833H25.6666V29.7916C25.6666 28.9483 25.2999 28.215 24.7133 27.555C26.3266 27.005 28.3066 26.5833 30.2499 26.5833C34.7233 26.5833 39.4166 28.8016 39.4166 29.7916V32.0833ZM13.7499 22C17.2883 22 20.1666 19.1216 20.1666 15.5833C20.1666 12.045 17.2883 9.16663 13.7499 9.16663C10.2116 9.16663 7.33325 12.045 7.33325 15.5833C7.33325 19.1216 10.2116 22 13.7499 22ZM13.7499 11.9166C15.7666 11.9166 17.4166 13.5666 17.4166 15.5833C17.4166 17.6 15.7666 19.25 13.7499 19.25C11.7333 19.25 10.0833 17.6 10.0833 15.5833C10.0833 13.5666 11.7333 11.9166 13.7499 11.9166ZM30.2499 22C33.7883 22 36.6666 19.1216 36.6666 15.5833C36.6666 12.045 33.7883 9.16663 30.2499 9.16663C26.7116 9.16663 23.8333 12.045 23.8333 15.5833C23.8333 19.1216 26.7116 22 30.2499 22ZM30.2499 11.9166C32.2666 11.9166 33.9166 13.5666 33.9166 15.5833C33.9166 17.6 32.2666 19.25 30.2499 19.25C28.2333 19.25 26.5833 17.6 26.5833 15.5833C26.5833 13.5666 28.2333 11.9166 30.2499 11.9166Z" 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.2499 23.8333C28.0499 23.8333 24.6216 24.4566 21.9999 25.6666C19.3783 24.4383 15.9499 23.8333 13.7499 23.8333C9.77159 23.8333 1.83325 25.8133 1.83325 29.7916V34.8333H42.1666V29.7916C42.1666 25.8133 34.2283 23.8333 30.2499 23.8333ZM22.9166 32.0833H4.58325V29.7916C4.58325 28.8016 9.27659 26.5833 13.7499 26.5833C18.2233 26.5833 22.9166 28.8016 22.9166 29.7916V32.0833ZM39.4166 32.0833H25.6666V29.7916C25.6666 28.9483 25.2999 28.215 24.7133 27.555C26.3266 27.005 28.3066 26.5833 30.2499 26.5833C34.7233 26.5833 39.4166 28.8016 39.4166 29.7916V32.0833ZM13.7499 22C17.2883 22 20.1666 19.1216 20.1666 15.5833C20.1666 12.045 17.2883 9.16663 13.7499 9.16663C10.2116 9.16663 7.33325 12.045 7.33325 15.5833C7.33325 19.1216 10.2116 22 13.7499 22ZM13.7499 11.9166C15.7666 11.9166 17.4166 13.5666 17.4166 15.5833C17.4166 17.6 15.7666 19.25 13.7499 19.25C11.7333 19.25 10.0833 17.6 10.0833 15.5833C10.0833 13.5666 11.7333 11.9166 13.7499 11.9166ZM30.2499 22C33.7883 22 36.6666 19.1216 36.6666 15.5833C36.6666 12.045 33.7883 9.16663 30.2499 9.16663C26.7116 9.16663 23.8333 12.045 23.8333 15.5833C23.8333 19.1216 26.7116 22 30.2499 22ZM30.2499 11.9166C32.2666 11.9166 33.9166 13.5666 33.9166 15.5833C33.9166 17.6 32.2666 19.25 30.2499 19.25C28.2333 19.25 26.5833 17.6 26.5833 15.5833C26.5833 13.5666 28.2333 11.9166 30.2499 11.9166Z" 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 39.875C24.0166 39.875 25.6666 38.225 25.6666 36.2083H18.3333C18.3333 38.225 19.9833 39.875 21.9999 39.875ZM32.9999 28.875V19.7083C32.9999 14.08 30.0116 9.36833 24.7499 8.12167V6.875C24.7499 5.35333 23.5216 4.125 21.9999 4.125C20.4783 4.125 19.2499 5.35333 19.2499 6.875V8.12167C14.0066 9.36833 10.9999 14.0617 10.9999 19.7083V28.875L7.33325 32.5417V34.375H36.6666V32.5417L32.9999 28.875ZM29.3333 30.7083H14.6666V19.7083C14.6666 15.1617 17.4349 11.4583 21.9999 11.4583C26.5649 11.4583 29.3333 15.1617 29.3333 19.7083V30.7083Z" 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 39.875C24.0166 39.875 25.6666 38.225 25.6666 36.2083H18.3333C18.3333 38.225 19.9833 39.875 21.9999 39.875ZM32.9999 28.875V19.7083C32.9999 14.08 30.0116 9.36833 24.7499 8.12167V6.875C24.7499 5.35333 23.5216 4.125 21.9999 4.125C20.4783 4.125 19.2499 5.35333 19.2499 6.875V8.12167C14.0066 9.36833 10.9999 14.0617 10.9999 19.7083V28.875L7.33325 32.5417V34.375H36.6666V32.5417L32.9999 28.875ZM29.3333 30.7083H14.6666V19.7083C14.6666 15.1617 17.4349 11.4583 21.9999 11.4583C26.5649 11.4583 29.3333 15.1617 29.3333 19.7083V30.7083Z" 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.9999 15.5833H31.1666V11.9167C31.1666 6.85667 27.0599 2.75 21.9999 2.75C16.9399 2.75 12.8333 6.85667 12.8333 11.9167V15.5833H10.9999C8.98325 15.5833 7.33325 17.2333 7.33325 19.25V37.5833C7.33325 39.6 8.98325 41.25 10.9999 41.25H32.9999C35.0166 41.25 36.6666 39.6 36.6666 37.5833V19.25C36.6666 17.2333 35.0166 15.5833 32.9999 15.5833ZM16.4999 11.9167C16.4999 8.87333 18.9566 6.41667 21.9999 6.41667C25.0433 6.41667 27.4999 8.87333 27.4999 11.9167V15.5833H16.4999V11.9167ZM32.9999 37.5833H10.9999V19.25H32.9999V37.5833ZM21.9999 32.0833C24.0166 32.0833 25.6666 30.4333 25.6666 28.4167C25.6666 26.4 24.0166 24.75 21.9999 24.75C19.9833 24.75 18.3333 26.4 18.3333 28.4167C18.3333 30.4333 19.9833 32.0833 21.9999 32.0833Z" 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.9999 15.5833H31.1666V11.9167C31.1666 6.85667 27.0599 2.75 21.9999 2.75C16.9399 2.75 12.8333 6.85667 12.8333 11.9167V15.5833H10.9999C8.98325 15.5833 7.33325 17.2333 7.33325 19.25V37.5833C7.33325 39.6 8.98325 41.25 10.9999 41.25H32.9999C35.0166 41.25 36.6666 39.6 36.6666 37.5833V19.25C36.6666 17.2333 35.0166 15.5833 32.9999 15.5833ZM16.4999 11.9167C16.4999 8.87333 18.9566 6.41667 21.9999 6.41667C25.0433 6.41667 27.4999 8.87333 27.4999 11.9167V15.5833H16.4999V11.9167ZM32.9999 37.5833H10.9999V19.25H32.9999V37.5833ZM21.9999 32.0833C24.0166 32.0833 25.6666 30.4333 25.6666 28.4167C25.6666 26.4 24.0166 24.75 21.9999 24.75C19.9833 24.75 18.3333 26.4 18.3333 28.4167C18.3333 30.4333 19.9833 32.0833 21.9999 32.0833Z" 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
|
-
<path d="M32.9998 20.1667C32.9998 21.395 32.9998 22.605 32.9998 23.8334C35.1998 23.8334 38.0598 23.8334 40.3332 23.8334C40.3332 22.605 40.3332 21.395 40.3332 20.1667C38.0598 20.1667 35.1998 20.1667 32.9998 20.1667Z" fill="#0B121B"/>
|
|
3
|
-
<path d="M29.3332 32.285C31.0932 33.5867 33.3848 35.31 35.1998 36.6667C35.9332 35.695 36.6665 34.705 37.3998 33.7334C35.5848 32.3767 33.2932 30.6534 31.5332 29.3334C30.7998 30.3234 30.0665 31.3134 29.3332 32.285Z" fill="#0B121B"/>
|
|
4
|
-
<path d="M37.3998 10.2667C36.6665 9.29504 35.9332 8.30504 35.1998 7.33337C33.3848 8.69004 31.0932 10.4134 29.3332 11.7334C30.0665 12.705 30.7998 13.695 31.5332 14.6667C33.2932 13.3467 35.5848 11.6417 37.3998 10.2667Z" fill="#0B121B"/>
|
|
5
|
-
<path d="M7.33317 16.5C5.3165 16.5 3.6665 18.15 3.6665 20.1667V23.8334C3.6665 25.85 5.3165 27.5 7.33317 27.5H9.1665V34.8334H12.8332V27.5H14.6665L23.8332 33V11L14.6665 16.5H7.33317ZM16.5548 19.635L20.1665 17.4717V26.5284L16.5548 24.365L15.6748 23.8334H7.33317V20.1667H15.6748L16.5548 19.635Z" fill="#0B121B"/>
|
|
6
|
-
<path d="M28.4165 22C28.4165 19.5617 27.3532 17.3617 25.6665 15.8584V28.1234C27.3532 26.6384 28.4165 24.4384 28.4165 22Z" fill="#0B121B"/>
|
|
7
|
-
</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.9998 20.1667C32.9998 21.395 32.9998 22.605 32.9998 23.8334C35.1998 23.8334 38.0598 23.8334 40.3332 23.8334C40.3332 22.605 40.3332 21.395 40.3332 20.1667C38.0598 20.1667 35.1998 20.1667 32.9998 20.1667Z" fill="#0B121B"/>
|
|
3
|
+
<path d="M29.3332 32.285C31.0932 33.5867 33.3848 35.31 35.1998 36.6667C35.9332 35.695 36.6665 34.705 37.3998 33.7334C35.5848 32.3767 33.2932 30.6534 31.5332 29.3334C30.7998 30.3234 30.0665 31.3134 29.3332 32.285Z" fill="#0B121B"/>
|
|
4
|
+
<path d="M37.3998 10.2667C36.6665 9.29504 35.9332 8.30504 35.1998 7.33337C33.3848 8.69004 31.0932 10.4134 29.3332 11.7334C30.0665 12.705 30.7998 13.695 31.5332 14.6667C33.2932 13.3467 35.5848 11.6417 37.3998 10.2667Z" fill="#0B121B"/>
|
|
5
|
+
<path d="M7.33317 16.5C5.3165 16.5 3.6665 18.15 3.6665 20.1667V23.8334C3.6665 25.85 5.3165 27.5 7.33317 27.5H9.1665V34.8334H12.8332V27.5H14.6665L23.8332 33V11L14.6665 16.5H7.33317ZM16.5548 19.635L20.1665 17.4717V26.5284L16.5548 24.365L15.6748 23.8334H7.33317V20.1667H15.6748L16.5548 19.635Z" fill="#0B121B"/>
|
|
6
|
+
<path d="M28.4165 22C28.4165 19.5617 27.3532 17.3617 25.6665 15.8584V28.1234C27.3532 26.6384 28.4165 24.4384 28.4165 22Z" fill="#0B121B"/>
|
|
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="M38.5002 5.5H5.50016C3.4835 5.5 1.8335 7.15 1.8335 9.16667V14.6667H5.50016V9.16667H38.5002V34.8333H25.6668V38.5H38.5002C40.5168 38.5 42.1668 36.85 42.1668 34.8333V9.16667C42.1668 7.15 40.5168 5.5 38.5002 5.5ZM1.8335 33V38.5H7.3335C7.3335 35.4567 4.87683 33 1.8335 33ZM1.8335 25.6667V29.3333C6.8935 29.3333 11.0002 33.44 11.0002 38.5H14.6668C14.6668 31.405 8.9285 25.6667 1.8335 25.6667ZM1.8335 18.3333V22C10.9452 22 18.3335 29.3883 18.3335 38.5H22.0002C22.0002 27.3533 12.9618 18.3333 1.8335 18.3333Z" 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="M38.5002 5.5H5.50016C3.4835 5.5 1.8335 7.15 1.8335 9.16667V14.6667H5.50016V9.16667H38.5002V34.8333H25.6668V38.5H38.5002C40.5168 38.5 42.1668 36.85 42.1668 34.8333V9.16667C42.1668 7.15 40.5168 5.5 38.5002 5.5ZM1.8335 33V38.5H7.3335C7.3335 35.4567 4.87683 33 1.8335 33ZM1.8335 25.6667V29.3333C6.8935 29.3333 11.0002 33.44 11.0002 38.5H14.6668C14.6668 31.405 8.9285 25.6667 1.8335 25.6667ZM1.8335 18.3333V22C10.9452 22 18.3335 29.3883 18.3335 38.5H22.0002C22.0002 27.3533 12.9618 18.3333 1.8335 18.3333Z" 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="M1.8335 33V38.5H7.3335C7.3335 35.4567 4.87683 33 1.8335 33ZM1.8335 25.6667V29.3333C6.8935 29.3333 11.0002 33.44 11.0002 38.5H14.6668C14.6668 31.405 8.9285 25.6667 1.8335 25.6667ZM34.8335 12.8333H9.16683V15.8217C16.4268 18.1683 22.1652 23.9067 24.5118 31.1667H34.8335V12.8333ZM1.8335 18.3333V22C10.9452 22 18.3335 29.3883 18.3335 38.5H22.0002C22.0002 27.3533 12.9618 18.3333 1.8335 18.3333ZM38.5002 5.5H5.50016C3.4835 5.5 1.8335 7.15 1.8335 9.16667V14.6667H5.50016V9.16667H38.5002V34.8333H25.6668V38.5H38.5002C40.5168 38.5 42.1668 36.85 42.1668 34.8333V9.16667C42.1668 7.15 40.5168 5.5 38.5002 5.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="M1.8335 33V38.5H7.3335C7.3335 35.4567 4.87683 33 1.8335 33ZM1.8335 25.6667V29.3333C6.8935 29.3333 11.0002 33.44 11.0002 38.5H14.6668C14.6668 31.405 8.9285 25.6667 1.8335 25.6667ZM34.8335 12.8333H9.16683V15.8217C16.4268 18.1683 22.1652 23.9067 24.5118 31.1667H34.8335V12.8333ZM1.8335 18.3333V22C10.9452 22 18.3335 29.3883 18.3335 38.5H22.0002C22.0002 27.3533 12.9618 18.3333 1.8335 18.3333ZM38.5002 5.5H5.50016C3.4835 5.5 1.8335 7.15 1.8335 9.16667V14.6667H5.50016V9.16667H38.5002V34.8333H25.6668V38.5H38.5002C40.5168 38.5 42.1668 36.85 42.1668 34.8333V9.16667C42.1668 7.15 40.5168 5.5 38.5002 5.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="M21.9999 10.8167C24.1266 10.8167 25.8499 12.54 25.8499 14.6667C25.8499 16.7934 24.1266 18.5167 21.9999 18.5167C19.8733 18.5167 18.1499 16.7934 18.1499 14.6667C18.1499 12.54 19.8733 10.8167 21.9999 10.8167ZM21.9999 27.3167C27.4449 27.3167 33.1833 29.9934 33.1833 31.1667V33.1834H10.8166V31.1667C10.8166 29.9934 16.5549 27.3167 21.9999 27.3167ZM21.9999 7.33337C17.9483 7.33337 14.6666 10.615 14.6666 14.6667C14.6666 18.7184 17.9483 22 21.9999 22C26.0516 22 29.3333 18.7184 29.3333 14.6667C29.3333 10.615 26.0516 7.33337 21.9999 7.33337ZM21.9999 23.8334C17.1049 23.8334 7.33325 26.29 7.33325 31.1667V36.6667H36.6666V31.1667C36.6666 26.29 26.8949 23.8334 21.9999 23.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="M21.9999 10.8167C24.1266 10.8167 25.8499 12.54 25.8499 14.6667C25.8499 16.7934 24.1266 18.5167 21.9999 18.5167C19.8733 18.5167 18.1499 16.7934 18.1499 14.6667C18.1499 12.54 19.8733 10.8167 21.9999 10.8167ZM21.9999 27.3167C27.4449 27.3167 33.1833 29.9934 33.1833 31.1667V33.1834H10.8166V31.1667C10.8166 29.9934 16.5549 27.3167 21.9999 27.3167ZM21.9999 7.33337C17.9483 7.33337 14.6666 10.615 14.6666 14.6667C14.6666 18.7184 17.9483 22 21.9999 22C26.0516 22 29.3333 18.7184 29.3333 14.6667C29.3333 10.615 26.0516 7.33337 21.9999 7.33337ZM21.9999 23.8334C17.1049 23.8334 7.33325 26.29 7.33325 31.1667V36.6667H36.6666V31.1667C36.6666 26.29 26.8949 23.8334 21.9999 23.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="M34.9635 19.4074L20.0553 34.3156C17.1903 37.1805 12.5494 37.1805 9.6844 34.3156C6.81944 31.4506 6.81944 26.8096 9.6844 23.9447L25.8889 7.74014C27.6779 5.95117 30.5818 5.95116 32.3707 7.74014C34.1597 9.52912 34.1597 12.433 32.3707 14.222L18.7589 27.8338C18.0459 28.5468 16.8792 28.5468 16.1662 27.8338C15.4532 27.1208 15.4532 25.954 16.1662 25.241L28.4817 12.9256L26.5371 10.9811L14.2217 23.2965C12.4327 25.0855 12.4327 27.9893 14.2217 29.7783C16.0106 31.5673 18.9145 31.5673 20.7035 29.7783L34.3153 16.1665C37.1802 13.3015 37.1802 8.66056 34.3153 5.7956C31.4503 2.93064 26.8093 2.93064 23.9444 5.7956L7.73986 22.0001C3.79891 25.9411 3.79891 32.3192 7.73986 36.2601C11.6808 40.2011 18.0589 40.2011 21.9998 36.2601L36.908 21.3519L34.9635 19.4074Z" 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.9635 19.4074L20.0553 34.3156C17.1903 37.1805 12.5494 37.1805 9.6844 34.3156C6.81944 31.4506 6.81944 26.8096 9.6844 23.9447L25.8889 7.74014C27.6779 5.95117 30.5818 5.95116 32.3707 7.74014C34.1597 9.52912 34.1597 12.433 32.3707 14.222L18.7589 27.8338C18.0459 28.5468 16.8792 28.5468 16.1662 27.8338C15.4532 27.1208 15.4532 25.954 16.1662 25.241L28.4817 12.9256L26.5371 10.9811L14.2217 23.2965C12.4327 25.0855 12.4327 27.9893 14.2217 29.7783C16.0106 31.5673 18.9145 31.5673 20.7035 29.7783L34.3153 16.1665C37.1802 13.3015 37.1802 8.66056 34.3153 5.7956C31.4503 2.93064 26.8093 2.93064 23.9444 5.7956L7.73986 22.0001C3.79891 25.9411 3.79891 32.3192 7.73986 36.2601C11.6808 40.2011 18.0589 40.2011 21.9998 36.2601L36.908 21.3519L34.9635 19.4074Z" 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.375 21.9999C34.375 18.7549 32.505 15.9683 29.7917 14.6116V29.3699C32.505 28.0316 34.375 25.2449 34.375 21.9999ZM9.625 16.4999V27.4999H16.9583L26.125 36.6666V7.33325L16.9583 16.4999H9.625Z" 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.375 21.9999C34.375 18.7549 32.505 15.9683 29.7917 14.6116V29.3699C32.505 28.0316 34.375 25.2449 34.375 21.9999ZM9.625 16.4999V27.4999H16.9583L26.125 36.6666V7.33325L16.9583 16.4999H9.625Z" 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="M41.4426 38.8576L5.14262 2.55762L2.55762 5.14262L6.79262 9.39595V33.5409C6.79262 35.5576 8.44262 37.2076 10.4593 37.2076H34.6043L38.8393 41.4426L41.4426 38.8576ZM10.4593 33.5409V13.0626L22.9993 25.6026L21.4593 27.5276L17.7926 22.5409L12.2926 29.8743H27.2709L30.9376 33.5409H10.4593ZM15.6476 7.87428L11.9809 4.20762H36.1259C38.1426 4.20762 39.7926 5.85762 39.7926 7.87428V32.0193L36.1259 28.3526V7.87428H15.6476Z" 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="M41.4426 38.8576L5.14262 2.55762L2.55762 5.14262L6.79262 9.39595V33.5409C6.79262 35.5576 8.44262 37.2076 10.4593 37.2076H34.6043L38.8393 41.4426L41.4426 38.8576ZM10.4593 33.5409V13.0626L22.9993 25.6026L21.4593 27.5276L17.7926 22.5409L12.2926 29.8743H27.2709L30.9376 33.5409H10.4593ZM15.6476 7.87428L11.9809 4.20762H36.1259C38.1426 4.20762 39.7926 5.85762 39.7926 7.87428V32.0193L36.1259 28.3526V7.87428H15.6476Z" 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="M37.6667 9.16667H31.8551L28.5001 5.5H17.5001L14.1451 9.16667H8.33341C6.31675 9.16667 4.66675 10.8167 4.66675 12.8333V34.8333C4.66675 36.85 6.31675 38.5 8.33341 38.5H37.6667C39.6834 38.5 41.3334 36.85 41.3334 34.8333V12.8333C41.3334 10.8167 39.6834 9.16667 37.6667 9.16667ZM37.6667 34.8333H8.33341V12.8333H15.7584L16.8401 11.6417L19.1134 9.16667H26.8867L29.1601 11.6417L30.2417 12.8333H37.6667V34.8333ZM23.0001 14.6667C17.9401 14.6667 13.8334 18.7733 13.8334 23.8333C13.8334 28.8933 17.9401 33 23.0001 33C28.0601 33 32.1667 28.8933 32.1667 23.8333C32.1667 18.7733 28.0601 14.6667 23.0001 14.6667ZM23.0001 29.7C19.7551 29.7 17.1334 27.0783 17.1334 23.8333C17.1334 20.5883 19.7551 17.9667 23.0001 17.9667C26.2451 17.9667 28.8667 20.5883 28.8667 23.8333C28.8667 27.0783 26.2451 29.7 23.0001 29.7Z" 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="M37.6667 9.16667H31.8551L28.5001 5.5H17.5001L14.1451 9.16667H8.33341C6.31675 9.16667 4.66675 10.8167 4.66675 12.8333V34.8333C4.66675 36.85 6.31675 38.5 8.33341 38.5H37.6667C39.6834 38.5 41.3334 36.85 41.3334 34.8333V12.8333C41.3334 10.8167 39.6834 9.16667 37.6667 9.16667ZM37.6667 34.8333H8.33341V12.8333H15.7584L16.8401 11.6417L19.1134 9.16667H26.8867L29.1601 11.6417L30.2417 12.8333H37.6667V34.8333ZM23.0001 14.6667C17.9401 14.6667 13.8334 18.7733 13.8334 23.8333C13.8334 28.8933 17.9401 33 23.0001 33C28.0601 33 32.1667 28.8933 32.1667 23.8333C32.1667 18.7733 28.0601 14.6667 23.0001 14.6667ZM23.0001 29.7C19.7551 29.7 17.1334 27.0783 17.1334 23.8333C17.1334 20.5883 19.7551 17.9667 23.0001 17.9667C26.2451 17.9667 28.8667 20.5883 28.8667 23.8333C28.8667 27.0783 26.2451 29.7 23.0001 29.7Z" 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.6429 14H24.7143V30.2857H20.6429V14ZM13.8571 14H5.71429C4.08571 14 3 15.3571 3 16.7143V27.5714C3 28.9286 4.08571 30.2857 5.71429 30.2857H13.8571C15.4857 30.2857 16.5714 28.9286 16.5714 27.5714V22.1429H12.5V26.2143H7.07143V18.0714H16.5714V16.7143C16.5714 15.3571 15.4857 14 13.8571 14ZM41 18.0714V14H28.7857V30.2857H32.8571V24.8571H38.2857V20.7857H32.8571V18.0714H41Z" 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.6429 14H24.7143V30.2857H20.6429V14ZM13.8571 14H5.71429C4.08571 14 3 15.3571 3 16.7143V27.5714C3 28.9286 4.08571 30.2857 5.71429 30.2857H13.8571C15.4857 30.2857 16.5714 28.9286 16.5714 27.5714V22.1429H12.5V26.2143H7.07143V18.0714H16.5714V16.7143C16.5714 15.3571 15.4857 14 13.8571 14ZM41 18.0714V14H28.7857V30.2857H32.8571V24.8571H38.2857V20.7857H32.8571V18.0714H41Z" 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 9.16667V34.8333H9.16667V9.16667H34.8333ZM34.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.5ZM25.9233 21.7433L20.4233 28.8383L16.5 24.09L11 31.1667H33L25.9233 21.7433Z" 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 9.16667V34.8333H9.16667V9.16667H34.8333ZM34.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.5ZM25.9233 21.7433L20.4233 28.8383L16.5 24.09L11 31.1667H33L25.9233 21.7433Z" 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="M14.6666 29.3334H29.3333V33.0001H14.6666V29.3334ZM14.6666 22.0001H29.3333V25.6667H14.6666V22.0001ZM25.6666 3.66675H10.9999C8.98325 3.66675 7.33325 5.31675 7.33325 7.33341V36.6667C7.33325 38.6834 8.96492 40.3334 10.9816 40.3334H32.9999C35.0166 40.3334 36.6666 38.6834 36.6666 36.6667V14.6667L25.6666 3.66675ZM32.9999 36.6667H10.9999V7.33341H23.8333V16.5001H32.9999V36.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="M14.6666 29.3334H29.3333V33.0001H14.6666V29.3334ZM14.6666 22.0001H29.3333V25.6667H14.6666V22.0001ZM25.6666 3.66675H10.9999C8.98325 3.66675 7.33325 5.31675 7.33325 7.33341V36.6667C7.33325 38.6834 8.96492 40.3334 10.9816 40.3334H32.9999C35.0166 40.3334 36.6666 38.6834 36.6666 36.6667V14.6667L25.6666 3.66675ZM32.9999 36.6667H10.9999V7.33341H23.8333V16.5001H32.9999V36.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="M38.5 34.8333V9.16667C38.5 7.15 36.85 5.5 34.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.8333ZM15.5833 24.75L20.1667 30.2683L26.5833 22L34.8333 33H9.16667L15.5833 24.75Z" 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="M38.5 34.8333V9.16667C38.5 7.15 36.85 5.5 34.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.8333ZM15.5833 24.75L20.1667 30.2683L26.5833 22L34.8333 33H9.16667L15.5833 24.75Z" 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.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.66675ZM34.6867 14.6667H29.2784C28.6917 12.3751 27.8484 10.1751 26.7484 8.14008C30.1217 9.29508 32.9267 11.6417 34.6867 14.6667ZM22.0001 7.40675C23.5217 9.60675 24.7134 12.0451 25.5017 14.6667H18.4984C19.2867 12.0451 20.4784 9.60675 22.0001 7.40675ZM7.81008 25.6667C7.51675 24.4934 7.33341 23.2651 7.33341 22.0001C7.33341 20.7351 7.51675 19.5067 7.81008 18.3334H14.0067C13.8601 19.5434 13.7501 20.7534 13.7501 22.0001C13.7501 23.2467 13.8601 24.4567 14.0067 25.6667H7.81008ZM9.31341 29.3334H14.7217C15.3084 31.6251 16.1517 33.8251 17.2517 35.8601C13.8784 34.7051 11.0734 32.3767 9.31341 29.3334ZM14.7217 14.6667H9.31341C11.0734 11.6234 13.8784 9.29508 17.2517 8.14008C16.1517 10.1751 15.3084 12.3751 14.7217 14.6667ZM22.0001 36.5934C20.4784 34.3934 19.2867 31.9551 18.4984 29.3334H25.5017C24.7134 31.9551 23.5217 34.3934 22.0001 36.5934ZM26.2901 25.6667H17.7101C17.5451 24.4567 17.4167 23.2467 17.4167 22.0001C17.4167 20.7534 17.5451 19.5251 17.7101 18.3334H26.2901C26.4551 19.5251 26.5834 20.7534 26.5834 22.0001C26.5834 23.2467 26.4551 24.4567 26.2901 25.6667ZM26.7484 35.8601C27.8484 33.8251 28.6917 31.6251 29.2784 29.3334H34.6867C32.9267 32.3584 30.1217 34.7051 26.7484 35.8601ZM29.9934 25.6667C30.1401 24.4567 30.2501 23.2467 30.2501 22.0001C30.2501 20.7534 30.1401 19.5434 29.9934 18.3334H36.1901C36.4834 19.5067 36.6667 20.7351 36.6667 22.0001C36.6667 23.2651 36.4834 24.4934 36.1901 25.6667H29.9934Z" 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.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.66675ZM34.6867 14.6667H29.2784C28.6917 12.3751 27.8484 10.1751 26.7484 8.14008C30.1217 9.29508 32.9267 11.6417 34.6867 14.6667ZM22.0001 7.40675C23.5217 9.60675 24.7134 12.0451 25.5017 14.6667H18.4984C19.2867 12.0451 20.4784 9.60675 22.0001 7.40675ZM7.81008 25.6667C7.51675 24.4934 7.33341 23.2651 7.33341 22.0001C7.33341 20.7351 7.51675 19.5067 7.81008 18.3334H14.0067C13.8601 19.5434 13.7501 20.7534 13.7501 22.0001C13.7501 23.2467 13.8601 24.4567 14.0067 25.6667H7.81008ZM9.31341 29.3334H14.7217C15.3084 31.6251 16.1517 33.8251 17.2517 35.8601C13.8784 34.7051 11.0734 32.3767 9.31341 29.3334ZM14.7217 14.6667H9.31341C11.0734 11.6234 13.8784 9.29508 17.2517 8.14008C16.1517 10.1751 15.3084 12.3751 14.7217 14.6667ZM22.0001 36.5934C20.4784 34.3934 19.2867 31.9551 18.4984 29.3334H25.5017C24.7134 31.9551 23.5217 34.3934 22.0001 36.5934ZM26.2901 25.6667H17.7101C17.5451 24.4567 17.4167 23.2467 17.4167 22.0001C17.4167 20.7534 17.5451 19.5251 17.7101 18.3334H26.2901C26.4551 19.5251 26.5834 20.7534 26.5834 22.0001C26.5834 23.2467 26.4551 24.4567 26.2901 25.6667ZM26.7484 35.8601C27.8484 33.8251 28.6917 31.6251 29.2784 29.3334H34.6867C32.9267 32.3584 30.1217 34.7051 26.7484 35.8601ZM29.9934 25.6667C30.1401 24.4567 30.2501 23.2467 30.2501 22.0001C30.2501 20.7534 30.1401 19.5434 29.9934 18.3334H36.1901C36.4834 19.5067 36.6667 20.7351 36.6667 22.0001C36.6667 23.2651 36.4834 24.4934 36.1901 25.6667H29.9934Z" 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 3.66675C14.9051 3.66675 9.16675 9.40508 9.16675 16.5001C9.16675 26.1251 22.0001 40.3334 22.0001 40.3334C22.0001 40.3334 34.8334 26.1251 34.8334 16.5001C34.8334 9.40508 29.0951 3.66675 22.0001 3.66675ZM12.8334 16.5001C12.8334 11.4401 16.9401 7.33341 22.0001 7.33341C27.0601 7.33341 31.1667 11.4401 31.1667 16.5001C31.1667 21.7801 25.8867 29.6817 22.0001 34.6134C18.1867 29.7184 12.8334 21.7251 12.8334 16.5001Z" fill="#0B121B"/>
|
|
3
|
-
<path d="M22.0001 21.0834C24.5314 21.0834 26.5834 19.0314 26.5834 16.5001C26.5834 13.9688 24.5314 11.9167 22.0001 11.9167C19.4688 11.9167 17.4167 13.9688 17.4167 16.5001C17.4167 19.0314 19.4688 21.0834 22.0001 21.0834Z" 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 3.66675C14.9051 3.66675 9.16675 9.40508 9.16675 16.5001C9.16675 26.1251 22.0001 40.3334 22.0001 40.3334C22.0001 40.3334 34.8334 26.1251 34.8334 16.5001C34.8334 9.40508 29.0951 3.66675 22.0001 3.66675ZM12.8334 16.5001C12.8334 11.4401 16.9401 7.33341 22.0001 7.33341C27.0601 7.33341 31.1667 11.4401 31.1667 16.5001C31.1667 21.7801 25.8867 29.6817 22.0001 34.6134C18.1867 29.7184 12.8334 21.7251 12.8334 16.5001Z" fill="#0B121B"/>
|
|
3
|
+
<path d="M22.0001 21.0834C24.5314 21.0834 26.5834 19.0314 26.5834 16.5001C26.5834 13.9688 24.5314 11.9167 22.0001 11.9167C19.4688 11.9167 17.4167 13.9688 17.4167 16.5001C17.4167 19.0314 19.4688 21.0834 22.0001 21.0834Z" 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="M25.6668 3.66675H11.0002C8.9835 3.66675 7.35183 5.31675 7.35183 7.33341L7.3335 36.6667C7.3335 38.6834 8.96516 40.3334 10.9818 40.3334H33.0002C35.0168 40.3334 36.6668 38.6834 36.6668 36.6667V14.6667L25.6668 3.66675ZM29.3335 33.0001H14.6668V29.3334H29.3335V33.0001ZM29.3335 25.6667H14.6668V22.0001H29.3335V25.6667ZM23.8335 16.5001V6.41675L33.9168 16.5001H23.8335Z" 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="M25.6668 3.66675H11.0002C8.9835 3.66675 7.35183 5.31675 7.35183 7.33341L7.3335 36.6667C7.3335 38.6834 8.96516 40.3334 10.9818 40.3334H33.0002C35.0168 40.3334 36.6668 38.6834 36.6668 36.6667V14.6667L25.6668 3.66675ZM29.3335 33.0001H14.6668V29.3334H29.3335V33.0001ZM29.3335 25.6667H14.6668V22.0001H29.3335V25.6667ZM23.8335 16.5001V6.41675L33.9168 16.5001H23.8335Z" fill="#0B121B"/>
|
|
3
|
+
</svg>
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
<svg width="46" height="44" viewBox="0 0 46 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M25.74 30.14L20.66 25.12L20.72 25.06C24.2 21.18 26.68 16.72 28.14 12H34V8H20V4H16V8H2V11.98H24.34C23 15.84 20.88 19.5 18 22.7C16.14 20.64 14.6 18.38 13.38 16H9.38C10.84 19.26 12.84 22.34 15.34 25.12L5.16 35.16L8 38L18 28L24.22 34.22L25.74 30.14ZM37 20H33L24 44H28L30.24 38H39.74L42 44H46L37 20ZM31.76 34L35 25.34L38.24 34H31.76Z" fill="black"/>
|
|
3
|
-
</svg>
|
|
1
|
+
<svg width="46" height="44" viewBox="0 0 46 44" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M25.74 30.14L20.66 25.12L20.72 25.06C24.2 21.18 26.68 16.72 28.14 12H34V8H20V4H16V8H2V11.98H24.34C23 15.84 20.88 19.5 18 22.7C16.14 20.64 14.6 18.38 13.38 16H9.38C10.84 19.26 12.84 22.34 15.34 25.12L5.16 35.16L8 38L18 28L24.22 34.22L25.74 30.14ZM37 20H33L24 44H28L30.24 38H39.74L42 44H46L37 20ZM31.76 34L35 25.34L38.24 34H31.76Z" fill="black"/>
|
|
3
|
+
</svg>
|