@ssa-ui-kit/widgets 0.0.13-alpha → 0.0.15-alpha
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/.babelrc.js +4 -4
- package/.env +7 -7
- package/.storybook/main.ts +42 -42
- package/.storybook/preview.tsx +21 -21
- package/.storybook/style.css +31 -31
- package/customTest.tsx +35 -35
- package/dist/components/AccountBalance/WithLink.d.ts +2 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/jest-setup.ts +17 -17
- package/lostpixel.config.ts +29 -29
- package/package.json +2 -2
- package/playwright.config.ts +7 -7
- package/src/components/AccountBalance/AccountBalance.spec.tsx +82 -82
- package/src/components/AccountBalance/AccountBalance.stories.tsx +35 -35
- package/src/components/AccountBalance/AccountBalance.tsx +63 -63
- package/src/components/AccountBalance/BalancePieChart.tsx +77 -77
- package/src/components/AccountBalance/BalancePieChartTitle.tsx +42 -42
- package/src/components/AccountBalance/WithLink.tsx +29 -26
- package/src/components/AccountBalance/index.ts +5 -5
- package/src/components/AccountBalance/stories/fixtures.ts +26 -26
- package/src/components/AccountBalance/types.ts +31 -31
- package/src/components/Activity/Activity.spec.tsx +79 -79
- package/src/components/Activity/Activity.stories.tsx +15 -15
- package/src/components/Activity/Activity.tsx +83 -83
- package/src/components/Activity/ActivityItem.tsx +38 -38
- package/src/components/Activity/index.tsx +2 -2
- package/src/components/Activity/mockActivityRequest.ts +106 -106
- package/src/components/Activity/styles.ts +12 -12
- package/src/components/Activity/types.ts +10 -10
- package/src/components/AddNewAccountCard/AddNewAccountCard.spec.tsx +39 -39
- package/src/components/AddNewAccountCard/AddNewAccountCard.stories.tsx +48 -48
- package/src/components/AddNewAccountCard/AddNewAccountCard.tsx +22 -22
- package/src/components/AddNewAccountCard/index.ts +2 -2
- package/src/components/AddNewAccountCard/styles.ts +29 -29
- package/src/components/AddNewAccountCard/types.ts +7 -7
- package/src/components/Bmi/Bmi.spec.tsx +68 -68
- package/src/components/Bmi/Bmi.stories.tsx +10 -10
- package/src/components/Bmi/Bmi.tsx +96 -96
- package/src/components/Bmi/BmiHeatbar.tsx +18 -18
- package/src/components/Bmi/BmiInfo.tsx +11 -11
- package/src/components/Bmi/BmiLabel.tsx +9 -9
- package/src/components/Bmi/BmiLabels.tsx +33 -33
- package/src/components/Bmi/BmiPointer.tsx +15 -15
- package/src/components/Bmi/index.tsx +2 -2
- package/src/components/Bmi/styles.ts +18 -18
- package/src/components/Bmi/types.ts +4 -4
- package/src/components/BotsTable/BotsTable.e2e.ts +77 -77
- package/src/components/BotsTable/BotsTable.spec.tsx +125 -125
- package/src/components/BotsTable/BotsTable.tsx +32 -32
- package/src/components/BotsTable/BotsTableCell.tsx +13 -13
- package/src/components/BotsTable/BotsTableHead.tsx +13 -13
- package/src/components/BotsTable/BotsTableRow.tsx +17 -17
- package/src/components/BotsTable/BotsTableWrapper.tsx +23 -23
- package/src/components/BotsTable/index.ts +5 -5
- package/src/components/BotsTable/stories/BotsTable/StoryComponent.tsx +59 -59
- package/src/components/BotsTable/stories/BotsTable/components/Actions/ActionIcon.tsx +11 -11
- package/src/components/BotsTable/stories/BotsTable/components/Actions/ActionItem.tsx +40 -40
- package/src/components/BotsTable/stories/BotsTable/components/Actions/ActionMore.tsx +89 -89
- package/src/components/BotsTable/stories/BotsTable/components/Actions/ActionRun.tsx +133 -133
- package/src/components/BotsTable/stories/BotsTable/components/Actions/Actions.tsx +13 -13
- package/src/components/BotsTable/stories/BotsTable/components/Actions/ActionsWrapper.tsx +21 -21
- package/src/components/BotsTable/stories/BotsTable/components/Actions/consts.tsx +118 -118
- package/src/components/BotsTable/stories/BotsTable/components/Actions/index.ts +6 -6
- package/src/components/BotsTable/stories/BotsTable/components/Exchange/Exchange.tsx +26 -26
- package/src/components/BotsTable/stories/BotsTable/components/Exchange/consts.tsx +157 -157
- package/src/components/BotsTable/stories/BotsTable/components/Exchange/index.ts +1 -1
- package/src/components/BotsTable/stories/BotsTable/components/Exchange/types.ts +6 -6
- package/src/components/BotsTable/stories/BotsTable/components/PNL.tsx +27 -27
- package/src/components/BotsTable/stories/BotsTable/components/ROI.tsx +25 -25
- package/src/components/BotsTable/stories/BotsTable/components/TableTag.tsx +22 -22
- package/src/components/BotsTable/stories/BotsTable/components/Trade/Trade.tsx +8 -8
- package/src/components/BotsTable/stories/BotsTable/components/Trade/consts.ts +14 -14
- package/src/components/BotsTable/stories/BotsTable/components/Trade/index.ts +1 -1
- package/src/components/BotsTable/stories/BotsTable/components/Trade/types.ts +5 -5
- package/src/components/BotsTable/stories/BotsTable/components/index.ts +6 -6
- package/src/components/BotsTable/stories/BotsTable/index.ts +1 -1
- package/src/components/BotsTable/stories/BotsTable/mockData.ts +84 -84
- package/src/components/BotsTable/stories/BotsTable.stories.tsx +39 -39
- package/src/components/BotsTable/stories/NoControlOrders/StoryComponent.tsx +35 -35
- package/src/components/BotsTable/stories/NoControlOrders/components/ActionMore.tsx +95 -95
- package/src/components/BotsTable/stories/NoControlOrders/components/Reason.tsx +11 -11
- package/src/components/BotsTable/stories/NoControlOrders/components/TableList.tsx +45 -45
- package/src/components/BotsTable/stories/NoControlOrders/components/TableRow.tsx +31 -31
- package/src/components/BotsTable/stories/NoControlOrders/components/index.ts +4 -4
- package/src/components/BotsTable/stories/NoControlOrders/mockData.ts +23 -23
- package/src/components/BotsTable/stories/NoControlOrders/types.ts +16 -16
- package/src/components/BotsTable/types.ts +31 -31
- package/src/components/Calories/Calories.spec.tsx +11 -11
- package/src/components/Calories/Calories.stories.tsx +26 -26
- package/src/components/Calories/Calories.tsx +54 -54
- package/src/components/Calories/index.tsx +2 -2
- package/src/components/Calories/innerContent.tsx +30 -30
- package/src/components/Calories/types.ts +4 -4
- package/src/components/CardList/CardList.spec.tsx +32 -32
- package/src/components/CardList/CardList.stories.tsx +37 -37
- package/src/components/CardList/CardList.tsx +37 -37
- package/src/components/CardList/index.ts +2 -2
- package/src/components/CardList/types.ts +10 -10
- package/src/components/CollapsibleNavBar/CollapsibleNavBar.e2e.ts +115 -115
- package/src/components/CollapsibleNavBar/CollapsibleNavBar.spec.tsx +50 -50
- package/src/components/CollapsibleNavBar/CollapsibleNavBar.tsx +67 -67
- package/src/components/CollapsibleNavBar/CollapsibleNavBarBase.ts +134 -134
- package/src/components/CollapsibleNavBar/CollapsibleNavBarItem.ts +28 -28
- package/src/components/CollapsibleNavBar/CollapsibleNavBarLink.ts +40 -40
- package/src/components/CollapsibleNavBar/CollapsibleNavBarList.ts +18 -18
- package/src/components/CollapsibleNavBar/CollapsibleNavBarWrapper.ts +24 -24
- package/src/components/CollapsibleNavBar/CollapsibleNavContentToggle.tsx +27 -27
- package/src/components/CollapsibleNavBar/CollapsibleNavToggle.tsx +49 -49
- package/src/components/CollapsibleNavBar/CollapsibleNavToggleWrapper.ts +16 -16
- package/src/components/CollapsibleNavBar/NavBarAccordionContent.tsx +49 -49
- package/src/components/CollapsibleNavBar/NavBarItemWithSubMenu.tsx +91 -91
- package/src/components/CollapsibleNavBar/NavBarItemWithoutSubMenu.tsx +26 -26
- package/src/components/CollapsibleNavBar/NavBarPopover.tsx +124 -124
- package/src/components/CollapsibleNavBar/TriggerIcon.tsx +33 -33
- package/src/components/CollapsibleNavBar/index.ts +2 -2
- package/src/components/CollapsibleNavBar/stories/CollapsibleNavBar.stories.tsx +53 -53
- package/src/components/CollapsibleNavBar/stories/Layout.tsx +53 -53
- package/src/components/CollapsibleNavBar/stories/Logo.tsx +12 -12
- package/src/components/CollapsibleNavBar/stories/StoryComponent.tsx +20 -20
- package/src/components/CollapsibleNavBar/stories/consts.ts +37 -37
- package/src/components/CollapsibleNavBar/stories/styles.ts +21 -21
- package/src/components/CollapsibleNavBar/styles.ts +91 -91
- package/src/components/CollapsibleNavBar/types.ts +16 -16
- package/src/components/ExchangeAccount/ExchangeAccount.spec.tsx +110 -110
- package/src/components/ExchangeAccount/ExchangeAccount.stories.tsx +90 -90
- package/src/components/ExchangeAccount/ExchangeAccount.tsx +73 -73
- package/src/components/ExchangeAccount/helpers.tsx +153 -153
- package/src/components/ExchangeAccount/index.ts +2 -2
- package/src/components/ExchangeAccount/styles.ts +133 -133
- package/src/components/ExchangeAccount/types.ts +12 -12
- package/src/components/ExchangeAccountKeys/ExchangeAccountKeys.spec.tsx +43 -43
- package/src/components/ExchangeAccountKeys/ExchangeAccountKeys.stories.tsx +14 -14
- package/src/components/ExchangeAccountKeys/ExchangeAccountKeys.tsx +73 -73
- package/src/components/ExchangeAccountKeys/helpers.ts +7 -7
- package/src/components/ExchangeAccountKeys/index.ts +2 -2
- package/src/components/ExchangeAccountKeys/stories/StoryComponent.tsx +33 -33
- package/src/components/ExchangeAccountKeys/styles.ts +87 -87
- package/src/components/ExchangeAccountKeys/types.ts +8 -8
- package/src/components/Filters/FilterBlockWrapper.tsx +11 -11
- package/src/components/Filters/Filters.e2e.ts +115 -115
- package/src/components/Filters/Filters.spec.tsx +47 -47
- package/src/components/Filters/Filters.tsx +87 -87
- package/src/components/Filters/FiltersBlock.tsx +77 -77
- package/src/components/Filters/FiltersContext.tsx +44 -44
- package/src/components/Filters/FiltersWrapper.tsx +34 -34
- package/src/components/Filters/hooks/useVisibility.ts +101 -101
- package/src/components/Filters/index.ts +1 -1
- package/src/components/Filters/stories/Filters.stories.tsx +24 -24
- package/src/components/Filters/stories/StoryComponent.tsx +19 -19
- package/src/components/Filters/stories/mockData.ts +421 -421
- package/src/components/Filters/types.ts +4 -4
- package/src/components/HeartRate/BPM.tsx +43 -43
- package/src/components/HeartRate/HeartRate.e2e.ts +78 -78
- package/src/components/HeartRate/HeartRate.spec.tsx +91 -91
- package/src/components/HeartRate/HeartRate.stories.tsx +36 -36
- package/src/components/HeartRate/HeartRate.tsx +105 -105
- package/src/components/HeartRate/HeartRateLineChart.tsx +53 -53
- package/src/components/HeartRate/index.ts +2 -2
- package/src/components/HeartRate/mockHeartRateRequest.ts +15 -15
- package/src/components/HeartRate/types.ts +15 -15
- package/src/components/HeartRate/utils.tsx +8 -8
- package/src/components/LinksTabBar/LinksTabBar.e2e.ts +23 -23
- package/src/components/LinksTabBar/LinksTabBar.spec.tsx +48 -48
- package/src/components/LinksTabBar/LinksTabBar.stories.tsx +45 -45
- package/src/components/LinksTabBar/LinksTabBar.tsx +14 -14
- package/src/components/LinksTabBar/LinksTabBarBase.tsx +36 -36
- package/src/components/LinksTabBar/index.ts +2 -2
- package/src/components/LinksTabBar/stories/decorators.tsx +34 -34
- package/src/components/LinksTabBar/stories/mockData.ts +27 -27
- package/src/components/LinksTabBar/types.ts +12 -12
- package/src/components/ListGoals/ListGoals.spec.tsx +82 -82
- package/src/components/ListGoals/ListGoals.stories.tsx +58 -58
- package/src/components/ListGoals/ListGoals.tsx +29 -29
- package/src/components/ListGoals/ListGoalsCard.tsx +61 -61
- package/src/components/ListGoals/index.ts +2 -2
- package/src/components/ListGoals/styles.tsx +11 -11
- package/src/components/ListGoals/types.ts +25 -25
- package/src/components/MealNutrients/MealNutrients.e2e.ts +68 -68
- package/src/components/MealNutrients/MealNutrients.spec.tsx +134 -134
- package/src/components/MealNutrients/MealNutrients.stories.tsx +37 -37
- package/src/components/MealNutrients/MealNutrients.tsx +84 -84
- package/src/components/MealNutrients/MealNutrientsLineChart.tsx +87 -87
- package/src/components/MealNutrients/MealNutrientsTooltip.tsx +30 -30
- package/src/components/MealNutrients/chartDefaultConfig.tsx +87 -87
- package/src/components/MealNutrients/index.tsx +2 -2
- package/src/components/MealNutrients/mockMealNutrientsRequest.ts +1246 -1246
- package/src/components/MealNutrients/types.ts +37 -37
- package/src/components/MealNutrients/useChartConfig.ts +69 -69
- package/src/components/MealPlanner/MealPlanner.spec.tsx +77 -77
- package/src/components/MealPlanner/MealPlanner.stories.tsx +15 -15
- package/src/components/MealPlanner/MealPlanner.tsx +100 -100
- package/src/components/MealPlanner/MealPlannerBadge.tsx +15 -15
- package/src/components/MealPlanner/MealPlannerBars.tsx +19 -19
- package/src/components/MealPlanner/MealPlannerCard.tsx +73 -73
- package/src/components/MealPlanner/MealPlannerLegends.tsx +22 -22
- package/src/components/MealPlanner/index.ts +2 -2
- package/src/components/MealPlanner/mockMealPlannerRequest.ts +70 -70
- package/src/components/MealPlanner/types.ts +21 -21
- package/src/components/NavBar/NavBar.e2e.ts +64 -64
- package/src/components/NavBar/NavBar.stories.tsx +86 -86
- package/src/components/NavBar/NavBar.tsx +41 -41
- package/src/components/NavBar/NavBarBase.ts +45 -45
- package/src/components/NavBar/NavBarItem.ts +13 -13
- package/src/components/NavBar/NavBarLink.ts +33 -33
- package/src/components/NavBar/NavBarList.ts +16 -16
- package/src/components/NavBar/NavBarWrapper.ts +40 -40
- package/src/components/NavBar/NavToggle.tsx +36 -36
- package/src/components/NavBar/NavToggleWrapper.ts +21 -21
- package/src/components/NavBar/index.ts +2 -2
- package/src/components/NavBar/types.ts +22 -22
- package/src/components/NotificationCard/NotificationCard.spec.tsx +113 -113
- package/src/components/NotificationCard/NotificationCard.stories.tsx +112 -112
- package/src/components/NotificationCard/NotificationCard.tsx +95 -95
- package/src/components/NotificationCard/index.ts +2 -2
- package/src/components/NotificationCard/styles.tsx +134 -134
- package/src/components/NotificationCard/types.ts +12 -12
- package/src/components/NotificationMenu/NotificationMenu.e2e.ts +27 -27
- package/src/components/NotificationMenu/NotificationMenu.spec.tsx +64 -64
- package/src/components/NotificationMenu/NotificationMenu.tsx +77 -77
- package/src/components/NotificationMenu/helpers.ts +91 -91
- package/src/components/NotificationMenu/index.ts +2 -2
- package/src/components/NotificationMenu/stories/NotificationMenu.stories.tsx +14 -14
- package/src/components/NotificationMenu/stories/StoryComponent.tsx +84 -84
- package/src/components/NotificationMenu/stories/StoryContent.tsx +52 -52
- package/src/components/NotificationMenu/styles.ts +125 -125
- package/src/components/NotificationMenu/types.ts +11 -11
- package/src/components/Pagination/ArrowButton.tsx +32 -32
- package/src/components/Pagination/Pagination.e2e.ts +51 -51
- package/src/components/Pagination/Pagination.spec.tsx +228 -228
- package/src/components/Pagination/Pagination.stories.tsx +60 -60
- package/src/components/Pagination/Pagination.tsx +66 -66
- package/src/components/Pagination/PaginationButtons.tsx +63 -63
- package/src/components/Pagination/PaginationContext.tsx +20 -20
- package/src/components/Pagination/index.ts +3 -3
- package/src/components/Pagination/styles.tsx +98 -98
- package/src/components/Pagination/types.ts +38 -38
- package/src/components/PieChart/PieChart.spec.tsx +97 -97
- package/src/components/PieChart/PieChart.stories.tsx +129 -129
- package/src/components/PieChart/PieChart.tsx +40 -40
- package/src/components/PieChart/PieChartBases.tsx +26 -26
- package/src/components/PieChart/PieChartLegend.tsx +51 -51
- package/src/components/PieChart/PieChartLegendList.tsx +19 -19
- package/src/components/PieChart/PieChartLegendMarker.tsx +12 -12
- package/src/components/PieChart/colorPalettes.ts +28 -28
- package/src/components/PieChart/index.ts +4 -4
- package/src/components/PieChart/stories/fixtures.ts +39 -39
- package/src/components/PieChart/types.ts +28 -28
- package/src/components/ProgressInfo/ProgressInfo.e2e.ts +31 -31
- package/src/components/ProgressInfo/ProgressInfo.spec.tsx +91 -91
- package/src/components/ProgressInfo/ProgressInfo.stories.tsx +32 -32
- package/src/components/ProgressInfo/ProgressInfo.tsx +117 -117
- package/src/components/ProgressInfo/ProgressInfoTotals.tsx +60 -60
- package/src/components/ProgressInfo/index.ts +3 -3
- package/src/components/ProgressInfo/mockProgressInfoRequest.ts +166 -166
- package/src/components/ProgressInfo/styles.ts +20 -20
- package/src/components/ProgressInfo/types.ts +29 -29
- package/src/components/SearchBox/SearchBox.e2e.ts +37 -37
- package/src/components/SearchBox/SearchBox.spec.tsx +77 -77
- package/src/components/SearchBox/SearchBox.tsx +70 -70
- package/src/components/SearchBox/SearchBoxCrossIcon.tsx +26 -26
- package/src/components/SearchBox/SearchBoxInput.tsx +42 -42
- package/src/components/SearchBox/SearchBoxWrapper.tsx +9 -9
- package/src/components/SearchBox/index.ts +4 -4
- package/src/components/SearchBox/stories/SearchBox.stories.tsx +16 -16
- package/src/components/SearchBox/stories/StoryComponent.tsx +25 -25
- package/src/components/SearchBox/types.ts +9 -9
- package/src/components/StepsCounter/StepsCounter.spec.tsx +14 -14
- package/src/components/StepsCounter/StepsCounter.stories.tsx +16 -16
- package/src/components/StepsCounter/StepsCounter.tsx +74 -74
- package/src/components/StepsCounter/index.ts +2 -2
- package/src/components/StepsCounter/types.ts +4 -4
- package/src/components/TableFilters/TableFilterCancelButton.tsx +39 -39
- package/src/components/TableFilters/TableFilterCheckbox.tsx +24 -24
- package/src/components/TableFilters/TableFilterClearButton.tsx +47 -47
- package/src/components/TableFilters/TableFilterTrigger.tsx +66 -66
- package/src/components/TableFilters/TableFilterTriggerWithNotification.tsx +44 -44
- package/src/components/TableFilters/TableFilters.e2e.ts +32 -32
- package/src/components/TableFilters/TableFilters.spec.tsx +171 -171
- package/src/components/TableFilters/TableFilters.tsx +187 -187
- package/src/components/TableFilters/TableFiltersAccordion.tsx +14 -14
- package/src/components/TableFilters/TableFiltersAccordionContent.tsx +18 -18
- package/src/components/TableFilters/TableFiltersButtons.tsx +32 -32
- package/src/components/TableFilters/hooks/useTableData.ts +137 -137
- package/src/components/TableFilters/index.ts +9 -9
- package/src/components/TableFilters/stories/StoryComponent.tsx +35 -35
- package/src/components/TableFilters/stories/TableFilters.stories.tsx +17 -17
- package/src/components/TableFilters/stories/TableFiltersWrapper.tsx +7 -7
- package/src/components/TableFilters/stories/mockData.tsx +114 -114
- package/src/components/TableFilters/styles.ts +26 -26
- package/src/components/TableFilters/types.ts +34 -34
- package/src/components/TableFilters/utils/handlers.ts +73 -73
- package/src/components/TradingInfoCard/TradingInfoCard.e2e.ts +16 -16
- package/src/components/TradingInfoCard/TradingInfoCard.spec.tsx +116 -116
- package/src/components/TradingInfoCard/TradingInfoCard.stories.tsx +118 -118
- package/src/components/TradingInfoCard/TradingInfoCard.tsx +43 -43
- package/src/components/TradingInfoCard/TradingInfoCardContent.tsx +32 -32
- package/src/components/TradingInfoCard/TradingInfoCardTooltip.tsx +47 -47
- package/src/components/TradingInfoCard/TradingInfoCardWrapper.tsx +72 -72
- package/src/components/TradingInfoCard/index.ts +3 -3
- package/src/components/TradingInfoCard/types.ts +27 -27
- package/src/components/TradingScoreboard/TradingScoreboard.spec.tsx +119 -119
- package/src/components/TradingScoreboard/TradingScoreboard.stories.tsx +119 -119
- package/src/components/TradingScoreboard/TradingScoreboard.tsx +41 -41
- package/src/components/TradingScoreboard/TradingScoreboardBase.tsx +17 -17
- package/src/components/TradingScoreboard/helpers.tsx +134 -134
- package/src/components/TradingScoreboard/index.ts +2 -2
- package/src/components/TradingScoreboard/types.ts +18 -18
- package/src/components/UpcomingWorkouts/UpcomingWorkoutCard.tsx +64 -64
- package/src/components/UpcomingWorkouts/UpcomingWorkouts.spec.tsx +56 -56
- package/src/components/UpcomingWorkouts/UpcomingWorkouts.stories.tsx +32 -32
- package/src/components/UpcomingWorkouts/UpcomingWorkouts.tsx +27 -27
- package/src/components/UpcomingWorkouts/index.ts +2 -2
- package/src/components/UpcomingWorkouts/style.ts +12 -12
- package/src/components/UpcomingWorkouts/types.ts +23 -23
- package/src/components/UserCard/UserCard.tsx +46 -46
- package/src/components/UserCard/UserCardBMI.tsx +37 -37
- package/src/components/UserCard/UserCardCredentials.tsx +56 -56
- package/src/components/UserCard/UserCardItem.tsx +42 -42
- package/src/components/UserCard/index.tsx +2 -2
- package/src/components/UserCard/types.ts +8 -8
- package/src/components/UserProfile/UserProfile.e2e.ts +21 -21
- package/src/components/UserProfile/UserProfile.spec.tsx +107 -107
- package/src/components/UserProfile/UserProfile.stories.tsx +21 -21
- package/src/components/UserProfile/UserProfile.tsx +53 -53
- package/src/components/UserProfile/index.ts +2 -2
- package/src/components/UserProfile/styles.ts +47 -47
- package/src/components/UserProfile/types.ts +8 -8
- package/src/components/WaterConsume/WaterConsume.spec.tsx +62 -62
- package/src/components/WaterConsume/WaterConsume.stories.tsx +36 -36
- package/src/components/WaterConsume/WaterConsume.tsx +188 -188
- package/src/components/WaterConsume/index.ts +2 -2
- package/src/components/WaterConsume/types.ts +11 -11
- package/src/consts.ts +18 -18
- package/src/index.ts +53 -53
- package/src/injectGlobal.ts +41 -41
- package/storybook-static/0.19f2e251.iframe.bundle.js +1 -0
- package/storybook-static/{497.7e0c2fc7.iframe.bundle.js → 106.f1e6d14d.iframe.bundle.js} +4 -4
- package/storybook-static/106.f1e6d14d.iframe.bundle.js.map +1 -0
- package/storybook-static/{sb-manager/GlobalScrollAreaStyles-4LLX2B3H-DOBSPBNW.js → 162.50e9b926.iframe.bundle.js} +1 -7
- package/storybook-static/291.c8585ee9.iframe.bundle.js +1 -0
- package/storybook-static/293.c50861da.iframe.bundle.js +2 -0
- package/storybook-static/293.c50861da.iframe.bundle.js.LICENSE.txt +9 -0
- package/storybook-static/36.713e1566.iframe.bundle.js +1 -0
- package/storybook-static/460.8dc4e7c6.iframe.bundle.js +402 -0
- package/storybook-static/{906.a25e1330.iframe.bundle.js.LICENSE.txt → 460.8dc4e7c6.iframe.bundle.js.LICENSE.txt} +2 -0
- package/storybook-static/460.8dc4e7c6.iframe.bundle.js.map +1 -0
- package/storybook-static/576.98c3eb27.iframe.bundle.js +1 -0
- package/storybook-static/{781.3faed4b1.iframe.bundle.js → 696.e559304f.iframe.bundle.js} +2 -2
- package/storybook-static/710.ab631936.iframe.bundle.js +1 -0
- package/storybook-static/829.7385f99b.iframe.bundle.js +139 -0
- package/storybook-static/829.7385f99b.iframe.bundle.js.map +1 -0
- package/storybook-static/834.04cdfc87.iframe.bundle.js +1 -0
- package/storybook-static/945.ddb2ee2f.iframe.bundle.js +1 -0
- package/storybook-static/components-Activity-Activity-stories.107a3fa3.iframe.bundle.js +1 -0
- package/storybook-static/components-Bmi-Bmi-stories.b8c54168.iframe.bundle.js +1 -0
- package/storybook-static/components-Calories-Calories-stories.8851a637.iframe.bundle.js +1 -0
- package/storybook-static/components-CardList-CardList-stories.963f2911.iframe.bundle.js +1 -0
- package/storybook-static/components-HeartRate-HeartRate-stories.f9844316.iframe.bundle.js +1 -0
- package/storybook-static/components-ListGoals-ListGoals-stories.ca994275.iframe.bundle.js +1 -0
- package/storybook-static/components-MealNutrients-MealNutrients-stories.1850ecb0.iframe.bundle.js +1 -0
- package/storybook-static/components-MealPlanner-MealPlanner-stories.542c85fc.iframe.bundle.js +1 -0
- package/storybook-static/components-NavBar-NavBar-stories.73f09876.iframe.bundle.js +1 -0
- package/storybook-static/components-ProgressInfo-ProgressInfo-stories.f6b5466e.iframe.bundle.js +1 -0
- package/storybook-static/components-StepsCounter-StepsCounter-stories.967e384f.iframe.bundle.js +1 -0
- package/storybook-static/{components-UpcomingWorkouts-UpcomingWorkouts-stories.fab18fcf.iframe.bundle.js → components-UpcomingWorkouts-UpcomingWorkouts-stories.ba735508.iframe.bundle.js} +1 -1
- package/storybook-static/components-WaterConsume-WaterConsume-stories.4b5e8cb5.iframe.bundle.js +1 -0
- package/storybook-static/iframe.html +4 -4
- package/storybook-static/index.json +1 -1
- package/storybook-static/main.912c7e67.iframe.bundle.js +1 -0
- package/storybook-static/project.json +1 -1
- package/storybook-static/runtime~main.e664d5e5.iframe.bundle.js +1 -0
- package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js +1 -1
- package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js.map +4 -4
- package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js +5 -5
- package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js.map +4 -4
- package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js +51 -49
- package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js.map +4 -4
- package/storybook-static/sb-addons/essentials-measure-6/manager-bundle.js +1 -1
- package/storybook-static/sb-addons/essentials-measure-6/manager-bundle.js.map +4 -4
- package/storybook-static/sb-addons/essentials-outline-7/manager-bundle.js +1 -1
- package/storybook-static/sb-addons/essentials-outline-7/manager-bundle.js.map +4 -4
- package/storybook-static/sb-addons/essentials-toolbars-5/manager-bundle.js +1 -1
- package/storybook-static/sb-addons/essentials-toolbars-5/manager-bundle.js.map +3 -3
- package/storybook-static/sb-addons/essentials-viewport-4/manager-bundle.js +1 -1
- package/storybook-static/sb-addons/essentials-viewport-4/manager-bundle.js.map +4 -4
- package/storybook-static/sb-addons/interactions-8/manager-bundle.js +11 -11
- package/storybook-static/sb-addons/interactions-8/manager-bundle.js.map +4 -4
- package/storybook-static/sb-addons/links-0/manager-bundle.js +1 -1
- package/storybook-static/sb-addons/links-0/manager-bundle.js.map +3 -3
- package/storybook-static/sb-manager/GlobalScrollAreaStyles-DZEYMYDM-UAEZM2KF.js +7 -0
- package/storybook-static/sb-manager/OverlayScrollbars-OGE3XJTA-T3S33YR7.js +1 -0
- package/storybook-static/sb-manager/WithTooltip-I4CCNYWD-ZW5IOTVO.js +1 -0
- package/storybook-static/sb-manager/{chunk-DP4DR4LA.js → chunk-3FAXWWKG.js} +1 -1
- package/storybook-static/sb-manager/{chunk-6KNXZZZ5.js → chunk-AA6TEL5N.js} +1 -1
- package/storybook-static/sb-manager/{chunk-SJD7EFYL.js → chunk-AM2ZNZZH.js} +1 -1
- package/storybook-static/sb-manager/chunk-AS2AMEUR.js +1 -0
- package/storybook-static/sb-manager/chunk-FPTBIX6P.js +403 -0
- package/storybook-static/sb-manager/{chunk-V7GYLJLR.js → chunk-IPZYHIL3.js} +2 -2
- package/storybook-static/sb-manager/chunk-QPL63VNK.js +1 -0
- package/storybook-static/sb-manager/{chunk-JSPL73I3.js → chunk-R5BIZIS3.js} +1 -1
- package/storybook-static/sb-manager/{formatter-6736J7QO-TGL2ZGQC.js → formatter-OJ5LH2CX-IQX6U4TO.js} +2 -2
- package/storybook-static/sb-manager/globals.js +1 -1
- package/storybook-static/sb-manager/index.js +1 -1
- package/storybook-static/sb-manager/runtime.js +1 -1
- package/storybook-static/sb-manager/syntaxhighlighter-SIPZPD4I-WOB5MYBW.js +1 -0
- package/storybook-static/sb-preview/runtime.js +4 -4
- package/storybook-static/stories.json +1 -1
- package/tsbuildcache +1 -1
- package/tsconfig.build.json +44 -44
- package/tsconfig.json +17 -17
- package/tsconfig.tsbuildinfo +1 -1
- package/webpack.config.js +28 -28
- package/custom-shots/widgets-bots-table--no-control-orders--menu-opened_[w1920px].png +0 -0
- package/custom-shots/widgets-bots-table--no-control-orders--run-reason-modal_[w1920px].png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w1439px].png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w1439px]_statistics_submenu_popover.png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w1920px].png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w1920px]_side_menu_expanded.png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w1920px]_statistics_submenu_expanded.png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w1920px]_statistics_submenu_popover.png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w899px]_default.png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w899px]_menu_opened.png +0 -0
- package/custom-shots/widgets-collapsiblenavbar-opened__[w899px]_statistics_submenu.png +0 -0
- package/custom-shots/widgets-filters--default__[w1920px].png +0 -0
- package/custom-shots/widgets-filters--filter-button-items-not-selected__[w390px].png +0 -0
- package/custom-shots/widgets-filters--filter-button__[w390px].png +0 -0
- package/custom-shots/widgets-filters--filter-button__[w900px].png +0 -0
- package/custom-shots/widgets-filters--more-button-items-selected__[w390px].png +0 -0
- package/custom-shots/widgets-filters--more-button__[w900px].png +0 -0
- package/custom-shots/widgets-heart-rate--hint-opened__[w1440px].png +0 -0
- package/custom-shots/widgets-heart-rate--hint-opened__[w1920px].png +0 -0
- package/custom-shots/widgets-heart-rate--hint-opened__[w390px].png +0 -0
- package/custom-shots/widgets-heart-rate--hint-opened__[w900px].png +0 -0
- package/custom-shots/widgets-linkstabbar--current-focus__[w1920px].png +0 -0
- package/custom-shots/widgets-linkstabbar--non-current-focus__[w1920px].png +0 -0
- package/custom-shots/widgets-meal-nutrients--hint-opened__[w1440px].png +0 -0
- package/custom-shots/widgets-meal-nutrients--hint-opened__[w1920px].png +0 -0
- package/custom-shots/widgets-meal-nutrients--hint-opened__[w390px].png +0 -0
- package/custom-shots/widgets-meal-nutrients--hint-opened__[w900px].png +0 -0
- package/custom-shots/widgets-meal-nutrients--hint-opened__dropdown__[w1440px].png +0 -0
- package/custom-shots/widgets-meal-nutrients--hint-opened__dropdown__[w1920px].png +0 -0
- package/custom-shots/widgets-meal-nutrients--hint-opened__dropdown__[w390px].png +0 -0
- package/custom-shots/widgets-meal-nutrients--hint-opened__dropdown__[w900px].png +0 -0
- package/custom-shots/widgets-navbar--mobile-opened__[w1440px].png +0 -0
- package/custom-shots/widgets-navbar--mobile-opened__[w1920px].png +0 -0
- package/custom-shots/widgets-navbar--mobile-opened__[w390px].png +0 -0
- package/custom-shots/widgets-navbar--mobile-opened__[w900px].png +0 -0
- package/custom-shots/widgets-navbar-opened__[w1440px].png +0 -0
- package/custom-shots/widgets-navbar-opened__[w1920px].png +0 -0
- package/custom-shots/widgets-navbar-opened__[w390px].png +0 -0
- package/custom-shots/widgets-navbar-opened__[w900px].png +0 -0
- package/custom-shots/widgets-notification-menu--is-opened__[w1440px].png +0 -0
- package/custom-shots/widgets-notification-menu--is-opened__[w1920px].png +0 -0
- package/custom-shots/widgets-notification-menu--is-opened__[w390px].png +0 -0
- package/custom-shots/widgets-notification-menu--is-opened__[w900px].png +0 -0
- package/custom-shots/widgets-pagination--next-hover__[w1920px].png +0 -0
- package/custom-shots/widgets-pagination--not-selected-hover__[w1920px].png +0 -0
- package/custom-shots/widgets-pagination--previous-hover__[w1920px].png +0 -0
- package/custom-shots/widgets-pagination--selected-hover__[w1920px].png +0 -0
- package/custom-shots/widgets-pagination-disabled--next-hover__[w1920px].png +0 -0
- package/custom-shots/widgets-pagination-disabled--not-selected-hover__[w1920px].png +0 -0
- package/custom-shots/widgets-pagination-disabled--previous-hover__[w1920px].png +0 -0
- package/custom-shots/widgets-pagination-disabled--selected-hover__[w1920px].png +0 -0
- package/custom-shots/widgets-progressInfo__[w1440px].png +0 -0
- package/custom-shots/widgets-progressInfo__[w1920px].png +0 -0
- package/custom-shots/widgets-progressInfo__[w390px].png +0 -0
- package/custom-shots/widgets-progressInfo__[w900px].png +0 -0
- package/custom-shots/widgets-progressInfo__dropdown__[w1440px].png +0 -0
- package/custom-shots/widgets-progressInfo__dropdown__[w1920px].png +0 -0
- package/custom-shots/widgets-progressInfo__dropdown__[w390px].png +0 -0
- package/custom-shots/widgets-progressInfo__dropdown__[w900px].png +0 -0
- package/custom-shots/widgets-searchbox--cross-icon__[w1920px].png +0 -0
- package/custom-shots/widgets-searchbox--cross-icon__[w900px].png +0 -0
- package/custom-shots/widgets-searchbox--search-icon__[w1920px].png +0 -0
- package/custom-shots/widgets-searchbox--search-icon__[w900px].png +0 -0
- package/custom-shots/widgets-table-bots--default_[w1920px].png +0 -0
- package/custom-shots/widgets-table-bots--menu-opened_[w1920px].png +0 -0
- package/custom-shots/widgets-table-bots--no-control-orders--menu-opened_[w1920px].png +0 -0
- package/custom-shots/widgets-table-bots--no-control-orders--run-reason-modal_[w1920px].png +0 -0
- package/custom-shots/widgets-table-bots--run-reason-modal_[w1920px].png +0 -0
- package/custom-shots/widgets-table-filters--opened__[w1920px].png +0 -0
- package/custom-shots/widgets-trading-info-card--hover__[w1920px].png +0 -0
- package/custom-shots/widgets-user-profile--is-opened__[w1920px].png +0 -0
- package/storybook-static/106.9e8cbea9.iframe.bundle.js +0 -1
- package/storybook-static/134.2444003c.iframe.bundle.js +0 -1
- package/storybook-static/166.927d7b90.iframe.bundle.js +0 -1
- package/storybook-static/185.4df02b5b.iframe.bundle.js +0 -139
- package/storybook-static/185.4df02b5b.iframe.bundle.js.map +0 -1
- package/storybook-static/251.8c3ebcca.iframe.bundle.js +0 -1
- package/storybook-static/263.0a5aa731.iframe.bundle.js +0 -1
- package/storybook-static/283.258a25c8.iframe.bundle.js +0 -1
- package/storybook-static/326.7772ae66.iframe.bundle.js +0 -1
- package/storybook-static/494.f5410ab1.iframe.bundle.js +0 -2
- package/storybook-static/494.f5410ab1.iframe.bundle.js.LICENSE.txt +0 -18
- package/storybook-static/497.7e0c2fc7.iframe.bundle.js.map +0 -1
- package/storybook-static/540.17a57e0e.iframe.bundle.js +0 -1
- package/storybook-static/547.951a46da.iframe.bundle.js +0 -1
- package/storybook-static/609.f12a4891.iframe.bundle.js +0 -1
- package/storybook-static/633.947e8b75.iframe.bundle.js +0 -1
- package/storybook-static/661.14057bc5.iframe.bundle.js +0 -1
- package/storybook-static/753.91179890.iframe.bundle.js +0 -1
- package/storybook-static/76.25b4aa80.iframe.bundle.js +0 -1
- package/storybook-static/767.1716b836.iframe.bundle.js +0 -1
- package/storybook-static/906.a25e1330.iframe.bundle.js +0 -402
- package/storybook-static/906.a25e1330.iframe.bundle.js.map +0 -1
- package/storybook-static/912.a84a00a8.iframe.bundle.js +0 -1
- package/storybook-static/973.d2780faa.iframe.bundle.js +0 -1
- package/storybook-static/979.9baaf9d9.iframe.bundle.js +0 -1
- package/storybook-static/995.818e1781.iframe.bundle.js +0 -1
- package/storybook-static/components-Activity-Activity-stories.1f2220be.iframe.bundle.js +0 -1
- package/storybook-static/components-Bmi-Bmi-stories.033dba0e.iframe.bundle.js +0 -1
- package/storybook-static/components-Calories-Calories-stories.61da75cb.iframe.bundle.js +0 -1
- package/storybook-static/components-CardList-CardList-stories.caaffeda.iframe.bundle.js +0 -1
- package/storybook-static/components-HeartRate-HeartRate-stories.bd133239.iframe.bundle.js +0 -1
- package/storybook-static/components-ListGoals-ListGoals-stories.e68d5cbf.iframe.bundle.js +0 -1
- package/storybook-static/components-MealNutrients-MealNutrients-stories.7e46bd1e.iframe.bundle.js +0 -1
- package/storybook-static/components-MealPlanner-MealPlanner-stories.4b8341d3.iframe.bundle.js +0 -1
- package/storybook-static/components-NavBar-NavBar-stories.4f37096a.iframe.bundle.js +0 -1
- package/storybook-static/components-Pagination-Pagination-stories.2fd0c446.iframe.bundle.js +0 -1
- package/storybook-static/components-ProgressInfo-ProgressInfo-stories.665cee18.iframe.bundle.js +0 -1
- package/storybook-static/components-StepsCounter-StepsCounter-stories.b87bd065.iframe.bundle.js +0 -1
- package/storybook-static/components-TableFilters-stories-TableFilters-stories.24c4f9e8.iframe.bundle.js +0 -1
- package/storybook-static/components-WaterConsume-WaterConsume-stories.5dae388e.iframe.bundle.js +0 -1
- package/storybook-static/main.c21822d8.iframe.bundle.js +0 -1
- package/storybook-static/runtime~main.b259f462.iframe.bundle.js +0 -1
- package/storybook-static/sb-manager/CRUD-I5EZL2FS-LBZVDZXV.js +0 -1
- package/storybook-static/sb-manager/Communicate-7JXCND2Z-6SIVXWT4.js +0 -1
- package/storybook-static/sb-manager/Devices-SUYACUPO-DMGV6ENX.js +0 -1
- package/storybook-static/sb-manager/Documents-SGWAY3KW-XZRZ6I6S.js +0 -1
- package/storybook-static/sb-manager/Editing-7QFB6ZMG-J5U6QGB6.js +0 -1
- package/storybook-static/sb-manager/Git-DZ2D5ZUL-VKBWYJHE.js +0 -1
- package/storybook-static/sb-manager/Images-S2WTXNGG-NXAYS4VP.js +0 -1
- package/storybook-static/sb-manager/Logos-SJTNNI74-F3IVL4UV.js +0 -1
- package/storybook-static/sb-manager/OS-YZ2Y4VYS-KGSGCOHC.js +0 -1
- package/storybook-static/sb-manager/OverlayScrollbars-OL4C4TVX-FNYA4OIC.js +0 -1
- package/storybook-static/sb-manager/People-OD4EV7WZ-DBPUNUXW.js +0 -1
- package/storybook-static/sb-manager/Wayfinding-BB4H7CHP-N2QAVLVA.js +0 -1
- package/storybook-static/sb-manager/WithTooltip-YBG737T3-GLWUADFI.js +0 -1
- package/storybook-static/sb-manager/chunk-GBCXFRBK.js +0 -1
- package/storybook-static/sb-manager/chunk-IFNK3PLJ.js +0 -1
- package/storybook-static/sb-manager/chunk-JMPBYCHU.js +0 -1
- package/storybook-static/sb-manager/chunk-UBXIQABM.js +0 -447
- package/storybook-static/sb-manager/chunk-Z4NRYNHR.js +0 -1
- package/storybook-static/sb-manager/syntaxhighlighter-4OVWVELQ-5IZ45DZY.js +0 -1
- /package/storybook-static/{781.3faed4b1.iframe.bundle.js.LICENSE.txt → 696.e559304f.iframe.bundle.js.LICENSE.txt} +0 -0
|
@@ -1,157 +1,157 @@
|
|
|
1
|
-
export const exchangeIcons = {
|
|
2
|
-
binance: {
|
|
3
|
-
icon: () => (
|
|
4
|
-
<svg
|
|
5
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
-
width="26"
|
|
7
|
-
height="26"
|
|
8
|
-
viewBox="0 0 26 26"
|
|
9
|
-
fill="none">
|
|
10
|
-
<path
|
|
11
|
-
d="M13.2202 25.5C20.1238 25.5 25.7202 19.9036 25.7202 13C25.7202 6.09644 20.1238 0.5 13.2202 0.5C6.31666 0.5 0.720215 6.09644 0.720215 13C0.720215 19.9036 6.31666 25.5 13.2202 25.5Z"
|
|
12
|
-
fill="#F1D33D"
|
|
13
|
-
/>
|
|
14
|
-
<path
|
|
15
|
-
d="M12.873 24.8056C16.0961 24.8056 19.1872 23.5252 21.4663 21.2461C23.7454 18.9671 25.0258 15.8759 25.0258 12.6528H0.720215C0.720215 15.8759 2.00059 18.9671 4.27968 21.2461C5.40817 22.3746 6.74788 23.2698 8.22233 23.8805C9.69677 24.4913 11.2771 24.8056 12.873 24.8056Z"
|
|
16
|
-
fill="#E7A324"
|
|
17
|
-
/>
|
|
18
|
-
<path
|
|
19
|
-
d="M12.8728 24.0123C19.0598 24.0123 24.0753 18.9968 24.0753 12.8099C24.0753 6.62292 19.0598 1.60742 12.8728 1.60742C6.68591 1.60742 1.67041 6.62292 1.67041 12.8099C1.67041 18.9968 6.68591 24.0123 12.8728 24.0123Z"
|
|
20
|
-
fill="url(#paint0_linear_910_8268)"
|
|
21
|
-
/>
|
|
22
|
-
<path
|
|
23
|
-
d="M12.8727 24.0085C9.91779 24.0079 7.08283 22.8397 4.98545 20.7582C2.88806 18.6768 1.69821 15.8508 1.67513 12.896V12.9896C1.65246 15.9838 2.81889 18.8646 4.91831 20.9995C7.01773 23.1345 9.87856 24.3491 12.8727 24.3767C15.8675 24.3504 18.7294 23.1365 20.8298 21.0017C22.9302 18.8668 24.0975 15.9856 24.0751 12.9908C24.0751 12.9592 24.0751 12.9288 24.0751 12.8972C24.0517 15.8527 22.8611 18.679 20.7627 20.7604C18.6643 22.8417 15.8282 24.0092 12.8727 24.0085Z"
|
|
24
|
-
fill="#D38E26"
|
|
25
|
-
/>
|
|
26
|
-
<path
|
|
27
|
-
d="M12.8728 21.8887C17.9738 21.8887 22.1089 17.7536 22.1089 12.6526C22.1089 7.55165 17.9738 3.4165 12.8728 3.4165C7.77187 3.4165 3.63672 7.55165 3.63672 12.6526C3.63672 17.7536 7.77187 21.8887 12.8728 21.8887Z"
|
|
28
|
-
fill="#F9EE60"
|
|
29
|
-
/>
|
|
30
|
-
<path
|
|
31
|
-
d="M12.8728 3.4165C10.4233 3.4165 8.07402 4.38959 6.34191 6.1217C4.60981 7.85381 3.63672 10.203 3.63672 12.6526H22.1089C22.1089 10.203 21.1359 7.85381 19.4037 6.1217C17.6716 4.38959 15.3224 3.4165 12.8728 3.4165Z"
|
|
32
|
-
fill="#E3A22C"
|
|
33
|
-
/>
|
|
34
|
-
<path
|
|
35
|
-
d="M12.8732 21.1599C17.5714 21.1599 21.3801 17.3512 21.3801 12.6529C21.3801 7.95468 17.5714 4.146 12.8732 4.146C8.1749 4.146 4.36621 7.95468 4.36621 12.6529C4.36621 17.3512 8.1749 21.1599 12.8732 21.1599Z"
|
|
36
|
-
fill="url(#paint1_linear_910_8268)"
|
|
37
|
-
/>
|
|
38
|
-
<path
|
|
39
|
-
d="M8.19153 11.3343L6.79639 12.6662L8.19153 14.003L9.59153 12.6674L8.19153 11.3343ZM12.8594 15.7919L10.5334 13.5704L9.11635 14.8744L12.8594 18.4473L16.6025 14.8744L15.1818 13.5704L12.8594 15.7919ZM12.8594 9.51378L15.1818 11.7353L16.5976 10.4313L12.8545 6.8584L9.11149 10.4313L10.5285 11.7353L12.8594 9.51378ZM17.554 11.3464L16.154 12.6771L17.5492 14.014L18.9492 12.6784L17.554 11.3464ZM12.8922 13.9896L14.2874 12.6528L12.8922 11.316L11.4971 12.6528L12.8922 13.9896Z"
|
|
40
|
-
fill="#EEF1F7"
|
|
41
|
-
/>
|
|
42
|
-
<defs>
|
|
43
|
-
<linearGradient
|
|
44
|
-
id="paint0_linear_910_8268"
|
|
45
|
-
x1="12.8728"
|
|
46
|
-
y1="1.51263"
|
|
47
|
-
x2="12.8728"
|
|
48
|
-
y2="24.0451"
|
|
49
|
-
gradientUnits="userSpaceOnUse">
|
|
50
|
-
<stop stopColor="#FAEE5E" />
|
|
51
|
-
<stop offset="1" stopColor="#EDC12D" />
|
|
52
|
-
</linearGradient>
|
|
53
|
-
<linearGradient
|
|
54
|
-
id="paint1_linear_910_8268"
|
|
55
|
-
x1="12.8732"
|
|
56
|
-
y1="4.05607"
|
|
57
|
-
x2="12.8732"
|
|
58
|
-
y2="21.1016"
|
|
59
|
-
gradientUnits="userSpaceOnUse">
|
|
60
|
-
<stop stopColor="#EFC938" />
|
|
61
|
-
<stop offset="1" stopColor="#F1B62E" />
|
|
62
|
-
</linearGradient>
|
|
63
|
-
</defs>
|
|
64
|
-
</svg>
|
|
65
|
-
),
|
|
66
|
-
title: 'Binance',
|
|
67
|
-
},
|
|
68
|
-
kraken: {
|
|
69
|
-
icon: () => (
|
|
70
|
-
<svg
|
|
71
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
72
|
-
width="18"
|
|
73
|
-
height="18"
|
|
74
|
-
viewBox="0 0 18 18"
|
|
75
|
-
fill="none">
|
|
76
|
-
<path
|
|
77
|
-
fillRule="evenodd"
|
|
78
|
-
clipRule="evenodd"
|
|
79
|
-
d="M6.15699 7.72909C6.26079 7.90375 6.31578 8.10118 6.31578 8.29992L6.31579 8.87744C6.31579 8.96563 6.24858 9.03943 6.16086 9.04794C6.09814 9.05401 4.61188 9.18268 3.99841 7.93707C3.78228 7.49761 3.75725 7.02809 3.76231 6.5861L3.76233 6.57135C3.76233 6.21246 3.60976 5.86312 3.3436 5.61283C3.06054 5.34674 2.63736 5.2865 2.29034 5.46293L2.20654 5.50578L2.6674 5.93868C3.04924 6.29716 3.26451 6.79923 3.25887 7.31608C3.25325 7.8276 3.3347 8.30521 3.49468 8.6972C3.87208 9.6244 5.1965 10.0949 5.20958 10.0995C5.27773 10.1231 5.32377 10.1867 5.32466 10.2586C5.3259 10.3305 5.28184 10.3955 5.21465 10.4213C5.21022 10.423 4.72845 10.6111 4.25594 11.0082C3.63863 11.5272 3.32548 12.1428 3.32548 12.8376C3.3255 13.5679 3.67547 14.3805 4.36685 15.2553C4.54321 14.9798 4.55865 14.6234 4.39302 14.3333C4.1385 13.8882 4.08198 13.405 4.22947 12.936C4.50548 12.0594 5.4787 11.221 7.12283 10.444C7.18981 10.4124 7.26885 10.4272 7.31999 10.4804C7.37085 10.5337 7.38215 10.6136 7.34765 10.6788C7.34262 10.6884 6.83261 11.675 6.83261 12.9974C6.83265 13.9504 7.09191 14.8392 7.60368 15.6425C7.76461 15.3948 7.81511 15.0843 7.73423 14.7907C7.58529 14.25 7.57989 13.6443 7.71817 12.9905C7.90792 12.0948 8.36613 11.1365 9.081 10.1426C9.11312 10.0978 9.16485 10.0713 9.22018 10.0713C9.27518 10.0713 9.32692 10.0978 9.35903 10.1426C10.0739 11.1365 10.5324 12.0947 10.7219 12.9906C10.8601 13.6441 10.8548 14.2499 10.7058 14.7908C10.6806 14.8829 10.6677 14.9778 10.6677 15.0723C10.6678 15.2786 10.7266 15.4754 10.8363 15.643C11.4751 14.642 11.7192 13.5205 11.5625 12.3061C11.4379 11.3419 11.096 10.6853 11.0924 10.6788C11.0582 10.6136 11.0692 10.5337 11.1203 10.4804C11.1712 10.4272 11.2506 10.4125 11.3172 10.444C12.9614 11.221 13.9352 12.0596 14.2108 12.9363C14.3587 13.4052 14.3021 13.8883 14.0476 14.3334C13.9715 14.4666 13.931 14.6179 13.931 14.7708C13.931 14.945 13.9807 15.112 14.0732 15.2556C14.9442 14.1538 15.2716 13.1581 15.0462 12.2933C14.7111 11.0072 13.24 10.4273 13.2251 10.4216C13.1582 10.3957 13.1142 10.3307 13.1154 10.2588C13.1166 10.1868 13.1626 10.1234 13.2304 10.0998C13.2438 10.0952 14.5683 9.62447 14.9457 8.69766C15.1053 8.30574 15.1871 7.82817 15.1815 7.31637C15.1755 6.79959 15.3911 6.29753 15.7729 5.93903L16.2339 5.5058L16.1494 5.46285C16.0206 5.39702 15.8758 5.36223 15.7304 5.36223C15.4937 5.36222 15.2689 5.45127 15.0967 5.61291C14.8267 5.86671 14.6741 6.2214 14.6783 6.5861C14.6834 7.02808 14.6581 7.49773 14.4422 7.93701C13.8291 9.18236 12.3431 9.05405 12.2801 9.04796C12.1921 9.03944 12.1251 8.96568 12.1251 8.87745L12.1252 8.29925C12.1252 8.09933 12.1793 7.90302 12.2818 7.73131C12.6149 7.17154 12.7871 6.52844 12.779 5.87149C12.7553 3.92639 11.1617 2.35645 9.21987 2.35645C9.20862 2.35642 9.19758 2.35652 9.18628 2.35661C7.2424 2.37468 5.66101 3.97134 5.66101 5.91572C5.66106 6.55546 5.83255 7.18254 6.15699 7.72909ZM10.5262 7.11076C10.4816 7.11076 10.4373 7.09366 10.4037 7.05943C10.3377 6.99187 10.3386 6.88342 10.4061 6.81722C11.1462 6.09209 11.1545 4.83239 11.1545 4.81976C11.1545 4.72511 11.2312 4.64847 11.3258 4.64847C11.4204 4.64843 11.4971 4.72516 11.4971 4.81976C11.4971 4.87719 11.4876 6.23712 10.646 7.06186C10.6128 7.0945 10.5693 7.11081 10.5262 7.11076ZM7.91415 7.11076C7.87071 7.11082 7.8276 7.09454 7.7943 7.06186C6.95248 6.23708 6.94293 4.87723 6.94293 4.81975C6.94299 4.72511 7.01966 4.64847 7.11421 4.64847C7.20881 4.64843 7.28549 4.72514 7.28549 4.8197C7.28555 4.83792 7.29829 6.0961 8.03397 6.81722C8.10148 6.88341 8.10266 6.99187 8.03635 7.05943C8.0028 7.09363 7.95844 7.11081 7.91415 7.11076ZM9.22018 6.15083C9.12536 6.15083 9.04888 6.0742 9.04888 5.9796L9.04889 3.65988C9.04889 3.56528 9.12531 3.48864 9.22017 3.48864C9.31478 3.48859 9.39145 3.56532 9.39145 3.65991L9.39146 5.97955C9.39146 6.07416 9.31473 6.15085 9.22018 6.15083Z"
|
|
80
|
-
fill="#7049B9"
|
|
81
|
-
/>
|
|
82
|
-
</svg>
|
|
83
|
-
),
|
|
84
|
-
title: 'Kraken',
|
|
85
|
-
},
|
|
86
|
-
bittrex: {
|
|
87
|
-
icon: () => (
|
|
88
|
-
<svg
|
|
89
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
90
|
-
width="42"
|
|
91
|
-
height="39"
|
|
92
|
-
viewBox="0 0 42 39"
|
|
93
|
-
fill="none">
|
|
94
|
-
<g filter="url(#filter0_d_910_8539)">
|
|
95
|
-
<circle cx="21.2202" cy="17" r="12.5" fill="white" />
|
|
96
|
-
</g>
|
|
97
|
-
<rect
|
|
98
|
-
x="18.8457"
|
|
99
|
-
y="10.25"
|
|
100
|
-
width="9.125"
|
|
101
|
-
height="9.46774"
|
|
102
|
-
rx="1.25"
|
|
103
|
-
stroke="#1B7BD5"
|
|
104
|
-
strokeWidth="1.5"
|
|
105
|
-
/>
|
|
106
|
-
<rect
|
|
107
|
-
x="15.3037"
|
|
108
|
-
y="13.4492"
|
|
109
|
-
width="9.125"
|
|
110
|
-
height="9.46774"
|
|
111
|
-
rx="1.25"
|
|
112
|
-
stroke="#1B7BD5"
|
|
113
|
-
strokeWidth="1.5"
|
|
114
|
-
/>
|
|
115
|
-
<defs>
|
|
116
|
-
<filter
|
|
117
|
-
id="filter0_d_910_8539"
|
|
118
|
-
x="0.720215"
|
|
119
|
-
y="0.5"
|
|
120
|
-
width="41"
|
|
121
|
-
height="41"
|
|
122
|
-
filterUnits="userSpaceOnUse"
|
|
123
|
-
colorInterpolationFilters="sRGB">
|
|
124
|
-
<feFlood floodOpacity="0" result="BackgroundImageFix" />
|
|
125
|
-
<feColorMatrix
|
|
126
|
-
in="SourceAlpha"
|
|
127
|
-
type="matrix"
|
|
128
|
-
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
129
|
-
result="hardAlpha"
|
|
130
|
-
/>
|
|
131
|
-
<feOffset dy="4" />
|
|
132
|
-
<feGaussianBlur stdDeviation="4" />
|
|
133
|
-
<feComposite in2="hardAlpha" operator="out" />
|
|
134
|
-
<feColorMatrix
|
|
135
|
-
type="matrix"
|
|
136
|
-
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"
|
|
137
|
-
/>
|
|
138
|
-
<feBlend
|
|
139
|
-
mode="normal"
|
|
140
|
-
in2="BackgroundImageFix"
|
|
141
|
-
result="effect1_dropShadow_910_8539"
|
|
142
|
-
/>
|
|
143
|
-
<feBlend
|
|
144
|
-
mode="normal"
|
|
145
|
-
in="SourceGraphic"
|
|
146
|
-
in2="effect1_dropShadow_910_8539"
|
|
147
|
-
result="shape"
|
|
148
|
-
/>
|
|
149
|
-
</filter>
|
|
150
|
-
</defs>
|
|
151
|
-
</svg>
|
|
152
|
-
),
|
|
153
|
-
title: 'Bittrex',
|
|
154
|
-
},
|
|
155
|
-
};
|
|
156
|
-
|
|
157
|
-
export type ExchangeIconsType = typeof exchangeIcons;
|
|
1
|
+
export const exchangeIcons = {
|
|
2
|
+
binance: {
|
|
3
|
+
icon: () => (
|
|
4
|
+
<svg
|
|
5
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
6
|
+
width="26"
|
|
7
|
+
height="26"
|
|
8
|
+
viewBox="0 0 26 26"
|
|
9
|
+
fill="none">
|
|
10
|
+
<path
|
|
11
|
+
d="M13.2202 25.5C20.1238 25.5 25.7202 19.9036 25.7202 13C25.7202 6.09644 20.1238 0.5 13.2202 0.5C6.31666 0.5 0.720215 6.09644 0.720215 13C0.720215 19.9036 6.31666 25.5 13.2202 25.5Z"
|
|
12
|
+
fill="#F1D33D"
|
|
13
|
+
/>
|
|
14
|
+
<path
|
|
15
|
+
d="M12.873 24.8056C16.0961 24.8056 19.1872 23.5252 21.4663 21.2461C23.7454 18.9671 25.0258 15.8759 25.0258 12.6528H0.720215C0.720215 15.8759 2.00059 18.9671 4.27968 21.2461C5.40817 22.3746 6.74788 23.2698 8.22233 23.8805C9.69677 24.4913 11.2771 24.8056 12.873 24.8056Z"
|
|
16
|
+
fill="#E7A324"
|
|
17
|
+
/>
|
|
18
|
+
<path
|
|
19
|
+
d="M12.8728 24.0123C19.0598 24.0123 24.0753 18.9968 24.0753 12.8099C24.0753 6.62292 19.0598 1.60742 12.8728 1.60742C6.68591 1.60742 1.67041 6.62292 1.67041 12.8099C1.67041 18.9968 6.68591 24.0123 12.8728 24.0123Z"
|
|
20
|
+
fill="url(#paint0_linear_910_8268)"
|
|
21
|
+
/>
|
|
22
|
+
<path
|
|
23
|
+
d="M12.8727 24.0085C9.91779 24.0079 7.08283 22.8397 4.98545 20.7582C2.88806 18.6768 1.69821 15.8508 1.67513 12.896V12.9896C1.65246 15.9838 2.81889 18.8646 4.91831 20.9995C7.01773 23.1345 9.87856 24.3491 12.8727 24.3767C15.8675 24.3504 18.7294 23.1365 20.8298 21.0017C22.9302 18.8668 24.0975 15.9856 24.0751 12.9908C24.0751 12.9592 24.0751 12.9288 24.0751 12.8972C24.0517 15.8527 22.8611 18.679 20.7627 20.7604C18.6643 22.8417 15.8282 24.0092 12.8727 24.0085Z"
|
|
24
|
+
fill="#D38E26"
|
|
25
|
+
/>
|
|
26
|
+
<path
|
|
27
|
+
d="M12.8728 21.8887C17.9738 21.8887 22.1089 17.7536 22.1089 12.6526C22.1089 7.55165 17.9738 3.4165 12.8728 3.4165C7.77187 3.4165 3.63672 7.55165 3.63672 12.6526C3.63672 17.7536 7.77187 21.8887 12.8728 21.8887Z"
|
|
28
|
+
fill="#F9EE60"
|
|
29
|
+
/>
|
|
30
|
+
<path
|
|
31
|
+
d="M12.8728 3.4165C10.4233 3.4165 8.07402 4.38959 6.34191 6.1217C4.60981 7.85381 3.63672 10.203 3.63672 12.6526H22.1089C22.1089 10.203 21.1359 7.85381 19.4037 6.1217C17.6716 4.38959 15.3224 3.4165 12.8728 3.4165Z"
|
|
32
|
+
fill="#E3A22C"
|
|
33
|
+
/>
|
|
34
|
+
<path
|
|
35
|
+
d="M12.8732 21.1599C17.5714 21.1599 21.3801 17.3512 21.3801 12.6529C21.3801 7.95468 17.5714 4.146 12.8732 4.146C8.1749 4.146 4.36621 7.95468 4.36621 12.6529C4.36621 17.3512 8.1749 21.1599 12.8732 21.1599Z"
|
|
36
|
+
fill="url(#paint1_linear_910_8268)"
|
|
37
|
+
/>
|
|
38
|
+
<path
|
|
39
|
+
d="M8.19153 11.3343L6.79639 12.6662L8.19153 14.003L9.59153 12.6674L8.19153 11.3343ZM12.8594 15.7919L10.5334 13.5704L9.11635 14.8744L12.8594 18.4473L16.6025 14.8744L15.1818 13.5704L12.8594 15.7919ZM12.8594 9.51378L15.1818 11.7353L16.5976 10.4313L12.8545 6.8584L9.11149 10.4313L10.5285 11.7353L12.8594 9.51378ZM17.554 11.3464L16.154 12.6771L17.5492 14.014L18.9492 12.6784L17.554 11.3464ZM12.8922 13.9896L14.2874 12.6528L12.8922 11.316L11.4971 12.6528L12.8922 13.9896Z"
|
|
40
|
+
fill="#EEF1F7"
|
|
41
|
+
/>
|
|
42
|
+
<defs>
|
|
43
|
+
<linearGradient
|
|
44
|
+
id="paint0_linear_910_8268"
|
|
45
|
+
x1="12.8728"
|
|
46
|
+
y1="1.51263"
|
|
47
|
+
x2="12.8728"
|
|
48
|
+
y2="24.0451"
|
|
49
|
+
gradientUnits="userSpaceOnUse">
|
|
50
|
+
<stop stopColor="#FAEE5E" />
|
|
51
|
+
<stop offset="1" stopColor="#EDC12D" />
|
|
52
|
+
</linearGradient>
|
|
53
|
+
<linearGradient
|
|
54
|
+
id="paint1_linear_910_8268"
|
|
55
|
+
x1="12.8732"
|
|
56
|
+
y1="4.05607"
|
|
57
|
+
x2="12.8732"
|
|
58
|
+
y2="21.1016"
|
|
59
|
+
gradientUnits="userSpaceOnUse">
|
|
60
|
+
<stop stopColor="#EFC938" />
|
|
61
|
+
<stop offset="1" stopColor="#F1B62E" />
|
|
62
|
+
</linearGradient>
|
|
63
|
+
</defs>
|
|
64
|
+
</svg>
|
|
65
|
+
),
|
|
66
|
+
title: 'Binance',
|
|
67
|
+
},
|
|
68
|
+
kraken: {
|
|
69
|
+
icon: () => (
|
|
70
|
+
<svg
|
|
71
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
72
|
+
width="18"
|
|
73
|
+
height="18"
|
|
74
|
+
viewBox="0 0 18 18"
|
|
75
|
+
fill="none">
|
|
76
|
+
<path
|
|
77
|
+
fillRule="evenodd"
|
|
78
|
+
clipRule="evenodd"
|
|
79
|
+
d="M6.15699 7.72909C6.26079 7.90375 6.31578 8.10118 6.31578 8.29992L6.31579 8.87744C6.31579 8.96563 6.24858 9.03943 6.16086 9.04794C6.09814 9.05401 4.61188 9.18268 3.99841 7.93707C3.78228 7.49761 3.75725 7.02809 3.76231 6.5861L3.76233 6.57135C3.76233 6.21246 3.60976 5.86312 3.3436 5.61283C3.06054 5.34674 2.63736 5.2865 2.29034 5.46293L2.20654 5.50578L2.6674 5.93868C3.04924 6.29716 3.26451 6.79923 3.25887 7.31608C3.25325 7.8276 3.3347 8.30521 3.49468 8.6972C3.87208 9.6244 5.1965 10.0949 5.20958 10.0995C5.27773 10.1231 5.32377 10.1867 5.32466 10.2586C5.3259 10.3305 5.28184 10.3955 5.21465 10.4213C5.21022 10.423 4.72845 10.6111 4.25594 11.0082C3.63863 11.5272 3.32548 12.1428 3.32548 12.8376C3.3255 13.5679 3.67547 14.3805 4.36685 15.2553C4.54321 14.9798 4.55865 14.6234 4.39302 14.3333C4.1385 13.8882 4.08198 13.405 4.22947 12.936C4.50548 12.0594 5.4787 11.221 7.12283 10.444C7.18981 10.4124 7.26885 10.4272 7.31999 10.4804C7.37085 10.5337 7.38215 10.6136 7.34765 10.6788C7.34262 10.6884 6.83261 11.675 6.83261 12.9974C6.83265 13.9504 7.09191 14.8392 7.60368 15.6425C7.76461 15.3948 7.81511 15.0843 7.73423 14.7907C7.58529 14.25 7.57989 13.6443 7.71817 12.9905C7.90792 12.0948 8.36613 11.1365 9.081 10.1426C9.11312 10.0978 9.16485 10.0713 9.22018 10.0713C9.27518 10.0713 9.32692 10.0978 9.35903 10.1426C10.0739 11.1365 10.5324 12.0947 10.7219 12.9906C10.8601 13.6441 10.8548 14.2499 10.7058 14.7908C10.6806 14.8829 10.6677 14.9778 10.6677 15.0723C10.6678 15.2786 10.7266 15.4754 10.8363 15.643C11.4751 14.642 11.7192 13.5205 11.5625 12.3061C11.4379 11.3419 11.096 10.6853 11.0924 10.6788C11.0582 10.6136 11.0692 10.5337 11.1203 10.4804C11.1712 10.4272 11.2506 10.4125 11.3172 10.444C12.9614 11.221 13.9352 12.0596 14.2108 12.9363C14.3587 13.4052 14.3021 13.8883 14.0476 14.3334C13.9715 14.4666 13.931 14.6179 13.931 14.7708C13.931 14.945 13.9807 15.112 14.0732 15.2556C14.9442 14.1538 15.2716 13.1581 15.0462 12.2933C14.7111 11.0072 13.24 10.4273 13.2251 10.4216C13.1582 10.3957 13.1142 10.3307 13.1154 10.2588C13.1166 10.1868 13.1626 10.1234 13.2304 10.0998C13.2438 10.0952 14.5683 9.62447 14.9457 8.69766C15.1053 8.30574 15.1871 7.82817 15.1815 7.31637C15.1755 6.79959 15.3911 6.29753 15.7729 5.93903L16.2339 5.5058L16.1494 5.46285C16.0206 5.39702 15.8758 5.36223 15.7304 5.36223C15.4937 5.36222 15.2689 5.45127 15.0967 5.61291C14.8267 5.86671 14.6741 6.2214 14.6783 6.5861C14.6834 7.02808 14.6581 7.49773 14.4422 7.93701C13.8291 9.18236 12.3431 9.05405 12.2801 9.04796C12.1921 9.03944 12.1251 8.96568 12.1251 8.87745L12.1252 8.29925C12.1252 8.09933 12.1793 7.90302 12.2818 7.73131C12.6149 7.17154 12.7871 6.52844 12.779 5.87149C12.7553 3.92639 11.1617 2.35645 9.21987 2.35645C9.20862 2.35642 9.19758 2.35652 9.18628 2.35661C7.2424 2.37468 5.66101 3.97134 5.66101 5.91572C5.66106 6.55546 5.83255 7.18254 6.15699 7.72909ZM10.5262 7.11076C10.4816 7.11076 10.4373 7.09366 10.4037 7.05943C10.3377 6.99187 10.3386 6.88342 10.4061 6.81722C11.1462 6.09209 11.1545 4.83239 11.1545 4.81976C11.1545 4.72511 11.2312 4.64847 11.3258 4.64847C11.4204 4.64843 11.4971 4.72516 11.4971 4.81976C11.4971 4.87719 11.4876 6.23712 10.646 7.06186C10.6128 7.0945 10.5693 7.11081 10.5262 7.11076ZM7.91415 7.11076C7.87071 7.11082 7.8276 7.09454 7.7943 7.06186C6.95248 6.23708 6.94293 4.87723 6.94293 4.81975C6.94299 4.72511 7.01966 4.64847 7.11421 4.64847C7.20881 4.64843 7.28549 4.72514 7.28549 4.8197C7.28555 4.83792 7.29829 6.0961 8.03397 6.81722C8.10148 6.88341 8.10266 6.99187 8.03635 7.05943C8.0028 7.09363 7.95844 7.11081 7.91415 7.11076ZM9.22018 6.15083C9.12536 6.15083 9.04888 6.0742 9.04888 5.9796L9.04889 3.65988C9.04889 3.56528 9.12531 3.48864 9.22017 3.48864C9.31478 3.48859 9.39145 3.56532 9.39145 3.65991L9.39146 5.97955C9.39146 6.07416 9.31473 6.15085 9.22018 6.15083Z"
|
|
80
|
+
fill="#7049B9"
|
|
81
|
+
/>
|
|
82
|
+
</svg>
|
|
83
|
+
),
|
|
84
|
+
title: 'Kraken',
|
|
85
|
+
},
|
|
86
|
+
bittrex: {
|
|
87
|
+
icon: () => (
|
|
88
|
+
<svg
|
|
89
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
90
|
+
width="42"
|
|
91
|
+
height="39"
|
|
92
|
+
viewBox="0 0 42 39"
|
|
93
|
+
fill="none">
|
|
94
|
+
<g filter="url(#filter0_d_910_8539)">
|
|
95
|
+
<circle cx="21.2202" cy="17" r="12.5" fill="white" />
|
|
96
|
+
</g>
|
|
97
|
+
<rect
|
|
98
|
+
x="18.8457"
|
|
99
|
+
y="10.25"
|
|
100
|
+
width="9.125"
|
|
101
|
+
height="9.46774"
|
|
102
|
+
rx="1.25"
|
|
103
|
+
stroke="#1B7BD5"
|
|
104
|
+
strokeWidth="1.5"
|
|
105
|
+
/>
|
|
106
|
+
<rect
|
|
107
|
+
x="15.3037"
|
|
108
|
+
y="13.4492"
|
|
109
|
+
width="9.125"
|
|
110
|
+
height="9.46774"
|
|
111
|
+
rx="1.25"
|
|
112
|
+
stroke="#1B7BD5"
|
|
113
|
+
strokeWidth="1.5"
|
|
114
|
+
/>
|
|
115
|
+
<defs>
|
|
116
|
+
<filter
|
|
117
|
+
id="filter0_d_910_8539"
|
|
118
|
+
x="0.720215"
|
|
119
|
+
y="0.5"
|
|
120
|
+
width="41"
|
|
121
|
+
height="41"
|
|
122
|
+
filterUnits="userSpaceOnUse"
|
|
123
|
+
colorInterpolationFilters="sRGB">
|
|
124
|
+
<feFlood floodOpacity="0" result="BackgroundImageFix" />
|
|
125
|
+
<feColorMatrix
|
|
126
|
+
in="SourceAlpha"
|
|
127
|
+
type="matrix"
|
|
128
|
+
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
|
129
|
+
result="hardAlpha"
|
|
130
|
+
/>
|
|
131
|
+
<feOffset dy="4" />
|
|
132
|
+
<feGaussianBlur stdDeviation="4" />
|
|
133
|
+
<feComposite in2="hardAlpha" operator="out" />
|
|
134
|
+
<feColorMatrix
|
|
135
|
+
type="matrix"
|
|
136
|
+
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"
|
|
137
|
+
/>
|
|
138
|
+
<feBlend
|
|
139
|
+
mode="normal"
|
|
140
|
+
in2="BackgroundImageFix"
|
|
141
|
+
result="effect1_dropShadow_910_8539"
|
|
142
|
+
/>
|
|
143
|
+
<feBlend
|
|
144
|
+
mode="normal"
|
|
145
|
+
in="SourceGraphic"
|
|
146
|
+
in2="effect1_dropShadow_910_8539"
|
|
147
|
+
result="shape"
|
|
148
|
+
/>
|
|
149
|
+
</filter>
|
|
150
|
+
</defs>
|
|
151
|
+
</svg>
|
|
152
|
+
),
|
|
153
|
+
title: 'Bittrex',
|
|
154
|
+
},
|
|
155
|
+
};
|
|
156
|
+
|
|
157
|
+
export type ExchangeIconsType = typeof exchangeIcons;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { Exchange } from './Exchange';
|
|
1
|
+
export { Exchange } from './Exchange';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export type ExchangeType = 'binance' | 'kraken' | 'bittrex';
|
|
2
|
-
|
|
3
|
-
export interface ExchangeProps {
|
|
4
|
-
exchangeType: ExchangeType;
|
|
5
|
-
showTitle?: boolean;
|
|
6
|
-
}
|
|
1
|
+
export type ExchangeType = 'binance' | 'kraken' | 'bittrex';
|
|
2
|
+
|
|
3
|
+
export interface ExchangeProps {
|
|
4
|
+
exchangeType: ExchangeType;
|
|
5
|
+
showTitle?: boolean;
|
|
6
|
+
}
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
import { useTheme } from '@emotion/react';
|
|
2
|
-
import { Icon, Wrapper } from '@ssa-ui-kit/core';
|
|
3
|
-
import * as Types from '@components/BotsTable/types';
|
|
4
|
-
|
|
5
|
-
export const PNL = ({ amount, currency, isIncreasing }: Types.PNL) => {
|
|
6
|
-
const theme = useTheme();
|
|
7
|
-
return (
|
|
8
|
-
<Wrapper>
|
|
9
|
-
<div
|
|
10
|
-
css={{
|
|
11
|
-
width: 75,
|
|
12
|
-
textAlign: 'right',
|
|
13
|
-
marginRight: 5,
|
|
14
|
-
}}>
|
|
15
|
-
{isIncreasing ? '+' : '-'}
|
|
16
|
-
{amount}
|
|
17
|
-
|
|
18
|
-
{currency}
|
|
19
|
-
</div>
|
|
20
|
-
<Icon
|
|
21
|
-
name={`${isIncreasing ? 'arrow-up' : 'arrow-down'}`}
|
|
22
|
-
size={13}
|
|
23
|
-
color={isIncreasing ? theme.colors.green : theme.colors.pink}
|
|
24
|
-
/>
|
|
25
|
-
</Wrapper>
|
|
26
|
-
);
|
|
27
|
-
};
|
|
1
|
+
import { useTheme } from '@emotion/react';
|
|
2
|
+
import { Icon, Wrapper } from '@ssa-ui-kit/core';
|
|
3
|
+
import * as Types from '@components/BotsTable/types';
|
|
4
|
+
|
|
5
|
+
export const PNL = ({ amount, currency, isIncreasing }: Types.PNL) => {
|
|
6
|
+
const theme = useTheme();
|
|
7
|
+
return (
|
|
8
|
+
<Wrapper>
|
|
9
|
+
<div
|
|
10
|
+
css={{
|
|
11
|
+
width: 75,
|
|
12
|
+
textAlign: 'right',
|
|
13
|
+
marginRight: 5,
|
|
14
|
+
}}>
|
|
15
|
+
{isIncreasing ? '+' : '-'}
|
|
16
|
+
{amount}
|
|
17
|
+
|
|
18
|
+
{currency}
|
|
19
|
+
</div>
|
|
20
|
+
<Icon
|
|
21
|
+
name={`${isIncreasing ? 'arrow-up' : 'arrow-down'}`}
|
|
22
|
+
size={13}
|
|
23
|
+
color={isIncreasing ? theme.colors.green : theme.colors.pink}
|
|
24
|
+
/>
|
|
25
|
+
</Wrapper>
|
|
26
|
+
);
|
|
27
|
+
};
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import { useTheme } from '@emotion/react';
|
|
2
|
-
import { Icon, Wrapper } from '@ssa-ui-kit/core';
|
|
3
|
-
import * as Types from '@components/BotsTable/types';
|
|
4
|
-
|
|
5
|
-
export const ROI = ({ amount, isIncreasing }: Types.ROI) => {
|
|
6
|
-
const theme = useTheme();
|
|
7
|
-
return (
|
|
8
|
-
<Wrapper>
|
|
9
|
-
<div
|
|
10
|
-
css={{
|
|
11
|
-
width: 35,
|
|
12
|
-
textAlign: 'right',
|
|
13
|
-
marginRight: 5,
|
|
14
|
-
}}>
|
|
15
|
-
{isIncreasing ? '+' : '-'}
|
|
16
|
-
{amount}%
|
|
17
|
-
</div>
|
|
18
|
-
<Icon
|
|
19
|
-
name={`${isIncreasing ? 'arrow-up' : 'arrow-down'}`}
|
|
20
|
-
size={13}
|
|
21
|
-
color={isIncreasing ? theme.colors.green : theme.colors.pink}
|
|
22
|
-
/>
|
|
23
|
-
</Wrapper>
|
|
24
|
-
);
|
|
25
|
-
};
|
|
1
|
+
import { useTheme } from '@emotion/react';
|
|
2
|
+
import { Icon, Wrapper } from '@ssa-ui-kit/core';
|
|
3
|
+
import * as Types from '@components/BotsTable/types';
|
|
4
|
+
|
|
5
|
+
export const ROI = ({ amount, isIncreasing }: Types.ROI) => {
|
|
6
|
+
const theme = useTheme();
|
|
7
|
+
return (
|
|
8
|
+
<Wrapper>
|
|
9
|
+
<div
|
|
10
|
+
css={{
|
|
11
|
+
width: 35,
|
|
12
|
+
textAlign: 'right',
|
|
13
|
+
marginRight: 5,
|
|
14
|
+
}}>
|
|
15
|
+
{isIncreasing ? '+' : '-'}
|
|
16
|
+
{amount}%
|
|
17
|
+
</div>
|
|
18
|
+
<Icon
|
|
19
|
+
name={`${isIncreasing ? 'arrow-up' : 'arrow-down'}`}
|
|
20
|
+
size={13}
|
|
21
|
+
color={isIncreasing ? theme.colors.green : theme.colors.pink}
|
|
22
|
+
/>
|
|
23
|
+
</Wrapper>
|
|
24
|
+
);
|
|
25
|
+
};
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import { Tag } from '@ssa-ui-kit/core';
|
|
2
|
-
|
|
3
|
-
export const TableTag = ({
|
|
4
|
-
children,
|
|
5
|
-
color,
|
|
6
|
-
}: {
|
|
7
|
-
children: string;
|
|
8
|
-
color: string;
|
|
9
|
-
}) => (
|
|
10
|
-
<Tag
|
|
11
|
-
color={color}
|
|
12
|
-
css={{
|
|
13
|
-
borderRadius: 25,
|
|
14
|
-
border: 'none',
|
|
15
|
-
boxShadow: 'none',
|
|
16
|
-
height: 22,
|
|
17
|
-
padding: '1px 12px',
|
|
18
|
-
fontSize: 14,
|
|
19
|
-
}}>
|
|
20
|
-
{children}
|
|
21
|
-
</Tag>
|
|
22
|
-
);
|
|
1
|
+
import { Tag } from '@ssa-ui-kit/core';
|
|
2
|
+
|
|
3
|
+
export const TableTag = ({
|
|
4
|
+
children,
|
|
5
|
+
color,
|
|
6
|
+
}: {
|
|
7
|
+
children: string;
|
|
8
|
+
color: string;
|
|
9
|
+
}) => (
|
|
10
|
+
<Tag
|
|
11
|
+
color={color}
|
|
12
|
+
css={{
|
|
13
|
+
borderRadius: 25,
|
|
14
|
+
border: 'none',
|
|
15
|
+
boxShadow: 'none',
|
|
16
|
+
height: 22,
|
|
17
|
+
padding: '1px 12px',
|
|
18
|
+
fontSize: 14,
|
|
19
|
+
}}>
|
|
20
|
+
{children}
|
|
21
|
+
</Tag>
|
|
22
|
+
);
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { TradeProps } from './types';
|
|
2
|
-
import { tradeStatuses } from './consts';
|
|
3
|
-
import { TableTag } from '../TableTag';
|
|
4
|
-
|
|
5
|
-
export const Trade = ({ tradeType }: TradeProps) => {
|
|
6
|
-
const { color, title } = tradeStatuses[tradeType];
|
|
7
|
-
return <TableTag color={color}>{title}</TableTag>;
|
|
8
|
-
};
|
|
1
|
+
import { TradeProps } from './types';
|
|
2
|
+
import { tradeStatuses } from './consts';
|
|
3
|
+
import { TableTag } from '../TableTag';
|
|
4
|
+
|
|
5
|
+
export const Trade = ({ tradeType }: TradeProps) => {
|
|
6
|
+
const { color, title } = tradeStatuses[tradeType];
|
|
7
|
+
return <TableTag color={color}>{title}</TableTag>;
|
|
8
|
+
};
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
export const tradeStatuses = {
|
|
2
|
-
trade: {
|
|
3
|
-
title: 'Trade',
|
|
4
|
-
color: 'green',
|
|
5
|
-
},
|
|
6
|
-
liquidation: {
|
|
7
|
-
title: 'Liquidation',
|
|
8
|
-
color: 'pink',
|
|
9
|
-
},
|
|
10
|
-
pending: {
|
|
11
|
-
title: 'Pending',
|
|
12
|
-
color: 'yellowWarm',
|
|
13
|
-
},
|
|
14
|
-
};
|
|
1
|
+
export const tradeStatuses = {
|
|
2
|
+
trade: {
|
|
3
|
+
title: 'Trade',
|
|
4
|
+
color: 'green',
|
|
5
|
+
},
|
|
6
|
+
liquidation: {
|
|
7
|
+
title: 'Liquidation',
|
|
8
|
+
color: 'pink',
|
|
9
|
+
},
|
|
10
|
+
pending: {
|
|
11
|
+
title: 'Pending',
|
|
12
|
+
color: 'yellowWarm',
|
|
13
|
+
},
|
|
14
|
+
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { Trade } from './Trade';
|
|
1
|
+
export { Trade } from './Trade';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export type TradeType = 'trade' | 'liquidation' | 'pending';
|
|
2
|
-
|
|
3
|
-
export interface TradeProps {
|
|
4
|
-
tradeType: TradeType;
|
|
5
|
-
}
|
|
1
|
+
export type TradeType = 'trade' | 'liquidation' | 'pending';
|
|
2
|
+
|
|
3
|
+
export interface TradeProps {
|
|
4
|
+
tradeType: TradeType;
|
|
5
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from './Exchange';
|
|
2
|
-
export * from './Trade';
|
|
3
|
-
export * from './PNL';
|
|
4
|
-
export * from './ROI';
|
|
5
|
-
export * from './TableTag';
|
|
6
|
-
export * from './Actions';
|
|
1
|
+
export * from './Exchange';
|
|
2
|
+
export * from './Trade';
|
|
3
|
+
export * from './PNL';
|
|
4
|
+
export * from './ROI';
|
|
5
|
+
export * from './TableTag';
|
|
6
|
+
export * from './Actions';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './components';
|
|
1
|
+
export * from './components';
|