pixel-react 1.8.4 → 1.8.5
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/.prettierrc.js +13 -13
- package/.storybook/main.ts +26 -26
- package/.storybook/preview-head.html +2 -2
- package/.storybook/preview.ts +26 -26
- package/.yarnrc.yml +1 -1
- package/README.md +75 -75
- package/index.scss +4 -4
- package/lib/StyleGuide/ColorPalette/ColorPalette.stories.d.ts +6 -0
- package/lib/StyleGuide/Typography/Typography.stories.d.ts +6 -0
- package/lib/components/Accordion/Accordion.stories.d.ts +6 -0
- package/lib/components/AddResourceButton/AddButton.stories.d.ts +8 -0
- package/lib/components/AllProjectsDropdown/AllProjectsDropdown.stories.d.ts +7 -0
- package/lib/components/AppHeader/AppHeader.stories.d.ts +7 -0
- package/lib/components/AttachmentButton/AttachmentButton.stories.d.ts +9 -0
- package/lib/components/Avatar/Avatar.stories.d.ts +10 -0
- package/lib/components/Button/Button.stories.d.ts +13 -0
- package/lib/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.d.ts +7 -0
- package/lib/components/Charts/DashboardDonutChart/types.d.ts +3 -0
- package/lib/components/Charts/DonutChart/DonutChart.stories.d.ts +6 -0
- package/lib/components/Charts/PieChart/PieChart.stories.d.ts +7 -0
- package/lib/components/Charts/RadialChart/RadialChart.stories.d.ts +6 -0
- package/lib/components/Checkbox/Checkbox.stories.d.ts +8 -0
- package/lib/components/Chip/Chip.stories.d.ts +14 -0
- package/lib/components/DatePicker/DatePicker.stories.d.ts +9 -0
- package/lib/components/DragAndDrop/DragAndDrop.stories.d.ts +6 -0
- package/lib/components/Drawer/Drawer.stories.d.ts +12 -0
- package/lib/components/Drawer/Types.d.ts +4 -0
- package/lib/components/Excel/ExcelContextMenu/ExcelContextMenu.d.ts +4 -0
- package/lib/components/Excel/ExcelFile/ExcelFile.d.ts +10 -4
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.d.ts +10 -0
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/DataViewer.d.ts +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.d.ts +9 -0
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/types.d.ts +0 -2
- package/lib/components/Excel/Types.d.ts +14 -10
- package/lib/components/ExcelFile/ColorBarselector/ColorBarSelector.d.ts +8 -0
- package/lib/components/ExcelFile/ContextMenu/ContextMenu.d.ts +4 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/ActiveCell.d.ts +7 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Cell.d.ts +4 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/ColumnIndicator.d.ts +5 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Copied.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/CornerIndicator.d.ts +5 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/DataEditor.d.ts +5 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/DataViewer.d.ts +8 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/FloatingRect.d.ts +10 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/HeaderRow.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Row.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/RowIndicator.d.ts +5 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Selected.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Spreadsheet.d.ts +80 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/Table.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/actions.d.ts +174 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/areModelsEqual.d.ts +1 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/context.d.ts +8 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/engine.d.ts +22 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/formula.d.ts +17 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/index.d.ts +2 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-graph.d.ts +21 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-hash.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/engine/point-set.d.ts +24 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/index.d.ts +13 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/matrix.d.ts +67 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/point-range.d.ts +22 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/point.d.ts +11 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/reducer.d.ts +27 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/selection.d.ts +95 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/types.d.ts +178 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/use-dispatch.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/use-selector.d.ts +3 -0
- package/lib/components/ExcelFile/ExcelFile/Excel/util.d.ts +44 -0
- package/lib/components/ExcelFile/ExcelFile/ExcelFile.d.ts +19 -0
- package/lib/components/ExcelFile/ExcelFile.stories.d.ts +6 -0
- package/lib/components/ExcelFile/ExcelSheetBar/ExcelSheetBar.d.ts +12 -0
- package/lib/components/ExcelFile/ExcelToolBar/ExcelToolBar.d.ts +15 -0
- package/lib/components/ExcelFile/Types.d.ts +129 -0
- package/lib/components/ExcelFile/index.d.ts +1 -0
- package/lib/components/ExpandableMenu/ExpandableMenu.stories.d.ts +7 -0
- package/lib/components/FF_Captcha/captcha.stories.d.ts +8 -0
- package/lib/components/FileDropzone/FileDropzone.stories.d.ts +8 -0
- package/lib/components/Form/Form.stories.d.ts +7 -0
- package/lib/components/GridLayout/GridLayout.stories.d.ts +8 -0
- package/lib/components/HighlightText/HighlightText.stories.d.ts +6 -0
- package/lib/components/Icon/Icon.stories.d.ts +8 -0
- package/lib/components/IconButton/IconButton.stories.d.ts +7 -0
- package/lib/components/IconRadioGroup/IconRadioGroup.stories.d.ts +7 -0
- package/lib/components/Input/Input.stories.d.ts +9 -0
- package/lib/components/InputWithDropdown/InputWithDropdown.stories.d.ts +9 -0
- package/lib/components/LabelEditTextField/LabelEditTextField.stories.d.ts +11 -0
- package/lib/components/LazyLoad/LazyLoad.stories.d.ts +6 -0
- package/lib/components/MachineInputField/MachineInputField.stories.d.ts +6 -0
- package/lib/components/MenuOption/MenuOption.stories.d.ts +16 -0
- package/lib/components/MiniModal/MiniModal.stories.d.ts +10 -0
- package/lib/components/Modal/Modal.stories.d.ts +7 -0
- package/lib/components/ModulesChip/ModuleChip.stories.d.ts +6 -0
- package/lib/components/MultiSelect/MultiSelect.stories.d.ts +10 -0
- package/lib/components/NLPInput/NlpInput.stories.d.ts +7 -0
- package/lib/components/Paper/Paper.stories.d.ts +11 -0
- package/lib/components/RadioButton/RadioButton.stories.d.ts +10 -0
- package/lib/components/RadioGroup/RadioGroup.stories.d.ts +9 -0
- package/lib/components/Search/Search.stories.d.ts +6 -0
- package/lib/components/Select/Select.stories.d.ts +13 -0
- package/lib/components/Select/components/Dropdown/Dropdown.d.ts +4 -0
- package/lib/components/Select/components/Dropdown/dropdownTypes.d.ts +17 -0
- package/lib/components/Select/components/types.d.ts +1 -0
- package/lib/components/Select/types.d.ts +8 -0
- package/lib/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.d.ts +6 -0
- package/lib/components/StateDropdown/StateDropdown.stories.d.ts +10 -0
- package/lib/components/StatusButton/StatusButton.stories.d.ts +14 -0
- package/lib/components/Table/Table.stories.d.ts +13 -0
- package/lib/components/TableTree/TableTree.stories.d.ts +7 -0
- package/lib/components/Tabs/Tabs.stories.d.ts +9 -0
- package/lib/components/TextArea/Textarea.stories.d.ts +9 -0
- package/lib/components/Toast/Toast.stories.d.ts +6 -0
- package/lib/components/Toastify/Toastify.stories.d.ts +6 -0
- package/lib/components/Toggle/Toggle.stories.d.ts +12 -0
- package/lib/components/Tooltip/Tooltip.stories.d.ts +15 -0
- package/lib/components/Typography/Typography.stories.d.ts +10 -0
- package/lib/components/VariableInput/VariableInput.stories.d.ts +6 -0
- package/lib/index.d.ts +42 -6
- package/lib/index.esm.js +4347 -1378
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +4356 -1377
- package/lib/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/utils/checkEmpty/checkEmpty.stories.d.ts +6 -0
- package/lib/utils/compareArrays/compareArrays.stories.d.ts +6 -0
- package/lib/utils/compareObjects/compareObjects.stories.d.ts +6 -0
- package/lib/utils/debounce/debounce.stories.d.ts +6 -0
- package/lib/utils/ffID/ffID.stories.d.ts +6 -0
- package/lib/utils/find/findAndInsert.d.ts +7 -0
- package/lib/utils/find/findAndInsert.stories.d.ts +7 -0
- package/lib/utils/findAndInsert/findAndInsert.stories.d.ts +7 -0
- package/lib/utils/getEncryptedData/getEncryptedData.stories.d.ts +6 -0
- package/lib/utils/getExtension/getExtension.stories.d.ts +6 -0
- package/lib/utils/keyBoardActionUtil/UseKeyboardActions.d.ts +2 -0
- package/lib/utils/keyBoardActionUtil/types.d.ts +4 -0
- package/lib/utils/throttle/throttle.stories.d.ts +6 -0
- package/lib/utils/truncateText/truncateText.stories.d.ts +6 -0
- package/lib/validations/regex.d.ts +2 -1
- package/package.json +86 -81
- package/rollup.config.mjs +67 -67
- package/src/StyleGuide/ColorPalette/ColorPalette.scss +62 -62
- package/src/StyleGuide/ColorPalette/ColorPalette.stories.tsx +16 -16
- package/src/StyleGuide/ColorPalette/ColorPalette.tsx +67 -67
- package/src/StyleGuide/ColorPalette/colorPaletteList.ts +304 -304
- package/src/StyleGuide/ColorPalette/index.ts +1 -1
- package/src/StyleGuide/ColorPalette/types.ts +19 -19
- package/src/StyleGuide/Typography/Typography.scss +99 -99
- package/src/StyleGuide/Typography/Typography.stories.tsx +16 -16
- package/src/StyleGuide/Typography/Typography.tsx +60 -60
- package/src/StyleGuide/Typography/TypographyList.ts +3 -3
- package/src/StyleGuide/Typography/types.ts +9 -9
- package/src/assets/Themes/BaseTheme.scss +306 -306
- package/src/assets/Themes/BlueTheme.scss +279 -279
- package/src/assets/Themes/DarkTheme.scss +319 -319
- package/src/assets/Themes/Theme.scss +21 -21
- package/src/assets/icons/Arrow.svg +4 -4
- package/src/assets/icons/Header_preset.svg +18 -18
- package/src/assets/icons/accordion_header_icon.svg +10 -10
- package/src/assets/icons/active_license_icon.svg +3 -3
- package/src/assets/icons/add_archive.svg +9 -9
- package/src/assets/icons/add_file.svg +4 -4
- package/src/assets/icons/add_label_icon.svg +3 -3
- package/src/assets/icons/add_locator.svg +4 -4
- package/src/assets/icons/add_testcase.svg +3 -3
- package/src/assets/icons/add_user.svg +9 -9
- package/src/assets/icons/add_variable.svg +11 -11
- package/src/assets/icons/add_variable_icon.svg +4 -4
- package/src/assets/icons/ai_search.svg +9 -9
- package/src/assets/icons/alert.svg +17 -17
- package/src/assets/icons/all_borders.svg +3 -3
- package/src/assets/icons/all_projects.svg +3 -3
- package/src/assets/icons/android.svg +9 -9
- package/src/assets/icons/android_icon.svg +6 -6
- package/src/assets/icons/apk_file_type.svg +4 -4
- package/src/assets/icons/app_switch.svg +11 -11
- package/src/assets/icons/approval_pending.svg +8 -8
- package/src/assets/icons/arrow_down.svg +3 -3
- package/src/assets/icons/arrow_right.svg +4 -4
- package/src/assets/icons/arrow_up.svg +3 -3
- package/src/assets/icons/arrows_down_icon.svg +3 -3
- package/src/assets/icons/arrows_right_icon.svg +10 -10
- package/src/assets/icons/arrows_top_icon.svg +3 -3
- package/src/assets/icons/attachment_icon.svg +3 -3
- package/src/assets/icons/authorization.svg +4 -4
- package/src/assets/icons/authorization_icon.svg +4 -4
- package/src/assets/icons/auto_save_icon.svg +4 -4
- package/src/assets/icons/automation_testcase.svg +4 -4
- package/src/assets/icons/back_icon.svg +3 -3
- package/src/assets/icons/backward.svg +10 -10
- package/src/assets/icons/backward_icon.svg +3 -3
- package/src/assets/icons/beautify_icon.svg +3 -3
- package/src/assets/icons/bold.svg +3 -3
- package/src/assets/icons/border_bottom.svg +3 -3
- package/src/assets/icons/border_left.svg +3 -3
- package/src/assets/icons/border_right.svg +3 -3
- package/src/assets/icons/border_top.svg +3 -3
- package/src/assets/icons/browser_stack.svg +9 -9
- package/src/assets/icons/browserstack_icon.svg +24 -24
- package/src/assets/icons/calendar_icon.svg +9 -9
- package/src/assets/icons/capture_icon.svg +2 -2
- package/src/assets/icons/check_mark.svg +3 -3
- package/src/assets/icons/chrome.svg +12 -12
- package/src/assets/icons/client_profile.svg +4 -4
- package/src/assets/icons/clock_icon.svg +11 -11
- package/src/assets/icons/clone_icon.svg +3 -3
- package/src/assets/icons/close_pill.svg +3 -3
- package/src/assets/icons/cloud_server_host_icon.svg +3 -3
- package/src/assets/icons/collapse-icon.svg +6 -6
- package/src/assets/icons/compressed_file_type.svg +4 -4
- package/src/assets/icons/configuration.svg +3 -3
- package/src/assets/icons/continue_without_sign.svg +3 -3
- package/src/assets/icons/copy-icon.svg +3 -3
- package/src/assets/icons/csv_file_type.svg +4 -4
- package/src/assets/icons/dashboard_icon.svg +31 -31
- package/src/assets/icons/dashboard_mobile_icon.svg +47 -47
- package/src/assets/icons/dashboard_web_icon.svg +9 -9
- package/src/assets/icons/data_provider.svg +8 -8
- package/src/assets/icons/dataset_list.svg +3 -3
- package/src/assets/icons/defects.svg +8 -8
- package/src/assets/icons/delete.svg +3 -3
- package/src/assets/icons/delete_info.svg +17 -17
- package/src/assets/icons/depends_on_script.svg +7 -7
- package/src/assets/icons/details.svg +3 -3
- package/src/assets/icons/double_underline.svg +5 -5
- package/src/assets/icons/download-icon.svg +3 -3
- package/src/assets/icons/download_file_icon.svg +3 -3
- package/src/assets/icons/download_icon.svg +4 -4
- package/src/assets/icons/drag_icon.svg +4 -4
- package/src/assets/icons/drawer_maximize.svg +6 -6
- package/src/assets/icons/dropzone_icon.svg +18 -18
- package/src/assets/icons/edge.svg +30 -30
- package/src/assets/icons/edit_icon.svg +5 -5
- package/src/assets/icons/element.svg +4 -4
- package/src/assets/icons/email_group.svg +3 -3
- package/src/assets/icons/error.svg +17 -17
- package/src/assets/icons/excel_corner_menu.svg +3 -3
- package/src/assets/icons/executions_icon.svg +3 -3
- package/src/assets/icons/expand-icon.svg +6 -6
- package/src/assets/icons/export.svg +4 -4
- package/src/assets/icons/export_collection_icon.svg +13 -13
- package/src/assets/icons/external_user.svg +13 -13
- package/src/assets/icons/eye_closed.svg +3 -3
- package/src/assets/icons/eye_open_icon.svg +3 -3
- package/src/assets/icons/failed_status_icon.svg +12 -12
- package/src/assets/icons/file.svg +11 -11
- package/src/assets/icons/fill_color.svg +7 -7
- package/src/assets/icons/filter.svg +4 -4
- package/src/assets/icons/fire_fox.svg +106 -106
- package/src/assets/icons/fireflink_finder_logo.svg +7 -7
- package/src/assets/icons/fireflink_icon.svg +4 -4
- package/src/assets/icons/fireflink_logo.svg +13 -13
- package/src/assets/icons/fireflink_platform.svg +4 -4
- package/src/assets/icons/firefox.svg +84 -84
- package/src/assets/icons/flaky_status_icon.svg +12 -12
- package/src/assets/icons/formate_painter.svg +5 -5
- package/src/assets/icons/formula_icon.svg +3 -3
- package/src/assets/icons/forward.svg +3 -3
- package/src/assets/icons/forward_icon.svg +3 -3
- package/src/assets/icons/full_access_icon.svg +4 -4
- package/src/assets/icons/gif_file_type.svg +4 -4
- package/src/assets/icons/global_variable_icon.svg +4 -4
- package/src/assets/icons/group_user.svg +12 -12
- package/src/assets/icons/hamburger_menu.svg +3 -3
- package/src/assets/icons/help_icon.svg +10 -10
- package/src/assets/icons/hide_access_icon.svg +3 -3
- package/src/assets/icons/hide_icon.svg +9 -9
- package/src/assets/icons/history_icon.svg +19 -19
- package/src/assets/icons/html_file_type.svg +4 -4
- package/src/assets/icons/impact_list.svg +6 -6
- package/src/assets/icons/import.svg +4 -4
- package/src/assets/icons/import_icon.svg +4 -4
- package/src/assets/icons/info.svg +17 -17
- package/src/assets/icons/info_icon.svg +5 -5
- package/src/assets/icons/info_user.svg +5 -5
- package/src/assets/icons/internet_explorer.svg +3 -3
- package/src/assets/icons/ios_icon.svg +11 -11
- package/src/assets/icons/ipk_file_type.svg +4 -4
- package/src/assets/icons/italic.svg +3 -3
- package/src/assets/icons/jira.svg +3 -3
- package/src/assets/icons/jpg_file_type.svg +4 -4
- package/src/assets/icons/json_file_type.svg +4 -4
- package/src/assets/icons/label_icon.svg +8 -8
- package/src/assets/icons/label_plus.svg +3 -3
- package/src/assets/icons/labels.svg +8 -8
- package/src/assets/icons/lambda_icon.svg +3 -3
- package/src/assets/icons/left_arrow_icon.svg +3 -3
- package/src/assets/icons/license_expired.svg +20 -20
- package/src/assets/icons/license_info.svg +28 -28
- package/src/assets/icons/license_warning.svg +10 -10
- package/src/assets/icons/link_expired.svg +186 -186
- package/src/assets/icons/linked_defects.svg +11 -11
- package/src/assets/icons/linux.svg +42 -42
- package/src/assets/icons/local.svg +3 -3
- package/src/assets/icons/local_variable_icon.svg +4 -4
- package/src/assets/icons/logo.svg +17 -17
- package/src/assets/icons/mac.svg +9 -9
- package/src/assets/icons/machine_disable_icon.svg +18 -18
- package/src/assets/icons/machine_enable_icon.svg +10 -10
- package/src/assets/icons/manage_apps.svg +3 -3
- package/src/assets/icons/manual_locator.svg +7 -7
- package/src/assets/icons/manual_testcase.svg +3 -3
- package/src/assets/icons/maximize_icon.svg +5 -5
- package/src/assets/icons/maximize_script.svg +12 -12
- package/src/assets/icons/maximize_tree.svg +3 -3
- package/src/assets/icons/minimize_script.svg +5 -5
- package/src/assets/icons/mobile_icon.svg +3 -3
- package/src/assets/icons/moon_stars.svg +10 -10
- package/src/assets/icons/more.svg +10 -10
- package/src/assets/icons/move_icon.svg +5 -5
- package/src/assets/icons/ms_dynamic.svg +4 -4
- package/src/assets/icons/ms_dynamic_icon.svg +15 -15
- package/src/assets/icons/nlp_help_icon.svg +3 -3
- package/src/assets/icons/no_access_icon.svg +4 -4
- package/src/assets/icons/no_border.svg +3 -3
- package/src/assets/icons/no_data.svg +13 -13
- package/src/assets/icons/no_license_found.svg +22 -22
- package/src/assets/icons/notification_icon.svg +3 -3
- package/src/assets/icons/opera.svg +9 -9
- package/src/assets/icons/parameters.svg +3 -3
- package/src/assets/icons/passed_status_icon.svg +12 -12
- package/src/assets/icons/pdf_file_type.svg +4 -4
- package/src/assets/icons/plus_icon.svg +11 -11
- package/src/assets/icons/plus_round_icon.svg +38 -38
- package/src/assets/icons/plus_user_icon.svg +3 -3
- package/src/assets/icons/png_file_type.svg +4 -4
- package/src/assets/icons/pre_post_condition.svg +8 -8
- package/src/assets/icons/program_element.svg +8 -8
- package/src/assets/icons/project_element.svg +4 -4
- package/src/assets/icons/project_env_variable_icon.svg +4 -4
- package/src/assets/icons/project_status_icon.svg +10 -10
- package/src/assets/icons/quick_run_setting_icon.svg +5 -5
- package/src/assets/icons/refresh-icon.svg +4 -4
- package/src/assets/icons/refresh_icon.svg +4 -4
- package/src/assets/icons/reload.svg +3 -3
- package/src/assets/icons/remove.svg +11 -11
- package/src/assets/icons/remove_user.svg +3 -3
- package/src/assets/icons/replace.svg +11 -11
- package/src/assets/icons/replace_file.svg +13 -13
- package/src/assets/icons/replace_icon.svg +6 -6
- package/src/assets/icons/reset-link.svg +52 -52
- package/src/assets/icons/right_arrow_icon.svg +4 -4
- package/src/assets/icons/rotate_icon.svg +10 -10
- package/src/assets/icons/run_automation_scripts_icon.svg +33 -33
- package/src/assets/icons/run_icon.svg +26 -26
- package/src/assets/icons/run_manual_testcase_icon.svg +4 -4
- package/src/assets/icons/safari.svg +93 -93
- package/src/assets/icons/safari_icon.svg +12 -12
- package/src/assets/icons/sales_force.svg +7 -7
- package/src/assets/icons/salesforce_icon.svg +14 -14
- package/src/assets/icons/sample_template_first.svg +29 -29
- package/src/assets/icons/sample_template_second.svg +47 -47
- package/src/assets/icons/sause_lab.svg +3 -3
- package/src/assets/icons/save_as_step.svg +3 -3
- package/src/assets/icons/search.svg +3 -3
- package/src/assets/icons/send_step.svg +4 -4
- package/src/assets/icons/settings.svg +3 -3
- package/src/assets/icons/single_user.svg +12 -12
- package/src/assets/icons/skipped_status_icon.svg +12 -12
- package/src/assets/icons/standard_template.svg +30 -30
- package/src/assets/icons/step_group.svg +10 -10
- package/src/assets/icons/strike_through.svg +3 -3
- package/src/assets/icons/success.svg +17 -17
- package/src/assets/icons/suites_icon.svg +3 -3
- package/src/assets/icons/sun_icon.svg +10 -10
- package/src/assets/icons/swipe_icon.svg +9 -9
- package/src/assets/icons/switch_license_icon.svg +123 -123
- package/src/assets/icons/system_warning.svg +61 -61
- package/src/assets/icons/tap_icon.svg +3 -3
- package/src/assets/icons/test_data.svg +5 -5
- package/src/assets/icons/test_data_set.svg +7 -7
- package/src/assets/icons/test_freshers_logo.svg +8 -8
- package/src/assets/icons/text_align_center.svg +3 -3
- package/src/assets/icons/text_align_left.svg +3 -3
- package/src/assets/icons/text_align_right.svg +3 -3
- package/src/assets/icons/text_color.svg +3 -3
- package/src/assets/icons/tick_icon.svg +4 -4
- package/src/assets/icons/toast_close.svg +3 -3
- package/src/assets/icons/txt_file_type.svg +4 -4
- package/src/assets/icons/underline.svg +4 -4
- package/src/assets/icons/unfollow_icon.svg +3 -3
- package/src/assets/icons/update_icon.svg +3 -3
- package/src/assets/icons/user_password_lock.svg +220 -220
- package/src/assets/icons/user_profile.svg +3 -3
- package/src/assets/icons/user_warning.svg +235 -235
- package/src/assets/icons/user_with_system.svg +637 -637
- package/src/assets/icons/variable.svg +3 -3
- package/src/assets/icons/variable_icon.svg +4 -4
- package/src/assets/icons/variable_set.svg +5 -5
- package/src/assets/icons/vertical_separator.svg +3 -3
- package/src/assets/icons/view_access_icon.svg +4 -4
- package/src/assets/icons/view_icon.svg +3 -3
- package/src/assets/icons/warning.svg +17 -17
- package/src/assets/icons/warning_status_icon.svg +12 -12
- package/src/assets/icons/web&mobile_icon.svg +3 -3
- package/src/assets/icons/web_icon.svg +3 -3
- package/src/assets/icons/web_mobile_icon.svg +29 -29
- package/src/assets/icons/web_service_icon.svg +3 -3
- package/src/assets/icons/web_services_icon.svg +30 -30
- package/src/assets/icons/window_maximize.svg +3 -3
- package/src/assets/icons/window_minimize.svg +3 -3
- package/src/assets/icons/window_restore.svg +4 -4
- package/src/assets/icons/windows.svg +10 -10
- package/src/assets/icons/wrong_mark.svg +3 -3
- package/src/assets/icons/wswb_delete_icon.svg +3 -3
- package/src/assets/icons/wswb_plus_icon.svg +4 -4
- package/src/assets/icons/xls_file_type.svg +4 -4
- package/src/assets/icons/xlsx_file_type.svg +4 -4
- package/src/assets/icons/xml_file_type.svg +4 -4
- package/src/assets/styles/_colors.scss +150 -150
- package/src/assets/styles/_fonts.scss +45 -45
- package/src/assets/styles/_mixins.scss +21 -21
- package/src/assets/utils/functionUtils.ts +96 -96
- package/src/components/Accordion/Accordion.scss +46 -46
- package/src/components/Accordion/Accordion.stories.tsx +48 -48
- package/src/components/Accordion/Accordion.tsx +69 -69
- package/src/components/Accordion/index.ts +1 -1
- package/src/components/Accordion/types.ts +44 -44
- package/src/components/AddResourceButton/AddButton.scss +36 -36
- package/src/components/AddResourceButton/AddButton.stories.tsx +126 -126
- package/src/components/AddResourceButton/AddButton.tsx +121 -121
- package/src/components/AddResourceButton/ArrowsButton/ArrowsButton.scss +161 -161
- package/src/components/AddResourceButton/ArrowsButton/ArrowsButton.tsx +38 -38
- package/src/components/AddResourceButton/index.ts +1 -1
- package/src/components/AddResourceButton/type.ts +92 -92
- package/src/components/AllProjectsDropdown/AllProjectsDropdown.scss +189 -189
- package/src/components/AllProjectsDropdown/AllProjectsDropdown.stories.tsx +117 -117
- package/src/components/AllProjectsDropdown/AllProjectsDropdown.tsx +152 -152
- package/src/components/AllProjectsDropdown/types.ts +14 -14
- package/src/components/AppHeader/AppHeader.scss +218 -218
- package/src/components/AppHeader/AppHeader.stories.tsx +553 -553
- package/src/components/AppHeader/AppHeader.tsx +199 -199
- package/src/components/AppHeader/index.ts +1 -1
- package/src/components/AppHeader/types.ts +54 -54
- package/src/components/AttachImage/AttachImage.scss +76 -76
- package/src/components/AttachImage/AttachImage.stories.tsx +24 -24
- package/src/components/AttachImage/AttachImage.tsx +60 -60
- package/src/components/AttachImage/index.ts +2 -2
- package/src/components/AttachImage/types.ts +26 -26
- package/src/components/AttachmentButton/AttachmentButton.scss +9 -9
- package/src/components/AttachmentButton/AttachmentButton.stories.tsx +81 -81
- package/src/components/AttachmentButton/AttachmentButton.tsx +129 -129
- package/src/components/AttachmentButton/types.ts +13 -13
- package/src/components/Avatar/Avatar.scss +27 -27
- package/src/components/Avatar/Avatar.stories.tsx +76 -76
- package/src/components/Avatar/Avatar.tsx +41 -41
- package/src/components/Avatar/types.ts +35 -35
- package/src/components/Button/Button.scss +166 -166
- package/src/components/Button/Button.stories.tsx +81 -81
- package/src/components/Button/Button.tsx +91 -91
- package/src/components/Button/index.ts +1 -1
- package/src/components/Button/types.ts +90 -90
- package/src/components/Charts/BarChart/BarChart.scss +69 -69
- package/src/components/Charts/BarChart/BarChart.stories.tsx +70 -70
- package/src/components/Charts/BarChart/BarChart.tsx +349 -349
- package/src/components/Charts/BarChart/types.ts +12 -12
- package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.scss +221 -221
- package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.tsx +90 -58
- package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.tsx +560 -554
- package/src/components/Charts/DashboardDonutChart/types.ts +63 -60
- package/src/components/Charts/DonutChart/DonutChart.scss +76 -76
- package/src/components/Charts/DonutChart/DonutChart.stories.tsx +30 -30
- package/src/components/Charts/DonutChart/DonutChart.tsx +246 -246
- package/src/components/Charts/DonutChart/index.ts +1 -1
- package/src/components/Charts/DonutChart/type.ts +23 -23
- package/src/components/Charts/IconRadialChart/IconRadialChart.scss +25 -25
- package/src/components/Charts/IconRadialChart/IconRadialChart.stories.tsx +51 -51
- package/src/components/Charts/IconRadialChart/IconRadialChart.tsx +173 -173
- package/src/components/Charts/IconRadialChart/types.ts +28 -28
- package/src/components/Charts/LineChart/LineChart.scss +92 -92
- package/src/components/Charts/LineChart/LineChart.stories.tsx +198 -198
- package/src/components/Charts/LineChart/LineChart.tsx +391 -391
- package/src/components/Charts/LineChart/index.ts +1 -1
- package/src/components/Charts/LineChart/types.ts +31 -31
- package/src/components/Charts/MultiRadialChart/MultiRadialChart.scss +85 -85
- package/src/components/Charts/MultiRadialChart/MultiRadialChart.stories.tsx +117 -117
- package/src/components/Charts/MultiRadialChart/MultiRadialChart.tsx +310 -306
- package/src/components/Charts/MultiRadialChart/index.ts +1 -1
- package/src/components/Charts/MultiRadialChart/types.ts +28 -28
- package/src/components/Charts/PieChart/PieChart.scss +41 -41
- package/src/components/Charts/PieChart/PieChart.stories.tsx +46 -46
- package/src/components/Charts/PieChart/PieChart.tsx +192 -192
- package/src/components/Charts/PieChart/index.ts +1 -1
- package/src/components/Charts/PieChart/types.ts +28 -28
- package/src/components/Charts/RadialChart/RadialChart.scss +16 -16
- package/src/components/Charts/RadialChart/RadialChart.stories.tsx +36 -36
- package/src/components/Charts/RadialChart/RadialChart.tsx +180 -180
- package/src/components/Charts/RadialChart/index.ts +1 -1
- package/src/components/Charts/RadialChart/types.ts +32 -32
- package/src/components/Checkbox/Checkbox.scss +148 -148
- package/src/components/Checkbox/Checkbox.stories.tsx +78 -78
- package/src/components/Checkbox/Checkbox.tsx +57 -57
- package/src/components/Checkbox/types.ts +34 -34
- package/src/components/Chip/Chip.scss +95 -95
- package/src/components/Chip/Chip.stories.tsx +125 -125
- package/src/components/Chip/Chip.tsx +39 -39
- package/src/components/Chip/index.ts +1 -1
- package/src/components/Chip/types.ts +19 -19
- package/src/components/ChooseFile/ChooseFile.stories.tsx +190 -190
- package/src/components/ChooseFile/ChooseFile.tsx +46 -46
- package/src/components/ChooseFile/types.ts +78 -78
- package/src/components/Comment/Comments.scss +166 -166
- package/src/components/Comment/Comments.stories.tsx +212 -212
- package/src/components/Comment/Comments.tsx +51 -51
- package/src/components/Comment/comment/Comment.tsx +206 -206
- package/src/components/Comment/comment/useNode.ts +51 -51
- package/src/components/Comment/index.ts +1 -1
- package/src/components/Comment/type.ts +36 -36
- package/src/components/ConditionalDropdown/ConditionalDropdown.scss +17 -17
- package/src/components/ConditionalDropdown/ConditionalDropdown.stories.tsx +151 -151
- package/src/components/ConditionalDropdown/ConditionalDropdown.tsx +157 -157
- package/src/components/ConditionalDropdown/OptionsDropdown.tsx +43 -43
- package/src/components/ConditionalDropdown/index.ts +1 -1
- package/src/components/ConditionalDropdown/types.ts +163 -163
- package/src/components/ConnectingBranch/BranchComponents/MachineInstances.tsx +143 -143
- package/src/components/ConnectingBranch/ConnectingBranch.scss +221 -221
- package/src/components/ConnectingBranch/ConnectingBranch.stories.tsx +53 -53
- package/src/components/ConnectingBranch/ConnectingBranch.tsx +196 -196
- package/src/components/ConnectingBranch/data.tsx +226 -226
- package/src/components/ConnectingBranch/index.ts +1 -1
- package/src/components/ConnectingBranch/types.ts +42 -42
- package/src/components/CreateVariable/CreateVariableSlider.scss +18 -18
- package/src/components/CreateVariable/CreateVariableSlider.stories.tsx +66 -66
- package/src/components/CreateVariable/CreateVariableSlider.tsx +95 -95
- package/src/components/CreateVariable/index.ts +1 -1
- package/src/components/CreateVariable/types.ts +58 -58
- package/src/components/DatePicker/DatePicker.scss +723 -723
- package/src/components/DatePicker/DatePicker.stories.tsx +193 -193
- package/src/components/DatePicker/DatePicker.tsx +502 -502
- package/src/components/DatePicker/Timepicker.tsx +372 -372
- package/src/components/DatePicker/types.ts +105 -105
- package/src/components/DownloadClient/DownloadClient.scss +67 -67
- package/src/components/DownloadClient/DownloadClient.stories.tsx +26 -26
- package/src/components/DownloadClient/DownloadClient.tsx +90 -90
- package/src/components/DownloadClient/type.ts +33 -33
- package/src/components/DragAndDrop/DragAndDrop.d.ts +5 -5
- package/src/components/DragAndDrop/DragAndDrop.stories.tsx +25 -25
- package/src/components/DragAndDrop/DragAndDrop.ts +7 -7
- package/src/components/DragAndDrop/DragAndDropList.scss +69 -69
- package/src/components/DragAndDrop/DragAndDropList.tsx +151 -151
- package/src/components/Drawer/Drawer.scss +139 -139
- package/src/components/Drawer/Drawer.stories.tsx +157 -156
- package/src/components/Drawer/Drawer.tsx +237 -233
- package/src/components/Drawer/Types.ts +165 -161
- package/src/components/EditTextField/EditTextField.scss +97 -97
- package/src/components/EditTextField/EditTextField.stories.tsx +127 -127
- package/src/components/EditTextField/EditTextField.tsx +175 -175
- package/src/components/EditTextField/index.ts +1 -1
- package/src/components/EditTextField/types.ts +55 -55
- package/src/components/Editor/Editor.scss +61 -61
- package/src/components/Editor/Editor.stories.tsx +54 -54
- package/src/components/Editor/Editor.tsx +250 -250
- package/src/components/Editor/VariableDropdown.scss +28 -28
- package/src/components/Editor/VariableDropdown.tsx +57 -57
- package/src/components/Editor/constants.ts +180 -180
- package/src/components/Editor/types.ts +89 -89
- package/src/components/Excel/ColorBarSelector/ColorBarSelector.scss +15 -15
- package/src/components/Excel/ColorBarSelector/ColorBarSelector.tsx +43 -43
- package/src/components/Excel/ExcelContextMenu/ExcelContextMenu.scss +27 -27
- package/src/components/Excel/ExcelContextMenu/ExcelContextMenu.tsx +46 -42
- package/src/components/Excel/ExcelFile/ExcelFile.scss +60 -56
- package/src/components/Excel/ExcelFile/ExcelFile.tsx +534 -512
- package/src/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.tsx +183 -155
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Cell.tsx +170 -206
- package/src/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.tsx +176 -176
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Copied.tsx +25 -25
- package/src/components/Excel/ExcelFile/ExcelFileComponents/CornerIndicator.tsx +56 -56
- package/src/components/Excel/ExcelFile/ExcelFileComponents/DataEditor.tsx +40 -40
- package/src/components/Excel/ExcelFile/ExcelFileComponents/DataViewer.tsx +46 -85
- package/src/components/Excel/ExcelFile/ExcelFileComponents/FloatingRect.tsx +61 -61
- package/src/components/Excel/ExcelFile/ExcelFileComponents/HeaderRow.tsx +7 -7
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Row.tsx +5 -5
- package/src/components/Excel/ExcelFile/ExcelFileComponents/RowIndicator.tsx +157 -157
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Selected.tsx +32 -32
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.scss +201 -201
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.tsx +542 -531
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Table.tsx +19 -19
- package/src/components/Excel/ExcelFile/ExcelFileComponents/actions.ts +575 -575
- package/src/components/Excel/ExcelFile/ExcelFileComponents/areModelsEqual.ts +18 -18
- package/src/components/Excel/ExcelFile/ExcelFileComponents/context.ts +12 -12
- package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/engine.ts +153 -153
- package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/formula.ts +31 -31
- package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/index.ts +2 -2
- package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/point-graph.ts +152 -152
- package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/point-hash.ts +10 -10
- package/src/components/Excel/ExcelFile/ExcelFileComponents/engine/point-set.ts +69 -69
- package/src/components/Excel/ExcelFile/ExcelFileComponents/index.ts +49 -49
- package/src/components/Excel/ExcelFile/ExcelFileComponents/matrix.ts +382 -382
- package/src/components/Excel/ExcelFile/ExcelFileComponents/point-range.ts +82 -82
- package/src/components/Excel/ExcelFile/ExcelFileComponents/point.ts +15 -15
- package/src/components/Excel/ExcelFile/ExcelFileComponents/reducer.ts +716 -716
- package/src/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.ts +887 -886
- package/src/components/Excel/ExcelFile/ExcelFileComponents/selection.ts +257 -257
- package/src/components/Excel/ExcelFile/ExcelFileComponents/types.ts +263 -266
- package/src/components/Excel/ExcelFile/ExcelFileComponents/typings/fast-formula-parser.d.ts +58 -58
- package/src/components/Excel/ExcelFile/ExcelFileComponents/use-dispatch.ts +8 -8
- package/src/components/Excel/ExcelFile/ExcelFileComponents/use-selector.ts +9 -9
- package/src/components/Excel/ExcelFile/ExcelFileComponents/util.ts +172 -172
- package/src/components/Excel/ExcelFile.stories.tsx +160 -168
- package/src/components/Excel/ExcelToolBar/ExcelToolBar.scss +96 -96
- package/src/components/Excel/ExcelToolBar/ExcelToolBar.tsx +434 -434
- package/src/components/Excel/Types.ts +198 -196
- package/src/components/Excel/dataConversion.ts +196 -196
- package/src/components/Excel/index.ts +1 -1
- package/src/components/ExpandableMenu/ExpandableMenu.scss +110 -110
- package/src/components/ExpandableMenu/ExpandableMenu.stories.tsx +67 -67
- package/src/components/ExpandableMenu/ExpandableMenu.tsx +101 -101
- package/src/components/ExpandableMenu/index.ts +1 -1
- package/src/components/ExpandableMenu/types.ts +34 -34
- package/src/components/FF_Captcha/Recaptcha.scss +10 -10
- package/src/components/FF_Captcha/Recaptcha.tsx +40 -40
- package/src/components/FF_Captcha/captcha.stories.tsx +40 -40
- package/src/components/FF_Captcha/types.ts +22 -22
- package/src/components/FieldSet/FieldSet.scss +10 -10
- package/src/components/FieldSet/FieldSet.stories.tsx +104 -104
- package/src/components/FieldSet/FieldSet.tsx +29 -29
- package/src/components/FieldSet/index.ts +1 -1
- package/src/components/FieldSet/types.ts +8 -8
- package/src/components/FileDropzone/Dropzone.tsx +108 -108
- package/src/components/FileDropzone/FileDropzone.scss +180 -180
- package/src/components/FileDropzone/FileDropzone.stories.tsx +273 -273
- package/src/components/FileDropzone/FileDropzone.tsx +166 -166
- package/src/components/FileDropzone/FilePreview.tsx +77 -77
- package/src/components/FileDropzone/RadioFilePreview.tsx +80 -80
- package/src/components/FileDropzone/index.ts +1 -1
- package/src/components/FileDropzone/types.ts +207 -207
- package/src/components/Form/Form.d.ts +2 -2
- package/src/components/Form/Form.scss +158 -158
- package/src/components/Form/Form.stories.tsx +508 -508
- package/src/components/Form/Form.ts +2 -2
- package/src/components/Form/Forms.tsx +39 -39
- package/src/components/Form/validation.json +29 -29
- package/src/components/GridLayout/GridLayout.scss +69 -69
- package/src/components/GridLayout/GridLayout.stories.tsx +90 -90
- package/src/components/GridLayout/GridLayout.tsx +39 -39
- package/src/components/GridLayout/GridLayoutStory.scss +25 -25
- package/src/components/GridLayout/types.ts +84 -84
- package/src/components/HighlightText/HighlightText.scss +3 -3
- package/src/components/HighlightText/HighlightText.stories.tsx +22 -22
- package/src/components/HighlightText/HighlightText.tsx +33 -33
- package/src/components/HighlightText/index.ts +1 -1
- package/src/components/HighlightText/types.ts +4 -4
- package/src/components/Icon/Icon.stories.tsx +112 -112
- package/src/components/Icon/Icon.tsx +88 -88
- package/src/components/Icon/Icons.scss +50 -50
- package/src/components/Icon/iconList.ts +515 -515
- package/src/components/Icon/index.ts +1 -1
- package/src/components/Icon/types.ts +14 -14
- package/src/components/IconButton/IconButton.scss +54 -54
- package/src/components/IconButton/IconButton.stories.tsx +34 -34
- package/src/components/IconButton/IconButton.tsx +32 -32
- package/src/components/IconButton/index.ts +1 -1
- package/src/components/IconButton/types.ts +5 -5
- package/src/components/IconRadioGroup/IconRadioGroup.scss +64 -64
- package/src/components/IconRadioGroup/IconRadioGroup.stories.tsx +108 -108
- package/src/components/IconRadioGroup/IconRadioGroup.tsx +73 -73
- package/src/components/IconRadioGroup/index.ts +1 -1
- package/src/components/IconRadioGroup/type.ts +49 -49
- package/src/components/Input/Input.scss +170 -170
- package/src/components/Input/Input.stories.tsx +153 -153
- package/src/components/Input/Input.tsx +122 -122
- package/src/components/Input/types.ts +89 -89
- package/src/components/InputWithDropdown/InputWithDropdown.scss +220 -220
- package/src/components/InputWithDropdown/InputWithDropdown.stories.tsx +169 -169
- package/src/components/InputWithDropdown/InputWithDropdown.tsx +129 -129
- package/src/components/InputWithDropdown/index.ts +1 -1
- package/src/components/InputWithDropdown/types.ts +113 -113
- package/src/components/LabelEditTextField/LabelEditTextField.scss +94 -94
- package/src/components/LabelEditTextField/LabelEditTextField.stories.tsx +198 -198
- package/src/components/LabelEditTextField/LabelEditTextField.tsx +267 -267
- package/src/components/LabelEditTextField/index.ts +1 -1
- package/src/components/LabelEditTextField/types.ts +51 -51
- package/src/components/LazyLoad/LazyLoad.d.ts +3 -3
- package/src/components/LazyLoad/LazyLoad.stories.tsx +33 -33
- package/src/components/LazyLoad/LazyLoad.ts +2 -2
- package/src/components/LazyLoad/LazyLoading.tsx +19 -19
- package/src/components/LazyLoad/index.ts +1 -1
- package/src/components/MachineInputField/MachineInputField.scss +59 -59
- package/src/components/MachineInputField/MachineInputField.stories.tsx +33 -33
- package/src/components/MachineInputField/MachineInputField.tsx +85 -85
- package/src/components/MachineInputField/index.ts +1 -1
- package/src/components/MachineInputField/types.ts +15 -15
- package/src/components/MenuOption/MenuOption.scss +97 -97
- package/src/components/MenuOption/MenuOption.stories.tsx +212 -212
- package/src/components/MenuOption/MenuOption.tsx +222 -222
- package/src/components/MenuOption/types.ts +231 -231
- package/src/components/MiniModal/MiniModal.scss +169 -169
- package/src/components/MiniModal/MiniModal.stories.tsx +740 -740
- package/src/components/MiniModal/MiniModal.tsx +346 -346
- package/src/components/MiniModal/index.ts +1 -1
- package/src/components/MiniModal/types.ts +124 -124
- package/src/components/Modal/Modal.stories.tsx +77 -70
- package/src/components/Modal/Modal.tsx +97 -100
- package/src/components/Modal/index.tsx +1 -1
- package/src/components/Modal/modal.scss +51 -51
- package/src/components/Modal/types.ts +43 -43
- package/src/components/ModulesChip/ModuleChip.scss +33 -33
- package/src/components/ModulesChip/ModuleChip.stories.tsx +41 -41
- package/src/components/ModulesChip/ModuleChip.tsx +28 -28
- package/src/components/ModulesChip/types.ts +14 -14
- package/src/components/MultiSelect/Dropdown.scss +77 -77
- package/src/components/MultiSelect/Dropdown.tsx +169 -169
- package/src/components/MultiSelect/MultiSelect.scss +247 -247
- package/src/components/MultiSelect/MultiSelect.stories.tsx +290 -290
- package/src/components/MultiSelect/MultiSelect.tsx +486 -486
- package/src/components/MultiSelect/MultiSelectTypes.ts +49 -49
- package/src/components/MultiSelect/dropdownTypes.ts +21 -21
- package/src/components/MultiSelect/index.ts +1 -1
- package/src/components/NLPInput/NLPInput.scss +302 -302
- package/src/components/NLPInput/NlpInput.stories.tsx +70 -70
- package/src/components/NLPInput/NlpInput.tsx +410 -410
- package/src/components/NLPInput/components/NlpDropDown/NlpDropDownType.ts +62 -62
- package/src/components/NLPInput/components/NlpDropDown/NlpDropdown.scss +134 -134
- package/src/components/NLPInput/components/NlpDropDown/NlpDropdown.tsx +320 -320
- package/src/components/NLPInput/index.ts +1 -1
- package/src/components/NLPInput/sampleData.ts +161 -161
- package/src/components/NLPInput/types.tsx +136 -136
- package/src/components/Paper/Paper.scss +13 -13
- package/src/components/Paper/Paper.stories.tsx +77 -77
- package/src/components/Paper/Paper.tsx +14 -14
- package/src/components/Paper/types.ts +19 -19
- package/src/components/PhoneInput/PhoneInput.d.ts +3 -3
- package/src/components/PhoneInput/PhoneInput.stories.tsx +70 -70
- package/src/components/PhoneInput/PhoneInput.tsx +98 -98
- package/src/components/PhoneInput/index.ts +1 -1
- package/src/components/PhoneInput/phoneInput.scss +901 -901
- package/src/components/PhoneInput/types.ts +16 -16
- package/src/components/PopUpModal/PopUpModal.scss +36 -36
- package/src/components/PopUpModal/PopUpModal.stories.tsx +67 -67
- package/src/components/PopUpModal/PopUpModal.tsx +87 -87
- package/src/components/PopUpModal/types.ts +17 -17
- package/src/components/ProgressBar/ProgressBar.scss +46 -46
- package/src/components/ProgressBar/ProgressBar.stories.tsx +22 -22
- package/src/components/ProgressBar/ProgressBar.tsx +61 -61
- package/src/components/ProgressBar/types.ts +12 -12
- package/src/components/RadioButton/RadioButton.scss +106 -106
- package/src/components/RadioButton/RadioButton.stories.tsx +43 -43
- package/src/components/RadioButton/RadioButton.tsx +41 -41
- package/src/components/RadioButton/index.ts +1 -1
- package/src/components/RadioButton/radioButtonTypes.tsx +62 -62
- package/src/components/RadioGroup/RadioGroup.scss +11 -11
- package/src/components/RadioGroup/RadioGroup.stories.tsx +150 -150
- package/src/components/RadioGroup/RadioGroup.tsx +49 -49
- package/src/components/RadioGroup/index.ts +1 -1
- package/src/components/RadioGroup/radioGroupTypes.tsx +96 -96
- package/src/components/ScriptSwitchButton/ScriptSwitchButton.scss +33 -33
- package/src/components/ScriptSwitchButton/ScriptSwitchButton.stories.tsx +48 -48
- package/src/components/ScriptSwitchButton/ScriptSwitchButton.tsx +65 -65
- package/src/components/ScriptSwitchButton/index.ts +1 -1
- package/src/components/Search/Search.scss +103 -103
- package/src/components/Search/Search.stories.tsx +44 -44
- package/src/components/Search/Search.tsx +138 -138
- package/src/components/Search/index.ts +1 -1
- package/src/components/Search/types.ts +19 -19
- package/src/components/Select/Select.scss +213 -213
- package/src/components/Select/Select.stories.tsx +440 -355
- package/src/components/Select/Select.tsx +286 -278
- package/src/components/Select/components/Dropdown.scss +61 -61
- package/src/components/Select/components/Dropdown.tsx +148 -140
- package/src/components/Select/components/types.ts +25 -24
- package/src/components/Select/index.ts +1 -1
- package/src/components/Select/types.ts +144 -134
- package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.scss +128 -128
- package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.tsx +67 -67
- package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.tsx +186 -186
- package/src/components/SequentialConnectingBranch/components/Branches/Branches.scss +191 -191
- package/src/components/SequentialConnectingBranch/components/Branches/Branches.tsx +326 -326
- package/src/components/SequentialConnectingBranch/components/Branches/types.ts +33 -33
- package/src/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.scss +3 -3
- package/src/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.tsx +78 -78
- package/src/components/SequentialConnectingBranch/components/ConnectingBranches/types.ts +25 -25
- package/src/components/SequentialConnectingBranch/index.ts +1 -1
- package/src/components/SequentialConnectingBranch/types.ts +66 -66
- package/src/components/StateDropdown/StateDropdown.stories.tsx +104 -104
- package/src/components/StateDropdown/StateDropdown.tsx +245 -245
- package/src/components/StateDropdown/StateDropdownTypes.tsx +27 -27
- package/src/components/StatusButton/StatusButton.scss +90 -90
- package/src/components/StatusButton/StatusButton.stories.tsx +91 -91
- package/src/components/StatusButton/StatusButton.tsx +46 -46
- package/src/components/StatusButton/index.ts +1 -1
- package/src/components/StatusButton/types.ts +45 -45
- package/src/components/StatusCard/StatusCard.scss +138 -138
- package/src/components/StatusCard/StatusCard.stories.tsx +117 -117
- package/src/components/StatusCard/StatusCard.tsx +80 -80
- package/src/components/StatusCard/index.ts +1 -1
- package/src/components/StatusCard/types.ts +18 -18
- package/src/components/Table/Table.scss +118 -118
- package/src/components/Table/Table.stories.tsx +373 -373
- package/src/components/Table/Table.tsx +178 -178
- package/src/components/Table/Types.ts +124 -124
- package/src/components/Table/index.ts +1 -1
- package/src/components/TableTree/Components/TableBody.tsx +41 -41
- package/src/components/TableTree/Components/TableCell.tsx +75 -75
- package/src/components/TableTree/Components/TableHead.tsx +39 -39
- package/src/components/TableTree/Components/TableRow.tsx +41 -41
- package/src/components/TableTree/TableTree.scss +210 -210
- package/src/components/TableTree/TableTree.stories.tsx +176 -176
- package/src/components/TableTree/TableTree.tsx +72 -72
- package/src/components/TableTree/TableTreeStories.scss +22 -22
- package/src/components/TableTree/Utils/getAllChildIds.ts +14 -14
- package/src/components/TableTree/data.ts +368 -368
- package/src/components/TableTree/index.ts +1 -1
- package/src/components/TableTree/types.ts +72 -72
- package/src/components/TableWithAccordion/TableWithAccordion.scss +54 -54
- package/src/components/TableWithAccordion/TableWithAccordion.stories.tsx +94 -94
- package/src/components/TableWithAccordion/TableWithAccordion.tsx +174 -174
- package/src/components/TableWithAccordion/data.ts +36 -36
- package/src/components/TableWithAccordion/types.ts +69 -69
- package/src/components/Tabs/Tabs.scss +132 -132
- package/src/components/Tabs/Tabs.stories.tsx +153 -153
- package/src/components/Tabs/Tabs.tsx +71 -71
- package/src/components/Tabs/index.ts +1 -1
- package/src/components/Tabs/types.ts +48 -48
- package/src/components/TextArea/Textarea.scss +144 -144
- package/src/components/TextArea/Textarea.stories.tsx +92 -92
- package/src/components/TextArea/Textarea.tsx +86 -86
- package/src/components/TextArea/Types.ts +85 -85
- package/src/components/TextArea/index.tsx +1 -1
- package/src/components/ThemeProvider/ThemeProvider.tsx +27 -27
- package/src/components/ThemeProvider/index.ts +1 -1
- package/src/components/ThemeProvider/types.ts +14 -14
- package/src/components/Toast/Toast.scss +121 -121
- package/src/components/Toast/Toast.stories.tsx +144 -144
- package/src/components/Toast/Toast.tsx +117 -117
- package/src/components/Toast/index.ts +1 -1
- package/src/components/Toast/types.ts +27 -27
- package/src/components/Toastify/Toastify.stories.tsx +71 -71
- package/src/components/Toastify/Toastify.tsx +95 -95
- package/src/components/Toastify/index.ts +1 -1
- package/src/components/Toastify/types.ts +9 -9
- package/src/components/Toggle/Toggle.scss +133 -133
- package/src/components/Toggle/Toggle.stories.tsx +132 -132
- package/src/components/Toggle/Toggle.tsx +96 -96
- package/src/components/Toggle/index.ts +1 -1
- package/src/components/Toggle/types.ts +43 -43
- package/src/components/ToggleSwitch/ToggleSwitch.scss +58 -58
- package/src/components/ToggleSwitch/ToggleSwitch.stories.tsx +52 -52
- package/src/components/ToggleSwitch/ToggleSwitch.tsx +30 -30
- package/src/components/ToggleSwitch/index.ts +1 -1
- package/src/components/Tooltip/Tooltip.scss +27 -27
- package/src/components/Tooltip/Tooltip.stories.tsx +98 -98
- package/src/components/Tooltip/Tooltip.tsx +194 -194
- package/src/components/Tooltip/index.ts +1 -1
- package/src/components/Tooltip/types.ts +66 -66
- package/src/components/Typography/Typography.scss +25 -25
- package/src/components/Typography/Typography.stories.tsx +59 -59
- package/src/components/Typography/Typography.tsx +41 -41
- package/src/components/Typography/index.ts +1 -1
- package/src/components/Typography/types.ts +57 -57
- package/src/components/VariableInput/VariableInput.scss +127 -127
- package/src/components/VariableInput/VariableInput.stories.tsx +32 -32
- package/src/components/VariableInput/VariableInput.tsx +352 -352
- package/src/components/VariableInput/types.ts +56 -56
- package/src/hooks/keyboardevents/useEscKeyEvent.tsx +30 -30
- package/src/hooks/useClickOutside.tsx +30 -30
- package/src/hooks/useFileDropzone.tsx +275 -275
- package/src/hooks/useIntersectionObserver.tsx +56 -56
- package/src/hooks/usePortalPosition.tsx +53 -53
- package/src/hooks/useTheme.tsx +13 -13
- package/src/index.ts +322 -302
- package/src/utils/FormatString/FormatString.stories.tsx +58 -58
- package/src/utils/FormatString/FormatString.tsx +41 -41
- package/src/utils/TableCell/TableCell.ts +16 -16
- package/src/utils/capitalize/capitalize.stories.tsx +44 -44
- package/src/utils/capitalize/capitalize.tsx +4 -4
- package/src/utils/checkDuplicates/CheckDuplicates.stories.tsx +40 -40
- package/src/utils/checkDuplicates/checkDuplicates.ts +13 -13
- package/src/utils/checkEmpty/checkEmpty.stories.tsx +34 -34
- package/src/utils/checkEmpty/checkEmpty.ts +24 -24
- package/src/utils/compareArrays/compareArrays.stories.tsx +62 -62
- package/src/utils/compareArrays/compareArrays.ts +31 -31
- package/src/utils/compareObjects/compareObjects.stories.tsx +51 -51
- package/src/utils/compareObjects/compareObjects.ts +53 -53
- package/src/utils/debounce/debounce.stories.tsx +81 -81
- package/src/utils/debounce/debounce.ts +28 -28
- package/src/utils/downloadFile/saveFileFromBlob.stories.tsx +62 -62
- package/src/utils/downloadFile/saveFileFromBlob.ts +40 -40
- package/src/utils/ffID/ffID.stories.tsx +35 -35
- package/src/utils/ffID/ffid.ts +7 -7
- package/src/utils/findAndInsert/findAndInsert.stories.tsx +119 -119
- package/src/utils/findAndInsert/findAndInsert.ts +49 -49
- package/src/utils/formData/ConvertFormDataToObject.stories.tsx +27 -27
- package/src/utils/formData/ConvertFormDataToObject.ts +14 -14
- package/src/utils/functionCheck/functionCheck.ts +8 -8
- package/src/utils/getEncryptedData/getEncryptedData.stories.tsx +55 -55
- package/src/utils/getEncryptedData/getEncryptedData.ts +8 -8
- package/src/utils/getExtension/getExtension.stories.tsx +24 -24
- package/src/utils/getExtension/getExtension.ts +28 -28
- package/src/utils/getSelectOptionValue/getSelectOptionValue.ts +31 -31
- package/src/utils/getSequentialPayload/getSequentialPayload.stories.tsx +72 -72
- package/src/utils/getSequentialPayload/getSequentialPayload.ts +16 -16
- package/src/utils/getSequentialPayload/types.ts +33 -33
- package/src/utils/keyBoardActionUtil/UseKeyboardAction.stories.tsx +53 -0
- package/src/utils/keyBoardActionUtil/UseKeyboardActions.tsx +20 -0
- package/src/utils/keyBoardActionUtil/types.ts +4 -0
- package/src/utils/throttle/throttle.stories.tsx +100 -100
- package/src/utils/throttle/throttle.ts +33 -33
- package/src/utils/truncateText/truncateText.stories.tsx +37 -37
- package/src/utils/truncateText/truncateText.ts +4 -4
- package/src/utils/validateFile/validateFile.stories.tsx +49 -49
- package/src/utils/validateFile/validateFile.ts +39 -39
- package/src/validations/regex.stories.tsx +425 -418
- package/src/validations/regex.ts +228 -224
- package/tsconfig.json +55 -55
- package/vite.config.js +14 -14
- package/lib/components/AddVariables/AddVariables.d.ts +0 -5
- package/lib/components/AddVariables/index.d.ts +0 -1
- package/lib/components/AddVariables/types.d.ts +0 -99
- package/lib/index.css +0 -1
- package/lib/index.esm.css +0 -1
@@ -1,11 +1,11 @@
|
|
1
|
-
<svg width="4" height="14" viewBox="0 0 4 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path
|
3
|
-
d="M2 3.5C2.825 3.5 3.5 2.825 3.5 2C3.5 1.175 2.825 0.5 2 0.5C1.175 0.5 0.5 1.175 0.5 2C0.5 2.825 1.175 3.5 2 3.5Z"
|
4
|
-
fill="currentColor" />
|
5
|
-
<path
|
6
|
-
d="M2 8.5C2.825 8.5 3.5 7.825 3.5 7C3.5 6.175 2.825 5.5 2 5.5C1.175 5.5 0.5 6.175 0.5 7C0.5 7.825 1.175 8.5 2 8.5Z"
|
7
|
-
fill="currentColor" />
|
8
|
-
<path
|
9
|
-
d="M2 13.5C2.825 13.5 3.5 12.825 3.5 12C3.5 11.175 2.825 10.5 2 10.5C1.175 10.5 0.5 11.175 0.5 12C0.5 12.825 1.175 13.5 2 13.5Z"
|
10
|
-
fill="currentColor" />
|
1
|
+
<svg width="4" height="14" viewBox="0 0 4 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path
|
3
|
+
d="M2 3.5C2.825 3.5 3.5 2.825 3.5 2C3.5 1.175 2.825 0.5 2 0.5C1.175 0.5 0.5 1.175 0.5 2C0.5 2.825 1.175 3.5 2 3.5Z"
|
4
|
+
fill="currentColor" />
|
5
|
+
<path
|
6
|
+
d="M2 8.5C2.825 8.5 3.5 7.825 3.5 7C3.5 6.175 2.825 5.5 2 5.5C1.175 5.5 0.5 6.175 0.5 7C0.5 7.825 1.175 8.5 2 8.5Z"
|
7
|
+
fill="currentColor" />
|
8
|
+
<path
|
9
|
+
d="M2 13.5C2.825 13.5 3.5 12.825 3.5 12C3.5 11.175 2.825 10.5 2 10.5C1.175 10.5 0.5 11.175 0.5 12C0.5 12.825 1.175 13.5 2 13.5Z"
|
10
|
+
fill="currentColor" />
|
11
11
|
</svg>
|
@@ -1,5 +1,5 @@
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M14.3333 15.3334H11C10.0667 15.3334 9.33333 14.6 9.33333 13.6667V10.3334C9.33333 9.40002 10.0667 8.66669 11 8.66669H14.3333C15.2667 8.66669 16 9.40002 16 10.3334V13.6667C16 14.6 15.2667 15.3334 14.3333 15.3334ZM11 10C10.8 10 10.6667 10.1334 10.6667 10.3334V13.6667C10.6667 13.8667 10.8 14 11 14H14.3333C14.5333 14 14.6667 13.8667 14.6667 13.6667V10.3334C14.6667 10.1334 14.5333 10 14.3333 10H11Z" fill="currentColor"/>
|
3
|
-
<path d="M5 15.3334H1.66667C0.733333 15.3334 0 14.6 0 13.6667V10.3334C0 9.40002 0.733333 8.66669 1.66667 8.66669H5C5.93333 8.66669 6.66667 9.40002 6.66667 10.3334V13.6667C6.66667 14.6 5.93333 15.3334 5 15.3334Z" fill="currentColor"/>
|
4
|
-
<path d="M12.6667 7.33335C12.4667 7.33335 12.3333 7.26669 12.2 7.13335L10.8667 5.80002C10.6 5.53335 10.6 5.13335 10.8667 4.86669C11.1333 4.60002 11.5333 4.60002 11.8 4.86669L11.8667 4.93335C11.4 3.20002 9.80001 2.00002 8.00001 2.00002C5.80001 2.00002 4.00001 3.80002 4.00001 6.00002C4.00001 6.40002 3.73334 6.66669 3.33334 6.66669C2.93334 6.66669 2.66667 6.40002 2.66667 6.00002C2.66667 3.06669 5.06667 0.666687 8.00001 0.666687C10.6667 0.666687 12.8667 2.60002 13.2667 5.13335L13.5333 4.86669C13.8 4.60002 14.2 4.60002 14.4667 4.86669C14.7333 5.13335 14.7333 5.53335 14.4667 5.80002L13.1333 7.13335C13 7.26669 12.8667 7.33335 12.6667 7.33335Z" fill="currentColor"/>
|
5
|
-
</svg>
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M14.3333 15.3334H11C10.0667 15.3334 9.33333 14.6 9.33333 13.6667V10.3334C9.33333 9.40002 10.0667 8.66669 11 8.66669H14.3333C15.2667 8.66669 16 9.40002 16 10.3334V13.6667C16 14.6 15.2667 15.3334 14.3333 15.3334ZM11 10C10.8 10 10.6667 10.1334 10.6667 10.3334V13.6667C10.6667 13.8667 10.8 14 11 14H14.3333C14.5333 14 14.6667 13.8667 14.6667 13.6667V10.3334C14.6667 10.1334 14.5333 10 14.3333 10H11Z" fill="currentColor"/>
|
3
|
+
<path d="M5 15.3334H1.66667C0.733333 15.3334 0 14.6 0 13.6667V10.3334C0 9.40002 0.733333 8.66669 1.66667 8.66669H5C5.93333 8.66669 6.66667 9.40002 6.66667 10.3334V13.6667C6.66667 14.6 5.93333 15.3334 5 15.3334Z" fill="currentColor"/>
|
4
|
+
<path d="M12.6667 7.33335C12.4667 7.33335 12.3333 7.26669 12.2 7.13335L10.8667 5.80002C10.6 5.53335 10.6 5.13335 10.8667 4.86669C11.1333 4.60002 11.5333 4.60002 11.8 4.86669L11.8667 4.93335C11.4 3.20002 9.80001 2.00002 8.00001 2.00002C5.80001 2.00002 4.00001 3.80002 4.00001 6.00002C4.00001 6.40002 3.73334 6.66669 3.33334 6.66669C2.93334 6.66669 2.66667 6.40002 2.66667 6.00002C2.66667 3.06669 5.06667 0.666687 8.00001 0.666687C10.6667 0.666687 12.8667 2.60002 13.2667 5.13335L13.5333 4.86669C13.8 4.60002 14.2 4.60002 14.4667 4.86669C14.7333 5.13335 14.7333 5.53335 14.4667 5.80002L13.1333 7.13335C13 7.26669 12.8667 7.33335 12.6667 7.33335Z" fill="currentColor"/>
|
5
|
+
</svg>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<svg width="10" height="16" viewBox="0 0 10 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M0.0318604 16V5.16323L3.06376 7.08443L0.272016 15.5797L9.96808 5.58349V10.5066L0.0318604 16Z" fill="currentColor"/>
|
3
|
-
<path d="M6.36583 7.32458L0.0318604 4.23265V0L9.45776 5.01313L6.36583 7.32458Z" fill="currentColor"/>
|
4
|
-
</svg>
|
1
|
+
<svg width="10" height="16" viewBox="0 0 10 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M0.0318604 16V5.16323L3.06376 7.08443L0.272016 15.5797L9.96808 5.58349V10.5066L0.0318604 16Z" fill="currentColor"/>
|
3
|
+
<path d="M6.36583 7.32458L0.0318604 4.23265V0L9.45776 5.01313L6.36583 7.32458Z" fill="currentColor"/>
|
4
|
+
</svg>
|
@@ -1,15 +1,15 @@
|
|
1
|
-
<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<g clip-path="url(#clip0_290_15078)">
|
3
|
-
<path d="M8.10721 9.74726C10.6408 9.74726 12.6947 7.69337 12.6947 5.15977C12.6947 2.62616 10.6408 0.572266 8.10721 0.572266C5.57361 0.572266 3.51971 2.62616 3.51971 5.15977C3.51971 7.69337 5.57361 9.74726 8.10721 9.74726Z" fill="#036C70"/>
|
4
|
-
<path d="M11.9322 13.5854C14.2725 13.5854 16.1697 11.6882 16.1697 9.34785C16.1697 7.00755 14.2725 5.11035 11.9322 5.11035C9.5919 5.11035 7.6947 7.00755 7.6947 9.34785C7.6947 11.6882 9.5919 13.5854 11.9322 13.5854Z" fill="#1A9BA1"/>
|
5
|
-
<path d="M8.70721 16.6104C10.5021 16.6104 11.9572 15.1553 11.9572 13.3604C11.9572 11.5654 10.5021 10.1104 8.70721 10.1104C6.91229 10.1104 5.45721 11.5654 5.45721 13.3604C5.45721 15.1553 6.91229 16.6104 8.70721 16.6104Z" fill="#37C6D0"/>
|
6
|
-
<path d="M7.58223 12.748H0.957227C0.519727 12.748 0.157227 12.3855 0.157227 11.948V5.42305C0.157227 4.98555 0.519727 4.62305 0.957227 4.62305H7.58223C8.01973 4.62305 8.38223 4.98555 8.38223 5.42305V11.948C8.38223 12.3855 8.03223 12.748 7.58223 12.748Z" fill="#04878B"/>
|
7
|
-
<path d="M2.93219 10.0854C3.19469 10.2354 3.60719 10.3729 4.03219 10.3729C4.55719 10.3729 4.85719 10.1229 4.85719 9.76035C4.85719 9.42285 4.63219 9.22285 4.05719 9.01035C3.30719 8.74785 2.81969 8.34785 2.81969 7.71035C2.81969 6.97285 3.44469 6.42285 4.43219 6.42285C4.91969 6.42285 5.28219 6.53535 5.51969 6.64785L5.31969 7.31035C5.15719 7.22285 4.84469 7.09785 4.41969 7.09785C3.89469 7.09785 3.66969 7.37285 3.66969 7.63535C3.66969 7.98535 3.93219 8.13535 4.54469 8.37285C5.33219 8.67285 5.70719 9.06035 5.70719 9.69785C5.70719 10.4229 5.15719 11.0354 3.98219 11.0354C3.49469 11.0354 2.99469 10.8979 2.74469 10.7604L2.93219 10.0854Z" fill="white"/>
|
8
|
-
<path opacity="0.2" d="M8.38223 5.34766V5.42266V11.9477C8.38223 12.3852 8.01973 12.7477 7.58223 12.7477H5.49473L5.46973 13.4602H8.26973C8.70723 13.4602 9.06973 13.0977 9.06973 12.6602V6.13516C9.05723 5.73516 8.76973 5.41016 8.38223 5.34766Z" fill="black"/>
|
9
|
-
</g>
|
10
|
-
<defs>
|
11
|
-
<clipPath id="clip0_290_15078">
|
12
|
-
<rect width="16" height="16" fill="white" transform="translate(0.144714 0.597656)"/>
|
13
|
-
</clipPath>
|
14
|
-
</defs>
|
15
|
-
</svg>
|
1
|
+
<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<g clip-path="url(#clip0_290_15078)">
|
3
|
+
<path d="M8.10721 9.74726C10.6408 9.74726 12.6947 7.69337 12.6947 5.15977C12.6947 2.62616 10.6408 0.572266 8.10721 0.572266C5.57361 0.572266 3.51971 2.62616 3.51971 5.15977C3.51971 7.69337 5.57361 9.74726 8.10721 9.74726Z" fill="#036C70"/>
|
4
|
+
<path d="M11.9322 13.5854C14.2725 13.5854 16.1697 11.6882 16.1697 9.34785C16.1697 7.00755 14.2725 5.11035 11.9322 5.11035C9.5919 5.11035 7.6947 7.00755 7.6947 9.34785C7.6947 11.6882 9.5919 13.5854 11.9322 13.5854Z" fill="#1A9BA1"/>
|
5
|
+
<path d="M8.70721 16.6104C10.5021 16.6104 11.9572 15.1553 11.9572 13.3604C11.9572 11.5654 10.5021 10.1104 8.70721 10.1104C6.91229 10.1104 5.45721 11.5654 5.45721 13.3604C5.45721 15.1553 6.91229 16.6104 8.70721 16.6104Z" fill="#37C6D0"/>
|
6
|
+
<path d="M7.58223 12.748H0.957227C0.519727 12.748 0.157227 12.3855 0.157227 11.948V5.42305C0.157227 4.98555 0.519727 4.62305 0.957227 4.62305H7.58223C8.01973 4.62305 8.38223 4.98555 8.38223 5.42305V11.948C8.38223 12.3855 8.03223 12.748 7.58223 12.748Z" fill="#04878B"/>
|
7
|
+
<path d="M2.93219 10.0854C3.19469 10.2354 3.60719 10.3729 4.03219 10.3729C4.55719 10.3729 4.85719 10.1229 4.85719 9.76035C4.85719 9.42285 4.63219 9.22285 4.05719 9.01035C3.30719 8.74785 2.81969 8.34785 2.81969 7.71035C2.81969 6.97285 3.44469 6.42285 4.43219 6.42285C4.91969 6.42285 5.28219 6.53535 5.51969 6.64785L5.31969 7.31035C5.15719 7.22285 4.84469 7.09785 4.41969 7.09785C3.89469 7.09785 3.66969 7.37285 3.66969 7.63535C3.66969 7.98535 3.93219 8.13535 4.54469 8.37285C5.33219 8.67285 5.70719 9.06035 5.70719 9.69785C5.70719 10.4229 5.15719 11.0354 3.98219 11.0354C3.49469 11.0354 2.99469 10.8979 2.74469 10.7604L2.93219 10.0854Z" fill="white"/>
|
8
|
+
<path opacity="0.2" d="M8.38223 5.34766V5.42266V11.9477C8.38223 12.3852 8.01973 12.7477 7.58223 12.7477H5.49473L5.46973 13.4602H8.26973C8.70723 13.4602 9.06973 13.0977 9.06973 12.6602V6.13516C9.05723 5.73516 8.76973 5.41016 8.38223 5.34766Z" fill="black"/>
|
9
|
+
</g>
|
10
|
+
<defs>
|
11
|
+
<clipPath id="clip0_290_15078">
|
12
|
+
<rect width="16" height="16" fill="white" transform="translate(0.144714 0.597656)"/>
|
13
|
+
</clipPath>
|
14
|
+
</defs>
|
15
|
+
</svg>
|
@@ -1,3 +1,3 @@
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M16 10.8281C16 8.49597 14.4286 6.45837 12.2126 5.84436C12.0734 2.59814 9.38928 0 6.10938 0C2.7406 0 0 2.7406 0 6.10938C0 7.20728 0.292236 8.27625 0.847168 9.21472L0.0224609 12.1962L3.00403 11.3716C3.8667 11.8817 4.83984 12.1691 5.84424 12.2124C6.45813 14.4285 8.49585 16 10.8281 16C11.759 16 12.6643 15.7521 13.4597 15.281L15.9774 15.9774L15.281 13.4597C15.7521 12.6643 16 11.759 16 10.8281ZM3.15198 10.3579L1.36707 10.8517L1.86084 9.06677L1.74829 8.89075C1.2179 8.06091 0.9375 7.09912 0.9375 6.10938C0.9375 3.25757 3.25757 0.9375 6.10938 0.9375C8.96118 0.9375 11.2812 3.25757 11.2812 6.10938C11.2812 8.96118 8.96118 11.2812 6.10938 11.2812C5.11963 11.2812 4.15796 11.0009 3.328 10.4705L3.15198 10.3579ZM14.6329 14.6329L13.3085 14.2665L13.1316 14.3816C12.4459 14.827 11.6493 15.0625 10.8281 15.0625C8.99512 15.0625 7.3844 13.8773 6.81372 12.1779C9.62061 11.8542 11.8542 9.62061 12.178 6.8136C13.8773 7.3844 15.0625 8.99512 15.0625 10.8281C15.0625 11.6493 14.827 12.4459 14.3816 13.1316L14.2665 13.3085L14.6329 14.6329ZM6.57812 8.46875V9.40625H5.64062V8.46875H6.57812ZM6.7417 5.37952C6.93848 5.19946 7.04687 4.95374 7.04687 4.6875C7.04687 4.17053 6.62634 3.75 6.10937 3.75C5.59241 3.75 5.17187 4.17053 5.17187 4.6875H4.23437C4.23437 3.65356 5.07544 2.8125 6.10937 2.8125C7.14331 2.8125 7.98437 3.65356 7.98437 4.6875C7.98437 5.21228 7.76208 5.71655 7.37463 6.07117L6.57812 6.80017V7.53125H5.64062V6.38733L6.7417 5.37952Z" fill="currentColor"/>
|
3
|
-
</svg>
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M16 10.8281C16 8.49597 14.4286 6.45837 12.2126 5.84436C12.0734 2.59814 9.38928 0 6.10938 0C2.7406 0 0 2.7406 0 6.10938C0 7.20728 0.292236 8.27625 0.847168 9.21472L0.0224609 12.1962L3.00403 11.3716C3.8667 11.8817 4.83984 12.1691 5.84424 12.2124C6.45813 14.4285 8.49585 16 10.8281 16C11.759 16 12.6643 15.7521 13.4597 15.281L15.9774 15.9774L15.281 13.4597C15.7521 12.6643 16 11.759 16 10.8281ZM3.15198 10.3579L1.36707 10.8517L1.86084 9.06677L1.74829 8.89075C1.2179 8.06091 0.9375 7.09912 0.9375 6.10938C0.9375 3.25757 3.25757 0.9375 6.10938 0.9375C8.96118 0.9375 11.2812 3.25757 11.2812 6.10938C11.2812 8.96118 8.96118 11.2812 6.10938 11.2812C5.11963 11.2812 4.15796 11.0009 3.328 10.4705L3.15198 10.3579ZM14.6329 14.6329L13.3085 14.2665L13.1316 14.3816C12.4459 14.827 11.6493 15.0625 10.8281 15.0625C8.99512 15.0625 7.3844 13.8773 6.81372 12.1779C9.62061 11.8542 11.8542 9.62061 12.178 6.8136C13.8773 7.3844 15.0625 8.99512 15.0625 10.8281C15.0625 11.6493 14.827 12.4459 14.3816 13.1316L14.2665 13.3085L14.6329 14.6329ZM6.57812 8.46875V9.40625H5.64062V8.46875H6.57812ZM6.7417 5.37952C6.93848 5.19946 7.04687 4.95374 7.04687 4.6875C7.04687 4.17053 6.62634 3.75 6.10937 3.75C5.59241 3.75 5.17187 4.17053 5.17187 4.6875H4.23437C4.23437 3.65356 5.07544 2.8125 6.10937 2.8125C7.14331 2.8125 7.98437 3.65356 7.98437 4.6875C7.98437 5.21228 7.76208 5.71655 7.37463 6.07117L6.57812 6.80017V7.53125H5.64062V6.38733L6.7417 5.37952Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M14 7C14 10.866 10.866 14 7 14C3.13401 14 0 10.866 0 7C0 3.13401 3.13401 0 7 0C10.866 0 14 3.13401 14 7ZM1.75 7C1.75 9.8995 4.1005 12.25 7 12.25C9.8995 12.25 12.25 9.8995 12.25 7C12.25 4.1005 9.8995 1.75 7 1.75C4.1005 1.75 1.75 4.1005 1.75 7Z" fill="currentColor"/>
|
3
|
-
<path d="M1 7C1 6.44772 1.44772 6 2 6H12C12.5523 6 13 6.44772 13 7C13 7.55228 12.5523 8 12 8H2C1.44772 8 1 7.55228 1 7Z" fill="currentColor"/>
|
4
|
-
</svg>
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M14 7C14 10.866 10.866 14 7 14C3.13401 14 0 10.866 0 7C0 3.13401 3.13401 0 7 0C10.866 0 14 3.13401 14 7ZM1.75 7C1.75 9.8995 4.1005 12.25 7 12.25C9.8995 12.25 12.25 9.8995 12.25 7C12.25 4.1005 9.8995 1.75 7 1.75C4.1005 1.75 1.75 4.1005 1.75 7Z" fill="currentColor"/>
|
3
|
+
<path d="M1 7C1 6.44772 1.44772 6 2 6H12C12.5523 6 13 6.44772 13 7C13 7.55228 12.5523 8 12 8H2C1.44772 8 1 7.55228 1 7Z" fill="currentColor"/>
|
4
|
+
</svg>
|
@@ -1,3 +1,3 @@
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.470588 15.5294V15.0588H0V16H0.941176V15.5294H0.470588ZM0.941176 8.23529V7.76471H1.41176V8.23529H0.941176ZM1.88235 7.76471V8.23529H2.35294V7.76471H1.88235ZM3.05882 8.23529V7.76471H3.52941V8.23529H3.05882ZM4.23529 7.76471V8.23529H4.70588V7.76471H4.23529ZM8.94118 8.23529V7.76471H9.41177V8.23529H8.94118ZM10.1176 7.76471V8.23529H10.5882V7.76471H10.1176ZM11.2941 8.23529V7.76471H11.7647V8.23529H11.2941ZM13.6471 8.23529V7.76471H14.1176V8.23529H13.6471ZM14.5882 7.76471V8.23529H15.0588V7.76471H14.5882ZM12.4706 8.23529V7.76471H12.9412V8.23529H12.4706ZM6.58824 8.23529V7.76471H7.05882V8.23529H6.58824ZM5.41176 7.76471V8.23529H5.88235V7.76471H5.41176ZM7.76471 7.76471V8.23529H8.23529V7.76471H7.76471ZM7.76471 11.7647V11.2941H8.23529V11.7647H7.76471ZM7.76471 13.6471V14.1176H8.23529V13.6471H7.76471ZM7.76471 15.0588V14.5882H8.23529V15.0588H7.76471ZM7.76471 12.4706V12.9412H8.23529V12.4706H7.76471ZM7.76471 10.5882V10.1176H8.23529V10.5882H7.76471ZM7.76471 8.94118V9.41176H8.23529V8.94118H7.76471ZM7.76471 4.70588V4.23529H8.23529V4.70588H7.76471ZM7.76471 6.58823V7.05882H8.23529V6.58823H7.76471ZM7.76471 5.88235V5.41176H8.23529V5.88235H7.76471ZM7.76471 3.05882V3.52941H8.23529V3.05882H7.76471ZM7.76471 2.35294V1.88235H8.23529V2.35294H7.76471ZM7.76471 0.941176V1.41177H8.23529V0.941176H7.76471ZM15.5294 15.0588V15.5294H15.0588V16H16V15.0588H15.5294ZM0 4.70588V4.23529H0.470588V4.70588H0ZM15.5294 4.23534V4.70593H16V4.23534H15.5294ZM0 2.35294V1.88235H0.470588V2.35294H0ZM15.5294 1.88232V2.35291H16V1.88232H15.5294ZM0 3.52941V3.05882H0.470588V3.52941H0ZM15.5294 3.05883V3.52942H16V3.05883H15.5294ZM0 5.88235V5.41176H0.470588V5.88235H0ZM15.5294 5.41174V5.88232H16V5.41174H15.5294ZM0 7.05882V6.58823H0.470588V7.05882H0ZM15.5294 6.58825V7.05884H16V6.58825H15.5294ZM0 11.7647V11.2941H0.470588V11.7647H0ZM15.5294 11.2941V11.7646H16V11.2941H15.5294ZM0 9.41176V8.94118H0.470588V9.41176H0ZM15.5294 8.94115V9.41174H16V8.94115H15.5294ZM0 10.5882V10.1176H0.470588V10.5882H0ZM15.5294 10.1177V10.5883H16V10.1177H15.5294ZM0 12.9412V12.4706H0.470588V12.9412H0ZM15.5294 12.4706V12.9412H16V12.4706H15.5294ZM0 14.1176V13.6471H0.470588V14.1176H0ZM15.5294 13.6471V14.1177H16V13.6471H15.5294ZM0 8.23529V7.76471H0.470588V8.23529H0ZM15.5294 7.76476V8.23535H16V7.76476H15.5294ZM11.2941 0.470589V0H11.7647V0.470589H11.2941ZM13.6471 0V0.470589H14.1176V0H13.6471ZM12.4706 0.470589V0H12.9412V0.470589H12.4706ZM10.1176 0V0.470589H10.5882V0H10.1176ZM8.94118 0.470589V0H9.41177V0.470589H8.94118ZM4.23529 0V0.470589H4.70588V0H4.23529ZM6.58824 0.470589V0H7.05882V0.470589H6.58824ZM5.41176 0V0.470589H5.88235V0H5.41176ZM3.05882 0.470589V0H3.52941V0.470589H3.05882ZM1.88235 0V0.470589H2.35294V0H1.88235ZM7.76471 0.470589V0H8.23529V0.470589H7.76471ZM11.2941 15.5294V16H11.7647V15.5294H11.2941ZM13.6471 16V15.5294H14.1176V16H13.6471ZM12.4706 15.5294V16H12.9412V15.5294H12.4706ZM10.1176 16V15.5294H10.5882V16H10.1176ZM8.94118 15.5294V16H9.41177V15.5294H8.94118ZM4.23529 16V15.5294H4.70588V16H4.23529ZM6.58824 15.5294V16H7.05882V15.5294H6.58824ZM5.41176 16V15.5294H5.88235V16H5.41176ZM3.05882 15.5294V16H3.52941V15.5294H3.05882ZM1.88235 16V15.5294H2.35294V16H1.88235ZM7.76471 15.5294V16H8.23529V15.5294H7.76471ZM0 0.941176H0.470588V0.470588H0.941176V0H0V0.941176ZM15.5294 0.941162H16V-1.52588e-05H15.0588V0.470573H15.5294V0.941162Z" fill="currentColor"/>
|
3
|
-
</svg>
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0.470588 15.5294V15.0588H0V16H0.941176V15.5294H0.470588ZM0.941176 8.23529V7.76471H1.41176V8.23529H0.941176ZM1.88235 7.76471V8.23529H2.35294V7.76471H1.88235ZM3.05882 8.23529V7.76471H3.52941V8.23529H3.05882ZM4.23529 7.76471V8.23529H4.70588V7.76471H4.23529ZM8.94118 8.23529V7.76471H9.41177V8.23529H8.94118ZM10.1176 7.76471V8.23529H10.5882V7.76471H10.1176ZM11.2941 8.23529V7.76471H11.7647V8.23529H11.2941ZM13.6471 8.23529V7.76471H14.1176V8.23529H13.6471ZM14.5882 7.76471V8.23529H15.0588V7.76471H14.5882ZM12.4706 8.23529V7.76471H12.9412V8.23529H12.4706ZM6.58824 8.23529V7.76471H7.05882V8.23529H6.58824ZM5.41176 7.76471V8.23529H5.88235V7.76471H5.41176ZM7.76471 7.76471V8.23529H8.23529V7.76471H7.76471ZM7.76471 11.7647V11.2941H8.23529V11.7647H7.76471ZM7.76471 13.6471V14.1176H8.23529V13.6471H7.76471ZM7.76471 15.0588V14.5882H8.23529V15.0588H7.76471ZM7.76471 12.4706V12.9412H8.23529V12.4706H7.76471ZM7.76471 10.5882V10.1176H8.23529V10.5882H7.76471ZM7.76471 8.94118V9.41176H8.23529V8.94118H7.76471ZM7.76471 4.70588V4.23529H8.23529V4.70588H7.76471ZM7.76471 6.58823V7.05882H8.23529V6.58823H7.76471ZM7.76471 5.88235V5.41176H8.23529V5.88235H7.76471ZM7.76471 3.05882V3.52941H8.23529V3.05882H7.76471ZM7.76471 2.35294V1.88235H8.23529V2.35294H7.76471ZM7.76471 0.941176V1.41177H8.23529V0.941176H7.76471ZM15.5294 15.0588V15.5294H15.0588V16H16V15.0588H15.5294ZM0 4.70588V4.23529H0.470588V4.70588H0ZM15.5294 4.23534V4.70593H16V4.23534H15.5294ZM0 2.35294V1.88235H0.470588V2.35294H0ZM15.5294 1.88232V2.35291H16V1.88232H15.5294ZM0 3.52941V3.05882H0.470588V3.52941H0ZM15.5294 3.05883V3.52942H16V3.05883H15.5294ZM0 5.88235V5.41176H0.470588V5.88235H0ZM15.5294 5.41174V5.88232H16V5.41174H15.5294ZM0 7.05882V6.58823H0.470588V7.05882H0ZM15.5294 6.58825V7.05884H16V6.58825H15.5294ZM0 11.7647V11.2941H0.470588V11.7647H0ZM15.5294 11.2941V11.7646H16V11.2941H15.5294ZM0 9.41176V8.94118H0.470588V9.41176H0ZM15.5294 8.94115V9.41174H16V8.94115H15.5294ZM0 10.5882V10.1176H0.470588V10.5882H0ZM15.5294 10.1177V10.5883H16V10.1177H15.5294ZM0 12.9412V12.4706H0.470588V12.9412H0ZM15.5294 12.4706V12.9412H16V12.4706H15.5294ZM0 14.1176V13.6471H0.470588V14.1176H0ZM15.5294 13.6471V14.1177H16V13.6471H15.5294ZM0 8.23529V7.76471H0.470588V8.23529H0ZM15.5294 7.76476V8.23535H16V7.76476H15.5294ZM11.2941 0.470589V0H11.7647V0.470589H11.2941ZM13.6471 0V0.470589H14.1176V0H13.6471ZM12.4706 0.470589V0H12.9412V0.470589H12.4706ZM10.1176 0V0.470589H10.5882V0H10.1176ZM8.94118 0.470589V0H9.41177V0.470589H8.94118ZM4.23529 0V0.470589H4.70588V0H4.23529ZM6.58824 0.470589V0H7.05882V0.470589H6.58824ZM5.41176 0V0.470589H5.88235V0H5.41176ZM3.05882 0.470589V0H3.52941V0.470589H3.05882ZM1.88235 0V0.470589H2.35294V0H1.88235ZM7.76471 0.470589V0H8.23529V0.470589H7.76471ZM11.2941 15.5294V16H11.7647V15.5294H11.2941ZM13.6471 16V15.5294H14.1176V16H13.6471ZM12.4706 15.5294V16H12.9412V15.5294H12.4706ZM10.1176 16V15.5294H10.5882V16H10.1176ZM8.94118 15.5294V16H9.41177V15.5294H8.94118ZM4.23529 16V15.5294H4.70588V16H4.23529ZM6.58824 15.5294V16H7.05882V15.5294H6.58824ZM5.41176 16V15.5294H5.88235V16H5.41176ZM3.05882 15.5294V16H3.52941V15.5294H3.05882ZM1.88235 16V15.5294H2.35294V16H1.88235ZM7.76471 15.5294V16H8.23529V15.5294H7.76471ZM0 0.941176H0.470588V0.470588H0.941176V0H0V0.941176ZM15.5294 0.941162H16V-1.52588e-05H15.0588V0.470573H15.5294V0.941162Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -1,13 +1,13 @@
|
|
1
|
-
<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M97.5 22.5H82.5C79.7421 22.4918 77.5083 20.258 77.5001 17.5001V2.50008L97.5 22.5Z" fill="currentColor"/>
|
3
|
-
<path d="M97.5 22.5V112.5C97.4918 115.258 95.258 117.492 92.5001 117.5H12.4999C9.74203 117.492 7.5082 115.258 7.5 112.5V7.5C7.5082 4.74211 9.74203 2.50828 12.4999 2.50008H77.4998V17.5001C77.5083 20.258 79.7421 22.4918 82.5 22.5H97.5Z" fill="white"/>
|
4
|
-
<path d="M82.5 100C99.0685 100 112.5 86.5686 112.5 70.0001C112.5 53.4315 99.0685 40.0001 82.5 40.0001C65.9315 40.0001 52.5 53.4315 52.5 70.0001C52.5 86.5686 65.9315 100 82.5 100Z" fill="#FDFAFF"/>
|
5
|
-
<path d="M95.0716 58.5714H74.5001C72.6066 58.5714 71.0716 60.1064 71.0716 62V82.5714C71.0716 84.4649 72.6066 86 74.5001 86H95.0716C96.9651 86 98.5001 84.4649 98.5001 82.5714V62C98.5001 60.1064 96.9651 58.5714 95.0716 58.5714Z" fill="currentColor"/>
|
6
|
-
<path d="M90.5001 54H69.9286C68.0351 54 66.5001 55.535 66.5001 57.4285V78C66.5001 79.8935 68.0351 81.4285 69.9286 81.4285H90.5001C92.3936 81.4285 93.9286 79.8935 93.9286 78V57.4285C93.9286 55.535 92.3936 54 90.5001 54Z" fill="currentColor"/>
|
7
|
-
<path d="M87.0717 66.5714H81.3574V60.8571C81.3574 60.554 81.237 60.2633 81.0226 60.049C80.8083 59.8347 80.5176 59.7142 80.2145 59.7142C79.9114 59.7142 79.6207 59.8347 79.4064 60.049C79.1921 60.2633 79.0717 60.554 79.0717 60.8571V66.5714H73.3574C73.0543 66.5714 72.7636 66.6918 72.5493 66.9061C72.3349 67.1205 72.2145 67.4111 72.2145 67.7142C72.2145 68.0174 72.3349 68.308 72.5493 68.5224C72.7636 68.7367 73.0543 68.8571 73.3574 68.8571H79.0717V74.5714C79.0717 74.8745 79.1921 75.1652 79.4064 75.3795C79.6207 75.5938 79.9114 75.7142 80.2145 75.7142C80.5176 75.7142 80.8083 75.5938 81.0226 75.3795C81.237 75.1652 81.3574 74.8745 81.3574 74.5714V68.8571H87.0717C87.3748 68.8571 87.6655 68.7367 87.8798 68.5224C88.0941 68.308 88.2145 68.0174 88.2145 67.7142C88.2145 67.4111 88.0941 67.1205 87.8798 66.9061C87.6655 66.6918 87.3748 66.5714 87.0717 66.5714Z" fill="#F5F5F5"/>
|
8
|
-
<path d="M19.9999 15H45V19.9999H19.9999V15Z" fill="currentColor"/>
|
9
|
-
<path d="M19.9999 25.0001H24.9998V30H19.9999V25.0001Z" fill="currentColor"/>
|
10
|
-
<path d="M30 25.0001H34.9999V30H30V25.0001Z" fill="currentColor"/>
|
11
|
-
<path d="M94.9999 112.5C94.9999 113.881 93.8805 115 92.4998 115H12.4999C11.1192 115 9.99983 113.881 9.99983 112.5V7.5C9.99983 6.1193 11.1192 4.99992 12.4999 4.99992H75V17.4998C75 21.642 78.3579 24.9998 82.5 24.9998H87.4999V19.9999H82.5C81.1193 19.9999 79.9999 18.8805 79.9999 17.4998V8.535L94.9999 23.535V32.5001H99.9998V22.5C99.9996 21.837 99.7362 21.2013 99.2674 20.7326L79.2675 0.732422C78.7987 0.263438 78.1629 0 77.5001 0H12.4999C8.3578 0 4.99991 3.35789 4.99991 7.5V112.5C4.99991 116.642 8.3578 120 12.4999 120H92.4998C96.6419 120 99.9998 116.642 99.9998 112.5V107.5H94.9999V112.5Z" fill="currentColor"/>
|
12
|
-
<path d="M82.5 37.5C64.5508 37.5 49.9999 52.0507 49.9999 70.0001C49.9999 87.9495 64.5508 102.5 82.5 102.5C100.449 102.5 115 87.9492 115 69.9998C114.979 52.0594 100.441 37.5206 82.5 37.5ZM82.5 97.5C67.3123 97.5 55.0001 85.1878 55.0001 70.0001C55.0001 54.8123 67.3123 42.4999 82.5 42.4999C97.6877 42.4999 110 54.8121 110 69.9998C109.982 85.1803 97.6805 97.4822 82.5 97.5Z" fill="currentColor"/>
|
13
|
-
</svg>
|
1
|
+
<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M97.5 22.5H82.5C79.7421 22.4918 77.5083 20.258 77.5001 17.5001V2.50008L97.5 22.5Z" fill="currentColor"/>
|
3
|
+
<path d="M97.5 22.5V112.5C97.4918 115.258 95.258 117.492 92.5001 117.5H12.4999C9.74203 117.492 7.5082 115.258 7.5 112.5V7.5C7.5082 4.74211 9.74203 2.50828 12.4999 2.50008H77.4998V17.5001C77.5083 20.258 79.7421 22.4918 82.5 22.5H97.5Z" fill="white"/>
|
4
|
+
<path d="M82.5 100C99.0685 100 112.5 86.5686 112.5 70.0001C112.5 53.4315 99.0685 40.0001 82.5 40.0001C65.9315 40.0001 52.5 53.4315 52.5 70.0001C52.5 86.5686 65.9315 100 82.5 100Z" fill="#FDFAFF"/>
|
5
|
+
<path d="M95.0716 58.5714H74.5001C72.6066 58.5714 71.0716 60.1064 71.0716 62V82.5714C71.0716 84.4649 72.6066 86 74.5001 86H95.0716C96.9651 86 98.5001 84.4649 98.5001 82.5714V62C98.5001 60.1064 96.9651 58.5714 95.0716 58.5714Z" fill="currentColor"/>
|
6
|
+
<path d="M90.5001 54H69.9286C68.0351 54 66.5001 55.535 66.5001 57.4285V78C66.5001 79.8935 68.0351 81.4285 69.9286 81.4285H90.5001C92.3936 81.4285 93.9286 79.8935 93.9286 78V57.4285C93.9286 55.535 92.3936 54 90.5001 54Z" fill="currentColor"/>
|
7
|
+
<path d="M87.0717 66.5714H81.3574V60.8571C81.3574 60.554 81.237 60.2633 81.0226 60.049C80.8083 59.8347 80.5176 59.7142 80.2145 59.7142C79.9114 59.7142 79.6207 59.8347 79.4064 60.049C79.1921 60.2633 79.0717 60.554 79.0717 60.8571V66.5714H73.3574C73.0543 66.5714 72.7636 66.6918 72.5493 66.9061C72.3349 67.1205 72.2145 67.4111 72.2145 67.7142C72.2145 68.0174 72.3349 68.308 72.5493 68.5224C72.7636 68.7367 73.0543 68.8571 73.3574 68.8571H79.0717V74.5714C79.0717 74.8745 79.1921 75.1652 79.4064 75.3795C79.6207 75.5938 79.9114 75.7142 80.2145 75.7142C80.5176 75.7142 80.8083 75.5938 81.0226 75.3795C81.237 75.1652 81.3574 74.8745 81.3574 74.5714V68.8571H87.0717C87.3748 68.8571 87.6655 68.7367 87.8798 68.5224C88.0941 68.308 88.2145 68.0174 88.2145 67.7142C88.2145 67.4111 88.0941 67.1205 87.8798 66.9061C87.6655 66.6918 87.3748 66.5714 87.0717 66.5714Z" fill="#F5F5F5"/>
|
8
|
+
<path d="M19.9999 15H45V19.9999H19.9999V15Z" fill="currentColor"/>
|
9
|
+
<path d="M19.9999 25.0001H24.9998V30H19.9999V25.0001Z" fill="currentColor"/>
|
10
|
+
<path d="M30 25.0001H34.9999V30H30V25.0001Z" fill="currentColor"/>
|
11
|
+
<path d="M94.9999 112.5C94.9999 113.881 93.8805 115 92.4998 115H12.4999C11.1192 115 9.99983 113.881 9.99983 112.5V7.5C9.99983 6.1193 11.1192 4.99992 12.4999 4.99992H75V17.4998C75 21.642 78.3579 24.9998 82.5 24.9998H87.4999V19.9999H82.5C81.1193 19.9999 79.9999 18.8805 79.9999 17.4998V8.535L94.9999 23.535V32.5001H99.9998V22.5C99.9996 21.837 99.7362 21.2013 99.2674 20.7326L79.2675 0.732422C78.7987 0.263438 78.1629 0 77.5001 0H12.4999C8.3578 0 4.99991 3.35789 4.99991 7.5V112.5C4.99991 116.642 8.3578 120 12.4999 120H92.4998C96.6419 120 99.9998 116.642 99.9998 112.5V107.5H94.9999V112.5Z" fill="currentColor"/>
|
12
|
+
<path d="M82.5 37.5C64.5508 37.5 49.9999 52.0507 49.9999 70.0001C49.9999 87.9495 64.5508 102.5 82.5 102.5C100.449 102.5 115 87.9492 115 69.9998C114.979 52.0594 100.441 37.5206 82.5 37.5ZM82.5 97.5C67.3123 97.5 55.0001 85.1878 55.0001 70.0001C55.0001 54.8123 67.3123 42.4999 82.5 42.4999C97.6877 42.4999 110 54.8121 110 69.9998C109.982 85.1803 97.6805 97.4822 82.5 97.5Z" fill="currentColor"/>
|
13
|
+
</svg>
|
@@ -1,22 +1,22 @@
|
|
1
|
-
<svg width="121" height="121" viewBox="0 0 121 121" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<g clip-path="url(#clip0_5382_30932)">
|
3
|
-
<path d="M58.9145 5.52071H13.7748C7.73823 5.52071 2.84479 10.387 2.84479 16.3895V97.0915C2.84479 103.094 7.73823 107.96 13.7748 107.96H65.9273C71.9638 107.96 76.8572 103.094 76.8572 97.0915V26.2608L58.9145 5.52071Z" fill="white"/>
|
4
|
-
<path d="M76.857 35.818C76.2387 35.787 75.6178 35.7713 74.9944 35.7713C65.2515 35.7713 56.0944 39.5718 49.2101 46.4728C35.0342 60.6834 35.0342 83.8055 49.2101 98.0161C54.2205 103.039 60.4347 106.419 67.2025 107.887C72.6381 107.259 76.857 102.665 76.857 97.0915V35.818Z" fill="white"/>
|
5
|
-
<path d="M58.9146 26.2608H76.857L58.9146 5.52071V26.2608Z" fill="white"/>
|
6
|
-
<path d="M47.6293 86.3579L45.3719 93.4883H20.2798V79.2273H39.2461L45.9098 82.35L47.6293 86.3579Z" fill="#9E30B0"/>
|
7
|
-
<path d="M45.3719 93.4883H61.234V79.2273H39.2461C40.2209 84.2719 42.2628 89.1483 45.3719 93.4883Z" fill="#9E30B0"/>
|
8
|
-
<path d="M74.9941 98.2046C89.2966 98.2046 100.891 86.5819 100.891 72.2446C100.891 57.9073 89.2966 46.2846 74.9941 46.2846C60.6916 46.2846 49.0972 57.9073 49.0972 72.2446C49.0972 86.5819 60.6916 98.2046 74.9941 98.2046Z" fill="#8D359C"/>
|
9
|
-
<path d="M116.66 113.971C114.656 115.98 111.403 115.982 109.397 113.975L96.1038 100.679L103.359 93.4056L116.656 106.706C118.661 108.712 118.663 111.964 116.66 113.971Z" fill="#71347B"/>
|
10
|
-
<path d="M56.8663 55.4009H20.2799C18.9854 55.4009 17.936 54.3516 17.936 53.0571C17.936 51.7626 18.9854 50.7132 20.2799 50.7132H56.8665C58.161 50.7132 59.2104 51.7626 59.2104 53.0571C59.2104 54.3516 58.1608 55.4009 56.8663 55.4009Z" fill="#71347B"/>
|
11
|
-
<path d="M49.7692 67.2698H20.2799C18.9854 67.2698 17.936 66.2205 17.936 64.926C17.936 63.6315 18.9854 62.5821 20.2799 62.5821H49.7692C51.0637 62.5821 52.113 63.6315 52.113 64.926C52.113 66.2205 51.0637 67.2698 49.7692 67.2698Z" fill="#71347B"/>
|
12
|
-
<path d="M61.2338 43.532H20.2799C18.9854 43.532 17.936 42.4826 17.936 41.1881C17.936 39.8937 18.9854 38.8443 20.2799 38.8443H61.2338C62.5283 38.8443 63.5776 39.8937 63.5776 41.1881C63.5776 42.4826 62.5283 43.532 61.2338 43.532Z" fill="#71347B"/>
|
13
|
-
<path d="M43.9835 31.6631H20.2799C18.9854 31.6631 17.936 30.6137 17.936 29.3192C17.936 28.0247 18.9854 26.9754 20.2799 26.9754H43.9835C45.278 26.9754 46.3273 28.0247 46.3273 29.3192C46.3273 30.6137 45.278 31.6631 43.9835 31.6631Z" fill="#71347B"/>
|
14
|
-
<path d="M118.314 105.049L105.017 91.7485C104.577 91.3088 103.981 91.0618 103.359 91.0618H103.358C102.736 91.062 102.139 91.3097 101.7 91.7504L99.7316 93.7234L96.5492 90.5332C105.945 79.4258 105.417 62.7101 94.9654 52.2327C90.6362 47.8929 85.1483 45.1354 79.2009 44.2506V26.2608C79.2009 25.6976 78.9981 25.1531 78.6294 24.7274L60.687 3.98738C60.2419 3.47268 59.595 3.17689 58.9143 3.17689H13.7748C6.45547 3.17689 0.500977 9.10419 0.500977 16.3895V97.0915C0.500977 104.377 6.45547 110.304 13.7748 110.304H65.9271C72.0297 110.304 77.3506 106.084 78.8066 100.294C84.1381 99.5778 89.1148 97.3613 93.2385 93.8519L96.4207 97.042L94.4444 99.0233C93.531 99.9388 93.5317 101.421 94.446 102.336L107.739 115.632C109.152 117.045 111.029 117.823 113.026 117.823H113.03C115.029 117.822 116.907 117.042 118.319 115.626C121.23 112.709 121.228 107.964 118.314 105.049ZM91.6468 88.9457C87.1985 93.4049 81.2845 95.8607 74.9941 95.8607C68.704 95.8607 62.7901 93.4049 58.3417 88.9457C49.1551 79.7366 49.1551 64.7525 58.3417 55.5434C62.7901 51.0843 68.704 48.6284 74.9941 48.6284C81.2843 48.6284 87.1985 51.0843 91.6468 55.5434C100.833 64.7525 100.833 79.7366 91.6468 88.9457ZM65.9271 105.616H13.7748C9.04048 105.616 5.18863 101.792 5.18863 97.0915V16.3895C5.18863 11.6887 9.04048 7.86454 13.7748 7.86454H57.8432L74.5134 27.1339V43.9447C67.1489 44.0671 60.244 46.9992 55.0233 52.2327C44.0155 63.2672 44.0155 81.2219 55.0233 92.2564C60.0719 97.3174 66.6956 100.226 73.7868 100.523C72.4406 103.538 69.3772 105.616 65.9271 105.616ZM115.001 112.316C114.474 112.844 113.774 113.135 113.028 113.135H113.027C112.282 113.135 111.581 112.845 111.054 112.318L99.4161 100.677L103.361 96.7226L114.999 108.363C116.088 109.453 116.089 111.225 115.001 112.316Z" fill="#71347B"/>
|
15
|
-
<path d="M78.2987 72.2446L83.0537 67.4603C83.9661 66.5423 83.9617 65.0582 83.0436 64.1457C82.1257 63.2333 80.6416 63.2377 79.7289 64.1558L74.9942 68.9196L70.2594 64.1558C69.3465 63.2375 67.8626 63.2333 66.9448 64.1457C66.0267 65.0584 66.022 66.5423 66.9347 67.4603L71.6896 72.2446L66.9347 77.0288C66.0222 77.9469 66.0267 79.431 66.9448 80.3434C67.402 80.7979 67.9995 81.0248 68.5969 81.0248C69.199 81.0248 69.8014 80.7941 70.2594 80.3331L74.9942 75.5693L79.7289 80.3331C80.1872 80.7941 80.789 81.0248 81.3914 81.0248C81.9889 81.0248 82.5865 80.7977 83.0436 80.3434C83.9617 79.4307 83.9663 77.9469 83.0537 77.0288L78.2987 72.2446Z" fill="white"/>
|
16
|
-
</g>
|
17
|
-
<defs>
|
18
|
-
<clipPath id="clip0_5382_30932">
|
19
|
-
<rect width="120" height="120" fill="white" transform="translate(0.500977 0.5)"/>
|
20
|
-
</clipPath>
|
21
|
-
</defs>
|
22
|
-
</svg>
|
1
|
+
<svg width="121" height="121" viewBox="0 0 121 121" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<g clip-path="url(#clip0_5382_30932)">
|
3
|
+
<path d="M58.9145 5.52071H13.7748C7.73823 5.52071 2.84479 10.387 2.84479 16.3895V97.0915C2.84479 103.094 7.73823 107.96 13.7748 107.96H65.9273C71.9638 107.96 76.8572 103.094 76.8572 97.0915V26.2608L58.9145 5.52071Z" fill="white"/>
|
4
|
+
<path d="M76.857 35.818C76.2387 35.787 75.6178 35.7713 74.9944 35.7713C65.2515 35.7713 56.0944 39.5718 49.2101 46.4728C35.0342 60.6834 35.0342 83.8055 49.2101 98.0161C54.2205 103.039 60.4347 106.419 67.2025 107.887C72.6381 107.259 76.857 102.665 76.857 97.0915V35.818Z" fill="white"/>
|
5
|
+
<path d="M58.9146 26.2608H76.857L58.9146 5.52071V26.2608Z" fill="white"/>
|
6
|
+
<path d="M47.6293 86.3579L45.3719 93.4883H20.2798V79.2273H39.2461L45.9098 82.35L47.6293 86.3579Z" fill="#9E30B0"/>
|
7
|
+
<path d="M45.3719 93.4883H61.234V79.2273H39.2461C40.2209 84.2719 42.2628 89.1483 45.3719 93.4883Z" fill="#9E30B0"/>
|
8
|
+
<path d="M74.9941 98.2046C89.2966 98.2046 100.891 86.5819 100.891 72.2446C100.891 57.9073 89.2966 46.2846 74.9941 46.2846C60.6916 46.2846 49.0972 57.9073 49.0972 72.2446C49.0972 86.5819 60.6916 98.2046 74.9941 98.2046Z" fill="#8D359C"/>
|
9
|
+
<path d="M116.66 113.971C114.656 115.98 111.403 115.982 109.397 113.975L96.1038 100.679L103.359 93.4056L116.656 106.706C118.661 108.712 118.663 111.964 116.66 113.971Z" fill="#71347B"/>
|
10
|
+
<path d="M56.8663 55.4009H20.2799C18.9854 55.4009 17.936 54.3516 17.936 53.0571C17.936 51.7626 18.9854 50.7132 20.2799 50.7132H56.8665C58.161 50.7132 59.2104 51.7626 59.2104 53.0571C59.2104 54.3516 58.1608 55.4009 56.8663 55.4009Z" fill="#71347B"/>
|
11
|
+
<path d="M49.7692 67.2698H20.2799C18.9854 67.2698 17.936 66.2205 17.936 64.926C17.936 63.6315 18.9854 62.5821 20.2799 62.5821H49.7692C51.0637 62.5821 52.113 63.6315 52.113 64.926C52.113 66.2205 51.0637 67.2698 49.7692 67.2698Z" fill="#71347B"/>
|
12
|
+
<path d="M61.2338 43.532H20.2799C18.9854 43.532 17.936 42.4826 17.936 41.1881C17.936 39.8937 18.9854 38.8443 20.2799 38.8443H61.2338C62.5283 38.8443 63.5776 39.8937 63.5776 41.1881C63.5776 42.4826 62.5283 43.532 61.2338 43.532Z" fill="#71347B"/>
|
13
|
+
<path d="M43.9835 31.6631H20.2799C18.9854 31.6631 17.936 30.6137 17.936 29.3192C17.936 28.0247 18.9854 26.9754 20.2799 26.9754H43.9835C45.278 26.9754 46.3273 28.0247 46.3273 29.3192C46.3273 30.6137 45.278 31.6631 43.9835 31.6631Z" fill="#71347B"/>
|
14
|
+
<path d="M118.314 105.049L105.017 91.7485C104.577 91.3088 103.981 91.0618 103.359 91.0618H103.358C102.736 91.062 102.139 91.3097 101.7 91.7504L99.7316 93.7234L96.5492 90.5332C105.945 79.4258 105.417 62.7101 94.9654 52.2327C90.6362 47.8929 85.1483 45.1354 79.2009 44.2506V26.2608C79.2009 25.6976 78.9981 25.1531 78.6294 24.7274L60.687 3.98738C60.2419 3.47268 59.595 3.17689 58.9143 3.17689H13.7748C6.45547 3.17689 0.500977 9.10419 0.500977 16.3895V97.0915C0.500977 104.377 6.45547 110.304 13.7748 110.304H65.9271C72.0297 110.304 77.3506 106.084 78.8066 100.294C84.1381 99.5778 89.1148 97.3613 93.2385 93.8519L96.4207 97.042L94.4444 99.0233C93.531 99.9388 93.5317 101.421 94.446 102.336L107.739 115.632C109.152 117.045 111.029 117.823 113.026 117.823H113.03C115.029 117.822 116.907 117.042 118.319 115.626C121.23 112.709 121.228 107.964 118.314 105.049ZM91.6468 88.9457C87.1985 93.4049 81.2845 95.8607 74.9941 95.8607C68.704 95.8607 62.7901 93.4049 58.3417 88.9457C49.1551 79.7366 49.1551 64.7525 58.3417 55.5434C62.7901 51.0843 68.704 48.6284 74.9941 48.6284C81.2843 48.6284 87.1985 51.0843 91.6468 55.5434C100.833 64.7525 100.833 79.7366 91.6468 88.9457ZM65.9271 105.616H13.7748C9.04048 105.616 5.18863 101.792 5.18863 97.0915V16.3895C5.18863 11.6887 9.04048 7.86454 13.7748 7.86454H57.8432L74.5134 27.1339V43.9447C67.1489 44.0671 60.244 46.9992 55.0233 52.2327C44.0155 63.2672 44.0155 81.2219 55.0233 92.2564C60.0719 97.3174 66.6956 100.226 73.7868 100.523C72.4406 103.538 69.3772 105.616 65.9271 105.616ZM115.001 112.316C114.474 112.844 113.774 113.135 113.028 113.135H113.027C112.282 113.135 111.581 112.845 111.054 112.318L99.4161 100.677L103.361 96.7226L114.999 108.363C116.088 109.453 116.089 111.225 115.001 112.316Z" fill="#71347B"/>
|
15
|
+
<path d="M78.2987 72.2446L83.0537 67.4603C83.9661 66.5423 83.9617 65.0582 83.0436 64.1457C82.1257 63.2333 80.6416 63.2377 79.7289 64.1558L74.9942 68.9196L70.2594 64.1558C69.3465 63.2375 67.8626 63.2333 66.9448 64.1457C66.0267 65.0584 66.022 66.5423 66.9347 67.4603L71.6896 72.2446L66.9347 77.0288C66.0222 77.9469 66.0267 79.431 66.9448 80.3434C67.402 80.7979 67.9995 81.0248 68.5969 81.0248C69.199 81.0248 69.8014 80.7941 70.2594 80.3331L74.9942 75.5693L79.7289 80.3331C80.1872 80.7941 80.789 81.0248 81.3914 81.0248C81.9889 81.0248 82.5865 80.7977 83.0436 80.3434C83.9617 79.4307 83.9663 77.9469 83.0537 77.0288L78.2987 72.2446Z" fill="white"/>
|
16
|
+
</g>
|
17
|
+
<defs>
|
18
|
+
<clipPath id="clip0_5382_30932">
|
19
|
+
<rect width="120" height="120" fill="white" transform="translate(0.500977 0.5)"/>
|
20
|
+
</clipPath>
|
21
|
+
</defs>
|
22
|
+
</svg>
|
@@ -1,3 +1,3 @@
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M12.9691 10.1187V7.07871C12.9691 4.82065 11.5284 2.85163 9.54476 2.11615C9.56791 2.00001 9.58076 1.88132 9.58076 1.76259C9.5808 0.789693 8.79352 0 7.82359 0C6.85365 0 6.06637 0.789693 6.06637 1.76259C6.06637 1.87873 6.07921 1.99483 6.09979 2.10581C5.41803 2.34839 4.78769 2.7329 4.24999 3.25419C3.23632 4.23484 2.67803 5.55354 2.67803 6.96774V10.1187C2.67803 10.2297 2.58798 10.3226 2.47477 10.3226C1.52542 10.3226 0.714972 11.04 0.627496 11.9536C0.578602 12.462 0.745864 12.9678 1.08804 13.3445C1.42763 13.7187 1.91391 13.9355 2.42072 13.9355H5.52351C5.65214 15.0942 6.63496 16 7.82359 16C9.01221 16 9.99503 15.0942 10.1237 13.9355H13.2265C13.7333 13.9355 14.2195 13.7187 14.5591 13.3445C14.8987 12.9678 15.066 12.462 15.0197 11.9536C14.9322 11.04 14.1192 10.3226 13.1724 10.3226C13.0592 10.3226 12.9691 10.2322 12.9691 10.1187ZM7.82359 1.03224C8.22492 1.03224 8.55167 1.35998 8.55167 1.76255C8.55167 1.79607 8.54651 1.82706 8.54136 1.86059C8.3664 1.83477 8.18887 1.81672 8.01134 1.81155C7.70517 1.8012 7.40416 1.82189 7.10573 1.86318C7.10057 1.82965 7.09542 1.79866 7.09542 1.76513C7.0955 1.35998 7.42225 1.03224 7.82359 1.03224ZM7.82359 14.9677C7.20356 14.9677 6.68386 14.5238 6.56291 13.9355H9.08422C8.96336 14.5239 8.44365 14.9677 7.82359 14.9677ZM13.9957 12.0516C14.0163 12.2736 13.9468 12.4877 13.8002 12.6503C13.6484 12.8129 13.4477 12.9032 13.2265 12.9032H2.42076C2.19949 12.9032 1.99885 12.8129 1.84959 12.6503C1.70037 12.4877 1.6309 12.2735 1.65148 12.0516C1.68748 11.6619 2.05028 11.3548 2.47477 11.3548C3.154 11.3548 3.70713 10.8 3.70713 10.1187V6.96774C3.70713 5.83741 4.15478 4.78195 4.96522 3.99742C5.73962 3.24647 6.74818 2.8387 7.82359 2.8387C7.87506 2.8387 7.92391 2.8387 7.97538 2.84128C10.1597 2.91869 11.94 4.82065 11.94 7.07871V10.1187C11.94 10.8 12.4932 11.3548 13.1724 11.3548C13.5969 11.3548 13.9571 11.6619 13.9957 12.0516Z" fill="currentColor"/>
|
3
|
-
</svg>
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M12.9691 10.1187V7.07871C12.9691 4.82065 11.5284 2.85163 9.54476 2.11615C9.56791 2.00001 9.58076 1.88132 9.58076 1.76259C9.5808 0.789693 8.79352 0 7.82359 0C6.85365 0 6.06637 0.789693 6.06637 1.76259C6.06637 1.87873 6.07921 1.99483 6.09979 2.10581C5.41803 2.34839 4.78769 2.7329 4.24999 3.25419C3.23632 4.23484 2.67803 5.55354 2.67803 6.96774V10.1187C2.67803 10.2297 2.58798 10.3226 2.47477 10.3226C1.52542 10.3226 0.714972 11.04 0.627496 11.9536C0.578602 12.462 0.745864 12.9678 1.08804 13.3445C1.42763 13.7187 1.91391 13.9355 2.42072 13.9355H5.52351C5.65214 15.0942 6.63496 16 7.82359 16C9.01221 16 9.99503 15.0942 10.1237 13.9355H13.2265C13.7333 13.9355 14.2195 13.7187 14.5591 13.3445C14.8987 12.9678 15.066 12.462 15.0197 11.9536C14.9322 11.04 14.1192 10.3226 13.1724 10.3226C13.0592 10.3226 12.9691 10.2322 12.9691 10.1187ZM7.82359 1.03224C8.22492 1.03224 8.55167 1.35998 8.55167 1.76255C8.55167 1.79607 8.54651 1.82706 8.54136 1.86059C8.3664 1.83477 8.18887 1.81672 8.01134 1.81155C7.70517 1.8012 7.40416 1.82189 7.10573 1.86318C7.10057 1.82965 7.09542 1.79866 7.09542 1.76513C7.0955 1.35998 7.42225 1.03224 7.82359 1.03224ZM7.82359 14.9677C7.20356 14.9677 6.68386 14.5238 6.56291 13.9355H9.08422C8.96336 14.5239 8.44365 14.9677 7.82359 14.9677ZM13.9957 12.0516C14.0163 12.2736 13.9468 12.4877 13.8002 12.6503C13.6484 12.8129 13.4477 12.9032 13.2265 12.9032H2.42076C2.19949 12.9032 1.99885 12.8129 1.84959 12.6503C1.70037 12.4877 1.6309 12.2735 1.65148 12.0516C1.68748 11.6619 2.05028 11.3548 2.47477 11.3548C3.154 11.3548 3.70713 10.8 3.70713 10.1187V6.96774C3.70713 5.83741 4.15478 4.78195 4.96522 3.99742C5.73962 3.24647 6.74818 2.8387 7.82359 2.8387C7.87506 2.8387 7.92391 2.8387 7.97538 2.84128C10.1597 2.91869 11.94 4.82065 11.94 7.07871V10.1187C11.94 10.8 12.4932 11.3548 13.1724 11.3548C13.5969 11.3548 13.9571 11.6619 13.9957 12.0516Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -1,9 +1,9 @@
|
|
1
|
-
<svg width="15" height="16" viewBox="0 0 15 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M12.8483 2.1782C11.4453 0.726066 9.68556 0.0123062 7.50737 0H7.47045C5.26764 0 3.47093 0.713759 2.09264 2.20281C0.689734 3.64263 0.000586502 5.5624 0.000586502 7.9375C-0.0240259 10.0295 0.726652 12.0478 2.12956 13.5983C3.45863 15.1612 5.42762 16.0473 7.48275 15.9981H7.51967C9.68556 15.9857 11.4577 15.1858 12.8606 13.5737C14.2512 12.0232 15.0141 10.0049 14.9895 7.92519C14.9649 5.55009 14.2758 3.64263 12.8483 2.1782ZM10.227 9.21734C10.227 9.63575 10.1778 10.1034 10.1163 10.6572C10.0794 11.1248 9.99322 11.5924 9.84554 12.0355C9.72248 12.417 9.57481 12.7861 9.37791 13.143C9.20562 13.4876 8.93488 13.7706 8.60262 13.9675C8.27035 14.1521 7.90116 14.2506 7.51967 14.2506H7.50737C7.12587 14.2629 6.73208 14.1767 6.39981 13.9675C6.06754 13.7706 5.7968 13.4876 5.62452 13.143C5.42762 12.7984 5.26764 12.417 5.15688 12.0355C5.03382 11.5801 4.94768 11.1248 4.91076 10.6572C4.86153 10.1034 4.82462 9.63575 4.8 9.25426C4.77539 8.87277 4.77539 8.36821 4.77539 7.81443C4.77539 6.90378 4.8 6.1531 4.86153 5.52548C4.92307 4.88556 5.04613 4.25794 5.21841 3.65494C5.34148 3.10116 5.62452 2.59661 6.04293 2.20281C6.43673 1.85824 6.95359 1.68595 7.48275 1.71056H7.51967C8.03653 1.69825 8.52878 1.87054 8.92258 2.20281C9.31638 2.5843 9.61172 3.07655 9.78401 3.60572C9.98091 4.22102 10.104 4.86095 10.1655 5.51318C10.2147 6.17771 10.2516 6.91608 10.2763 7.80213C10.2516 8.35591 10.227 8.82354 10.227 9.21734Z" fill="url(#paint0_linear_4989_1639)"/>
|
3
|
-
<defs>
|
4
|
-
<linearGradient id="paint0_linear_4989_1639" x1="1.93143" y1="2.35196" x2="13.0132" y2="13.4336" gradientUnits="userSpaceOnUse">
|
5
|
-
<stop stop-color="#EF5350"/>
|
6
|
-
<stop offset="1" stop-color="#FF0000"/>
|
7
|
-
</linearGradient>
|
8
|
-
</defs>
|
9
|
-
</svg>
|
1
|
+
<svg width="15" height="16" viewBox="0 0 15 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M12.8483 2.1782C11.4453 0.726066 9.68556 0.0123062 7.50737 0H7.47045C5.26764 0 3.47093 0.713759 2.09264 2.20281C0.689734 3.64263 0.000586502 5.5624 0.000586502 7.9375C-0.0240259 10.0295 0.726652 12.0478 2.12956 13.5983C3.45863 15.1612 5.42762 16.0473 7.48275 15.9981H7.51967C9.68556 15.9857 11.4577 15.1858 12.8606 13.5737C14.2512 12.0232 15.0141 10.0049 14.9895 7.92519C14.9649 5.55009 14.2758 3.64263 12.8483 2.1782ZM10.227 9.21734C10.227 9.63575 10.1778 10.1034 10.1163 10.6572C10.0794 11.1248 9.99322 11.5924 9.84554 12.0355C9.72248 12.417 9.57481 12.7861 9.37791 13.143C9.20562 13.4876 8.93488 13.7706 8.60262 13.9675C8.27035 14.1521 7.90116 14.2506 7.51967 14.2506H7.50737C7.12587 14.2629 6.73208 14.1767 6.39981 13.9675C6.06754 13.7706 5.7968 13.4876 5.62452 13.143C5.42762 12.7984 5.26764 12.417 5.15688 12.0355C5.03382 11.5801 4.94768 11.1248 4.91076 10.6572C4.86153 10.1034 4.82462 9.63575 4.8 9.25426C4.77539 8.87277 4.77539 8.36821 4.77539 7.81443C4.77539 6.90378 4.8 6.1531 4.86153 5.52548C4.92307 4.88556 5.04613 4.25794 5.21841 3.65494C5.34148 3.10116 5.62452 2.59661 6.04293 2.20281C6.43673 1.85824 6.95359 1.68595 7.48275 1.71056H7.51967C8.03653 1.69825 8.52878 1.87054 8.92258 2.20281C9.31638 2.5843 9.61172 3.07655 9.78401 3.60572C9.98091 4.22102 10.104 4.86095 10.1655 5.51318C10.2147 6.17771 10.2516 6.91608 10.2763 7.80213C10.2516 8.35591 10.227 8.82354 10.227 9.21734Z" fill="url(#paint0_linear_4989_1639)"/>
|
3
|
+
<defs>
|
4
|
+
<linearGradient id="paint0_linear_4989_1639" x1="1.93143" y1="2.35196" x2="13.0132" y2="13.4336" gradientUnits="userSpaceOnUse">
|
5
|
+
<stop stop-color="#EF5350"/>
|
6
|
+
<stop offset="1" stop-color="#FF0000"/>
|
7
|
+
</linearGradient>
|
8
|
+
</defs>
|
9
|
+
</svg>
|
@@ -1,3 +1,3 @@
|
|
1
|
-
<svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.0058 2.15563C9.72708 2.05653 9.40188 2.00697 9.03022 2.00697C8.66473 2.00697 8.29002 2.05343 7.90594 2.14634C7.52187 2.23926 7.14404 2.36005 6.77238 2.50871C6.70213 2.53717 6.63301 2.56609 6.56514 2.59547C6.28216 2.71797 6.01999 2.84852 5.77863 2.98711C5.75477 3.00083 5.73113 3.01462 5.70764 3.02849C5.63301 3.07258 5.56047 3.11747 5.49 3.16315C5.28715 3.2946 5.10139 3.43262 4.93266 3.57724C4.80875 3.6949 4.67249 3.75377 4.52383 3.75377C4.37517 3.75377 4.23579 3.72278 4.10571 3.66086C3.97563 3.59894 3.86101 3.51839 3.76193 3.41928C3.53276 3.20248 3.41814 2.98258 3.41814 2.75958C3.41814 2.53039 3.49864 2.32598 3.65972 2.14634C3.8208 1.9667 4.0345 1.80565 4.30083 1.66318C4.56717 1.51452 4.87379 1.38444 5.22069 1.27294C5.5676 1.15525 5.92373 1.05613 6.28922 0.97561C7.03254 0.820754 7.76969 0.743322 8.5006 0.743322C9.23775 0.743322 9.90979 0.836237 10.5169 1.02207C11.1301 1.20171 11.635 1.44638 12.0314 1.7561C12.8305 2.37553 13.23 3.16222 13.23 4.11614V4.26481C13.1742 5.43554 12.7314 6.4669 11.9013 7.35888C11.1766 8.1332 10.2412 8.74332 9.09526 9.18931C8.06078 9.59814 7.08212 9.80256 6.15914 9.80256H5.91756C5.83706 9.80256 5.7596 9.79639 5.68527 9.78397C5.12778 11.1901 4.61675 12.2401 4.15217 12.9338C3.69376 13.6214 3.2416 14.182 2.79561 14.6156C2.35581 15.043 1.9284 15.2567 1.51338 15.2567C1.30277 15.2567 1.14482 15.2071 1.03951 15.108C0.859871 14.9469 0.770055 14.7952 0.770055 14.6527C0.770055 14.5102 0.816513 14.405 0.909428 14.3368C1.84477 13.6617 2.88235 11.6794 4.02209 8.39024L4.57029 6.82927C5.11603 5.28844 5.59013 4.25358 5.99256 3.72471C6.05604 3.64131 6.11781 3.57047 6.17772 3.5122C6.33255 3.39451 6.49363 3.33566 6.66088 3.33566C6.68303 3.33566 6.70489 3.33615 6.72629 3.33713C6.86633 3.34354 6.9901 3.37093 7.09758 3.41928C7.22149 3.46884 7.32987 3.53388 7.42279 3.6144C7.63337 3.80023 7.7387 4.01706 7.7387 4.26481C7.7387 4.35772 7.69536 4.49093 7.60862 4.66434C7.52187 4.83776 7.42279 5.06388 7.31129 5.34262L6.13126 8.62253C6.42926 8.56857 6.71693 8.50092 6.99426 8.41953C8.11794 8.08979 9.07222 7.5349 9.85716 6.75494C10.7739 5.84437 11.2323 4.90905 11.2323 3.9489C11.2323 3.03833 10.8235 2.44057 10.0058 2.15563ZM7.31545 7.52673C8.09817 7.22427 8.76753 6.7898 9.3332 6.2277L9.33335 6.22755C10.1597 5.40677 10.489 4.65007 10.489 3.9489C10.489 3.60474 10.4126 3.3841 10.3122 3.23728C10.2139 3.09361 10.0502 2.95826 9.7612 2.85755L9.75904 2.85679L9.75681 2.856C9.57552 2.79154 9.33788 2.75029 9.03022 2.75029C8.72821 2.75029 8.41215 2.78864 8.08077 2.86882C7.97931 2.89335 7.87837 2.92003 7.7778 2.94886C7.82306 2.98123 7.86707 3.01581 7.90959 3.05268L7.91211 3.05484L7.91457 3.05703C8.26133 3.36301 8.48202 3.77399 8.48202 4.26481C8.48202 4.54266 8.3674 4.80885 8.27344 4.99676C8.2006 5.14252 8.11162 5.34381 8.00622 5.60673L7.31545 7.52673ZM4.70743 4.48409C4.4434 5.04775 4.16436 5.749 3.86963 6.58115L3.86926 6.58204L3.32024 8.14539L3.31972 8.14688C2.75606 9.77349 2.22558 11.0533 1.73055 11.9991C1.22408 12.9667 0.796369 13.5017 0.474369 13.7341L0.472102 13.7358L0.469857 13.7374C0.140588 13.9788 0.0267334 14.3361 0.0267334 14.6527C0.0267334 15.1107 0.30591 15.4472 0.537574 15.6563C0.831342 15.9281 1.2017 16 1.51338 16C2.19727 16 2.80074 15.6471 3.31363 15.1486L3.31378 15.1485C3.80712 14.6689 4.29169 14.0645 4.77009 13.3469C5.21884 12.6767 5.68735 11.7354 6.17884 10.5459C7.20574 10.543 8.27032 10.3144 9.36665 9.88135C10.5991 9.40146 11.6324 8.73396 12.444 7.86687L12.4447 7.86605L12.4455 7.86524C13.39 6.85016 13.908 5.65385 13.9725 4.30019L13.9733 4.2825V4.11614C13.9733 2.91731 13.4552 1.91973 12.4878 1.16936C12.0014 0.789764 11.4078 0.508945 10.7301 0.30998C10.0434 0.100319 9.29819 0 8.5006 0C7.71677 0 6.92885 0.0830663 6.13758 0.247913L6.13342 0.248782L6.12926 0.249704C5.73968 0.335543 5.35903 0.441303 4.98751 0.567125C4.60716 0.689728 4.25787 0.836505 3.94434 1.0109C3.62248 1.18375 3.33623 1.39363 3.10624 1.65014C2.83002 1.95828 2.67482 2.33697 2.67482 2.75958C2.67482 3.25579 2.9323 3.65528 3.24383 3.95239C3.40275 4.1096 3.58494 4.23619 3.78616 4.332C4.01926 4.44298 4.2682 4.4971 4.52383 4.4971C4.58664 4.4971 4.64789 4.49264 4.70743 4.48409Z" fill="currentColor"/>
|
3
|
-
</svg>
|
1
|
+
<svg width="14" height="16" viewBox="0 0 14 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.0058 2.15563C9.72708 2.05653 9.40188 2.00697 9.03022 2.00697C8.66473 2.00697 8.29002 2.05343 7.90594 2.14634C7.52187 2.23926 7.14404 2.36005 6.77238 2.50871C6.70213 2.53717 6.63301 2.56609 6.56514 2.59547C6.28216 2.71797 6.01999 2.84852 5.77863 2.98711C5.75477 3.00083 5.73113 3.01462 5.70764 3.02849C5.63301 3.07258 5.56047 3.11747 5.49 3.16315C5.28715 3.2946 5.10139 3.43262 4.93266 3.57724C4.80875 3.6949 4.67249 3.75377 4.52383 3.75377C4.37517 3.75377 4.23579 3.72278 4.10571 3.66086C3.97563 3.59894 3.86101 3.51839 3.76193 3.41928C3.53276 3.20248 3.41814 2.98258 3.41814 2.75958C3.41814 2.53039 3.49864 2.32598 3.65972 2.14634C3.8208 1.9667 4.0345 1.80565 4.30083 1.66318C4.56717 1.51452 4.87379 1.38444 5.22069 1.27294C5.5676 1.15525 5.92373 1.05613 6.28922 0.97561C7.03254 0.820754 7.76969 0.743322 8.5006 0.743322C9.23775 0.743322 9.90979 0.836237 10.5169 1.02207C11.1301 1.20171 11.635 1.44638 12.0314 1.7561C12.8305 2.37553 13.23 3.16222 13.23 4.11614V4.26481C13.1742 5.43554 12.7314 6.4669 11.9013 7.35888C11.1766 8.1332 10.2412 8.74332 9.09526 9.18931C8.06078 9.59814 7.08212 9.80256 6.15914 9.80256H5.91756C5.83706 9.80256 5.7596 9.79639 5.68527 9.78397C5.12778 11.1901 4.61675 12.2401 4.15217 12.9338C3.69376 13.6214 3.2416 14.182 2.79561 14.6156C2.35581 15.043 1.9284 15.2567 1.51338 15.2567C1.30277 15.2567 1.14482 15.2071 1.03951 15.108C0.859871 14.9469 0.770055 14.7952 0.770055 14.6527C0.770055 14.5102 0.816513 14.405 0.909428 14.3368C1.84477 13.6617 2.88235 11.6794 4.02209 8.39024L4.57029 6.82927C5.11603 5.28844 5.59013 4.25358 5.99256 3.72471C6.05604 3.64131 6.11781 3.57047 6.17772 3.5122C6.33255 3.39451 6.49363 3.33566 6.66088 3.33566C6.68303 3.33566 6.70489 3.33615 6.72629 3.33713C6.86633 3.34354 6.9901 3.37093 7.09758 3.41928C7.22149 3.46884 7.32987 3.53388 7.42279 3.6144C7.63337 3.80023 7.7387 4.01706 7.7387 4.26481C7.7387 4.35772 7.69536 4.49093 7.60862 4.66434C7.52187 4.83776 7.42279 5.06388 7.31129 5.34262L6.13126 8.62253C6.42926 8.56857 6.71693 8.50092 6.99426 8.41953C8.11794 8.08979 9.07222 7.5349 9.85716 6.75494C10.7739 5.84437 11.2323 4.90905 11.2323 3.9489C11.2323 3.03833 10.8235 2.44057 10.0058 2.15563ZM7.31545 7.52673C8.09817 7.22427 8.76753 6.7898 9.3332 6.2277L9.33335 6.22755C10.1597 5.40677 10.489 4.65007 10.489 3.9489C10.489 3.60474 10.4126 3.3841 10.3122 3.23728C10.2139 3.09361 10.0502 2.95826 9.7612 2.85755L9.75904 2.85679L9.75681 2.856C9.57552 2.79154 9.33788 2.75029 9.03022 2.75029C8.72821 2.75029 8.41215 2.78864 8.08077 2.86882C7.97931 2.89335 7.87837 2.92003 7.7778 2.94886C7.82306 2.98123 7.86707 3.01581 7.90959 3.05268L7.91211 3.05484L7.91457 3.05703C8.26133 3.36301 8.48202 3.77399 8.48202 4.26481C8.48202 4.54266 8.3674 4.80885 8.27344 4.99676C8.2006 5.14252 8.11162 5.34381 8.00622 5.60673L7.31545 7.52673ZM4.70743 4.48409C4.4434 5.04775 4.16436 5.749 3.86963 6.58115L3.86926 6.58204L3.32024 8.14539L3.31972 8.14688C2.75606 9.77349 2.22558 11.0533 1.73055 11.9991C1.22408 12.9667 0.796369 13.5017 0.474369 13.7341L0.472102 13.7358L0.469857 13.7374C0.140588 13.9788 0.0267334 14.3361 0.0267334 14.6527C0.0267334 15.1107 0.30591 15.4472 0.537574 15.6563C0.831342 15.9281 1.2017 16 1.51338 16C2.19727 16 2.80074 15.6471 3.31363 15.1486L3.31378 15.1485C3.80712 14.6689 4.29169 14.0645 4.77009 13.3469C5.21884 12.6767 5.68735 11.7354 6.17884 10.5459C7.20574 10.543 8.27032 10.3144 9.36665 9.88135C10.5991 9.40146 11.6324 8.73396 12.444 7.86687L12.4447 7.86605L12.4455 7.86524C13.39 6.85016 13.908 5.65385 13.9725 4.30019L13.9733 4.2825V4.11614C13.9733 2.91731 13.4552 1.91973 12.4878 1.16936C12.0014 0.789764 11.4078 0.508945 10.7301 0.30998C10.0434 0.100319 9.29819 0 8.5006 0C7.71677 0 6.92885 0.0830663 6.13758 0.247913L6.13342 0.248782L6.12926 0.249704C5.73968 0.335543 5.35903 0.441303 4.98751 0.567125C4.60716 0.689728 4.25787 0.836505 3.94434 1.0109C3.62248 1.18375 3.33623 1.39363 3.10624 1.65014C2.83002 1.95828 2.67482 2.33697 2.67482 2.75958C2.67482 3.25579 2.9323 3.65528 3.24383 3.95239C3.40275 4.1096 3.58494 4.23619 3.78616 4.332C4.01926 4.44298 4.2682 4.4971 4.52383 4.4971C4.58664 4.4971 4.64789 4.49264 4.70743 4.48409Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -1,12 +1,12 @@
|
|
1
|
-
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<g clip-path="url(#clip0_5540_15042)">
|
3
|
-
<path d="M16.6261 16.6281C20.2867 12.9675 20.2867 7.03249 16.6261 3.37187C12.9655 -0.288738 7.03044 -0.288737 3.36982 3.37187C-0.290788 7.03249 -0.290788 12.9675 3.36982 16.6281C7.03044 20.2887 12.9655 20.2887 16.6261 16.6281Z" fill="#46CC6B"/>
|
4
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.2399 11.5904C18.5728 15.4935 15.4933 18.5729 11.5903 19.24L6.54334 14.1931C5.33564 13.1964 4.56592 11.6881 4.56592 9.99999C4.56592 6.99885 6.99873 4.56604 9.99986 4.56604C11.688 4.56604 13.1963 5.33581 14.193 6.54346L19.2399 11.5904Z" fill="#179C5F"/>
|
5
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.45635 10.3226L9.00393 11.7438C9.22967 11.9516 9.57908 11.9406 9.79139 11.7217L12.5523 9.07827C12.7769 8.86233 12.7837 8.50506 12.5676 8.28038C12.3516 8.05604 11.9946 8.04901 11.77 8.26495L9.3785 10.5547L8.22088 9.49166C7.99154 9.28065 7.63424 9.29545 7.42311 9.52502C7.21201 9.75436 7.22689 10.1114 7.45635 10.3226ZM9.99986 4.56604C13.001 4.56604 15.4338 6.99885 15.4338 9.99999C15.4338 13.0011 13.001 15.4339 9.99986 15.4339C6.99873 15.4339 4.56592 13.0011 4.56592 9.99999C4.56592 6.99885 6.99873 4.56604 9.99986 4.56604Z" fill="white"/>
|
6
|
-
</g>
|
7
|
-
<defs>
|
8
|
-
<clipPath id="clip0_5540_15042">
|
9
|
-
<rect width="20" height="20" fill="white"/>
|
10
|
-
</clipPath>
|
11
|
-
</defs>
|
12
|
-
</svg>
|
1
|
+
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<g clip-path="url(#clip0_5540_15042)">
|
3
|
+
<path d="M16.6261 16.6281C20.2867 12.9675 20.2867 7.03249 16.6261 3.37187C12.9655 -0.288738 7.03044 -0.288737 3.36982 3.37187C-0.290788 7.03249 -0.290788 12.9675 3.36982 16.6281C7.03044 20.2887 12.9655 20.2887 16.6261 16.6281Z" fill="#46CC6B"/>
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.2399 11.5904C18.5728 15.4935 15.4933 18.5729 11.5903 19.24L6.54334 14.1931C5.33564 13.1964 4.56592 11.6881 4.56592 9.99999C4.56592 6.99885 6.99873 4.56604 9.99986 4.56604C11.688 4.56604 13.1963 5.33581 14.193 6.54346L19.2399 11.5904Z" fill="#179C5F"/>
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.45635 10.3226L9.00393 11.7438C9.22967 11.9516 9.57908 11.9406 9.79139 11.7217L12.5523 9.07827C12.7769 8.86233 12.7837 8.50506 12.5676 8.28038C12.3516 8.05604 11.9946 8.04901 11.77 8.26495L9.3785 10.5547L8.22088 9.49166C7.99154 9.28065 7.63424 9.29545 7.42311 9.52502C7.21201 9.75436 7.22689 10.1114 7.45635 10.3226ZM9.99986 4.56604C13.001 4.56604 15.4338 6.99885 15.4338 9.99999C15.4338 13.0011 13.001 15.4339 9.99986 15.4339C6.99873 15.4339 4.56592 13.0011 4.56592 9.99999C4.56592 6.99885 6.99873 4.56604 9.99986 4.56604Z" fill="white"/>
|
6
|
+
</g>
|
7
|
+
<defs>
|
8
|
+
<clipPath id="clip0_5540_15042">
|
9
|
+
<rect width="20" height="20" fill="white"/>
|
10
|
+
</clipPath>
|
11
|
+
</defs>
|
12
|
+
</svg>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.48617 9.25832C4.57617 9.09499 4.62117 8.91999 4.62117 8.73332C4.62117 8.52665 4.57284 8.34165 4.47617 8.17832C4.38284 8.01499 4.24117 7.88665 4.05117 7.79332C3.86117 7.69999 3.63117 7.65332 3.36117 7.65332H2.07617V11.1433H2.77617V9.80332H3.36117C3.64784 9.80332 3.88451 9.75332 4.07117 9.65332C4.26117 9.55332 4.39951 9.42165 4.48617 9.25832ZM3.76117 9.10832C3.66784 9.19499 3.52451 9.23832 3.33117 9.23832H2.77617V8.22332H3.33117C3.71117 8.22332 3.90117 8.39332 3.90117 8.73332C3.90117 8.89332 3.85451 9.01832 3.76117 9.10832ZM7.30316 7.86832C7.0265 7.72499 6.70483 7.65332 6.33816 7.65332H5.11816V11.1433H6.33816C6.70483 11.1433 7.0265 11.0717 7.30316 10.9283C7.58316 10.785 7.79816 10.5833 7.94816 10.3233C8.1015 10.06 8.17816 9.75332 8.17816 9.40332C8.17816 9.05332 8.1015 8.74665 7.94816 8.48332C7.79816 8.21665 7.58316 8.01165 7.30316 7.86832ZM7.16316 10.2483C6.96316 10.4483 6.67983 10.5483 6.31316 10.5483H5.81816V8.24332H6.31316C6.67983 8.24332 6.96316 8.34665 7.16316 8.55332C7.36316 8.75665 7.46316 9.03999 7.46316 9.40332C7.46316 9.76665 7.36316 10.0483 7.16316 10.2483ZM10.8571 8.21832V7.65332H8.70215V11.1433H9.40215V9.66832H10.5171V9.11332H9.40215V8.21832H10.8571Z" fill="white"/>
|
4
|
-
</svg>
|
1
|
+
<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.48617 9.25832C4.57617 9.09499 4.62117 8.91999 4.62117 8.73332C4.62117 8.52665 4.57284 8.34165 4.47617 8.17832C4.38284 8.01499 4.24117 7.88665 4.05117 7.79332C3.86117 7.69999 3.63117 7.65332 3.36117 7.65332H2.07617V11.1433H2.77617V9.80332H3.36117C3.64784 9.80332 3.88451 9.75332 4.07117 9.65332C4.26117 9.55332 4.39951 9.42165 4.48617 9.25832ZM3.76117 9.10832C3.66784 9.19499 3.52451 9.23832 3.33117 9.23832H2.77617V8.22332H3.33117C3.71117 8.22332 3.90117 8.39332 3.90117 8.73332C3.90117 8.89332 3.85451 9.01832 3.76117 9.10832ZM7.30316 7.86832C7.0265 7.72499 6.70483 7.65332 6.33816 7.65332H5.11816V11.1433H6.33816C6.70483 11.1433 7.0265 11.0717 7.30316 10.9283C7.58316 10.785 7.79816 10.5833 7.94816 10.3233C8.1015 10.06 8.17816 9.75332 8.17816 9.40332C8.17816 9.05332 8.1015 8.74665 7.94816 8.48332C7.79816 8.21665 7.58316 8.01165 7.30316 7.86832ZM7.16316 10.2483C6.96316 10.4483 6.67983 10.5483 6.31316 10.5483H5.81816V8.24332H6.31316C6.67983 8.24332 6.96316 8.34665 7.16316 8.55332C7.36316 8.75665 7.46316 9.03999 7.46316 9.40332C7.46316 9.76665 7.36316 10.0483 7.16316 10.2483ZM10.8571 8.21832V7.65332H8.70215V11.1433H9.40215V9.66832H10.5171V9.11332H9.40215V8.21832H10.8571Z" fill="white"/>
|
4
|
+
</svg>
|
@@ -1,11 +1,11 @@
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<g clip-path="url(#clip0_116_6473)">
|
3
|
-
<path d="M8 0C3.58853 0 0 3.58853 0 8C0 12.4115 3.58853 16 8 16C12.4115 16 16 12.4108 16 8C16 3.58916 12.4115 0 8 0ZM8 14.7607C4.27266 14.7607 1.23934 11.728 1.23934 8C1.23934 4.27203 4.27266 1.23934 8 1.23934C11.7273 1.23934 14.7607 4.27203 14.7607 8C14.7607 11.728 11.728 14.7607 8 14.7607Z" fill="currentColor"/>
|
4
|
-
<path d="M11.0987 7.32457H8.61998V4.84588C8.61998 4.50382 8.34298 4.2262 8.00029 4.2262C7.6576 4.2262 7.3806 4.50382 7.3806 4.84588V7.32457H4.90191C4.55923 7.32457 4.28223 7.6022 4.28223 7.94426C4.28223 8.28632 4.55923 8.56395 4.90191 8.56395H7.3806V11.0426C7.3806 11.3847 7.6576 11.6623 8.00029 11.6623C8.34298 11.6623 8.61998 11.3847 8.61998 11.0426V8.56395H11.0987C11.4414 8.56395 11.7184 8.28632 11.7184 7.94426C11.7184 7.6022 11.4414 7.32457 11.0987 7.32457Z" fill="currentColor"/>
|
5
|
-
</g>
|
6
|
-
<defs>
|
7
|
-
<clipPath id="clip0_116_6473">
|
8
|
-
<rect width="16" height="16" fill="white"/>
|
9
|
-
</clipPath>
|
10
|
-
</defs>
|
11
|
-
</svg>
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<g clip-path="url(#clip0_116_6473)">
|
3
|
+
<path d="M8 0C3.58853 0 0 3.58853 0 8C0 12.4115 3.58853 16 8 16C12.4115 16 16 12.4108 16 8C16 3.58916 12.4115 0 8 0ZM8 14.7607C4.27266 14.7607 1.23934 11.728 1.23934 8C1.23934 4.27203 4.27266 1.23934 8 1.23934C11.7273 1.23934 14.7607 4.27203 14.7607 8C14.7607 11.728 11.728 14.7607 8 14.7607Z" fill="currentColor"/>
|
4
|
+
<path d="M11.0987 7.32457H8.61998V4.84588C8.61998 4.50382 8.34298 4.2262 8.00029 4.2262C7.6576 4.2262 7.3806 4.50382 7.3806 4.84588V7.32457H4.90191C4.55923 7.32457 4.28223 7.6022 4.28223 7.94426C4.28223 8.28632 4.55923 8.56395 4.90191 8.56395H7.3806V11.0426C7.3806 11.3847 7.6576 11.6623 8.00029 11.6623C8.34298 11.6623 8.61998 11.3847 8.61998 11.0426V8.56395H11.0987C11.4414 8.56395 11.7184 8.28632 11.7184 7.94426C11.7184 7.6022 11.4414 7.32457 11.0987 7.32457Z" fill="currentColor"/>
|
5
|
+
</g>
|
6
|
+
<defs>
|
7
|
+
<clipPath id="clip0_116_6473">
|
8
|
+
<rect width="16" height="16" fill="white"/>
|
9
|
+
</clipPath>
|
10
|
+
</defs>
|
11
|
+
</svg>
|
@@ -1,38 +1,38 @@
|
|
1
|
-
<svg width="26" height="27" viewBox="0 0 26 27" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<g filter="url(#filter0_ddii_1383_25738)">
|
3
|
-
<path d="M22 13C22 18.5228 17.5228 23 12 23C6.47715 23 2 18.5228 2 13C2 7.47715 6.47715 3 12 3C17.5228 3 22 7.47715 22 13Z" fill="url(#paint0_linear_1383_25738)"/>
|
4
|
-
</g>
|
5
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M13 8C13 7.44772 12.5523 7 12 7C11.4477 7 11 7.44772 11 8V9.49994C11 10.8806 9.88074 11.9999 8.50006 11.9999H7C6.44772 11.9999 6 12.4476 6 12.9999C6 13.5522 6.44772 13.9999 7 13.9999H8.5C9.88071 13.9999 11 15.1192 11 16.4999V18C11 18.5523 11.4477 19 12 19C12.5523 19 13 18.5523 13 18V16.4999C13 15.1192 14.1193 13.9999 15.5 13.9999H17C17.5523 13.9999 18 13.5522 18 12.9999C18 12.4476 17.5523 11.9999 17 11.9999H15.4999C14.1193 11.9999 13 10.8806 13 9.49994V8Z" fill="#71347B"/>
|
6
|
-
<defs>
|
7
|
-
<filter id="filter0_ddii_1383_25738" x="0" y="0" width="26" height="27" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
8
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
9
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
10
|
-
<feOffset dx="1" dy="1"/>
|
11
|
-
<feGaussianBlur stdDeviation="1.5"/>
|
12
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.442507 0 0 0 0 0.202278 0 0 0 0 0.481615 0 0 0 0.2 0"/>
|
13
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1383_25738"/>
|
14
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
15
|
-
<feOffset dx="1" dy="-1"/>
|
16
|
-
<feGaussianBlur stdDeviation="1"/>
|
17
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.141176 0 0 0 0 0.0745098 0 0 0 0 0.196078 0 0 0 0.1 0"/>
|
18
|
-
<feBlend mode="normal" in2="effect1_dropShadow_1383_25738" result="effect2_dropShadow_1383_25738"/>
|
19
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_1383_25738" result="shape"/>
|
20
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
21
|
-
<feOffset dx="-1" dy="-1"/>
|
22
|
-
<feGaussianBlur stdDeviation="1"/>
|
23
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
24
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.941176 0 0 0 0 0.905882 0 0 0 0 0.956863 0 0 0 1 0"/>
|
25
|
-
<feBlend mode="normal" in2="shape" result="effect3_innerShadow_1383_25738"/>
|
26
|
-
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
27
|
-
<feOffset dx="1" dy="1"/>
|
28
|
-
<feGaussianBlur stdDeviation="1"/>
|
29
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
30
|
-
<feColorMatrix type="matrix" values="0 0 0 0 0.556863 0 0 0 0 0.294118 0 0 0 0 0.776471 0 0 0 0.3 0"/>
|
31
|
-
<feBlend mode="normal" in2="effect3_innerShadow_1383_25738" result="effect4_innerShadow_1383_25738"/>
|
32
|
-
</filter>
|
33
|
-
<linearGradient id="paint0_linear_1383_25738" x1="2" y1="3" x2="22" y2="23" gradientUnits="userSpaceOnUse">
|
34
|
-
<stop offset="1" stop-color="#F0E7F4"/>
|
35
|
-
<stop stop-color="#F7EBFF"/>
|
36
|
-
</linearGradient>
|
37
|
-
</defs>
|
38
|
-
</svg>
|
1
|
+
<svg width="26" height="27" viewBox="0 0 26 27" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<g filter="url(#filter0_ddii_1383_25738)">
|
3
|
+
<path d="M22 13C22 18.5228 17.5228 23 12 23C6.47715 23 2 18.5228 2 13C2 7.47715 6.47715 3 12 3C17.5228 3 22 7.47715 22 13Z" fill="url(#paint0_linear_1383_25738)"/>
|
4
|
+
</g>
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M13 8C13 7.44772 12.5523 7 12 7C11.4477 7 11 7.44772 11 8V9.49994C11 10.8806 9.88074 11.9999 8.50006 11.9999H7C6.44772 11.9999 6 12.4476 6 12.9999C6 13.5522 6.44772 13.9999 7 13.9999H8.5C9.88071 13.9999 11 15.1192 11 16.4999V18C11 18.5523 11.4477 19 12 19C12.5523 19 13 18.5523 13 18V16.4999C13 15.1192 14.1193 13.9999 15.5 13.9999H17C17.5523 13.9999 18 13.5522 18 12.9999C18 12.4476 17.5523 11.9999 17 11.9999H15.4999C14.1193 11.9999 13 10.8806 13 9.49994V8Z" fill="#71347B"/>
|
6
|
+
<defs>
|
7
|
+
<filter id="filter0_ddii_1383_25738" x="0" y="0" width="26" height="27" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
8
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
9
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
10
|
+
<feOffset dx="1" dy="1"/>
|
11
|
+
<feGaussianBlur stdDeviation="1.5"/>
|
12
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.442507 0 0 0 0 0.202278 0 0 0 0 0.481615 0 0 0 0.2 0"/>
|
13
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1383_25738"/>
|
14
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
15
|
+
<feOffset dx="1" dy="-1"/>
|
16
|
+
<feGaussianBlur stdDeviation="1"/>
|
17
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.141176 0 0 0 0 0.0745098 0 0 0 0 0.196078 0 0 0 0.1 0"/>
|
18
|
+
<feBlend mode="normal" in2="effect1_dropShadow_1383_25738" result="effect2_dropShadow_1383_25738"/>
|
19
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_1383_25738" result="shape"/>
|
20
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
21
|
+
<feOffset dx="-1" dy="-1"/>
|
22
|
+
<feGaussianBlur stdDeviation="1"/>
|
23
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
24
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.941176 0 0 0 0 0.905882 0 0 0 0 0.956863 0 0 0 1 0"/>
|
25
|
+
<feBlend mode="normal" in2="shape" result="effect3_innerShadow_1383_25738"/>
|
26
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
27
|
+
<feOffset dx="1" dy="1"/>
|
28
|
+
<feGaussianBlur stdDeviation="1"/>
|
29
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
30
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0.556863 0 0 0 0 0.294118 0 0 0 0 0.776471 0 0 0 0.3 0"/>
|
31
|
+
<feBlend mode="normal" in2="effect3_innerShadow_1383_25738" result="effect4_innerShadow_1383_25738"/>
|
32
|
+
</filter>
|
33
|
+
<linearGradient id="paint0_linear_1383_25738" x1="2" y1="3" x2="22" y2="23" gradientUnits="userSpaceOnUse">
|
34
|
+
<stop offset="1" stop-color="#F0E7F4"/>
|
35
|
+
<stop stop-color="#F7EBFF"/>
|
36
|
+
</linearGradient>
|
37
|
+
</defs>
|
38
|
+
</svg>
|
@@ -1,3 +1,3 @@
|
|
1
|
-
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M7 1C7 0.447715 6.55228 0 6 0C5.44772 0 5 0.447715 5 1V2.49994C5 3.88062 3.88074 4.99988 2.50006 4.99988H1C0.447715 4.99988 0 5.44759 0 5.99988C0 6.55216 0.447715 6.99988 1 6.99988H2.5C3.88071 6.99988 5 8.11917 5 9.49988V11C5 11.5523 5.44772 12 6 12C6.55228 12 7 11.5523 7 11V9.49988C7 8.11917 8.11929 6.99988 9.5 6.99988H11C11.5523 6.99988 12 6.55216 12 5.99988C12 5.44759 11.5523 4.99988 11 4.99988H9.49994C8.11926 4.99988 7 3.88062 7 2.49994V1Z" fill="currentColor"/>
|
3
|
-
</svg>
|
1
|
+
<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M7 1C7 0.447715 6.55228 0 6 0C5.44772 0 5 0.447715 5 1V2.49994C5 3.88062 3.88074 4.99988 2.50006 4.99988H1C0.447715 4.99988 0 5.44759 0 5.99988C0 6.55216 0.447715 6.99988 1 6.99988H2.5C3.88071 6.99988 5 8.11917 5 9.49988V11C5 11.5523 5.44772 12 6 12C6.55228 12 7 11.5523 7 11V9.49988C7 8.11917 8.11929 6.99988 9.5 6.99988H11C11.5523 6.99988 12 6.55216 12 5.99988C12 5.44759 11.5523 4.99988 11 4.99988H9.49994C8.11926 4.99988 7 3.88062 7 2.49994V1Z" fill="currentColor"/>
|
3
|
+
</svg>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.10922 9.23887C4.19922 9.07553 4.24422 8.90053 4.24422 8.71387C4.24422 8.5072 4.19589 8.3222 4.09922 8.15887C4.00589 7.99553 3.86422 7.8672 3.67422 7.77387C3.48422 7.68053 3.25422 7.63387 2.98422 7.63387H1.69922V11.1239H2.39922V9.78387H2.98422C3.27089 9.78387 3.50755 9.73387 3.69422 9.63387C3.88422 9.53387 4.02255 9.4022 4.10922 9.23887ZM3.38422 9.08887C3.29089 9.17553 3.14755 9.21887 2.95422 9.21887H2.39922V8.20387H2.95422C3.33422 8.20387 3.52422 8.37387 3.52422 8.71387C3.52422 8.87387 3.47755 8.99887 3.38422 9.08887ZM7.02621 11.1239H7.72621V7.62887H7.02621V10.0289L5.44121 7.62887H4.74121V11.1239H5.44121V8.72887L7.02621 11.1239ZM10.518 8.34887C10.658 8.42553 10.768 8.5372 10.848 8.68387H11.653C11.543 8.3372 11.343 8.06887 11.053 7.87887C10.763 7.68553 10.4213 7.58887 10.028 7.58887C9.69464 7.58887 9.3913 7.66553 9.11797 7.81887C8.84797 7.96887 8.63464 8.18053 8.47797 8.45387C8.32464 8.72387 8.24797 9.03053 8.24797 9.37387C8.24797 9.7172 8.32464 10.0239 8.47797 10.2939C8.63464 10.5639 8.84797 10.7755 9.11797 10.9289C9.3913 11.0789 9.6963 11.1539 10.033 11.1539C10.333 11.1539 10.603 11.0922 10.843 10.9689C11.0863 10.8422 11.2846 10.6755 11.438 10.4689C11.5913 10.2622 11.6913 10.0372 11.738 9.79387V9.18387H9.84797V9.71887H11.048C10.9946 9.9722 10.883 10.1705 10.713 10.3139C10.543 10.4539 10.3246 10.5239 10.058 10.5239C9.8413 10.5239 9.6513 10.4772 9.48797 10.3839C9.32464 10.2905 9.1963 10.1572 9.10297 9.98387C9.01297 9.81053 8.96797 9.6072 8.96797 9.37387C8.96797 9.1472 9.01297 8.9472 9.10297 8.77387C9.19297 8.60053 9.31797 8.4672 9.47797 8.37387C9.63797 8.28053 9.8213 8.23387 10.028 8.23387C10.2146 8.23387 10.378 8.2722 10.518 8.34887Z" fill="white"/>
|
4
|
-
</svg>
|
1
|
+
<svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M15.4273 4.75176L10.7936 0.117383C10.7467 0.0705078 10.6833 0.0439453 10.617 0.0439453H5.36828C4.14672 0.0439453 3.15297 1.03801 3.15297 2.25957V6.64426H1.20859C0.832969 6.64426 0.527344 6.94988 0.527344 7.32551V11.2418C0.527344 11.6174 0.832969 11.923 1.20859 11.923H3.15297V13.8283C3.15297 15.0499 4.14672 16.0439 5.36828 16.0439H13.2852C14.5067 16.0439 15.5005 15.0499 15.5005 13.8283V4.92863C15.5005 4.86238 15.4742 4.79863 15.4273 4.75176ZM15.0008 13.8283C15.0008 14.7746 14.2311 15.5443 13.2852 15.5443H5.36828C4.42234 15.5443 3.65266 14.7746 3.65266 13.8283V11.923H11.8836C12.2592 11.923 12.5648 11.6174 12.5648 11.2418V7.32551C12.5648 6.94988 12.2592 6.64426 11.8836 6.64426H3.65266V2.25957C3.65266 1.31332 4.42234 0.543633 5.36828 0.543633H10.367V4.42801C10.367 4.84176 10.7033 5.17832 11.1164 5.17832H15.0008V13.8283Z" fill="currentColor"/>
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M4.10922 9.23887C4.19922 9.07553 4.24422 8.90053 4.24422 8.71387C4.24422 8.5072 4.19589 8.3222 4.09922 8.15887C4.00589 7.99553 3.86422 7.8672 3.67422 7.77387C3.48422 7.68053 3.25422 7.63387 2.98422 7.63387H1.69922V11.1239H2.39922V9.78387H2.98422C3.27089 9.78387 3.50755 9.73387 3.69422 9.63387C3.88422 9.53387 4.02255 9.4022 4.10922 9.23887ZM3.38422 9.08887C3.29089 9.17553 3.14755 9.21887 2.95422 9.21887H2.39922V8.20387H2.95422C3.33422 8.20387 3.52422 8.37387 3.52422 8.71387C3.52422 8.87387 3.47755 8.99887 3.38422 9.08887ZM7.02621 11.1239H7.72621V7.62887H7.02621V10.0289L5.44121 7.62887H4.74121V11.1239H5.44121V8.72887L7.02621 11.1239ZM10.518 8.34887C10.658 8.42553 10.768 8.5372 10.848 8.68387H11.653C11.543 8.3372 11.343 8.06887 11.053 7.87887C10.763 7.68553 10.4213 7.58887 10.028 7.58887C9.69464 7.58887 9.3913 7.66553 9.11797 7.81887C8.84797 7.96887 8.63464 8.18053 8.47797 8.45387C8.32464 8.72387 8.24797 9.03053 8.24797 9.37387C8.24797 9.7172 8.32464 10.0239 8.47797 10.2939C8.63464 10.5639 8.84797 10.7755 9.11797 10.9289C9.3913 11.0789 9.6963 11.1539 10.033 11.1539C10.333 11.1539 10.603 11.0922 10.843 10.9689C11.0863 10.8422 11.2846 10.6755 11.438 10.4689C11.5913 10.2622 11.6913 10.0372 11.738 9.79387V9.18387H9.84797V9.71887H11.048C10.9946 9.9722 10.883 10.1705 10.713 10.3139C10.543 10.4539 10.3246 10.5239 10.058 10.5239C9.8413 10.5239 9.6513 10.4772 9.48797 10.3839C9.32464 10.2905 9.1963 10.1572 9.10297 9.98387C9.01297 9.81053 8.96797 9.6072 8.96797 9.37387C8.96797 9.1472 9.01297 8.9472 9.10297 8.77387C9.19297 8.60053 9.31797 8.4672 9.47797 8.37387C9.63797 8.28053 9.8213 8.23387 10.028 8.23387C10.2146 8.23387 10.378 8.2722 10.518 8.34887Z" fill="white"/>
|
4
|
+
</svg>
|