+ Connect your wallet to view staking stats
+
+ );
+};
diff --git a/features/rewards/features/top-card/styles.tsx b/features/rewards/features/top-card/styles.tsx
new file mode 100644
index 000000000..3e0c460ea
--- /dev/null
+++ b/features/rewards/features/top-card/styles.tsx
@@ -0,0 +1,28 @@
+import styled, { css } from 'styled-components';
+import { WalletCardStyle } from 'shared/wallet/card/styles';
+
+export const WalletStyle = styled(WalletCardStyle)`
+ background: linear-gradient(
+ 52.01deg,
+ #37394a 0%,
+ #363749 0.01%,
+ #40504f 100%
+ );
+ padding: 0 0 24px 0;
+`;
+
+export const ConnectWalletStyle = styled(WalletCardStyle)`
+ padding: 27px 27px 47px 27px;
+ text-align: center;
+
+ ${({ theme }) =>
+ theme.name === 'dark'
+ ? css`
+ color: var(--lido-color-text);
+ background: linear-gradient(48.34deg, #46464f -5.55%, #3b3b47 100%);
+ `
+ : css`
+ color: var(--lido-color-secondary);
+ background: linear-gradient(48.34deg, #d2ddff -5.55%, #e6e6e6 100%);
+ `}
+`;
diff --git a/features/rewards/features/top-card/top-card.tsx b/features/rewards/features/top-card/top-card.tsx
index 3f2ee2b8c..16bd62508 100644
--- a/features/rewards/features/top-card/top-card.tsx
+++ b/features/rewards/features/top-card/top-card.tsx
@@ -1,41 +1,17 @@
import { FC } from 'react';
-import { Block, ThemeProvider, themeDark } from '@lidofinance/lido-ui';
-import { InputDescription } from 'features/rewards/components/inputDescription';
-import { AddressInput } from 'features/rewards/components/addressInput';
+
import { StatsWrapper } from 'features/rewards/components/statsWrapper';
import { Stats } from 'features/rewards/components/stats';
-import { InputWrapper } from 'features/rewards/components/inputWrapper';
-import { useRewardsHistory } from 'features/rewards/hooks';
-const INPUT_DESC_TEXT =
- 'Current balance may differ from last balance in the table due to rounding.';
+import { Wallet } from './wallet';
export const TopCard: FC = () => {
- const {
- address,
- addressError,
- isAddressResolving,
- inputValue,
- setInputValue,
- } = useRewardsHistory();
-
return (
-