diff --git a/desktop/flipper-plugin/src/ui/NUX.tsx b/desktop/flipper-plugin/src/ui/NUX.tsx index 1c20613a44a..3315e7e2095 100644 --- a/desktop/flipper-plugin/src/ui/NUX.tsx +++ b/desktop/flipper-plugin/src/ui/NUX.tsx @@ -163,16 +163,27 @@ const UnanimatedBadge = styled(Badge)(({count}) => ({ }, })); -const Pulse = styled.div({ - cursor: 'pointer', - background: theme.warningColor, - opacity: 0.6, - borderRadius: 20, - height: 12, - width: 12, - ':hover': { - opacity: `1 !important`, - background: theme.errorColor, - animationPlayState: 'paused', - }, -}); +const Pulse = (props: object & {style?: React.CSSProperties}) => ( +
+
+
+);