pixel-react 1.5.4 → 1.5.6
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.ts +26 -26
- package/.yarnrc.yml +1 -1
- package/README.md +75 -75
- package/lib/StyleGuide/ColorPalette/ColorPalette.stories.d.ts +6 -0
- package/lib/StyleGuide/Typography/Typography.stories.d.ts +6 -0
- package/lib/assets/fonts/Poppins-Bold.ttf +0 -0
- package/lib/assets/fonts/Poppins-Medium.ttf +0 -0
- package/lib/assets/fonts/Poppins-Regular.ttf +0 -0
- package/lib/assets/fonts/Poppins-SemiBold.ttf +0 -0
- package/lib/assets/utils/functionUtils.d.ts +7 -0
- package/lib/components/Accordion/Accordion.stories.d.ts +6 -0
- package/lib/components/AddButton/AddButton.d.ts +5 -0
- package/lib/components/AddButton/AddButton.stories.d.ts +6 -0
- package/lib/components/AddButton/index.d.ts +1 -0
- package/lib/components/AddButton/types.d.ts +4 -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/AttachImage/AttachImage.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/BarChart/BarChart.stories.d.ts +6 -0
- package/lib/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.d.ts +7 -0
- package/lib/components/Charts/DashboardDonutChart/types.d.ts +13 -3
- package/lib/components/Charts/DonutChart/DonutChart.stories.d.ts +6 -0
- package/lib/components/Charts/IconRadialChart/IconRadialChart.stories.d.ts +8 -0
- package/lib/components/Charts/LineChart/LineChart.stories.d.ts +7 -0
- package/lib/components/Charts/MultiRadialChart/MultiRadialChart.stories.d.ts +8 -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/ConnectingBranch/ConnectingBranch.stories.d.ts +6 -0
- package/lib/components/DatePicker/DatePicker.stories.d.ts +9 -0
- package/lib/components/DatePicker/types.d.ts +4 -0
- package/lib/components/DragAndDrop/DragAndDrop.stories.d.ts +6 -0
- package/lib/components/Drawer/Drawer.stories.d.ts +12 -0
- package/lib/components/EditTextField/EditTextField.stories.d.ts +10 -0
- package/lib/components/Editor/Editor.stories.d.ts +6 -0
- package/lib/components/Excel/ContextMenu/ContextMenu.d.ts +4 -0
- package/lib/components/Excel/ExcelContextMenu/ExcelContextMenu.d.ts +1 -7
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/DataViewer.d.ts +1 -1
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.d.ts +1 -0
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.d.ts +1 -0
- package/lib/components/Excel/ExcelFile/ExcelFileComponents/types.d.ts +5 -0
- package/lib/components/Excel/ExcelFile.stories.d.ts +6 -0
- package/lib/components/ExcelFile/ChangeExcelStyles.d.ts +14 -0
- 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/ImportExcelStyles.d.ts +24 -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/FileDropzone/types.d.ts +3 -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 +13 -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 +11 -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 +14 -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/SequentialConnectingBranch/SequentialConnectingBranch.stories.d.ts +6 -0
- package/lib/components/StateDropdown/StateDropdown.d.ts +1 -1
- package/lib/components/StateDropdown/StateDropdown.stories.d.ts +10 -0
- package/lib/components/StateDropdown/StateDropdownTypes.d.ts +3 -0
- package/lib/components/StatusButton/StatusButton.stories.d.ts +14 -0
- package/lib/components/StatusCard/StatusCard.stories.d.ts +11 -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 +54 -5
- package/lib/index.esm.js +1085 -598
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +1085 -597
- package/lib/index.js.map +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/getSequentialPayload/getSequentialPayload.stories.d.ts +10 -0
- package/lib/utils/throttle/throttle.stories.d.ts +6 -0
- package/lib/utils/truncateText/truncateText.stories.d.ts +6 -0
- package/package.json +81 -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 +279 -279
- 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 +279 -279
- package/src/assets/Themes/DarkTheme.scss +261 -261
- package/src/assets/Themes/Theme.scss +16 -16
- package/src/assets/icons/Arrow.svg +4 -4
- package/src/assets/icons/Header_preset.svg +18 -13
- 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 +16 -16
- 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_icon.svg +4 -4
- 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/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_icon.svg +3 -3
- package/src/assets/icons/automation_testcase.svg +4 -4
- package/src/assets/icons/back_icon.svg +3 -3
- 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/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/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 -0
- 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/delete.svg +3 -3
- package/src/assets/icons/delete_info.svg +17 -17
- 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 +10 -10
- 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/error.svg +17 -17
- package/src/assets/icons/excel_corner_menu.svg +3 -3
- package/src/assets/icons/expand-icon.svg +6 -6
- package/src/assets/icons/export_collection_icon.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_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/hamburger_menu.svg +3 -3
- 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/impactList.svg +6 -6
- package/src/assets/icons/info.svg +17 -17
- package/src/assets/icons/info_icon.svg +17 -17
- package/src/assets/icons/internet_explorer.svg +3 -3
- 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/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/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/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_user_icon.svg +3 -3
- package/src/assets/icons/png_file_type.svg +4 -4
- package/src/assets/icons/project_env_variable_icon.svg +4 -4
- package/src/assets/icons/quick_run_setting_icon.svg +5 -5
- 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_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/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/skipped_status_icon.svg +12 -12
- package/src/assets/icons/standard_template.svg +30 -30
- package/src/assets/icons/strike_through.svg +3 -3
- package/src/assets/icons/success.svg +17 -17
- package/src/assets/icons/sun_icon.svg +10 -10
- package/src/assets/icons/switch_license_icon.svg +123 -123
- package/src/assets/icons/system_warning.svg +61 -61
- 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/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_icon.svg +4 -4
- 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_services_icon.svg +30 -30
- package/src/assets/icons/window_maximize.svg +4 -4
- package/src/assets/icons/window_minimize.svg +3 -3
- 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 +151 -150
- package/src/assets/styles/_fonts.scss +42 -42
- package/src/assets/styles/_mixins.scss +21 -21
- package/src/assets/utils/functionUtils.ts +96 -42
- package/src/components/Accordion/Accordion.scss +46 -44
- package/src/components/Accordion/Accordion.stories.tsx +31 -31
- package/src/components/Accordion/Accordion.tsx +62 -62
- package/src/components/Accordion/index.ts +1 -1
- package/src/components/Accordion/types.ts +28 -28
- 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 +12 -12
- package/src/components/AppHeader/AppHeader.scss +176 -176
- package/src/components/AppHeader/AppHeader.stories.tsx +222 -222
- package/src/components/AppHeader/AppHeader.tsx +179 -179
- package/src/components/AppHeader/index.ts +1 -1
- package/src/components/AppHeader/types.ts +40 -40
- package/src/components/AttachImage/AttachImage.scss +76 -76
- package/src/components/AttachImage/AttachImage.stories.tsx +22 -22
- package/src/components/AttachImage/AttachImage.tsx +64 -64
- package/src/components/AttachImage/index.ts +2 -2
- package/src/components/AttachImage/types.ts +18 -18
- 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 +23 -23
- package/src/components/Avatar/Avatar.stories.tsx +55 -55
- package/src/components/Avatar/Avatar.tsx +25 -25
- package/src/components/Avatar/types.ts +27 -27
- package/src/components/Button/Button.scss +155 -155
- package/src/components/Button/Button.stories.tsx +81 -81
- package/src/components/Button/Button.tsx +73 -73
- package/src/components/Button/index.ts +1 -1
- package/src/components/Button/types.ts +69 -69
- package/src/components/Charts/BarChart/BarChart.scss +66 -66
- package/src/components/Charts/BarChart/BarChart.stories.tsx +66 -66
- package/src/components/Charts/BarChart/BarChart.tsx +304 -304
- package/src/components/Charts/BarChart/types.ts +12 -12
- package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.scss +150 -150
- package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.stories.tsx +54 -55
- package/src/components/Charts/DashboardDonutChart/DashboardDonutChart.tsx +482 -339
- package/src/components/Charts/DashboardDonutChart/types.ts +50 -39
- 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 +241 -241
- 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 +170 -170
- package/src/components/Charts/IconRadialChart/types.ts +28 -28
- package/src/components/Charts/LineChart/LineChart.scss +78 -78
- package/src/components/Charts/LineChart/LineChart.stories.tsx +138 -138
- package/src/components/Charts/LineChart/LineChart.tsx +267 -267
- package/src/components/Charts/LineChart/index.ts +1 -1
- package/src/components/Charts/LineChart/types.ts +26 -26
- package/src/components/Charts/MultiRadialChart/MultiRadialChart.scss +65 -65
- package/src/components/Charts/MultiRadialChart/MultiRadialChart.stories.tsx +116 -116
- package/src/components/Charts/MultiRadialChart/MultiRadialChart.tsx +207 -207
- package/src/components/Charts/MultiRadialChart/index.ts +1 -1
- package/src/components/Charts/MultiRadialChart/types.ts +25 -25
- package/src/components/Charts/PieChart/PieChart.scss +39 -39
- package/src/components/Charts/PieChart/PieChart.stories.tsx +46 -46
- package/src/components/Charts/PieChart/PieChart.tsx +193 -193
- 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 +12 -12
- package/src/components/Charts/RadialChart/RadialChart.stories.tsx +36 -36
- package/src/components/Charts/RadialChart/RadialChart.tsx +174 -174
- package/src/components/Charts/RadialChart/index.ts +1 -1
- package/src/components/Charts/RadialChart/types.ts +32 -32
- package/src/components/Checkbox/Checkbox.scss +89 -89
- package/src/components/Checkbox/Checkbox.stories.tsx +47 -47
- package/src/components/Checkbox/Checkbox.tsx +61 -61
- package/src/components/Checkbox/types.ts +30 -30
- package/src/components/Chip/Chip.scss +85 -85
- package/src/components/Chip/Chip.stories.tsx +116 -116
- package/src/components/Chip/Chip.tsx +35 -35
- package/src/components/Chip/index.ts +1 -1
- package/src/components/Chip/types.ts +19 -19
- package/src/components/ConnectingBranch/BranchComponents/MachineInstances.tsx +128 -128
- package/src/components/ConnectingBranch/ConnectingBranch.scss +233 -233
- package/src/components/ConnectingBranch/ConnectingBranch.stories.tsx +21 -21
- package/src/components/ConnectingBranch/ConnectingBranch.tsx +182 -182
- package/src/components/ConnectingBranch/data.ts +137 -137
- package/src/components/ConnectingBranch/index.ts +1 -1
- package/src/components/ConnectingBranch/types.ts +21 -21
- package/src/components/DatePicker/DatePicker.scss +388 -387
- package/src/components/DatePicker/DatePicker.stories.tsx +174 -161
- package/src/components/DatePicker/DatePicker.tsx +451 -438
- package/src/components/DatePicker/Timepicker.tsx +372 -372
- package/src/components/DatePicker/types.ts +105 -100
- package/src/components/DownloadClient/DownloadClient.scss +80 -80
- package/src/components/DownloadClient/DownloadClient.stories.tsx +26 -26
- package/src/components/DownloadClient/DownloadClient.tsx +81 -81
- package/src/components/DownloadClient/type.ts +40 -40
- 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 +150 -150
- package/src/components/Drawer/Drawer.scss +138 -138
- package/src/components/Drawer/Drawer.stories.tsx +156 -156
- package/src/components/Drawer/Drawer.tsx +229 -229
- package/src/components/Drawer/Types.ts +144 -144
- package/src/components/EditTextField/EditTextField.scss +97 -97
- package/src/components/EditTextField/EditTextField.stories.tsx +127 -127
- package/src/components/EditTextField/EditTextField.tsx +181 -181
- package/src/components/EditTextField/index.ts +1 -1
- package/src/components/EditTextField/types.ts +55 -55
- package/src/components/Editor/Editor.scss +56 -56
- package/src/components/Editor/Editor.stories.tsx +54 -54
- package/src/components/Editor/Editor.tsx +248 -248
- package/src/components/Editor/VariableDropdown.scss +21 -21
- package/src/components/Editor/VariableDropdown.tsx +49 -49
- package/src/components/Editor/constants.ts +180 -180
- package/src/components/Editor/types.ts +79 -79
- package/src/components/Excel/ColorBarSelector/ColorBarSelector.scss +15 -11
- package/src/components/Excel/ColorBarSelector/ColorBarSelector.tsx +43 -43
- package/src/components/Excel/ExcelContextMenu/ExcelContextMenu.scss +27 -39
- package/src/components/Excel/ExcelContextMenu/ExcelContextMenu.tsx +42 -51
- package/src/components/Excel/ExcelFile/ExcelFile.scss +68 -62
- package/src/components/Excel/ExcelFile/ExcelFile.tsx +422 -312
- package/src/components/Excel/ExcelFile/ExcelFileComponents/ActiveCell.tsx +131 -131
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Cell.tsx +238 -237
- package/src/components/Excel/ExcelFile/ExcelFileComponents/ColumnIndicator.tsx +168 -168
- 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 +37 -37
- package/src/components/Excel/ExcelFile/ExcelFileComponents/DataViewer.tsx +85 -46
- package/src/components/Excel/ExcelFile/ExcelFileComponents/FloatingRect.tsx +31 -31
- package/src/components/Excel/ExcelFile/ExcelFileComponents/HeaderRow.tsx +5 -5
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Row.tsx +5 -5
- package/src/components/Excel/ExcelFile/ExcelFileComponents/RowIndicator.tsx +148 -148
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Selected.tsx +32 -32
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.scss +175 -165
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Spreadsheet.tsx +480 -516
- package/src/components/Excel/ExcelFile/ExcelFileComponents/Table.tsx +19 -19
- package/src/components/Excel/ExcelFile/ExcelFileComponents/actions.ts +519 -519
- 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 +640 -599
- package/src/components/Excel/ExcelFile/ExcelFileComponents/reducerFunctions.ts +790 -755
- package/src/components/Excel/ExcelFile/ExcelFileComponents/selection.ts +257 -257
- package/src/components/Excel/ExcelFile/ExcelFileComponents/types.ts +255 -253
- 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 +157 -158
- package/src/components/Excel/ExcelToolBar/ExcelToolBar.scss +96 -36
- package/src/components/Excel/ExcelToolBar/ExcelToolBar.tsx +354 -342
- package/src/components/Excel/Types.ts +174 -174
- 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/FileDropzone/Dropzone.tsx +57 -55
- package/src/components/FileDropzone/FileDropzone.scss +136 -137
- package/src/components/FileDropzone/FileDropzone.stories.tsx +86 -83
- package/src/components/FileDropzone/FileDropzone.tsx +106 -98
- package/src/components/FileDropzone/FilePreview.tsx +77 -77
- package/src/components/FileDropzone/index.ts +1 -1
- package/src/components/FileDropzone/types.ts +118 -113
- 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 +41 -41
- 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 +65 -64
- package/src/components/Icon/Icon.tsx +88 -88
- package/src/components/Icon/Icons.scss +50 -50
- package/src/components/Icon/iconList.ts +440 -438
- 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 +33 -33
- package/src/components/IconButton/IconButton.tsx +35 -35
- package/src/components/IconButton/index.ts +1 -1
- package/src/components/IconButton/types.ts +5 -5
- package/src/components/IconRadioGroup/IconRadioGroup.scss +63 -63
- 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 +159 -159
- package/src/components/Input/Input.stories.tsx +141 -141
- package/src/components/Input/Input.tsx +103 -103
- package/src/components/Input/types.ts +85 -85
- package/src/components/InputWithDropdown/InputWithDropdown.scss +213 -213
- package/src/components/InputWithDropdown/InputWithDropdown.stories.tsx +169 -169
- package/src/components/InputWithDropdown/InputWithDropdown.tsx +122 -122
- package/src/components/InputWithDropdown/index.ts +1 -1
- package/src/components/InputWithDropdown/types.ts +113 -113
- package/src/components/LabelEditTextField/LabelEditTextField.scss +85 -85
- package/src/components/LabelEditTextField/LabelEditTextField.stories.tsx +196 -196
- package/src/components/LabelEditTextField/LabelEditTextField.tsx +215 -215
- package/src/components/LabelEditTextField/index.ts +1 -1
- package/src/components/LabelEditTextField/types.ts +41 -41
- 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 +46 -46
- package/src/components/MachineInputField/MachineInputField.stories.tsx +32 -32
- package/src/components/MachineInputField/MachineInputField.tsx +73 -73
- package/src/components/MachineInputField/index.ts +1 -1
- package/src/components/MachineInputField/types.ts +13 -13
- package/src/components/MenuOption/MenuOption.scss +97 -97
- package/src/components/MenuOption/MenuOption.stories.tsx +157 -157
- package/src/components/MenuOption/MenuOption.tsx +219 -219
- package/src/components/MenuOption/types.ts +228 -228
- package/src/components/MiniModal/MiniModal.scss +170 -170
- package/src/components/MiniModal/MiniModal.stories.tsx +707 -707
- package/src/components/MiniModal/MiniModal.tsx +290 -290
- package/src/components/MiniModal/index.ts +1 -1
- package/src/components/MiniModal/types.ts +107 -107
- package/src/components/Modal/Modal.stories.tsx +69 -69
- package/src/components/Modal/Modal.tsx +100 -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 +20 -20
- package/src/components/ModulesChip/ModuleChip.stories.tsx +41 -41
- package/src/components/ModulesChip/ModuleChip.tsx +31 -31
- package/src/components/ModulesChip/types.ts +14 -14
- package/src/components/MultiSelect/Dropdown.scss +78 -78
- package/src/components/MultiSelect/Dropdown.tsx +131 -131
- package/src/components/MultiSelect/MultiSelect.scss +217 -226
- package/src/components/MultiSelect/MultiSelect.stories.tsx +268 -268
- package/src/components/MultiSelect/MultiSelect.tsx +485 -485
- package/src/components/MultiSelect/MultiSelectTypes.ts +45 -45
- package/src/components/MultiSelect/dropdownTypes.ts +19 -19
- package/src/components/MultiSelect/index.ts +1 -1
- package/src/components/NLPInput/NLPInput.scss +246 -246
- package/src/components/NLPInput/NlpInput.stories.tsx +136 -136
- package/src/components/NLPInput/NlpInput.tsx +374 -374
- package/src/components/NLPInput/components/NlpDropDown/NlpDropDownType.ts +60 -60
- package/src/components/NLPInput/components/NlpDropDown/NlpDropdown.scss +83 -83
- package/src/components/NLPInput/components/NlpDropDown/NlpDropdown.tsx +180 -180
- package/src/components/NLPInput/index.ts +1 -1
- package/src/components/NLPInput/type.tsx +124 -124
- 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/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 +5 -5
- package/src/components/RadioGroup/RadioGroup.stories.tsx +124 -124
- package/src/components/RadioGroup/RadioGroup.tsx +33 -33
- package/src/components/RadioGroup/index.ts +1 -1
- package/src/components/RadioGroup/radioGroupTypes.tsx +72 -72
- package/src/components/Search/Search.scss +103 -103
- package/src/components/Search/Search.stories.tsx +26 -26
- package/src/components/Search/Search.tsx +127 -127
- package/src/components/Search/index.ts +1 -1
- package/src/components/Search/types.ts +15 -15
- package/src/components/Select/Select.scss +193 -183
- package/src/components/Select/Select.stories.tsx +306 -306
- package/src/components/Select/Select.tsx +252 -252
- package/src/components/Select/components/Dropdown.scss +52 -52
- package/src/components/Select/components/Dropdown.tsx +126 -126
- package/src/components/Select/components/types.ts +23 -23
- package/src/components/Select/index.ts +1 -1
- package/src/components/Select/types.ts +124 -124
- package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.scss +119 -119
- package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.stories.tsx +56 -56
- package/src/components/SequentialConnectingBranch/SequentialConnectingBranch.tsx +136 -136
- package/src/components/SequentialConnectingBranch/components/AddBrowserModal/AddBrowserModal.scss +51 -51
- package/src/components/SequentialConnectingBranch/components/AddBrowserModal/AddBrowserModal.tsx +107 -107
- package/src/components/SequentialConnectingBranch/components/AddBrowserModal/types.ts +5 -5
- package/src/components/SequentialConnectingBranch/components/Branches/Branches.scss +184 -184
- package/src/components/SequentialConnectingBranch/components/Branches/Branches.tsx +205 -205
- package/src/components/SequentialConnectingBranch/components/Branches/types.ts +18 -18
- package/src/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.scss +3 -3
- package/src/components/SequentialConnectingBranch/components/ConnectingBranches/ConnectingBranches.tsx +66 -66
- package/src/components/SequentialConnectingBranch/components/ConnectingBranches/types.ts +10 -10
- package/src/components/SequentialConnectingBranch/components/DatasetListModal/DatasetListModal.scss +31 -31
- package/src/components/SequentialConnectingBranch/components/DatasetListModal/DatasetListModal.tsx +85 -85
- package/src/components/SequentialConnectingBranch/components/DatasetListModal/types.ts +4 -4
- package/src/components/SequentialConnectingBranch/index.ts +1 -1
- package/src/components/SequentialConnectingBranch/types.ts +45 -45
- package/src/components/StateDropdown/StateDropdown.stories.tsx +104 -99
- package/src/components/StateDropdown/StateDropdown.tsx +245 -230
- package/src/components/StateDropdown/StateDropdownTypes.tsx +27 -21
- 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 +94 -94
- package/src/components/StatusCard/StatusCard.stories.tsx +58 -58
- package/src/components/StatusCard/StatusCard.tsx +49 -49
- package/src/components/StatusCard/index.ts +1 -1
- package/src/components/StatusCard/types.ts +10 -10
- package/src/components/Table/Table.scss +116 -116
- 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/TableTree.scss +171 -169
- package/src/components/TableTree/TableTree.stories.tsx +127 -127
- package/src/components/TableTree/TableTree.tsx +307 -305
- package/src/components/TableTree/TableTreeStories.scss +22 -22
- package/src/components/TableTree/data.ts +573 -573
- package/src/components/TableTree/index.ts +1 -1
- package/src/components/Tabs/Tabs.scss +79 -79
- package/src/components/Tabs/Tabs.stories.tsx +133 -133
- package/src/components/Tabs/Tabs.tsx +61 -61
- 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 +84 -84
- package/src/components/TextArea/Types.ts +82 -82
- 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 +94 -94
- 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 +60 -60
- 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 +274 -274
- package/src/hooks/usePortalPosition.tsx +53 -53
- package/src/hooks/useTheme.tsx +13 -13
- package/src/index.ts +176 -174
- 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/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/getEncryptedData/getEncryptedData.stories.tsx +55 -55
- package/src/utils/getEncryptedData/getEncryptedData.ts +8 -8
- package/src/utils/getExtension/getExtension.stories.tsx +23 -23
- 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 +32 -32
- 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/tsconfig.json +55 -55
- package/vite.config.js +14 -14
@@ -1,52 +1,52 @@
|
|
1
|
-
<svg width="241" height="184" viewBox="0 0 241 184" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M17.4029 174.064C17.4029 174.064 -4.83513 158.438 5.38918 138.799C15.6156 119.16 36.0664 89.0081 25.8321 73.6334C15.6156 58.2637 14.5738 9.02069 73.3714 1.47198C120.268 -4.54477 134.521 20.2232 141.79 37.1269C151.377 59.4251 142.809 100.132 187.647 105.502C232.497 110.871 258.114 133.046 225.99 169.189C211.95 184.984 17.4029 174.064 17.4029 174.064Z" fill="#C9D6F2"/>
|
3
|
-
<path d="M97.6992 161.774C64.6053 169.007 37.6519 158.964 46.8499 141.876C56.0423 124.789 50.4089 122.634 43.3178 117.259C36.2267 111.886 20.2947 96.9188 35.8151 80.4797C51.3546 64.0498 39.5509 59.2828 34.6997 49.6137C20.5289 21.407 78.001 9.8262 62.4495 35.7859C50.7753 55.2691 51.3906 70.1889 65.8982 80.102C80.4177 90.0173 83.314 95.2461 82.6725 107.5C82.0289 119.753 77.0172 145.797 91.8119 144.713C106.595 143.628 114.672 158.062 97.6992 161.774Z" fill="#EBF2FF"/>
|
4
|
-
<path d="M37.584 45.7683C36.0471 42.8487 35.6864 28.5321 49.5765 29.2741C58.0298 29.7267 53.6404 41.2715 51.723 50.1548C49.8113 59.0388 51.1176 72.9862 54.6504 78.7307C61.1764 89.3256 59.7817 93.7842 51.7018 102.874C51.7018 102.874 47.5063 109.625 55.2459 116.87C62.9835 124.113 59.9938 144.064 68.9833 147.297C77.9727 150.528 83.0509 157.421 76.8906 158.062C70.7444 158.708 45.2494 161.185 51.96 144.399C61.7415 119.961 42.6721 112.716 37.9213 107.294C33.5653 102.323 29.8394 91.2161 42.4733 77.2871C52.2478 66.5055 42.2965 54.762 37.584 45.7683Z" fill="#CBDBF4"/>
|
5
|
-
<path d="M71.9711 172.934L71.464 175.174C70.983 175.052 59.4574 172.153 47.0363 164.184C30.5017 153.568 20.4521 138.995 17.9922 122.01L20.1338 121.642C25.8514 161.085 71.51 172.817 71.9711 172.934Z" fill="#7585F8"/>
|
6
|
-
<path d="M19.548 124.277C19.548 124.277 7.53851 117.906 12.5142 103.231C12.5142 103.231 23.1713 111.889 19.548 124.277Z" fill="#7585F8"/>
|
7
|
-
<path d="M23.3954 136.274C23.3954 136.274 7.02278 141.745 0.365234 123.262C0.365234 123.262 9.09791 120.055 23.3954 136.274Z" fill="#7585F8"/>
|
8
|
-
<path d="M22.8359 136.348C22.8359 136.348 38.038 127.869 30.461 109.802C30.461 109.802 22.1612 114.103 22.8359 136.348Z" fill="#7585F8"/>
|
9
|
-
<path d="M31.9157 150.03C31.9157 150.03 16.1322 157.248 7.71289 139.605C7.71289 139.605 16.0891 135.463 31.9157 150.03Z" fill="#7585F8"/>
|
10
|
-
<path d="M31.3598 150.157C31.3598 150.157 45.6686 140.082 36.3616 122.939C36.3616 122.939 28.5144 128.125 31.3598 150.157Z" fill="#7585F8"/>
|
11
|
-
<path d="M45.5045 161.982C45.5045 161.982 31.0974 171.931 19.9395 156.1C19.9395 156.1 27.5263 150.5 45.5045 161.982Z" fill="#7585F8"/>
|
12
|
-
<path d="M44.9707 162.207C44.9707 162.207 57.4491 149.698 45.5019 134.515C45.5019 134.515 38.6017 141.039 44.9707 162.207Z" fill="#7585F8"/>
|
13
|
-
<path d="M59.4705 169.481C59.4705 169.481 48.007 183.036 33.293 170.852C33.293 170.852 39.2595 163.373 59.4705 169.481Z" fill="#7585F8"/>
|
14
|
-
<path d="M59.0262 169.844C59.0262 169.844 68.0248 154.362 52.7152 143.028C52.7152 143.028 47.6512 151.206 59.0262 169.844Z" fill="#7585F8"/>
|
15
|
-
<path d="M157.283 172.984C188.974 181.634 215.568 173.243 207.512 156.236C199.454 139.235 205.016 137.43 212.153 132.574C219.292 127.721 235.453 114.019 221.238 97.3334C207.012 80.6453 218.674 76.6174 223.851 67.4943C238.964 40.879 183.888 26.8135 197.661 52.7279C208.003 72.1757 206.67 86.5878 192.119 95.469C177.575 104.355 174.516 109.276 174.526 121.173C174.538 133.072 178.104 158.538 163.831 156.758C149.564 154.972 141.03 168.547 157.283 172.984Z" fill="#7585F8"/>
|
16
|
-
<path opacity="0.2" d="M221.242 63.6269C222.879 60.8721 223.936 47.0294 210.448 47.0563C202.244 47.0754 205.925 58.4744 207.337 67.1739C208.746 75.8705 206.793 89.3115 203.086 94.7009C196.241 104.635 197.373 109.022 204.747 118.224C204.747 118.224 208.468 124.976 200.611 131.605C192.764 138.236 194.672 157.706 185.809 160.391C176.94 163.071 171.679 169.497 177.609 170.423C183.538 171.352 208.109 175.019 202.43 158.429C194.173 134.278 212.995 128.207 217.869 123.19C222.334 118.593 226.489 108.022 214.949 93.9066C206.018 82.9814 216.243 72.1014 221.242 63.6269Z" fill="#F6F5F7"/>
|
17
|
-
<path d="M152.67 172.426L152.189 169.49C198.829 161.868 219.004 125.344 219.208 124.966L221.829 126.382C221.622 126.754 200.801 164.564 152.67 172.426Z" fill="#EBF2FF"/>
|
18
|
-
<path d="M219.014 127.464C219.014 127.464 225.105 111.714 233.048 116.743C236.425 118.875 234.601 126.519 219.014 127.464Z" fill="#EBF2FF"/>
|
19
|
-
<path d="M215.479 132.615C215.479 132.615 231.003 123.642 232.623 132.71C233.306 136.581 226.501 141.647 215.479 132.615Z" fill="#EBF2FF"/>
|
20
|
-
<path d="M215.509 134.287C215.509 134.287 225.013 119.789 215.229 118.392C211.06 117.786 205.659 124.147 215.509 134.287Z" fill="#EBF2FF"/>
|
21
|
-
<path d="M205.169 144.796C205.169 144.796 215.401 130.652 205.734 128.809C201.618 128.02 195.927 134.149 205.169 144.796Z" fill="#EBF2FF"/>
|
22
|
-
<path d="M196.103 152.804C196.103 152.804 206.26 138.645 196.591 136.822C192.47 136.035 186.798 142.19 196.103 152.804Z" fill="#EBF2FF"/>
|
23
|
-
<path d="M183.436 160.685C183.436 160.685 195.974 148.178 187.006 144.741C183.18 143.279 176.527 148.501 183.436 160.685Z" fill="#EBF2FF"/>
|
24
|
-
<path d="M172.461 165.685C172.461 165.685 184.643 152.874 175.527 149.697C171.662 148.357 165.14 153.735 172.461 165.685Z" fill="#EBF2FF"/>
|
25
|
-
<path d="M157.437 169.995C157.437 169.995 172.617 160.432 165.097 154.936C161.888 152.591 154.208 156.246 157.437 169.995Z" fill="#EBF2FF"/>
|
26
|
-
<path d="M207.891 142.102C207.891 142.102 223.442 133.124 225.045 142.207C225.729 146.067 218.94 151.122 207.891 142.102Z" fill="#EBF2FF"/>
|
27
|
-
<path d="M198.613 150.469C198.613 150.469 214.163 141.51 215.765 150.583C216.458 154.441 209.653 159.503 198.613 150.469Z" fill="#EBF2FF"/>
|
28
|
-
<path d="M188.424 157.277C188.424 157.277 205.38 151.627 204.662 161.027C204.373 165.029 196.659 168.645 188.424 157.277Z" fill="#EBF2FF"/>
|
29
|
-
<path d="M176.383 163.658C176.383 163.658 193.7 159.63 191.924 169.016C191.166 173.011 183.197 175.894 176.383 163.658Z" fill="#EBF2FF"/>
|
30
|
-
<path d="M163.617 168.133C163.617 168.133 181.095 166.4 177.905 175.619C176.524 179.534 168.318 181.363 163.617 168.133Z" fill="#EBF2FF"/>
|
31
|
-
<path d="M225.21 176.741C225.21 180.446 177.484 183.45 118.605 183.45C59.7302 183.45 12 180.446 12 176.741C12 173.037 59.7309 170.035 118.605 170.035C177.484 170.036 225.21 173.037 225.21 176.741Z" fill="#ACBFE2"/>
|
32
|
-
<path d="M199.24 101.232C199.24 142.492 165.792 175.937 124.533 175.937C83.2704 175.937 49.8242 142.492 49.8242 101.232C49.8242 59.9696 83.2704 26.5213 124.533 26.5213C165.792 26.5213 199.24 59.9696 199.24 101.232Z" fill="#D086E5"/>
|
33
|
-
<path d="M131.197 128.999C133.365 132.531 131.178 137.825 126.3 140.819C121.43 143.811 115.715 143.372 113.547 139.838L88.6042 99.2147C86.4336 95.6798 88.6212 90.3908 93.5006 87.3969C98.3709 84.403 104.086 84.8437 106.254 88.3758L131.197 128.999Z" fill="#F6F5F7"/>
|
34
|
-
<path d="M130.288 137.866C127.296 142.736 120.918 144.265 116.048 141.273C111.168 138.282 109.646 131.904 112.638 127.026L147.012 71.0045C150.003 66.1293 156.381 64.6023 161.258 67.594C166.131 70.5858 167.661 76.9611 164.669 81.8363L130.288 137.866Z" fill="#F6F5F7"/>
|
35
|
-
<path d="M69.7022 90.8759C70.7384 90.3971 74.1418 90.1318 75.9177 92.8195C78.3133 96.4166 79.1387 105.178 84.4807 107.818C89.8397 110.45 93.178 108.203 95.6096 106.98C98.0383 105.77 98.4408 104.135 99.9459 103.585C101.435 103.037 102.016 104.844 98.5836 107.73C96.9272 109.109 89.6423 116.908 82.6927 114.96C73.5717 112.39 63.573 93.6738 69.7022 90.8759Z" fill="#E28C71"/>
|
36
|
-
<path d="M77.6377 147.427C76.1419 156.562 74.9353 175.937 78.9448 175.785C82.9656 175.629 85.1143 174.152 82.757 173.588C80.3855 173.021 80.302 172.753 80.3254 172.028C80.5093 167.457 84.04 158.757 85.3725 152.099C86.9235 144.373 78.9589 139.441 77.6377 147.427Z" fill="#F27851"/>
|
37
|
-
<path d="M77.1172 173.948C77.1172 173.948 80.7144 175.251 82.7556 173.587C82.7556 173.587 86.7311 173.92 84.3186 175.131C81.9203 176.347 77.1985 177.522 77.1172 173.948Z" fill="#6E86CC"/>
|
38
|
-
<path d="M62.9202 109.864C62.9202 109.864 83.6001 124.384 86.5777 131.808C89.2483 138.487 83.0477 165.39 83.0477 165.39C83.0477 165.39 78.6895 167.128 74.6878 164.674L75.2119 143.752L57.7578 127.789L62.9202 109.864Z" fill="#C92F3B"/>
|
39
|
-
<path d="M49.5789 148.561C41.9397 154.868 27.3239 169.626 30.6721 172.329C34.0175 175.021 36.7964 175.349 35.2835 173.246C33.7806 171.116 33.893 170.826 34.4292 170.271C37.7986 166.722 46.7519 162.189 52.5028 157.771C59.1971 152.648 56.2534 143.056 49.5789 148.561Z" fill="#F27851"/>
|
40
|
-
<path d="M30.4847 169.566C30.4847 169.566 32.4714 173.142 35.2828 173.245C35.2828 173.245 38.2455 176.299 35.4603 175.58C32.6744 174.863 28.0531 172.499 30.4847 169.566Z" fill="#6E86CC"/>
|
41
|
-
<path d="M59.8557 109.762C59.8557 109.762 70.5871 134.206 67.7559 142.276C65.2168 149.542 41.2962 166.845 41.2962 166.845C41.2962 166.845 36.5575 165.175 35.0566 160.381L50.2036 143.896C50.2036 143.896 44.1486 124.841 47.1213 117.776C47.2267 117.539 46.7075 119.458 46.7075 119.458L59.8557 109.762Z" fill="#E03D51"/>
|
42
|
-
<path d="M72.7633 120.579C76.7269 115.35 78.9668 107.244 79.1224 100.952C79.3403 92.2262 71.6289 89.9742 66.7303 89.5117C61.8289 89.0399 53.8184 88.0901 54.1466 98.9651C54.3644 106.554 51.6096 110.518 47.7613 116.934C47.6581 117.104 47.5534 117.242 47.4501 117.403C47.4331 117.4 47.4261 117.381 47.4261 117.381C47.431 117.393 47.4331 117.4 47.4501 117.403C42.0239 124.066 68.2616 126.51 72.7633 120.579Z" fill="#FCDCDA"/>
|
43
|
-
<path d="M47.7607 116.934C47.6575 117.104 47.5528 117.242 47.4495 117.403C47.4325 117.4 47.4255 117.381 47.4255 117.381C47.4304 117.393 47.4325 117.4 47.4495 117.403C43.249 122.555 57.9893 125.174 66.9638 123.369C68.3564 121.284 61.6126 120.729 59.116 118.704C53.3602 114.038 73.8852 113.64 70.3495 111.924C66.5324 110.086 60.8509 110.819 63.3518 105.231C65.8435 99.6327 63.6991 92.9461 61.3318 90.6821C58.8642 88.3156 54.7337 91.0895 54.2839 96.2392C54.1714 97.0603 54.1042 97.9508 54.1453 98.965C54.3638 106.555 51.609 110.518 47.7607 116.934Z" fill="#EFBEBD"/>
|
44
|
-
<path d="M67.4269 83.1151C67.4269 83.1151 68.5083 87.2526 65.455 88.7796C62.3246 90.3349 71.9286 97.9861 72.0793 95.7172C72.2759 92.7905 71.1195 90.8187 73.1366 87.7908L67.4269 83.1151Z" fill="#E67052"/>
|
45
|
-
<path d="M74.8126 77.0411C76.8297 79.791 77.5696 90.3838 74.5969 92.1378C73.2948 92.8889 68.9083 90.946 66.8311 85.9612C65.9668 83.92 65.1343 80.2245 67.6161 77.1323C68.7414 75.7249 72.468 73.8336 74.8126 77.0411Z" fill="#EE9D7F"/>
|
46
|
-
<path d="M66.0799 76.9859C63.4594 80.2789 64.6059 83.4595 64.7919 84.0437C65.4745 86.1783 67.2094 88.1671 67.7384 87.5497C68.3679 86.8127 65.9844 86.0418 67.0778 83.9284C68.1762 81.8102 66.7787 81.064 67.5065 79.1706C68.2144 77.2843 69.6099 77.9308 74.0254 78.0694C75.8346 78.1267 76.2893 77.5114 76.225 76.7603C73.9851 73.5493 68.8368 73.5203 66.0799 76.9859Z" fill="#062440"/>
|
47
|
-
<path d="M76.5855 79.334C77.662 76.7779 81.4989 77.3904 80.2761 75.5834C79.4578 74.3725 79.4479 75.2842 70.3085 73.4198C66.0415 72.5513 65.2013 74.3725 64.3872 76.7772C63.6333 78.9981 63.8681 84.4547 66.7905 87.6692C69.7031 90.876 66.6993 85.5318 67.8168 83.1151C68.9343 80.7005 69.672 81.7225 71.2796 82.1221C72.8879 82.5167 74.8499 83.4503 76.5855 79.334Z" fill="#353A66"/>
|
48
|
-
<path d="M46.4688 124.173L54.2112 135.273L116.524 91.7691L124.53 77.9236L108.77 80.6714L46.4688 124.173Z" fill="#494C7F"/>
|
49
|
-
<path d="M113.078 86.8229L50.7617 130.323L54.2138 135.268L116.53 91.7682L113.078 86.8229Z" fill="#373C66"/>
|
50
|
-
<path d="M124.528 77.9235L122.363 81.6742L120.273 78.6704L124.528 77.9235Z" fill="#1F1440"/>
|
51
|
-
<path d="M59.5348 90.0145C60.6955 90.1079 62.7183 91.8598 62.9785 95.1147C63.3449 99.4707 60.8772 107.306 64.3167 112.26C67.7703 117.224 71.8314 116.87 74.5742 116.985C77.334 117.104 78.4876 115.857 80.074 116.097C81.6682 116.339 81.2947 118.232 76.8361 119.103C74.7037 119.518 64.4221 122.846 59.2243 117.701C52.4126 110.96 52.7429 89.4763 59.5348 90.0145Z" fill="#E28C71"/>
|
52
|
-
</svg>
|
1
|
+
<svg width="241" height="184" viewBox="0 0 241 184" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M17.4029 174.064C17.4029 174.064 -4.83513 158.438 5.38918 138.799C15.6156 119.16 36.0664 89.0081 25.8321 73.6334C15.6156 58.2637 14.5738 9.02069 73.3714 1.47198C120.268 -4.54477 134.521 20.2232 141.79 37.1269C151.377 59.4251 142.809 100.132 187.647 105.502C232.497 110.871 258.114 133.046 225.99 169.189C211.95 184.984 17.4029 174.064 17.4029 174.064Z" fill="#C9D6F2"/>
|
3
|
+
<path d="M97.6992 161.774C64.6053 169.007 37.6519 158.964 46.8499 141.876C56.0423 124.789 50.4089 122.634 43.3178 117.259C36.2267 111.886 20.2947 96.9188 35.8151 80.4797C51.3546 64.0498 39.5509 59.2828 34.6997 49.6137C20.5289 21.407 78.001 9.8262 62.4495 35.7859C50.7753 55.2691 51.3906 70.1889 65.8982 80.102C80.4177 90.0173 83.314 95.2461 82.6725 107.5C82.0289 119.753 77.0172 145.797 91.8119 144.713C106.595 143.628 114.672 158.062 97.6992 161.774Z" fill="#EBF2FF"/>
|
4
|
+
<path d="M37.584 45.7683C36.0471 42.8487 35.6864 28.5321 49.5765 29.2741C58.0298 29.7267 53.6404 41.2715 51.723 50.1548C49.8113 59.0388 51.1176 72.9862 54.6504 78.7307C61.1764 89.3256 59.7817 93.7842 51.7018 102.874C51.7018 102.874 47.5063 109.625 55.2459 116.87C62.9835 124.113 59.9938 144.064 68.9833 147.297C77.9727 150.528 83.0509 157.421 76.8906 158.062C70.7444 158.708 45.2494 161.185 51.96 144.399C61.7415 119.961 42.6721 112.716 37.9213 107.294C33.5653 102.323 29.8394 91.2161 42.4733 77.2871C52.2478 66.5055 42.2965 54.762 37.584 45.7683Z" fill="#CBDBF4"/>
|
5
|
+
<path d="M71.9711 172.934L71.464 175.174C70.983 175.052 59.4574 172.153 47.0363 164.184C30.5017 153.568 20.4521 138.995 17.9922 122.01L20.1338 121.642C25.8514 161.085 71.51 172.817 71.9711 172.934Z" fill="#7585F8"/>
|
6
|
+
<path d="M19.548 124.277C19.548 124.277 7.53851 117.906 12.5142 103.231C12.5142 103.231 23.1713 111.889 19.548 124.277Z" fill="#7585F8"/>
|
7
|
+
<path d="M23.3954 136.274C23.3954 136.274 7.02278 141.745 0.365234 123.262C0.365234 123.262 9.09791 120.055 23.3954 136.274Z" fill="#7585F8"/>
|
8
|
+
<path d="M22.8359 136.348C22.8359 136.348 38.038 127.869 30.461 109.802C30.461 109.802 22.1612 114.103 22.8359 136.348Z" fill="#7585F8"/>
|
9
|
+
<path d="M31.9157 150.03C31.9157 150.03 16.1322 157.248 7.71289 139.605C7.71289 139.605 16.0891 135.463 31.9157 150.03Z" fill="#7585F8"/>
|
10
|
+
<path d="M31.3598 150.157C31.3598 150.157 45.6686 140.082 36.3616 122.939C36.3616 122.939 28.5144 128.125 31.3598 150.157Z" fill="#7585F8"/>
|
11
|
+
<path d="M45.5045 161.982C45.5045 161.982 31.0974 171.931 19.9395 156.1C19.9395 156.1 27.5263 150.5 45.5045 161.982Z" fill="#7585F8"/>
|
12
|
+
<path d="M44.9707 162.207C44.9707 162.207 57.4491 149.698 45.5019 134.515C45.5019 134.515 38.6017 141.039 44.9707 162.207Z" fill="#7585F8"/>
|
13
|
+
<path d="M59.4705 169.481C59.4705 169.481 48.007 183.036 33.293 170.852C33.293 170.852 39.2595 163.373 59.4705 169.481Z" fill="#7585F8"/>
|
14
|
+
<path d="M59.0262 169.844C59.0262 169.844 68.0248 154.362 52.7152 143.028C52.7152 143.028 47.6512 151.206 59.0262 169.844Z" fill="#7585F8"/>
|
15
|
+
<path d="M157.283 172.984C188.974 181.634 215.568 173.243 207.512 156.236C199.454 139.235 205.016 137.43 212.153 132.574C219.292 127.721 235.453 114.019 221.238 97.3334C207.012 80.6453 218.674 76.6174 223.851 67.4943C238.964 40.879 183.888 26.8135 197.661 52.7279C208.003 72.1757 206.67 86.5878 192.119 95.469C177.575 104.355 174.516 109.276 174.526 121.173C174.538 133.072 178.104 158.538 163.831 156.758C149.564 154.972 141.03 168.547 157.283 172.984Z" fill="#7585F8"/>
|
16
|
+
<path opacity="0.2" d="M221.242 63.6269C222.879 60.8721 223.936 47.0294 210.448 47.0563C202.244 47.0754 205.925 58.4744 207.337 67.1739C208.746 75.8705 206.793 89.3115 203.086 94.7009C196.241 104.635 197.373 109.022 204.747 118.224C204.747 118.224 208.468 124.976 200.611 131.605C192.764 138.236 194.672 157.706 185.809 160.391C176.94 163.071 171.679 169.497 177.609 170.423C183.538 171.352 208.109 175.019 202.43 158.429C194.173 134.278 212.995 128.207 217.869 123.19C222.334 118.593 226.489 108.022 214.949 93.9066C206.018 82.9814 216.243 72.1014 221.242 63.6269Z" fill="#F6F5F7"/>
|
17
|
+
<path d="M152.67 172.426L152.189 169.49C198.829 161.868 219.004 125.344 219.208 124.966L221.829 126.382C221.622 126.754 200.801 164.564 152.67 172.426Z" fill="#EBF2FF"/>
|
18
|
+
<path d="M219.014 127.464C219.014 127.464 225.105 111.714 233.048 116.743C236.425 118.875 234.601 126.519 219.014 127.464Z" fill="#EBF2FF"/>
|
19
|
+
<path d="M215.479 132.615C215.479 132.615 231.003 123.642 232.623 132.71C233.306 136.581 226.501 141.647 215.479 132.615Z" fill="#EBF2FF"/>
|
20
|
+
<path d="M215.509 134.287C215.509 134.287 225.013 119.789 215.229 118.392C211.06 117.786 205.659 124.147 215.509 134.287Z" fill="#EBF2FF"/>
|
21
|
+
<path d="M205.169 144.796C205.169 144.796 215.401 130.652 205.734 128.809C201.618 128.02 195.927 134.149 205.169 144.796Z" fill="#EBF2FF"/>
|
22
|
+
<path d="M196.103 152.804C196.103 152.804 206.26 138.645 196.591 136.822C192.47 136.035 186.798 142.19 196.103 152.804Z" fill="#EBF2FF"/>
|
23
|
+
<path d="M183.436 160.685C183.436 160.685 195.974 148.178 187.006 144.741C183.18 143.279 176.527 148.501 183.436 160.685Z" fill="#EBF2FF"/>
|
24
|
+
<path d="M172.461 165.685C172.461 165.685 184.643 152.874 175.527 149.697C171.662 148.357 165.14 153.735 172.461 165.685Z" fill="#EBF2FF"/>
|
25
|
+
<path d="M157.437 169.995C157.437 169.995 172.617 160.432 165.097 154.936C161.888 152.591 154.208 156.246 157.437 169.995Z" fill="#EBF2FF"/>
|
26
|
+
<path d="M207.891 142.102C207.891 142.102 223.442 133.124 225.045 142.207C225.729 146.067 218.94 151.122 207.891 142.102Z" fill="#EBF2FF"/>
|
27
|
+
<path d="M198.613 150.469C198.613 150.469 214.163 141.51 215.765 150.583C216.458 154.441 209.653 159.503 198.613 150.469Z" fill="#EBF2FF"/>
|
28
|
+
<path d="M188.424 157.277C188.424 157.277 205.38 151.627 204.662 161.027C204.373 165.029 196.659 168.645 188.424 157.277Z" fill="#EBF2FF"/>
|
29
|
+
<path d="M176.383 163.658C176.383 163.658 193.7 159.63 191.924 169.016C191.166 173.011 183.197 175.894 176.383 163.658Z" fill="#EBF2FF"/>
|
30
|
+
<path d="M163.617 168.133C163.617 168.133 181.095 166.4 177.905 175.619C176.524 179.534 168.318 181.363 163.617 168.133Z" fill="#EBF2FF"/>
|
31
|
+
<path d="M225.21 176.741C225.21 180.446 177.484 183.45 118.605 183.45C59.7302 183.45 12 180.446 12 176.741C12 173.037 59.7309 170.035 118.605 170.035C177.484 170.036 225.21 173.037 225.21 176.741Z" fill="#ACBFE2"/>
|
32
|
+
<path d="M199.24 101.232C199.24 142.492 165.792 175.937 124.533 175.937C83.2704 175.937 49.8242 142.492 49.8242 101.232C49.8242 59.9696 83.2704 26.5213 124.533 26.5213C165.792 26.5213 199.24 59.9696 199.24 101.232Z" fill="#D086E5"/>
|
33
|
+
<path d="M131.197 128.999C133.365 132.531 131.178 137.825 126.3 140.819C121.43 143.811 115.715 143.372 113.547 139.838L88.6042 99.2147C86.4336 95.6798 88.6212 90.3908 93.5006 87.3969C98.3709 84.403 104.086 84.8437 106.254 88.3758L131.197 128.999Z" fill="#F6F5F7"/>
|
34
|
+
<path d="M130.288 137.866C127.296 142.736 120.918 144.265 116.048 141.273C111.168 138.282 109.646 131.904 112.638 127.026L147.012 71.0045C150.003 66.1293 156.381 64.6023 161.258 67.594C166.131 70.5858 167.661 76.9611 164.669 81.8363L130.288 137.866Z" fill="#F6F5F7"/>
|
35
|
+
<path d="M69.7022 90.8759C70.7384 90.3971 74.1418 90.1318 75.9177 92.8195C78.3133 96.4166 79.1387 105.178 84.4807 107.818C89.8397 110.45 93.178 108.203 95.6096 106.98C98.0383 105.77 98.4408 104.135 99.9459 103.585C101.435 103.037 102.016 104.844 98.5836 107.73C96.9272 109.109 89.6423 116.908 82.6927 114.96C73.5717 112.39 63.573 93.6738 69.7022 90.8759Z" fill="#E28C71"/>
|
36
|
+
<path d="M77.6377 147.427C76.1419 156.562 74.9353 175.937 78.9448 175.785C82.9656 175.629 85.1143 174.152 82.757 173.588C80.3855 173.021 80.302 172.753 80.3254 172.028C80.5093 167.457 84.04 158.757 85.3725 152.099C86.9235 144.373 78.9589 139.441 77.6377 147.427Z" fill="#F27851"/>
|
37
|
+
<path d="M77.1172 173.948C77.1172 173.948 80.7144 175.251 82.7556 173.587C82.7556 173.587 86.7311 173.92 84.3186 175.131C81.9203 176.347 77.1985 177.522 77.1172 173.948Z" fill="#6E86CC"/>
|
38
|
+
<path d="M62.9202 109.864C62.9202 109.864 83.6001 124.384 86.5777 131.808C89.2483 138.487 83.0477 165.39 83.0477 165.39C83.0477 165.39 78.6895 167.128 74.6878 164.674L75.2119 143.752L57.7578 127.789L62.9202 109.864Z" fill="#C92F3B"/>
|
39
|
+
<path d="M49.5789 148.561C41.9397 154.868 27.3239 169.626 30.6721 172.329C34.0175 175.021 36.7964 175.349 35.2835 173.246C33.7806 171.116 33.893 170.826 34.4292 170.271C37.7986 166.722 46.7519 162.189 52.5028 157.771C59.1971 152.648 56.2534 143.056 49.5789 148.561Z" fill="#F27851"/>
|
40
|
+
<path d="M30.4847 169.566C30.4847 169.566 32.4714 173.142 35.2828 173.245C35.2828 173.245 38.2455 176.299 35.4603 175.58C32.6744 174.863 28.0531 172.499 30.4847 169.566Z" fill="#6E86CC"/>
|
41
|
+
<path d="M59.8557 109.762C59.8557 109.762 70.5871 134.206 67.7559 142.276C65.2168 149.542 41.2962 166.845 41.2962 166.845C41.2962 166.845 36.5575 165.175 35.0566 160.381L50.2036 143.896C50.2036 143.896 44.1486 124.841 47.1213 117.776C47.2267 117.539 46.7075 119.458 46.7075 119.458L59.8557 109.762Z" fill="#E03D51"/>
|
42
|
+
<path d="M72.7633 120.579C76.7269 115.35 78.9668 107.244 79.1224 100.952C79.3403 92.2262 71.6289 89.9742 66.7303 89.5117C61.8289 89.0399 53.8184 88.0901 54.1466 98.9651C54.3644 106.554 51.6096 110.518 47.7613 116.934C47.6581 117.104 47.5534 117.242 47.4501 117.403C47.4331 117.4 47.4261 117.381 47.4261 117.381C47.431 117.393 47.4331 117.4 47.4501 117.403C42.0239 124.066 68.2616 126.51 72.7633 120.579Z" fill="#FCDCDA"/>
|
43
|
+
<path d="M47.7607 116.934C47.6575 117.104 47.5528 117.242 47.4495 117.403C47.4325 117.4 47.4255 117.381 47.4255 117.381C47.4304 117.393 47.4325 117.4 47.4495 117.403C43.249 122.555 57.9893 125.174 66.9638 123.369C68.3564 121.284 61.6126 120.729 59.116 118.704C53.3602 114.038 73.8852 113.64 70.3495 111.924C66.5324 110.086 60.8509 110.819 63.3518 105.231C65.8435 99.6327 63.6991 92.9461 61.3318 90.6821C58.8642 88.3156 54.7337 91.0895 54.2839 96.2392C54.1714 97.0603 54.1042 97.9508 54.1453 98.965C54.3638 106.555 51.609 110.518 47.7607 116.934Z" fill="#EFBEBD"/>
|
44
|
+
<path d="M67.4269 83.1151C67.4269 83.1151 68.5083 87.2526 65.455 88.7796C62.3246 90.3349 71.9286 97.9861 72.0793 95.7172C72.2759 92.7905 71.1195 90.8187 73.1366 87.7908L67.4269 83.1151Z" fill="#E67052"/>
|
45
|
+
<path d="M74.8126 77.0411C76.8297 79.791 77.5696 90.3838 74.5969 92.1378C73.2948 92.8889 68.9083 90.946 66.8311 85.9612C65.9668 83.92 65.1343 80.2245 67.6161 77.1323C68.7414 75.7249 72.468 73.8336 74.8126 77.0411Z" fill="#EE9D7F"/>
|
46
|
+
<path d="M66.0799 76.9859C63.4594 80.2789 64.6059 83.4595 64.7919 84.0437C65.4745 86.1783 67.2094 88.1671 67.7384 87.5497C68.3679 86.8127 65.9844 86.0418 67.0778 83.9284C68.1762 81.8102 66.7787 81.064 67.5065 79.1706C68.2144 77.2843 69.6099 77.9308 74.0254 78.0694C75.8346 78.1267 76.2893 77.5114 76.225 76.7603C73.9851 73.5493 68.8368 73.5203 66.0799 76.9859Z" fill="#062440"/>
|
47
|
+
<path d="M76.5855 79.334C77.662 76.7779 81.4989 77.3904 80.2761 75.5834C79.4578 74.3725 79.4479 75.2842 70.3085 73.4198C66.0415 72.5513 65.2013 74.3725 64.3872 76.7772C63.6333 78.9981 63.8681 84.4547 66.7905 87.6692C69.7031 90.876 66.6993 85.5318 67.8168 83.1151C68.9343 80.7005 69.672 81.7225 71.2796 82.1221C72.8879 82.5167 74.8499 83.4503 76.5855 79.334Z" fill="#353A66"/>
|
48
|
+
<path d="M46.4688 124.173L54.2112 135.273L116.524 91.7691L124.53 77.9236L108.77 80.6714L46.4688 124.173Z" fill="#494C7F"/>
|
49
|
+
<path d="M113.078 86.8229L50.7617 130.323L54.2138 135.268L116.53 91.7682L113.078 86.8229Z" fill="#373C66"/>
|
50
|
+
<path d="M124.528 77.9235L122.363 81.6742L120.273 78.6704L124.528 77.9235Z" fill="#1F1440"/>
|
51
|
+
<path d="M59.5348 90.0145C60.6955 90.1079 62.7183 91.8598 62.9785 95.1147C63.3449 99.4707 60.8772 107.306 64.3167 112.26C67.7703 117.224 71.8314 116.87 74.5742 116.985C77.334 117.104 78.4876 115.857 80.074 116.097C81.6682 116.339 81.2947 118.232 76.8361 119.103C74.7037 119.518 64.4221 122.846 59.2243 117.701C52.4126 110.96 52.7429 89.4763 59.5348 90.0145Z" fill="#E28C71"/>
|
52
|
+
</svg>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<svg width="15" height="11" viewBox="0 0 15 11" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M13.4999 5.49976L1.5 5.49976" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
3
|
-
<path d="M9.00003 9.99995C9.00003 9.99995 13.5 6.48814 13.5 5.49995C13.5 4.51176 9 1 9 1" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
4
|
-
</svg>
|
1
|
+
<svg width="15" height="11" viewBox="0 0 15 11" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M13.4999 5.49976L1.5 5.49976" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
3
|
+
<path d="M9.00003 9.99995C9.00003 9.99995 13.5 6.48814 13.5 5.49995C13.5 4.51176 9 1 9 1" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
4
|
+
</svg>
|
@@ -1,33 +1,33 @@
|
|
1
|
-
<svg width="30" height="31" viewBox="0 0 30 31" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<g filter="url(#filter0_ddi_5110_1318)">
|
3
|
-
<path d="M26 15C26 21.6274 20.6274 27 14 27C7.37258 27 2 21.6274 2 15C2 8.37258 7.37258 3 14 3C20.6274 3 26 8.37258 26 15Z" fill="url(#paint0_linear_5110_1318)"/>
|
4
|
-
</g>
|
5
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.9993 15.106C21.9926 15.6149 21.5249 15.9719 21.0201 15.9067C20.5153 15.8415 20.1663 15.3781 20.1555 14.8693C20.134 13.8599 19.8645 12.8663 19.3644 11.9784C18.7128 10.8216 17.7046 9.90633 16.4903 9.36928C15.276 8.83222 13.9206 8.70212 12.6263 8.99837C11.332 9.29462 10.1681 10.0014 9.30833 11.0132C8.44854 12.025 7.93887 13.2876 7.85535 14.6127C7.77184 15.9379 8.11895 17.2545 8.84492 18.3663C9.57089 19.478 10.6368 20.3253 11.8837 20.7817C12.8406 21.1319 13.8647 21.2376 14.8643 21.0959C15.3682 21.0244 15.8819 21.2941 16.0277 21.7818C16.1735 22.2694 15.8966 22.7886 15.3954 22.8774C14.011 23.1226 12.5806 22.9995 11.2501 22.5125C9.62997 21.9195 8.24495 20.8186 7.30166 19.374C6.35836 17.9295 5.90733 16.2187 6.01585 14.4968C6.12436 12.775 6.78661 11.1343 7.9038 9.81963C9.02099 8.50493 10.5333 7.58662 12.215 7.20168C13.8968 6.81674 15.658 6.98579 17.2358 7.68362C18.8137 8.38145 20.1236 9.57067 20.9703 11.0739C21.6656 12.3083 22.0179 13.7002 21.9993 15.106ZM18.2062 17.3323C18.2062 17.4492 18.2154 17.5446 18.2339 17.6184L18.6031 17.6461C18.3692 18.8277 17.8831 20.4308 17.1446 22.4554L16.8215 22.4831C16.8092 22.5692 16.8031 22.6554 16.8031 22.7415C16.8031 22.8215 16.8123 22.9077 16.8308 23C16.9662 22.9938 17.2 22.9908 17.5323 22.9908C17.8708 22.9908 18.1139 22.9938 18.2615 23C18.28 22.8954 18.2892 22.8184 18.2892 22.7692C18.2892 22.7138 18.2831 22.6184 18.2708 22.4831L17.92 22.4554L18.1785 21.3569C18.5354 21.3323 18.9169 21.32 19.3231 21.32C19.7354 21.32 20.1169 21.3292 20.4677 21.3477C20.4739 21.3784 20.5108 21.5354 20.5785 21.8184C20.6462 22.0954 20.6954 22.3077 20.7262 22.4554L20.4031 22.4831C20.3908 22.5692 20.3846 22.6554 20.3846 22.7415C20.3846 22.8215 20.3939 22.9077 20.4123 23C20.5539 22.9938 20.8062 22.9908 21.1692 22.9908C21.5323 22.9908 21.8 22.9938 21.9723 23C21.9908 22.8954 22 22.8184 22 22.7692C22 22.7138 21.9939 22.6184 21.9815 22.4831L21.64 22.4554C20.76 20.0369 20.2462 18.2492 20.0985 17.0923C19.9139 17.0308 19.6892 17 19.4246 17C19.16 17 18.7569 17.0338 18.2154 17.1015C18.2092 17.1384 18.2062 17.2154 18.2062 17.3323ZM19.2862 20.72C18.8677 20.72 18.5539 20.7169 18.3446 20.7108C18.64 19.5538 18.9692 18.5354 19.3323 17.6554H19.3877C19.7077 18.5846 20.0123 19.5969 20.3015 20.6923C20.0431 20.7108 19.7046 20.72 19.2862 20.72Z" fill="white"/>
|
6
|
-
<path d="M12.0875 18.2067C12.1248 18.2349 12.1702 18.2501 12.217 18.2501C12.2582 18.25 12.2985 18.2382 12.3334 18.2162L17.1001 15.1828C17.1308 15.1633 17.1562 15.1363 17.1737 15.1043C17.1913 15.0724 17.2005 15.0365 17.2005 15C17.2005 14.9636 17.1913 14.9277 17.1737 14.8957C17.1562 14.8638 17.1308 14.8368 17.1001 14.8172L12.3334 11.7838C12.2962 11.7602 12.2528 11.7484 12.2088 11.7501C12.1648 11.7517 12.1224 11.7667 12.0871 11.793C12.0519 11.8194 12.0255 11.8558 12.0114 11.8975C11.9973 11.9392 11.9963 11.9842 12.0084 12.0265L12.8583 15L12.0085 17.9737C11.9965 18.016 11.9976 18.0609 12.0117 18.1025C12.0258 18.1441 12.0523 18.1805 12.0875 18.2067Z" fill="white"/>
|
7
|
-
<defs>
|
8
|
-
<filter id="filter0_ddi_5110_1318" x="0" y="0" width="30" height="31" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
9
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
10
|
-
<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"/>
|
11
|
-
<feOffset dx="1" dy="1"/>
|
12
|
-
<feGaussianBlur stdDeviation="1.5"/>
|
13
|
-
<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.4 0"/>
|
14
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_5110_1318"/>
|
15
|
-
<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"/>
|
16
|
-
<feOffset dx="1" dy="-1"/>
|
17
|
-
<feGaussianBlur stdDeviation="1"/>
|
18
|
-
<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"/>
|
19
|
-
<feBlend mode="normal" in2="effect1_dropShadow_5110_1318" result="effect2_dropShadow_5110_1318"/>
|
20
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_5110_1318" result="shape"/>
|
21
|
-
<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"/>
|
22
|
-
<feOffset dx="-1" dy="-1"/>
|
23
|
-
<feGaussianBlur stdDeviation="1"/>
|
24
|
-
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
25
|
-
<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.5 0"/>
|
26
|
-
<feBlend mode="normal" in2="shape" result="effect3_innerShadow_5110_1318"/>
|
27
|
-
</filter>
|
28
|
-
<linearGradient id="paint0_linear_5110_1318" x1="3.72771" y1="5.34599" x2="26" y2="27" gradientUnits="userSpaceOnUse">
|
29
|
-
<stop offset="1" stop-color="#2A6F09"/>
|
30
|
-
<stop stop-color="#44B002"/>
|
31
|
-
</linearGradient>
|
32
|
-
</defs>
|
33
|
-
</svg>
|
1
|
+
<svg width="30" height="31" viewBox="0 0 30 31" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<g filter="url(#filter0_ddi_5110_1318)">
|
3
|
+
<path d="M26 15C26 21.6274 20.6274 27 14 27C7.37258 27 2 21.6274 2 15C2 8.37258 7.37258 3 14 3C20.6274 3 26 8.37258 26 15Z" fill="url(#paint0_linear_5110_1318)"/>
|
4
|
+
</g>
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.9993 15.106C21.9926 15.6149 21.5249 15.9719 21.0201 15.9067C20.5153 15.8415 20.1663 15.3781 20.1555 14.8693C20.134 13.8599 19.8645 12.8663 19.3644 11.9784C18.7128 10.8216 17.7046 9.90633 16.4903 9.36928C15.276 8.83222 13.9206 8.70212 12.6263 8.99837C11.332 9.29462 10.1681 10.0014 9.30833 11.0132C8.44854 12.025 7.93887 13.2876 7.85535 14.6127C7.77184 15.9379 8.11895 17.2545 8.84492 18.3663C9.57089 19.478 10.6368 20.3253 11.8837 20.7817C12.8406 21.1319 13.8647 21.2376 14.8643 21.0959C15.3682 21.0244 15.8819 21.2941 16.0277 21.7818C16.1735 22.2694 15.8966 22.7886 15.3954 22.8774C14.011 23.1226 12.5806 22.9995 11.2501 22.5125C9.62997 21.9195 8.24495 20.8186 7.30166 19.374C6.35836 17.9295 5.90733 16.2187 6.01585 14.4968C6.12436 12.775 6.78661 11.1343 7.9038 9.81963C9.02099 8.50493 10.5333 7.58662 12.215 7.20168C13.8968 6.81674 15.658 6.98579 17.2358 7.68362C18.8137 8.38145 20.1236 9.57067 20.9703 11.0739C21.6656 12.3083 22.0179 13.7002 21.9993 15.106ZM18.2062 17.3323C18.2062 17.4492 18.2154 17.5446 18.2339 17.6184L18.6031 17.6461C18.3692 18.8277 17.8831 20.4308 17.1446 22.4554L16.8215 22.4831C16.8092 22.5692 16.8031 22.6554 16.8031 22.7415C16.8031 22.8215 16.8123 22.9077 16.8308 23C16.9662 22.9938 17.2 22.9908 17.5323 22.9908C17.8708 22.9908 18.1139 22.9938 18.2615 23C18.28 22.8954 18.2892 22.8184 18.2892 22.7692C18.2892 22.7138 18.2831 22.6184 18.2708 22.4831L17.92 22.4554L18.1785 21.3569C18.5354 21.3323 18.9169 21.32 19.3231 21.32C19.7354 21.32 20.1169 21.3292 20.4677 21.3477C20.4739 21.3784 20.5108 21.5354 20.5785 21.8184C20.6462 22.0954 20.6954 22.3077 20.7262 22.4554L20.4031 22.4831C20.3908 22.5692 20.3846 22.6554 20.3846 22.7415C20.3846 22.8215 20.3939 22.9077 20.4123 23C20.5539 22.9938 20.8062 22.9908 21.1692 22.9908C21.5323 22.9908 21.8 22.9938 21.9723 23C21.9908 22.8954 22 22.8184 22 22.7692C22 22.7138 21.9939 22.6184 21.9815 22.4831L21.64 22.4554C20.76 20.0369 20.2462 18.2492 20.0985 17.0923C19.9139 17.0308 19.6892 17 19.4246 17C19.16 17 18.7569 17.0338 18.2154 17.1015C18.2092 17.1384 18.2062 17.2154 18.2062 17.3323ZM19.2862 20.72C18.8677 20.72 18.5539 20.7169 18.3446 20.7108C18.64 19.5538 18.9692 18.5354 19.3323 17.6554H19.3877C19.7077 18.5846 20.0123 19.5969 20.3015 20.6923C20.0431 20.7108 19.7046 20.72 19.2862 20.72Z" fill="white"/>
|
6
|
+
<path d="M12.0875 18.2067C12.1248 18.2349 12.1702 18.2501 12.217 18.2501C12.2582 18.25 12.2985 18.2382 12.3334 18.2162L17.1001 15.1828C17.1308 15.1633 17.1562 15.1363 17.1737 15.1043C17.1913 15.0724 17.2005 15.0365 17.2005 15C17.2005 14.9636 17.1913 14.9277 17.1737 14.8957C17.1562 14.8638 17.1308 14.8368 17.1001 14.8172L12.3334 11.7838C12.2962 11.7602 12.2528 11.7484 12.2088 11.7501C12.1648 11.7517 12.1224 11.7667 12.0871 11.793C12.0519 11.8194 12.0255 11.8558 12.0114 11.8975C11.9973 11.9392 11.9963 11.9842 12.0084 12.0265L12.8583 15L12.0085 17.9737C11.9965 18.016 11.9976 18.0609 12.0117 18.1025C12.0258 18.1441 12.0523 18.1805 12.0875 18.2067Z" fill="white"/>
|
7
|
+
<defs>
|
8
|
+
<filter id="filter0_ddi_5110_1318" x="0" y="0" width="30" height="31" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
9
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
10
|
+
<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"/>
|
11
|
+
<feOffset dx="1" dy="1"/>
|
12
|
+
<feGaussianBlur stdDeviation="1.5"/>
|
13
|
+
<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.4 0"/>
|
14
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_5110_1318"/>
|
15
|
+
<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"/>
|
16
|
+
<feOffset dx="1" dy="-1"/>
|
17
|
+
<feGaussianBlur stdDeviation="1"/>
|
18
|
+
<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"/>
|
19
|
+
<feBlend mode="normal" in2="effect1_dropShadow_5110_1318" result="effect2_dropShadow_5110_1318"/>
|
20
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect2_dropShadow_5110_1318" result="shape"/>
|
21
|
+
<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"/>
|
22
|
+
<feOffset dx="-1" dy="-1"/>
|
23
|
+
<feGaussianBlur stdDeviation="1"/>
|
24
|
+
<feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"/>
|
25
|
+
<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.5 0"/>
|
26
|
+
<feBlend mode="normal" in2="shape" result="effect3_innerShadow_5110_1318"/>
|
27
|
+
</filter>
|
28
|
+
<linearGradient id="paint0_linear_5110_1318" x1="3.72771" y1="5.34599" x2="26" y2="27" gradientUnits="userSpaceOnUse">
|
29
|
+
<stop offset="1" stop-color="#2A6F09"/>
|
30
|
+
<stop stop-color="#44B002"/>
|
31
|
+
</linearGradient>
|
32
|
+
</defs>
|
33
|
+
</svg>
|
@@ -1,26 +1,26 @@
|
|
1
|
-
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<g clip-path="url(#clip0_5151_106068)">
|
3
|
-
<g filter="url(#filter0_d_5151_106068)">
|
4
|
-
<path d="M24.8701 12C24.8701 18.6274 19.4975 24 12.8701 24C6.2427 24 0.870117 18.6274 0.870117 12C0.870117 5.37258 6.2427 0 12.8701 0C19.4975 0 24.8701 5.37258 24.8701 12Z" fill="url(#paint0_linear_5151_106068)"/>
|
5
|
-
</g>
|
6
|
-
<path d="M11.2033 15.7503L16.2033 12.0003L11.2033 8.25032V15.7503ZM12.87 3.66699C11.2218 3.66699 9.61061 4.15573 8.24021 5.07141C6.8698 5.98709 5.80169 7.28858 5.17096 8.8113C4.54023 10.334 4.3752 12.0096 4.69675 13.6261C5.01829 15.2426 5.81196 16.7274 6.9774 17.8929C8.14284 19.0583 9.6277 19.852 11.2442 20.1735C12.8607 20.4951 14.5363 20.33 16.059 19.6993C17.5817 19.0686 18.8832 18.0005 19.7989 16.6301C20.7145 15.2597 21.2033 13.6485 21.2033 12.0003C21.2033 9.79019 20.3253 7.67057 18.7625 6.10777C17.1997 4.54497 15.0801 3.66699 12.87 3.66699ZM12.87 18.667C11.5514 18.667 10.2625 18.276 9.16616 17.5435C8.06983 16.8109 7.21535 15.7697 6.71076 14.5515C6.20618 13.3334 6.07415 11.9929 6.33139 10.6997C6.58862 9.40652 7.22356 8.21863 8.15591 7.28628C9.08826 6.35393 10.2761 5.71899 11.5694 5.46176C12.8626 5.20452 14.203 5.33654 15.4212 5.84113C16.6394 6.34571 17.6805 7.2002 18.4131 8.29652C19.1456 9.39285 19.5366 10.6818 19.5366 12.0003C19.5344 13.7678 18.8313 15.4622 17.5816 16.7119C16.3318 17.9617 14.6374 18.6648 12.87 18.667Z" fill="currentColor"/>
|
7
|
-
</g>
|
8
|
-
<defs>
|
9
|
-
<filter id="filter0_d_5151_106068" x="-0.129883" y="-3" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
10
|
-
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
11
|
-
<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"/>
|
12
|
-
<feOffset dx="1" dy="-1"/>
|
13
|
-
<feGaussianBlur stdDeviation="1"/>
|
14
|
-
<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"/>
|
15
|
-
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_5151_106068"/>
|
16
|
-
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_5151_106068" result="shape"/>
|
17
|
-
</filter>
|
18
|
-
<linearGradient id="paint0_linear_5151_106068" x1="2.59783" y1="2.34599" x2="24.8701" y2="24" gradientUnits="userSpaceOnUse">
|
19
|
-
<stop offset="1" stop-color="#2A6F09"/>
|
20
|
-
<stop stop-color="#44B002"/>
|
21
|
-
</linearGradient>
|
22
|
-
<clipPath id="clip0_5151_106068">
|
23
|
-
<rect width="24" height="24" fill="currentColor" transform="translate(0.870117)"/>
|
24
|
-
</clipPath>
|
25
|
-
</defs>
|
26
|
-
</svg>
|
1
|
+
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<g clip-path="url(#clip0_5151_106068)">
|
3
|
+
<g filter="url(#filter0_d_5151_106068)">
|
4
|
+
<path d="M24.8701 12C24.8701 18.6274 19.4975 24 12.8701 24C6.2427 24 0.870117 18.6274 0.870117 12C0.870117 5.37258 6.2427 0 12.8701 0C19.4975 0 24.8701 5.37258 24.8701 12Z" fill="url(#paint0_linear_5151_106068)"/>
|
5
|
+
</g>
|
6
|
+
<path d="M11.2033 15.7503L16.2033 12.0003L11.2033 8.25032V15.7503ZM12.87 3.66699C11.2218 3.66699 9.61061 4.15573 8.24021 5.07141C6.8698 5.98709 5.80169 7.28858 5.17096 8.8113C4.54023 10.334 4.3752 12.0096 4.69675 13.6261C5.01829 15.2426 5.81196 16.7274 6.9774 17.8929C8.14284 19.0583 9.6277 19.852 11.2442 20.1735C12.8607 20.4951 14.5363 20.33 16.059 19.6993C17.5817 19.0686 18.8832 18.0005 19.7989 16.6301C20.7145 15.2597 21.2033 13.6485 21.2033 12.0003C21.2033 9.79019 20.3253 7.67057 18.7625 6.10777C17.1997 4.54497 15.0801 3.66699 12.87 3.66699ZM12.87 18.667C11.5514 18.667 10.2625 18.276 9.16616 17.5435C8.06983 16.8109 7.21535 15.7697 6.71076 14.5515C6.20618 13.3334 6.07415 11.9929 6.33139 10.6997C6.58862 9.40652 7.22356 8.21863 8.15591 7.28628C9.08826 6.35393 10.2761 5.71899 11.5694 5.46176C12.8626 5.20452 14.203 5.33654 15.4212 5.84113C16.6394 6.34571 17.6805 7.2002 18.4131 8.29652C19.1456 9.39285 19.5366 10.6818 19.5366 12.0003C19.5344 13.7678 18.8313 15.4622 17.5816 16.7119C16.3318 17.9617 14.6374 18.6648 12.87 18.667Z" fill="currentColor"/>
|
7
|
+
</g>
|
8
|
+
<defs>
|
9
|
+
<filter id="filter0_d_5151_106068" x="-0.129883" y="-3" width="28" height="28" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
10
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
11
|
+
<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"/>
|
12
|
+
<feOffset dx="1" dy="-1"/>
|
13
|
+
<feGaussianBlur stdDeviation="1"/>
|
14
|
+
<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"/>
|
15
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_5151_106068"/>
|
16
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_5151_106068" result="shape"/>
|
17
|
+
</filter>
|
18
|
+
<linearGradient id="paint0_linear_5151_106068" x1="2.59783" y1="2.34599" x2="24.8701" y2="24" gradientUnits="userSpaceOnUse">
|
19
|
+
<stop offset="1" stop-color="#2A6F09"/>
|
20
|
+
<stop stop-color="#44B002"/>
|
21
|
+
</linearGradient>
|
22
|
+
<clipPath id="clip0_5151_106068">
|
23
|
+
<rect width="24" height="24" fill="currentColor" transform="translate(0.870117)"/>
|
24
|
+
</clipPath>
|
25
|
+
</defs>
|
26
|
+
</svg>
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M6.10873 11.1962C6.14603 11.2244 6.19148 11.2396 6.23821 11.2396C6.27942 11.2395 6.31977 11.2278 6.3546 11.2057L11.1213 8.17235C11.1521 8.15278 11.1774 8.12577 11.195 8.09381C11.2125 8.06185 11.2217 8.02599 11.2217 7.98953C11.2217 7.95307 11.2125 7.9172 11.195 7.88524C11.1774 7.85328 11.1521 7.82627 11.1213 7.8067L6.3546 4.77334C6.31747 4.74972 6.27403 4.73795 6.23006 4.73959C6.18608 4.74124 6.14364 4.75622 6.10838 4.78255C6.07312 4.80888 6.0467 4.84531 6.03263 4.88701C6.01856 4.9287 6.0175 4.97369 6.0296 5.016L6.87955 7.98953L6.02977 10.9632C6.01775 11.0055 6.01887 11.0504 6.03297 11.092C6.04707 11.1336 6.07349 11.17 6.10873 11.1962Z" fill="#10B660"/>
|
3
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.8751 9.40825C15.7855 9.90928 15.2659 10.1853 14.7785 10.0387C14.2911 9.89211 14.0222 9.378 14.0945 8.87419C14.2422 7.84415 14.1271 6.7881 13.7528 5.80646C13.2685 4.53625 12.3774 3.46205 11.2185 2.7514C10.0596 2.04076 8.69815 1.73365 7.34641 1.87796C5.99468 2.02227 4.72871 2.60989 3.74598 3.54917C2.76324 4.48845 2.11901 5.72657 1.91375 7.0704C1.7085 8.41423 1.95377 9.78821 2.61131 10.978C3.26885 12.1678 4.30169 13.1066 5.54871 13.6478C6.51243 14.0661 7.5622 14.2288 8.59786 14.1277C9.10443 14.0783 9.60586 14.3701 9.73028 14.8637C9.85469 15.3572 9.55547 15.8638 9.05091 15.9307C7.61706 16.1207 6.15221 15.919 4.81487 15.3386C3.19453 14.6353 1.8525 13.4155 0.998111 11.8695C0.143724 10.3235 -0.174975 8.53824 0.091725 6.79211C0.358425 5.04598 1.19553 3.43721 2.47246 2.21674C3.74939 0.996269 5.39435 0.232729 7.15075 0.0452152C8.90715 -0.142298 10.6762 0.25676 12.182 1.18014C13.6878 2.10353 14.8457 3.49931 15.475 5.14979C15.9944 6.51198 16.1297 7.98445 15.8751 9.40825ZM14.3475 10.7439C14.3475 10.6747 14.3455 10.6238 14.3414 10.5912C13.926 10.583 13.6429 10.5729 13.4922 10.5606C13.3863 11.1064 13.0217 11.9882 12.3986 13.2061C11.645 11.8172 11.2337 10.9354 11.1644 10.5606C10.9934 10.5729 10.7408 10.583 10.4068 10.5912C10.4028 10.6238 10.4007 10.6747 10.4007 10.7439C10.4007 10.8132 10.4068 10.8763 10.4191 10.9333L10.6451 10.9516C10.6573 11.1227 10.6634 11.306 10.6634 11.5015C10.6634 12.5157 10.6207 13.3934 10.5351 14.1347L10.3213 14.1531C10.3132 14.2264 10.3091 14.2875 10.3091 14.3363C10.3091 14.3812 10.3152 14.4341 10.3274 14.4952C10.4537 14.4911 10.6023 14.4891 10.7734 14.4891C10.9445 14.4891 11.0952 14.4911 11.2255 14.4952C11.2377 14.426 11.2439 14.3689 11.2439 14.3241C11.2439 14.2753 11.2398 14.2182 11.2316 14.1531L11.0056 14.1347C10.9974 13.8985 10.9934 13.5808 10.9934 13.1816C10.9934 12.7784 11.0097 12.2876 11.0422 11.7092C11.0911 11.7988 11.2459 12.088 11.5066 12.5768C11.7713 13.0615 11.975 13.4749 12.1175 13.817C12.1501 13.8211 12.2112 13.8231 12.3008 13.8231C12.3945 13.8231 12.4821 13.8069 12.5635 13.7743C12.6979 13.4321 12.9464 12.9006 13.3089 12.1797C13.4718 11.8498 13.5736 11.642 13.6144 11.5565C13.651 12.2285 13.6694 12.754 13.6694 13.1328C13.6694 13.5075 13.6653 13.8415 13.6571 14.1347L13.4555 14.1531C13.4474 14.2264 13.4433 14.2875 13.4433 14.3363C13.4433 14.3812 13.4494 14.4341 13.4616 14.4952C13.6001 14.4911 13.763 14.4891 13.9504 14.4891C14.1378 14.4891 14.3027 14.4911 14.4453 14.4952C14.4575 14.426 14.4636 14.3689 14.4636 14.3241C14.4636 14.2753 14.4595 14.2182 14.4514 14.1531L14.2253 14.1347C14.1357 13.3486 14.0909 12.4566 14.0909 11.4587C14.0909 11.2347 14.0929 11.0657 14.097 10.9516L14.3292 10.9333C14.3414 10.8763 14.3475 10.8132 14.3475 10.7439Z" fill="currentColor"/>
|
4
|
-
</svg>
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M6.10873 11.1962C6.14603 11.2244 6.19148 11.2396 6.23821 11.2396C6.27942 11.2395 6.31977 11.2278 6.3546 11.2057L11.1213 8.17235C11.1521 8.15278 11.1774 8.12577 11.195 8.09381C11.2125 8.06185 11.2217 8.02599 11.2217 7.98953C11.2217 7.95307 11.2125 7.9172 11.195 7.88524C11.1774 7.85328 11.1521 7.82627 11.1213 7.8067L6.3546 4.77334C6.31747 4.74972 6.27403 4.73795 6.23006 4.73959C6.18608 4.74124 6.14364 4.75622 6.10838 4.78255C6.07312 4.80888 6.0467 4.84531 6.03263 4.88701C6.01856 4.9287 6.0175 4.97369 6.0296 5.016L6.87955 7.98953L6.02977 10.9632C6.01775 11.0055 6.01887 11.0504 6.03297 11.092C6.04707 11.1336 6.07349 11.17 6.10873 11.1962Z" fill="#10B660"/>
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.8751 9.40825C15.7855 9.90928 15.2659 10.1853 14.7785 10.0387C14.2911 9.89211 14.0222 9.378 14.0945 8.87419C14.2422 7.84415 14.1271 6.7881 13.7528 5.80646C13.2685 4.53625 12.3774 3.46205 11.2185 2.7514C10.0596 2.04076 8.69815 1.73365 7.34641 1.87796C5.99468 2.02227 4.72871 2.60989 3.74598 3.54917C2.76324 4.48845 2.11901 5.72657 1.91375 7.0704C1.7085 8.41423 1.95377 9.78821 2.61131 10.978C3.26885 12.1678 4.30169 13.1066 5.54871 13.6478C6.51243 14.0661 7.5622 14.2288 8.59786 14.1277C9.10443 14.0783 9.60586 14.3701 9.73028 14.8637C9.85469 15.3572 9.55547 15.8638 9.05091 15.9307C7.61706 16.1207 6.15221 15.919 4.81487 15.3386C3.19453 14.6353 1.8525 13.4155 0.998111 11.8695C0.143724 10.3235 -0.174975 8.53824 0.091725 6.79211C0.358425 5.04598 1.19553 3.43721 2.47246 2.21674C3.74939 0.996269 5.39435 0.232729 7.15075 0.0452152C8.90715 -0.142298 10.6762 0.25676 12.182 1.18014C13.6878 2.10353 14.8457 3.49931 15.475 5.14979C15.9944 6.51198 16.1297 7.98445 15.8751 9.40825ZM14.3475 10.7439C14.3475 10.6747 14.3455 10.6238 14.3414 10.5912C13.926 10.583 13.6429 10.5729 13.4922 10.5606C13.3863 11.1064 13.0217 11.9882 12.3986 13.2061C11.645 11.8172 11.2337 10.9354 11.1644 10.5606C10.9934 10.5729 10.7408 10.583 10.4068 10.5912C10.4028 10.6238 10.4007 10.6747 10.4007 10.7439C10.4007 10.8132 10.4068 10.8763 10.4191 10.9333L10.6451 10.9516C10.6573 11.1227 10.6634 11.306 10.6634 11.5015C10.6634 12.5157 10.6207 13.3934 10.5351 14.1347L10.3213 14.1531C10.3132 14.2264 10.3091 14.2875 10.3091 14.3363C10.3091 14.3812 10.3152 14.4341 10.3274 14.4952C10.4537 14.4911 10.6023 14.4891 10.7734 14.4891C10.9445 14.4891 11.0952 14.4911 11.2255 14.4952C11.2377 14.426 11.2439 14.3689 11.2439 14.3241C11.2439 14.2753 11.2398 14.2182 11.2316 14.1531L11.0056 14.1347C10.9974 13.8985 10.9934 13.5808 10.9934 13.1816C10.9934 12.7784 11.0097 12.2876 11.0422 11.7092C11.0911 11.7988 11.2459 12.088 11.5066 12.5768C11.7713 13.0615 11.975 13.4749 12.1175 13.817C12.1501 13.8211 12.2112 13.8231 12.3008 13.8231C12.3945 13.8231 12.4821 13.8069 12.5635 13.7743C12.6979 13.4321 12.9464 12.9006 13.3089 12.1797C13.4718 11.8498 13.5736 11.642 13.6144 11.5565C13.651 12.2285 13.6694 12.754 13.6694 13.1328C13.6694 13.5075 13.6653 13.8415 13.6571 14.1347L13.4555 14.1531C13.4474 14.2264 13.4433 14.2875 13.4433 14.3363C13.4433 14.3812 13.4494 14.4341 13.4616 14.4952C13.6001 14.4911 13.763 14.4891 13.9504 14.4891C14.1378 14.4891 14.3027 14.4911 14.4453 14.4952C14.4575 14.426 14.4636 14.3689 14.4636 14.3241C14.4636 14.2753 14.4595 14.2182 14.4514 14.1531L14.2253 14.1347C14.1357 13.3486 14.0909 12.4566 14.0909 11.4587C14.0909 11.2347 14.0929 11.0657 14.097 10.9516L14.3292 10.9333C14.3414 10.8763 14.3475 10.8132 14.3475 10.7439Z" fill="currentColor"/>
|
4
|
+
</svg>
|
@@ -1,93 +1,93 @@
|
|
1
|
-
<svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<g clip-path="url(#clip0_167_6598)">
|
3
|
-
<g opacity="0.08">
|
4
|
-
<path d="M6.65258 12.6442C9.80332 12.6442 12.3575 10.09 12.3575 6.9393C12.3575 3.78856 9.80332 1.23438 6.65258 1.23438C3.50184 1.23438 0.947662 3.78856 0.947662 6.9393C0.947662 10.09 3.50184 12.6442 6.65258 12.6442Z" fill="black"/>
|
5
|
-
</g>
|
6
|
-
<path d="M6.6526 12.4477C9.91194 12.4477 12.5542 9.80544 12.5542 6.54609C12.5542 3.28675 9.91194 0.644531 6.6526 0.644531C3.39326 0.644531 0.751038 3.28675 0.751038 6.54609C0.751038 9.80544 3.39326 12.4477 6.6526 12.4477Z" fill="url(#paint0_linear_167_6598)"/>
|
7
|
-
<g opacity="0.08">
|
8
|
-
<path d="M6.65258 0.644531C3.3931 0.644531 0.750946 3.28669 0.750946 6.54616C0.750946 9.80564 3.3931 12.4478 6.65258 12.4478C9.91206 12.4478 12.5542 9.80567 12.5542 6.54619C12.5542 3.28671 9.91206 0.644531 6.65258 0.644531ZM6.65258 12.0544C3.61541 12.0544 1.14439 9.58336 1.14439 6.54619C1.14439 3.50902 3.61541 1.03798 6.65258 1.03798C9.68975 1.03798 12.1608 3.50899 12.1608 6.54616C12.1608 9.58334 9.68975 12.0544 6.65258 12.0544Z" fill="url(#paint1_linear_167_6598)"/>
|
9
|
-
</g>
|
10
|
-
<g opacity="0.16">
|
11
|
-
<path d="M6.65258 0.644531C3.3931 0.644531 0.750946 3.28669 0.750946 6.54616C0.750946 9.80564 3.3931 12.4478 6.65258 12.4478C9.91206 12.4478 12.5542 9.80567 12.5542 6.54619C12.5542 3.28671 9.91206 0.644531 6.65258 0.644531ZM6.65258 12.2511C3.5019 12.2511 0.947657 9.69687 0.947657 6.54616C0.947657 3.39546 3.5019 0.841242 6.65258 0.841242C9.80326 0.841242 12.3575 3.39546 12.3575 6.54616C12.3575 9.69687 9.80326 12.2511 6.65258 12.2511Z" fill="black"/>
|
12
|
-
</g>
|
13
|
-
<path d="M6.65259 11.8572C9.586 11.8572 11.964 9.47919 11.964 6.54578C11.964 3.61237 9.586 1.23438 6.65259 1.23438C3.71918 1.23438 1.34119 3.61237 1.34119 6.54578C1.34119 9.47919 3.71918 11.8572 6.65259 11.8572Z" fill="url(#paint2_linear_167_6598)"/>
|
14
|
-
<g opacity="0.16">
|
15
|
-
<path d="M6.6526 1.23438C3.71909 1.23438 1.34113 3.61234 1.34113 6.54585C1.34113 9.47936 3.71909 11.8573 6.6526 11.8573C9.58611 11.8573 11.9641 9.47936 11.9641 6.54585C11.9641 3.61234 9.58611 1.23438 6.6526 1.23438ZM6.6526 11.6606C3.82789 11.6606 1.53786 9.37059 1.53786 6.54587C1.53786 3.72116 3.82789 1.43111 6.6526 1.43111C9.47731 1.43111 11.7673 3.72114 11.7673 6.54585C11.7673 9.37056 9.47731 11.6606 6.6526 11.6606Z" fill="url(#paint3_linear_167_6598)"/>
|
16
|
-
</g>
|
17
|
-
<g opacity="0.36">
|
18
|
-
<path d="M6.65259 2.59548C6.60728 2.59548 6.57056 2.55876 6.57056 2.51345V1.72656C6.57056 1.68126 6.60728 1.64453 6.65259 1.64453C6.69789 1.64453 6.73462 1.68126 6.73462 1.72656V2.51345C6.73462 2.55876 6.69789 2.59548 6.65259 2.59548Z" fill="white"/>
|
19
|
-
<path d="M6.0747 2.2395C6.03415 2.2395 5.99891 2.20946 5.99347 2.16818L5.94212 1.77828C5.93621 1.73335 5.96783 1.69214 6.01273 1.68624C6.05755 1.68042 6.09887 1.71195 6.10477 1.75685L6.15612 2.14676C6.16203 2.19169 6.13041 2.23289 6.08551 2.2388C6.0819 2.23927 6.07829 2.2395 6.0747 2.2395Z" fill="white"/>
|
20
|
-
<path d="M4.95885 2.53839C4.92664 2.53839 4.89613 2.51934 4.88303 2.48774L4.73235 2.12421C4.715 2.08235 4.73485 2.03437 4.77671 2.017C4.81862 1.99968 4.86657 2.01953 4.88392 2.06137L5.0346 2.42491C5.05194 2.46677 5.03209 2.51474 4.99023 2.53211C4.97994 2.53638 4.9693 2.53839 4.95885 2.53839Z" fill="white"/>
|
21
|
-
<path d="M3.95817 3.11686C3.93354 3.11686 3.90919 3.10582 3.89304 3.08477L3.65344 2.77258C3.62585 2.73666 3.63262 2.68516 3.66858 2.65758C3.70451 2.63001 3.75602 2.63676 3.78359 2.67272L4.02319 2.98491C4.05077 3.02083 4.044 3.07233 4.00805 3.09991C3.99316 3.11135 3.97559 3.11686 3.95817 3.11686Z" fill="white"/>
|
22
|
-
<path d="M3.14105 3.93296C3.12361 3.93296 3.10605 3.92743 3.09117 3.91599L2.77896 3.67639C2.74301 3.6488 2.73623 3.59731 2.76382 3.56138C2.7914 3.52545 2.84292 3.51868 2.87883 3.54624L3.19104 3.78584C3.22699 3.81343 3.23376 3.86492 3.20618 3.90085C3.19003 3.92192 3.16568 3.93296 3.14105 3.93296Z" fill="white"/>
|
23
|
-
<path d="M2.5633 4.93395C2.55285 4.93395 2.54221 4.93194 2.53192 4.92767L2.16838 4.77699C2.12652 4.75965 2.10667 4.71165 2.12401 4.66979C2.14135 4.62795 2.18933 4.60805 2.23121 4.62542L2.59475 4.7761C2.63661 4.79344 2.65646 4.84144 2.63912 4.8833C2.62602 4.91487 2.59548 4.93395 2.5633 4.93395Z" fill="white"/>
|
24
|
-
<path d="M2.26425 6.05034C2.26069 6.05034 2.25708 6.05011 2.25344 6.04964L1.86354 5.99829C1.81861 5.99238 1.78699 5.95116 1.79292 5.90625C1.79883 5.86134 1.84003 5.82991 1.88496 5.83563L2.27487 5.88698C2.3198 5.89289 2.35141 5.93412 2.34548 5.97902C2.34005 6.0203 2.30477 6.05034 2.26425 6.05034Z" fill="white"/>
|
25
|
-
<path d="M5.60871 2.73282C5.5725 2.73282 5.53935 2.70866 5.52953 2.672L5.32593 1.91188C5.31421 1.86812 5.34018 1.82312 5.38394 1.8114C5.42767 1.7997 5.47267 1.82563 5.48442 1.86941L5.68802 2.62953C5.69974 2.67329 5.67377 2.71829 5.63001 2.73001C5.62289 2.73191 5.61574 2.73282 5.60871 2.73282Z" fill="white"/>
|
26
|
-
<path d="M4.63628 3.13555C4.60792 3.13555 4.58036 3.12085 4.56515 3.09453L4.1717 2.41309C4.14906 2.37385 4.16249 2.3237 4.20173 2.30103C4.24096 2.27842 4.29112 2.2918 4.31378 2.33106L4.70723 3.0125C4.72987 3.05174 4.71644 3.10189 4.6772 3.12456C4.66429 3.13199 4.65018 3.13555 4.63628 3.13555Z" fill="white"/>
|
27
|
-
<path d="M3.80091 3.77605C3.77991 3.77605 3.75891 3.76803 3.7429 3.75202L3.18657 3.19571C3.15453 3.16367 3.15453 3.11173 3.18657 3.07969C3.2186 3.04765 3.27054 3.04765 3.30258 3.07969L3.85892 3.63601C3.89096 3.66804 3.89096 3.71998 3.85892 3.75202C3.84289 3.76803 3.82189 3.77605 3.80091 3.77605Z" fill="white"/>
|
28
|
-
<path d="M3.15991 4.61122C3.14599 4.61122 3.1319 4.60768 3.11896 4.60022L2.43752 4.20678C2.39828 4.18411 2.38483 4.13396 2.40749 4.09472C2.43016 4.05549 2.48034 4.04208 2.51955 4.0647L3.20099 4.45814C3.24023 4.48081 3.25368 4.53097 3.23102 4.5702C3.21585 4.59652 3.18827 4.61122 3.15991 4.61122Z" fill="white"/>
|
29
|
-
<path d="M2.75733 5.5845C2.75032 5.5845 2.74317 5.58358 2.73605 5.58169L1.97592 5.37808C1.93216 5.36637 1.90619 5.32139 1.91791 5.27761C1.92963 5.23387 1.97454 5.2079 2.01839 5.2196L2.77851 5.4232C2.82227 5.43492 2.84824 5.4799 2.83652 5.52368C2.8267 5.56031 2.79356 5.5845 2.75733 5.5845Z" fill="white"/>
|
30
|
-
<path d="M2.61981 6.62793H1.83292C1.78761 6.62793 1.75089 6.5912 1.75089 6.5459C1.75089 6.50059 1.78761 6.46387 1.83292 6.46387H2.61981C2.66511 6.46387 2.70184 6.50059 2.70184 6.5459C2.70184 6.5912 2.66511 6.62793 2.61981 6.62793Z" fill="white"/>
|
31
|
-
<path d="M1.87412 7.25738C1.83357 7.25738 1.79832 7.22736 1.79288 7.18606C1.78698 7.14113 1.8186 7.09993 1.8635 7.09402L2.25341 7.04269C2.29843 7.03683 2.33954 7.06838 2.34545 7.11331C2.35135 7.15824 2.31974 7.19944 2.27483 7.20535L1.88492 7.25668C1.88129 7.25715 1.87768 7.25738 1.87412 7.25738Z" fill="white"/>
|
32
|
-
<path d="M2.19983 8.47299C2.16763 8.47299 2.13711 8.45394 2.12401 8.42234C2.10667 8.38051 2.12652 8.33251 2.16838 8.31516L2.53192 8.16448C2.57382 8.14712 2.62178 8.16701 2.63912 8.20887C2.65646 8.25071 2.63661 8.29871 2.59475 8.31605L2.23121 8.46673C2.22095 8.47097 2.21028 8.47299 2.19983 8.47299Z" fill="white"/>
|
33
|
-
<path d="M2.82895 9.56188C2.80432 9.56188 2.77997 9.55084 2.76382 9.52979C2.73623 9.49386 2.74301 9.44237 2.77896 9.41478L3.09117 9.17518C3.12712 9.14757 3.17862 9.15435 3.20618 9.19032C3.23376 9.22625 3.22699 9.27775 3.19104 9.30533L2.87883 9.54493C2.86394 9.55637 2.84639 9.56188 2.82895 9.56188Z" fill="white"/>
|
34
|
-
<path d="M3.71845 10.4518C3.70101 10.4518 3.68346 10.4463 3.66858 10.4349C3.63262 10.4073 3.62585 10.3558 3.65344 10.3199L3.89304 10.0077C3.92062 9.97175 3.97214 9.96496 4.00805 9.99254C4.044 10.0201 4.05077 10.0716 4.02319 10.1075L3.78359 10.4197C3.76741 10.4408 3.74306 10.4518 3.71845 10.4518Z" fill="white"/>
|
35
|
-
<path d="M4.8081 11.0814C4.79764 11.0814 4.787 11.0794 4.77671 11.0751C4.73485 11.0578 4.715 11.0098 4.73235 10.9679L4.88303 10.6044C4.90037 10.5625 4.94832 10.5426 4.99023 10.56C5.03209 10.5773 5.05194 10.6253 5.0346 10.6672L4.88392 11.0307C4.87082 11.0623 4.84028 11.0814 4.8081 11.0814Z" fill="white"/>
|
36
|
-
<path d="M6.02357 11.4065C6.02001 11.4065 6.0164 11.4063 6.01277 11.4058C5.96784 11.3999 5.93622 11.3587 5.94215 11.3138L5.9935 10.9239C5.99943 10.8789 6.04064 10.8474 6.08554 10.8532C6.13047 10.8592 6.16209 10.9004 6.15616 10.9453L6.10481 11.3352C6.09937 11.3765 6.06412 11.4065 6.02357 11.4065Z" fill="white"/>
|
37
|
-
<path d="M1.99711 7.87552C1.96087 7.87552 1.92773 7.85136 1.91791 7.81468C1.90619 7.77092 1.93216 7.72594 1.97592 7.71423L2.73605 7.5106C2.7799 7.49895 2.8248 7.52485 2.83652 7.56863C2.84824 7.61239 2.82227 7.65737 2.77851 7.66909L2.01839 7.87271C2.01129 7.87461 2.00414 7.87552 1.99711 7.87552Z" fill="white"/>
|
38
|
-
<path d="M2.47862 9.03803C2.45026 9.03803 2.42269 9.02331 2.40748 8.99699C2.38484 8.95775 2.39827 8.9076 2.43751 8.88493L3.11895 8.49149C3.15821 8.4688 3.20837 8.48228 3.23101 8.52151C3.25365 8.56075 3.24022 8.6109 3.20098 8.63357L2.51954 9.02701C2.50662 9.03449 2.49254 9.03803 2.47862 9.03803Z" fill="white"/>
|
39
|
-
<path d="M4.24265 10.8026C4.22873 10.8026 4.21465 10.799 4.20171 10.7916C4.16247 10.7689 4.14902 10.7187 4.17168 10.6795L4.56513 9.99806C4.58779 9.9588 4.63797 9.94539 4.67718 9.96804C4.71642 9.9907 4.72987 10.0409 4.70721 10.0801L4.31376 10.7615C4.29858 10.7879 4.27099 10.8026 4.24265 10.8026Z" fill="white"/>
|
40
|
-
<path d="M5.40522 11.2836C5.39819 11.2836 5.39107 11.2827 5.38394 11.2808C5.34018 11.2691 5.31421 11.2241 5.32593 11.1804L5.52953 10.4202C5.54125 10.3765 5.58616 10.3505 5.63001 10.3622C5.67377 10.3739 5.69974 10.4189 5.68802 10.4626L5.48442 11.2228C5.4746 11.2594 5.44146 11.2836 5.40522 11.2836Z" fill="white"/>
|
41
|
-
<path d="M6.65259 11.448C6.60728 11.448 6.57056 11.4113 6.57056 11.366V10.5791C6.57056 10.5338 6.60728 10.4971 6.65259 10.4971C6.69789 10.4971 6.73462 10.5338 6.73462 10.5791V11.366C6.73462 11.4113 6.69789 11.448 6.65259 11.448Z" fill="white"/>
|
42
|
-
<path d="M7.28157 11.4065C7.24105 11.4065 7.2058 11.3765 7.20036 11.3352L7.14903 10.9453C7.1431 10.9004 7.17474 10.8592 7.21965 10.8532C7.26467 10.8473 7.30578 10.8789 7.31169 10.9239L7.36301 11.3138C7.36894 11.3587 7.3373 11.3999 7.2924 11.4058C7.28876 11.4063 7.28513 11.4065 7.28157 11.4065Z" fill="white"/>
|
43
|
-
<path d="M8.49705 11.0814C8.46488 11.0814 8.43434 11.0623 8.42126 11.0307L8.27055 10.6672C8.25321 10.6253 8.27306 10.5773 8.31495 10.56C8.35666 10.5427 8.40478 10.5625 8.42213 10.6044L8.57283 10.9679C8.59017 11.0098 8.57032 11.0578 8.52844 11.0751C8.5182 11.0793 8.50755 11.0814 8.49705 11.0814Z" fill="white"/>
|
44
|
-
<path d="M9.58673 10.4518C9.5621 10.4518 9.53775 10.4408 9.5216 10.4198L9.28198 10.1076C9.25439 10.0716 9.26116 10.0201 9.29712 9.99256C9.333 9.96497 9.38452 9.97172 9.41213 10.0077L9.65175 10.3199C9.67934 10.3558 9.67256 10.4073 9.63661 10.4349C9.62175 10.4463 9.60417 10.4518 9.58673 10.4518Z" fill="white"/>
|
45
|
-
<path d="M10.4762 9.5619C10.4588 9.5619 10.4412 9.5564 10.4263 9.54494L10.1141 9.30533C10.0782 9.27775 10.0714 9.22626 10.099 9.19033C10.1265 9.15437 10.178 9.14755 10.214 9.17519L10.5262 9.41479C10.5621 9.44237 10.5689 9.49387 10.5413 9.52979C10.5252 9.55089 10.5008 9.5619 10.4762 9.5619Z" fill="white"/>
|
46
|
-
<path d="M11.1053 8.47299C11.0949 8.47299 11.0842 8.47097 11.074 8.46671L10.7104 8.31603C10.6686 8.29868 10.6487 8.25068 10.666 8.20885C10.6834 8.16696 10.7314 8.14716 10.7732 8.16446L11.1367 8.31514C11.1786 8.33248 11.1985 8.38048 11.1811 8.42232C11.1681 8.45393 11.1375 8.47299 11.1053 8.47299Z" fill="white"/>
|
47
|
-
<path d="M11.4311 7.2574C11.4275 7.2574 11.4239 7.25716 11.4202 7.2567L11.0303 7.20537C10.9854 7.19946 10.9538 7.15826 10.9597 7.11333C10.9656 7.06845 11.0069 7.03676 11.0517 7.04271L11.4416 7.09404C11.4866 7.09995 11.5182 7.14115 11.5123 7.18608C11.5068 7.22733 11.4716 7.2574 11.4311 7.2574Z" fill="white"/>
|
48
|
-
<path d="M7.89995 11.2836C7.86372 11.2836 7.83058 11.2595 7.82076 11.2228L7.61713 10.4626C7.60541 10.4189 7.63138 10.3739 7.67516 10.3622C7.7188 10.3505 7.7639 10.3764 7.77562 10.4202L7.97924 11.1804C7.99096 11.2241 7.96499 11.2691 7.92121 11.2808C7.91411 11.2827 7.90698 11.2836 7.89995 11.2836Z" fill="white"/>
|
49
|
-
<path d="M9.06245 10.8026C9.03412 10.8026 9.00653 10.7879 8.99135 10.7615L8.59792 10.0801C8.57526 10.0409 8.58871 9.9907 8.62795 9.96804C8.66713 9.94539 8.71734 9.9588 8.74 9.99806L9.13342 10.6795C9.15609 10.7187 9.14263 10.7689 9.1034 10.7916C9.09051 10.799 9.07638 10.8026 9.06245 10.8026Z" fill="white"/>
|
50
|
-
<path d="M10.0606 10.0358C10.0396 10.0358 10.0186 10.0278 10.0026 10.0118L9.44624 9.45545C9.4142 9.42344 9.4142 9.37147 9.44624 9.33946C9.47823 9.30742 9.53019 9.30742 9.56223 9.33946L10.1186 9.89577C10.1506 9.92779 10.1506 9.97975 10.1186 10.0118C10.1026 10.0278 10.0816 10.0358 10.0606 10.0358Z" fill="white"/>
|
51
|
-
<path d="M10.8265 9.03801C10.8126 9.03801 10.7985 9.03447 10.7856 9.027L10.1042 8.63355C10.0649 8.61089 10.0515 8.56073 10.0742 8.5215C10.0968 8.48224 10.147 8.46883 10.1862 8.49147L10.8676 8.88492C10.9069 8.90758 10.9203 8.95774 10.8976 8.99697C10.8825 9.02329 10.8549 9.03801 10.8265 9.03801Z" fill="white"/>
|
52
|
-
<path d="M11.308 7.87554C11.301 7.87554 11.2939 7.87463 11.2868 7.87273L10.5266 7.6691C10.4829 7.65738 10.4569 7.61241 10.4686 7.56865C10.4803 7.52487 10.5254 7.49892 10.5691 7.51062L11.3292 7.71424C11.373 7.72596 11.399 7.77094 11.3872 7.8147C11.3774 7.85137 11.3443 7.87554 11.308 7.87554Z" fill="white"/>
|
53
|
-
<path d="M11.4723 6.62793H10.6854C10.6401 6.62793 10.6033 6.5912 10.6033 6.5459C10.6033 6.50059 10.6401 6.46387 10.6854 6.46387H11.4723C11.5176 6.46387 11.5543 6.50059 11.5543 6.5459C11.5543 6.5912 11.5175 6.62793 11.4723 6.62793Z" fill="white"/>
|
54
|
-
<path d="M11.4723 6.62793H10.6854C10.6401 6.62793 10.6033 6.5912 10.6033 6.5459C10.6033 6.50059 10.6401 6.46387 10.6854 6.46387H11.4723C11.5176 6.46387 11.5543 6.50059 11.5543 6.5459C11.5543 6.5912 11.5175 6.62793 11.4723 6.62793Z" fill="white"/>
|
55
|
-
<path d="M11.0409 6.05035C11.0004 6.05035 10.9651 6.02031 10.9597 5.97903C10.9538 5.9341 10.9854 5.8929 11.0303 5.88699L11.4202 5.83564C11.4651 5.82988 11.5064 5.86135 11.5123 5.90626C11.5182 5.95119 11.4866 5.99239 11.4416 5.9983L11.0517 6.04965C11.0481 6.05012 11.0445 6.05035 11.0409 6.05035Z" fill="white"/>
|
56
|
-
<path d="M10.7419 4.93393C10.7097 4.93393 10.6791 4.91487 10.6661 4.88328C10.6487 4.84142 10.6686 4.79344 10.7105 4.77607L11.074 4.62539C11.1157 4.6081 11.1638 4.6279 11.1812 4.66976C11.1985 4.71162 11.1787 4.7596 11.1368 4.77696L10.7732 4.92764C10.763 4.93191 10.7523 4.93393 10.7419 4.93393Z" fill="white"/>
|
57
|
-
<path d="M10.1641 3.93296C10.1395 3.93296 10.1151 3.92193 10.099 3.90088C10.0714 3.86495 10.0782 3.81346 10.1141 3.78587L10.4263 3.54627C10.4623 3.51866 10.5137 3.52546 10.5413 3.56141C10.5689 3.59734 10.5621 3.64883 10.5262 3.67642L10.214 3.91602C10.1991 3.92746 10.1815 3.93296 10.1641 3.93296Z" fill="white"/>
|
58
|
-
<path d="M9.34701 3.1169C9.32959 3.1169 9.31204 3.11137 9.29713 3.09993C9.2612 3.07235 9.25443 3.02085 9.28199 2.98493L9.52161 2.67274C9.5492 2.63678 9.60062 2.62999 9.63662 2.6576C9.67255 2.68518 9.67933 2.73668 9.65176 2.7726L9.41214 3.08479C9.39599 3.10586 9.37164 3.1169 9.34701 3.1169Z" fill="white"/>
|
59
|
-
<path d="M8.34633 2.5384C8.33585 2.5384 8.32521 2.53638 8.31494 2.53211C8.27308 2.51477 8.25321 2.46677 8.27055 2.42491L8.42125 2.06137C8.4386 2.01951 8.48672 1.99969 8.52843 2.01701C8.57029 2.03435 8.59017 2.08235 8.57283 2.12421L8.42212 2.48775C8.40902 2.51932 8.3785 2.5384 8.34633 2.5384Z" fill="white"/>
|
60
|
-
<path d="M7.23044 2.2395C7.22688 2.2395 7.22325 2.23926 7.21962 2.2388C7.17471 2.23289 7.14307 2.19166 7.149 2.14676L7.20033 1.75685C7.20623 1.71192 7.24741 1.68044 7.29237 1.68623C7.33727 1.69214 7.36891 1.73337 7.36298 1.77827L7.31166 2.16818C7.30624 2.20945 7.27099 2.2395 7.23044 2.2395Z" fill="white"/>
|
61
|
-
<path d="M10.5478 5.58451C10.5116 5.58451 10.4784 5.56032 10.4686 5.52369C10.4569 5.47993 10.4829 5.43493 10.5266 5.42321L11.2868 5.21961C11.3305 5.20789 11.3755 5.23388 11.3872 5.27762C11.399 5.32137 11.373 5.36637 11.3292 5.37809L10.5691 5.58169C10.562 5.58357 10.5548 5.58451 10.5478 5.58451Z" fill="white"/>
|
62
|
-
<path d="M10.1453 4.61122C10.1169 4.61122 10.0893 4.59652 10.0742 4.5702C10.0515 4.53097 10.0649 4.48081 10.1042 4.45815L10.7856 4.0647C10.8248 4.04209 10.875 4.05547 10.8976 4.09473C10.9203 4.13396 10.9069 4.18412 10.8676 4.20678L10.1862 4.60023C10.1733 4.60768 10.1592 4.61122 10.1453 4.61122Z" fill="white"/>
|
63
|
-
<path d="M8.66889 3.13554C8.65497 3.13554 8.64086 3.132 8.62795 3.12455C8.58871 3.10189 8.57526 3.05173 8.59792 3.0125L8.99135 2.33105C9.01403 2.29182 9.06421 2.27841 9.1034 2.30103C9.14263 2.32369 9.15609 2.37385 9.13342 2.41308L8.74 3.09453C8.72481 3.12082 8.69723 3.13554 8.66889 3.13554Z" fill="white"/>
|
64
|
-
<path d="M7.69642 2.73282C7.68939 2.73282 7.68226 2.7319 7.67516 2.73001C7.6314 2.71829 7.60541 2.67331 7.61713 2.62953L7.82076 1.8694C7.83247 1.82567 7.87754 1.7997 7.92121 1.8114C7.96497 1.82312 7.99096 1.86809 7.97924 1.91187L7.77561 2.672C7.76579 2.70865 7.73265 2.73282 7.69642 2.73282Z" fill="white"/>
|
65
|
-
<path d="M6.65259 2.59548C6.60728 2.59548 6.57056 2.55876 6.57056 2.51345V1.72656C6.57056 1.68126 6.60728 1.64453 6.65259 1.64453C6.69789 1.64453 6.73462 1.68126 6.73462 1.72656V2.51345C6.73462 2.55876 6.69789 2.59548 6.65259 2.59548Z" fill="white"/>
|
66
|
-
</g>
|
67
|
-
<path d="M10.1133 3.08594L5.957 5.85105L6.6526 6.54665L10.1133 3.08594Z" fill="#F4413D"/>
|
68
|
-
<path d="M10.1133 3.08594L6.65259 6.54665L7.34819 7.24225L10.1133 3.08594Z" fill="#CC2B2B"/>
|
69
|
-
<path d="M5.95697 5.85059L3.19186 10.0069L6.65258 6.54619L5.95697 5.85059Z" fill="white"/>
|
70
|
-
<path d="M3.19186 10.0066L7.34818 7.2415L6.65258 6.5459L3.19186 10.0066Z" fill="#D8D8D8"/>
|
71
|
-
</g>
|
72
|
-
<defs>
|
73
|
-
<linearGradient id="paint0_linear_167_6598" x1="6.6526" y1="12.4477" x2="6.6526" y2="0.644531" gradientUnits="userSpaceOnUse">
|
74
|
-
<stop stop-color="#F2F2F2"/>
|
75
|
-
<stop offset="1" stop-color="white"/>
|
76
|
-
</linearGradient>
|
77
|
-
<linearGradient id="paint1_linear_167_6598" x1="6.65258" y1="12.4478" x2="6.65258" y2="0.644531" gradientUnits="userSpaceOnUse">
|
78
|
-
<stop/>
|
79
|
-
<stop offset="0.36" stop-opacity="0"/>
|
80
|
-
</linearGradient>
|
81
|
-
<linearGradient id="paint2_linear_167_6598" x1="6.65259" y1="11.8572" x2="6.65259" y2="1.23438" gradientUnits="userSpaceOnUse">
|
82
|
-
<stop stop-color="#3871E9"/>
|
83
|
-
<stop offset="1" stop-color="#61C5F6"/>
|
84
|
-
</linearGradient>
|
85
|
-
<linearGradient id="paint3_linear_167_6598" x1="6.6526" y1="11.8573" x2="6.6526" y2="1.23438" gradientUnits="userSpaceOnUse">
|
86
|
-
<stop/>
|
87
|
-
<stop offset="0.36" stop-opacity="0"/>
|
88
|
-
</linearGradient>
|
89
|
-
<clipPath id="clip0_167_6598">
|
90
|
-
<rect width="12" height="12" fill="white" transform="translate(0.652588 0.644531)"/>
|
91
|
-
</clipPath>
|
92
|
-
</defs>
|
93
|
-
</svg>
|
1
|
+
<svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<g clip-path="url(#clip0_167_6598)">
|
3
|
+
<g opacity="0.08">
|
4
|
+
<path d="M6.65258 12.6442C9.80332 12.6442 12.3575 10.09 12.3575 6.9393C12.3575 3.78856 9.80332 1.23438 6.65258 1.23438C3.50184 1.23438 0.947662 3.78856 0.947662 6.9393C0.947662 10.09 3.50184 12.6442 6.65258 12.6442Z" fill="black"/>
|
5
|
+
</g>
|
6
|
+
<path d="M6.6526 12.4477C9.91194 12.4477 12.5542 9.80544 12.5542 6.54609C12.5542 3.28675 9.91194 0.644531 6.6526 0.644531C3.39326 0.644531 0.751038 3.28675 0.751038 6.54609C0.751038 9.80544 3.39326 12.4477 6.6526 12.4477Z" fill="url(#paint0_linear_167_6598)"/>
|
7
|
+
<g opacity="0.08">
|
8
|
+
<path d="M6.65258 0.644531C3.3931 0.644531 0.750946 3.28669 0.750946 6.54616C0.750946 9.80564 3.3931 12.4478 6.65258 12.4478C9.91206 12.4478 12.5542 9.80567 12.5542 6.54619C12.5542 3.28671 9.91206 0.644531 6.65258 0.644531ZM6.65258 12.0544C3.61541 12.0544 1.14439 9.58336 1.14439 6.54619C1.14439 3.50902 3.61541 1.03798 6.65258 1.03798C9.68975 1.03798 12.1608 3.50899 12.1608 6.54616C12.1608 9.58334 9.68975 12.0544 6.65258 12.0544Z" fill="url(#paint1_linear_167_6598)"/>
|
9
|
+
</g>
|
10
|
+
<g opacity="0.16">
|
11
|
+
<path d="M6.65258 0.644531C3.3931 0.644531 0.750946 3.28669 0.750946 6.54616C0.750946 9.80564 3.3931 12.4478 6.65258 12.4478C9.91206 12.4478 12.5542 9.80567 12.5542 6.54619C12.5542 3.28671 9.91206 0.644531 6.65258 0.644531ZM6.65258 12.2511C3.5019 12.2511 0.947657 9.69687 0.947657 6.54616C0.947657 3.39546 3.5019 0.841242 6.65258 0.841242C9.80326 0.841242 12.3575 3.39546 12.3575 6.54616C12.3575 9.69687 9.80326 12.2511 6.65258 12.2511Z" fill="black"/>
|
12
|
+
</g>
|
13
|
+
<path d="M6.65259 11.8572C9.586 11.8572 11.964 9.47919 11.964 6.54578C11.964 3.61237 9.586 1.23438 6.65259 1.23438C3.71918 1.23438 1.34119 3.61237 1.34119 6.54578C1.34119 9.47919 3.71918 11.8572 6.65259 11.8572Z" fill="url(#paint2_linear_167_6598)"/>
|
14
|
+
<g opacity="0.16">
|
15
|
+
<path d="M6.6526 1.23438C3.71909 1.23438 1.34113 3.61234 1.34113 6.54585C1.34113 9.47936 3.71909 11.8573 6.6526 11.8573C9.58611 11.8573 11.9641 9.47936 11.9641 6.54585C11.9641 3.61234 9.58611 1.23438 6.6526 1.23438ZM6.6526 11.6606C3.82789 11.6606 1.53786 9.37059 1.53786 6.54587C1.53786 3.72116 3.82789 1.43111 6.6526 1.43111C9.47731 1.43111 11.7673 3.72114 11.7673 6.54585C11.7673 9.37056 9.47731 11.6606 6.6526 11.6606Z" fill="url(#paint3_linear_167_6598)"/>
|
16
|
+
</g>
|
17
|
+
<g opacity="0.36">
|
18
|
+
<path d="M6.65259 2.59548C6.60728 2.59548 6.57056 2.55876 6.57056 2.51345V1.72656C6.57056 1.68126 6.60728 1.64453 6.65259 1.64453C6.69789 1.64453 6.73462 1.68126 6.73462 1.72656V2.51345C6.73462 2.55876 6.69789 2.59548 6.65259 2.59548Z" fill="white"/>
|
19
|
+
<path d="M6.0747 2.2395C6.03415 2.2395 5.99891 2.20946 5.99347 2.16818L5.94212 1.77828C5.93621 1.73335 5.96783 1.69214 6.01273 1.68624C6.05755 1.68042 6.09887 1.71195 6.10477 1.75685L6.15612 2.14676C6.16203 2.19169 6.13041 2.23289 6.08551 2.2388C6.0819 2.23927 6.07829 2.2395 6.0747 2.2395Z" fill="white"/>
|
20
|
+
<path d="M4.95885 2.53839C4.92664 2.53839 4.89613 2.51934 4.88303 2.48774L4.73235 2.12421C4.715 2.08235 4.73485 2.03437 4.77671 2.017C4.81862 1.99968 4.86657 2.01953 4.88392 2.06137L5.0346 2.42491C5.05194 2.46677 5.03209 2.51474 4.99023 2.53211C4.97994 2.53638 4.9693 2.53839 4.95885 2.53839Z" fill="white"/>
|
21
|
+
<path d="M3.95817 3.11686C3.93354 3.11686 3.90919 3.10582 3.89304 3.08477L3.65344 2.77258C3.62585 2.73666 3.63262 2.68516 3.66858 2.65758C3.70451 2.63001 3.75602 2.63676 3.78359 2.67272L4.02319 2.98491C4.05077 3.02083 4.044 3.07233 4.00805 3.09991C3.99316 3.11135 3.97559 3.11686 3.95817 3.11686Z" fill="white"/>
|
22
|
+
<path d="M3.14105 3.93296C3.12361 3.93296 3.10605 3.92743 3.09117 3.91599L2.77896 3.67639C2.74301 3.6488 2.73623 3.59731 2.76382 3.56138C2.7914 3.52545 2.84292 3.51868 2.87883 3.54624L3.19104 3.78584C3.22699 3.81343 3.23376 3.86492 3.20618 3.90085C3.19003 3.92192 3.16568 3.93296 3.14105 3.93296Z" fill="white"/>
|
23
|
+
<path d="M2.5633 4.93395C2.55285 4.93395 2.54221 4.93194 2.53192 4.92767L2.16838 4.77699C2.12652 4.75965 2.10667 4.71165 2.12401 4.66979C2.14135 4.62795 2.18933 4.60805 2.23121 4.62542L2.59475 4.7761C2.63661 4.79344 2.65646 4.84144 2.63912 4.8833C2.62602 4.91487 2.59548 4.93395 2.5633 4.93395Z" fill="white"/>
|
24
|
+
<path d="M2.26425 6.05034C2.26069 6.05034 2.25708 6.05011 2.25344 6.04964L1.86354 5.99829C1.81861 5.99238 1.78699 5.95116 1.79292 5.90625C1.79883 5.86134 1.84003 5.82991 1.88496 5.83563L2.27487 5.88698C2.3198 5.89289 2.35141 5.93412 2.34548 5.97902C2.34005 6.0203 2.30477 6.05034 2.26425 6.05034Z" fill="white"/>
|
25
|
+
<path d="M5.60871 2.73282C5.5725 2.73282 5.53935 2.70866 5.52953 2.672L5.32593 1.91188C5.31421 1.86812 5.34018 1.82312 5.38394 1.8114C5.42767 1.7997 5.47267 1.82563 5.48442 1.86941L5.68802 2.62953C5.69974 2.67329 5.67377 2.71829 5.63001 2.73001C5.62289 2.73191 5.61574 2.73282 5.60871 2.73282Z" fill="white"/>
|
26
|
+
<path d="M4.63628 3.13555C4.60792 3.13555 4.58036 3.12085 4.56515 3.09453L4.1717 2.41309C4.14906 2.37385 4.16249 2.3237 4.20173 2.30103C4.24096 2.27842 4.29112 2.2918 4.31378 2.33106L4.70723 3.0125C4.72987 3.05174 4.71644 3.10189 4.6772 3.12456C4.66429 3.13199 4.65018 3.13555 4.63628 3.13555Z" fill="white"/>
|
27
|
+
<path d="M3.80091 3.77605C3.77991 3.77605 3.75891 3.76803 3.7429 3.75202L3.18657 3.19571C3.15453 3.16367 3.15453 3.11173 3.18657 3.07969C3.2186 3.04765 3.27054 3.04765 3.30258 3.07969L3.85892 3.63601C3.89096 3.66804 3.89096 3.71998 3.85892 3.75202C3.84289 3.76803 3.82189 3.77605 3.80091 3.77605Z" fill="white"/>
|
28
|
+
<path d="M3.15991 4.61122C3.14599 4.61122 3.1319 4.60768 3.11896 4.60022L2.43752 4.20678C2.39828 4.18411 2.38483 4.13396 2.40749 4.09472C2.43016 4.05549 2.48034 4.04208 2.51955 4.0647L3.20099 4.45814C3.24023 4.48081 3.25368 4.53097 3.23102 4.5702C3.21585 4.59652 3.18827 4.61122 3.15991 4.61122Z" fill="white"/>
|
29
|
+
<path d="M2.75733 5.5845C2.75032 5.5845 2.74317 5.58358 2.73605 5.58169L1.97592 5.37808C1.93216 5.36637 1.90619 5.32139 1.91791 5.27761C1.92963 5.23387 1.97454 5.2079 2.01839 5.2196L2.77851 5.4232C2.82227 5.43492 2.84824 5.4799 2.83652 5.52368C2.8267 5.56031 2.79356 5.5845 2.75733 5.5845Z" fill="white"/>
|
30
|
+
<path d="M2.61981 6.62793H1.83292C1.78761 6.62793 1.75089 6.5912 1.75089 6.5459C1.75089 6.50059 1.78761 6.46387 1.83292 6.46387H2.61981C2.66511 6.46387 2.70184 6.50059 2.70184 6.5459C2.70184 6.5912 2.66511 6.62793 2.61981 6.62793Z" fill="white"/>
|
31
|
+
<path d="M1.87412 7.25738C1.83357 7.25738 1.79832 7.22736 1.79288 7.18606C1.78698 7.14113 1.8186 7.09993 1.8635 7.09402L2.25341 7.04269C2.29843 7.03683 2.33954 7.06838 2.34545 7.11331C2.35135 7.15824 2.31974 7.19944 2.27483 7.20535L1.88492 7.25668C1.88129 7.25715 1.87768 7.25738 1.87412 7.25738Z" fill="white"/>
|
32
|
+
<path d="M2.19983 8.47299C2.16763 8.47299 2.13711 8.45394 2.12401 8.42234C2.10667 8.38051 2.12652 8.33251 2.16838 8.31516L2.53192 8.16448C2.57382 8.14712 2.62178 8.16701 2.63912 8.20887C2.65646 8.25071 2.63661 8.29871 2.59475 8.31605L2.23121 8.46673C2.22095 8.47097 2.21028 8.47299 2.19983 8.47299Z" fill="white"/>
|
33
|
+
<path d="M2.82895 9.56188C2.80432 9.56188 2.77997 9.55084 2.76382 9.52979C2.73623 9.49386 2.74301 9.44237 2.77896 9.41478L3.09117 9.17518C3.12712 9.14757 3.17862 9.15435 3.20618 9.19032C3.23376 9.22625 3.22699 9.27775 3.19104 9.30533L2.87883 9.54493C2.86394 9.55637 2.84639 9.56188 2.82895 9.56188Z" fill="white"/>
|
34
|
+
<path d="M3.71845 10.4518C3.70101 10.4518 3.68346 10.4463 3.66858 10.4349C3.63262 10.4073 3.62585 10.3558 3.65344 10.3199L3.89304 10.0077C3.92062 9.97175 3.97214 9.96496 4.00805 9.99254C4.044 10.0201 4.05077 10.0716 4.02319 10.1075L3.78359 10.4197C3.76741 10.4408 3.74306 10.4518 3.71845 10.4518Z" fill="white"/>
|
35
|
+
<path d="M4.8081 11.0814C4.79764 11.0814 4.787 11.0794 4.77671 11.0751C4.73485 11.0578 4.715 11.0098 4.73235 10.9679L4.88303 10.6044C4.90037 10.5625 4.94832 10.5426 4.99023 10.56C5.03209 10.5773 5.05194 10.6253 5.0346 10.6672L4.88392 11.0307C4.87082 11.0623 4.84028 11.0814 4.8081 11.0814Z" fill="white"/>
|
36
|
+
<path d="M6.02357 11.4065C6.02001 11.4065 6.0164 11.4063 6.01277 11.4058C5.96784 11.3999 5.93622 11.3587 5.94215 11.3138L5.9935 10.9239C5.99943 10.8789 6.04064 10.8474 6.08554 10.8532C6.13047 10.8592 6.16209 10.9004 6.15616 10.9453L6.10481 11.3352C6.09937 11.3765 6.06412 11.4065 6.02357 11.4065Z" fill="white"/>
|
37
|
+
<path d="M1.99711 7.87552C1.96087 7.87552 1.92773 7.85136 1.91791 7.81468C1.90619 7.77092 1.93216 7.72594 1.97592 7.71423L2.73605 7.5106C2.7799 7.49895 2.8248 7.52485 2.83652 7.56863C2.84824 7.61239 2.82227 7.65737 2.77851 7.66909L2.01839 7.87271C2.01129 7.87461 2.00414 7.87552 1.99711 7.87552Z" fill="white"/>
|
38
|
+
<path d="M2.47862 9.03803C2.45026 9.03803 2.42269 9.02331 2.40748 8.99699C2.38484 8.95775 2.39827 8.9076 2.43751 8.88493L3.11895 8.49149C3.15821 8.4688 3.20837 8.48228 3.23101 8.52151C3.25365 8.56075 3.24022 8.6109 3.20098 8.63357L2.51954 9.02701C2.50662 9.03449 2.49254 9.03803 2.47862 9.03803Z" fill="white"/>
|
39
|
+
<path d="M4.24265 10.8026C4.22873 10.8026 4.21465 10.799 4.20171 10.7916C4.16247 10.7689 4.14902 10.7187 4.17168 10.6795L4.56513 9.99806C4.58779 9.9588 4.63797 9.94539 4.67718 9.96804C4.71642 9.9907 4.72987 10.0409 4.70721 10.0801L4.31376 10.7615C4.29858 10.7879 4.27099 10.8026 4.24265 10.8026Z" fill="white"/>
|
40
|
+
<path d="M5.40522 11.2836C5.39819 11.2836 5.39107 11.2827 5.38394 11.2808C5.34018 11.2691 5.31421 11.2241 5.32593 11.1804L5.52953 10.4202C5.54125 10.3765 5.58616 10.3505 5.63001 10.3622C5.67377 10.3739 5.69974 10.4189 5.68802 10.4626L5.48442 11.2228C5.4746 11.2594 5.44146 11.2836 5.40522 11.2836Z" fill="white"/>
|
41
|
+
<path d="M6.65259 11.448C6.60728 11.448 6.57056 11.4113 6.57056 11.366V10.5791C6.57056 10.5338 6.60728 10.4971 6.65259 10.4971C6.69789 10.4971 6.73462 10.5338 6.73462 10.5791V11.366C6.73462 11.4113 6.69789 11.448 6.65259 11.448Z" fill="white"/>
|
42
|
+
<path d="M7.28157 11.4065C7.24105 11.4065 7.2058 11.3765 7.20036 11.3352L7.14903 10.9453C7.1431 10.9004 7.17474 10.8592 7.21965 10.8532C7.26467 10.8473 7.30578 10.8789 7.31169 10.9239L7.36301 11.3138C7.36894 11.3587 7.3373 11.3999 7.2924 11.4058C7.28876 11.4063 7.28513 11.4065 7.28157 11.4065Z" fill="white"/>
|
43
|
+
<path d="M8.49705 11.0814C8.46488 11.0814 8.43434 11.0623 8.42126 11.0307L8.27055 10.6672C8.25321 10.6253 8.27306 10.5773 8.31495 10.56C8.35666 10.5427 8.40478 10.5625 8.42213 10.6044L8.57283 10.9679C8.59017 11.0098 8.57032 11.0578 8.52844 11.0751C8.5182 11.0793 8.50755 11.0814 8.49705 11.0814Z" fill="white"/>
|
44
|
+
<path d="M9.58673 10.4518C9.5621 10.4518 9.53775 10.4408 9.5216 10.4198L9.28198 10.1076C9.25439 10.0716 9.26116 10.0201 9.29712 9.99256C9.333 9.96497 9.38452 9.97172 9.41213 10.0077L9.65175 10.3199C9.67934 10.3558 9.67256 10.4073 9.63661 10.4349C9.62175 10.4463 9.60417 10.4518 9.58673 10.4518Z" fill="white"/>
|
45
|
+
<path d="M10.4762 9.5619C10.4588 9.5619 10.4412 9.5564 10.4263 9.54494L10.1141 9.30533C10.0782 9.27775 10.0714 9.22626 10.099 9.19033C10.1265 9.15437 10.178 9.14755 10.214 9.17519L10.5262 9.41479C10.5621 9.44237 10.5689 9.49387 10.5413 9.52979C10.5252 9.55089 10.5008 9.5619 10.4762 9.5619Z" fill="white"/>
|
46
|
+
<path d="M11.1053 8.47299C11.0949 8.47299 11.0842 8.47097 11.074 8.46671L10.7104 8.31603C10.6686 8.29868 10.6487 8.25068 10.666 8.20885C10.6834 8.16696 10.7314 8.14716 10.7732 8.16446L11.1367 8.31514C11.1786 8.33248 11.1985 8.38048 11.1811 8.42232C11.1681 8.45393 11.1375 8.47299 11.1053 8.47299Z" fill="white"/>
|
47
|
+
<path d="M11.4311 7.2574C11.4275 7.2574 11.4239 7.25716 11.4202 7.2567L11.0303 7.20537C10.9854 7.19946 10.9538 7.15826 10.9597 7.11333C10.9656 7.06845 11.0069 7.03676 11.0517 7.04271L11.4416 7.09404C11.4866 7.09995 11.5182 7.14115 11.5123 7.18608C11.5068 7.22733 11.4716 7.2574 11.4311 7.2574Z" fill="white"/>
|
48
|
+
<path d="M7.89995 11.2836C7.86372 11.2836 7.83058 11.2595 7.82076 11.2228L7.61713 10.4626C7.60541 10.4189 7.63138 10.3739 7.67516 10.3622C7.7188 10.3505 7.7639 10.3764 7.77562 10.4202L7.97924 11.1804C7.99096 11.2241 7.96499 11.2691 7.92121 11.2808C7.91411 11.2827 7.90698 11.2836 7.89995 11.2836Z" fill="white"/>
|
49
|
+
<path d="M9.06245 10.8026C9.03412 10.8026 9.00653 10.7879 8.99135 10.7615L8.59792 10.0801C8.57526 10.0409 8.58871 9.9907 8.62795 9.96804C8.66713 9.94539 8.71734 9.9588 8.74 9.99806L9.13342 10.6795C9.15609 10.7187 9.14263 10.7689 9.1034 10.7916C9.09051 10.799 9.07638 10.8026 9.06245 10.8026Z" fill="white"/>
|
50
|
+
<path d="M10.0606 10.0358C10.0396 10.0358 10.0186 10.0278 10.0026 10.0118L9.44624 9.45545C9.4142 9.42344 9.4142 9.37147 9.44624 9.33946C9.47823 9.30742 9.53019 9.30742 9.56223 9.33946L10.1186 9.89577C10.1506 9.92779 10.1506 9.97975 10.1186 10.0118C10.1026 10.0278 10.0816 10.0358 10.0606 10.0358Z" fill="white"/>
|
51
|
+
<path d="M10.8265 9.03801C10.8126 9.03801 10.7985 9.03447 10.7856 9.027L10.1042 8.63355C10.0649 8.61089 10.0515 8.56073 10.0742 8.5215C10.0968 8.48224 10.147 8.46883 10.1862 8.49147L10.8676 8.88492C10.9069 8.90758 10.9203 8.95774 10.8976 8.99697C10.8825 9.02329 10.8549 9.03801 10.8265 9.03801Z" fill="white"/>
|
52
|
+
<path d="M11.308 7.87554C11.301 7.87554 11.2939 7.87463 11.2868 7.87273L10.5266 7.6691C10.4829 7.65738 10.4569 7.61241 10.4686 7.56865C10.4803 7.52487 10.5254 7.49892 10.5691 7.51062L11.3292 7.71424C11.373 7.72596 11.399 7.77094 11.3872 7.8147C11.3774 7.85137 11.3443 7.87554 11.308 7.87554Z" fill="white"/>
|
53
|
+
<path d="M11.4723 6.62793H10.6854C10.6401 6.62793 10.6033 6.5912 10.6033 6.5459C10.6033 6.50059 10.6401 6.46387 10.6854 6.46387H11.4723C11.5176 6.46387 11.5543 6.50059 11.5543 6.5459C11.5543 6.5912 11.5175 6.62793 11.4723 6.62793Z" fill="white"/>
|
54
|
+
<path d="M11.4723 6.62793H10.6854C10.6401 6.62793 10.6033 6.5912 10.6033 6.5459C10.6033 6.50059 10.6401 6.46387 10.6854 6.46387H11.4723C11.5176 6.46387 11.5543 6.50059 11.5543 6.5459C11.5543 6.5912 11.5175 6.62793 11.4723 6.62793Z" fill="white"/>
|
55
|
+
<path d="M11.0409 6.05035C11.0004 6.05035 10.9651 6.02031 10.9597 5.97903C10.9538 5.9341 10.9854 5.8929 11.0303 5.88699L11.4202 5.83564C11.4651 5.82988 11.5064 5.86135 11.5123 5.90626C11.5182 5.95119 11.4866 5.99239 11.4416 5.9983L11.0517 6.04965C11.0481 6.05012 11.0445 6.05035 11.0409 6.05035Z" fill="white"/>
|
56
|
+
<path d="M10.7419 4.93393C10.7097 4.93393 10.6791 4.91487 10.6661 4.88328C10.6487 4.84142 10.6686 4.79344 10.7105 4.77607L11.074 4.62539C11.1157 4.6081 11.1638 4.6279 11.1812 4.66976C11.1985 4.71162 11.1787 4.7596 11.1368 4.77696L10.7732 4.92764C10.763 4.93191 10.7523 4.93393 10.7419 4.93393Z" fill="white"/>
|
57
|
+
<path d="M10.1641 3.93296C10.1395 3.93296 10.1151 3.92193 10.099 3.90088C10.0714 3.86495 10.0782 3.81346 10.1141 3.78587L10.4263 3.54627C10.4623 3.51866 10.5137 3.52546 10.5413 3.56141C10.5689 3.59734 10.5621 3.64883 10.5262 3.67642L10.214 3.91602C10.1991 3.92746 10.1815 3.93296 10.1641 3.93296Z" fill="white"/>
|
58
|
+
<path d="M9.34701 3.1169C9.32959 3.1169 9.31204 3.11137 9.29713 3.09993C9.2612 3.07235 9.25443 3.02085 9.28199 2.98493L9.52161 2.67274C9.5492 2.63678 9.60062 2.62999 9.63662 2.6576C9.67255 2.68518 9.67933 2.73668 9.65176 2.7726L9.41214 3.08479C9.39599 3.10586 9.37164 3.1169 9.34701 3.1169Z" fill="white"/>
|
59
|
+
<path d="M8.34633 2.5384C8.33585 2.5384 8.32521 2.53638 8.31494 2.53211C8.27308 2.51477 8.25321 2.46677 8.27055 2.42491L8.42125 2.06137C8.4386 2.01951 8.48672 1.99969 8.52843 2.01701C8.57029 2.03435 8.59017 2.08235 8.57283 2.12421L8.42212 2.48775C8.40902 2.51932 8.3785 2.5384 8.34633 2.5384Z" fill="white"/>
|
60
|
+
<path d="M7.23044 2.2395C7.22688 2.2395 7.22325 2.23926 7.21962 2.2388C7.17471 2.23289 7.14307 2.19166 7.149 2.14676L7.20033 1.75685C7.20623 1.71192 7.24741 1.68044 7.29237 1.68623C7.33727 1.69214 7.36891 1.73337 7.36298 1.77827L7.31166 2.16818C7.30624 2.20945 7.27099 2.2395 7.23044 2.2395Z" fill="white"/>
|
61
|
+
<path d="M10.5478 5.58451C10.5116 5.58451 10.4784 5.56032 10.4686 5.52369C10.4569 5.47993 10.4829 5.43493 10.5266 5.42321L11.2868 5.21961C11.3305 5.20789 11.3755 5.23388 11.3872 5.27762C11.399 5.32137 11.373 5.36637 11.3292 5.37809L10.5691 5.58169C10.562 5.58357 10.5548 5.58451 10.5478 5.58451Z" fill="white"/>
|
62
|
+
<path d="M10.1453 4.61122C10.1169 4.61122 10.0893 4.59652 10.0742 4.5702C10.0515 4.53097 10.0649 4.48081 10.1042 4.45815L10.7856 4.0647C10.8248 4.04209 10.875 4.05547 10.8976 4.09473C10.9203 4.13396 10.9069 4.18412 10.8676 4.20678L10.1862 4.60023C10.1733 4.60768 10.1592 4.61122 10.1453 4.61122Z" fill="white"/>
|
63
|
+
<path d="M8.66889 3.13554C8.65497 3.13554 8.64086 3.132 8.62795 3.12455C8.58871 3.10189 8.57526 3.05173 8.59792 3.0125L8.99135 2.33105C9.01403 2.29182 9.06421 2.27841 9.1034 2.30103C9.14263 2.32369 9.15609 2.37385 9.13342 2.41308L8.74 3.09453C8.72481 3.12082 8.69723 3.13554 8.66889 3.13554Z" fill="white"/>
|
64
|
+
<path d="M7.69642 2.73282C7.68939 2.73282 7.68226 2.7319 7.67516 2.73001C7.6314 2.71829 7.60541 2.67331 7.61713 2.62953L7.82076 1.8694C7.83247 1.82567 7.87754 1.7997 7.92121 1.8114C7.96497 1.82312 7.99096 1.86809 7.97924 1.91187L7.77561 2.672C7.76579 2.70865 7.73265 2.73282 7.69642 2.73282Z" fill="white"/>
|
65
|
+
<path d="M6.65259 2.59548C6.60728 2.59548 6.57056 2.55876 6.57056 2.51345V1.72656C6.57056 1.68126 6.60728 1.64453 6.65259 1.64453C6.69789 1.64453 6.73462 1.68126 6.73462 1.72656V2.51345C6.73462 2.55876 6.69789 2.59548 6.65259 2.59548Z" fill="white"/>
|
66
|
+
</g>
|
67
|
+
<path d="M10.1133 3.08594L5.957 5.85105L6.6526 6.54665L10.1133 3.08594Z" fill="#F4413D"/>
|
68
|
+
<path d="M10.1133 3.08594L6.65259 6.54665L7.34819 7.24225L10.1133 3.08594Z" fill="#CC2B2B"/>
|
69
|
+
<path d="M5.95697 5.85059L3.19186 10.0069L6.65258 6.54619L5.95697 5.85059Z" fill="white"/>
|
70
|
+
<path d="M3.19186 10.0066L7.34818 7.2415L6.65258 6.5459L3.19186 10.0066Z" fill="#D8D8D8"/>
|
71
|
+
</g>
|
72
|
+
<defs>
|
73
|
+
<linearGradient id="paint0_linear_167_6598" x1="6.6526" y1="12.4477" x2="6.6526" y2="0.644531" gradientUnits="userSpaceOnUse">
|
74
|
+
<stop stop-color="#F2F2F2"/>
|
75
|
+
<stop offset="1" stop-color="white"/>
|
76
|
+
</linearGradient>
|
77
|
+
<linearGradient id="paint1_linear_167_6598" x1="6.65258" y1="12.4478" x2="6.65258" y2="0.644531" gradientUnits="userSpaceOnUse">
|
78
|
+
<stop/>
|
79
|
+
<stop offset="0.36" stop-opacity="0"/>
|
80
|
+
</linearGradient>
|
81
|
+
<linearGradient id="paint2_linear_167_6598" x1="6.65259" y1="11.8572" x2="6.65259" y2="1.23438" gradientUnits="userSpaceOnUse">
|
82
|
+
<stop stop-color="#3871E9"/>
|
83
|
+
<stop offset="1" stop-color="#61C5F6"/>
|
84
|
+
</linearGradient>
|
85
|
+
<linearGradient id="paint3_linear_167_6598" x1="6.6526" y1="11.8573" x2="6.6526" y2="1.23438" gradientUnits="userSpaceOnUse">
|
86
|
+
<stop/>
|
87
|
+
<stop offset="0.36" stop-opacity="0"/>
|
88
|
+
</linearGradient>
|
89
|
+
<clipPath id="clip0_167_6598">
|
90
|
+
<rect width="12" height="12" fill="white" transform="translate(0.652588 0.644531)"/>
|
91
|
+
</clipPath>
|
92
|
+
</defs>
|
93
|
+
</svg>
|
@@ -1,12 +1,12 @@
|
|
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_4989_1609)">
|
3
|
-
<path d="M8 16C12.4183 16 16 12.4183 16 8C16 3.58172 12.4183 0 8 0C3.58172 0 0 3.58172 0 8C0 12.4183 3.58172 16 8 16Z" fill="#2196F3"/>
|
4
|
-
<path d="M7 7L3 13L9 9L7 7Z" fill="#FAFAFA"/>
|
5
|
-
<path d="M7 7L9 9L13 3L7 7Z" fill="#F44336"/>
|
6
|
-
</g>
|
7
|
-
<defs>
|
8
|
-
<clipPath id="clip0_4989_1609">
|
9
|
-
<rect width="16" height="16" fill="white"/>
|
10
|
-
</clipPath>
|
11
|
-
</defs>
|
12
|
-
</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_4989_1609)">
|
3
|
+
<path d="M8 16C12.4183 16 16 12.4183 16 8C16 3.58172 12.4183 0 8 0C3.58172 0 0 3.58172 0 8C0 12.4183 3.58172 16 8 16Z" fill="#2196F3"/>
|
4
|
+
<path d="M7 7L3 13L9 9L7 7Z" fill="#FAFAFA"/>
|
5
|
+
<path d="M7 7L9 9L13 3L7 7Z" fill="#F44336"/>
|
6
|
+
</g>
|
7
|
+
<defs>
|
8
|
+
<clipPath id="clip0_4989_1609">
|
9
|
+
<rect width="16" height="16" fill="white"/>
|
10
|
+
</clipPath>
|
11
|
+
</defs>
|
12
|
+
</svg>
|