From bbfe3b133896611aee9b8f0047695dd96c7d61dd Mon Sep 17 00:00:00 2001 From: Julio Sgarbi Date: Tue, 27 Feb 2024 12:00:56 -0300 Subject: [PATCH] feat: LEAP-572: Implement interface indicator for expired plans --- src/components/Common/SDKButtons.js | 23 +++++++++++++++---- .../DataManager/Toolbar/instruments.js | 21 ++++++++++++----- src/utils/feature-flags.js | 6 +++++ 3 files changed, 39 insertions(+), 11 deletions(-) diff --git a/src/components/Common/SDKButtons.js b/src/components/Common/SDKButtons.js index 356f4223..4555898d 100644 --- a/src/components/Common/SDKButtons.js +++ b/src/components/Common/SDKButtons.js @@ -1,17 +1,30 @@ import React from "react"; import { useSDK } from "../../providers/SDKProvider"; import { Button } from "./Button/Button"; +import { Block } from "../../utils/bem"; +import { Tooltip } from "./Tooltip/Tooltip"; const SDKButton = ({ eventName, ...props }) => { const sdk = useSDK(); return sdk.hasHandler(eventName) ? ( -