diff --git a/src/renderer/entities/wallet/ui/Cards/WalletCardLg.tsx b/src/renderer/entities/wallet/ui/Cards/WalletCardLg.tsx
index 6ee62c916..e8ca0d375 100644
--- a/src/renderer/entities/wallet/ui/Cards/WalletCardLg.tsx
+++ b/src/renderer/entities/wallet/ui/Cards/WalletCardLg.tsx
@@ -3,7 +3,7 @@ import { type ReactNode } from 'react';
import { type Wallet } from '@/shared/core';
import { useI18n } from '@/shared/i18n';
import { cnTw } from '@/shared/lib/utils';
-import { FootnoteText, StatusLabel } from '@/shared/ui';
+import { BodyText, FootnoteText, StatusLabel } from '@/shared/ui';
import { walletUtils } from '../../lib/wallet-utils';
import { WalletIcon } from '../WalletIcon/WalletIcon';
@@ -33,7 +33,7 @@ export const WalletCardLg = ({ wallet, description, full, className }: Props) =>
)}
-
{wallet.name}
+
{wallet.name}
{typeof description === 'string' ? (
{description}
) : (
diff --git a/src/renderer/entities/wallet/ui/Cards/WalletCardMd.tsx b/src/renderer/entities/wallet/ui/Cards/WalletCardMd.tsx
index a1d2d0dae..cee06e2f0 100644
--- a/src/renderer/entities/wallet/ui/Cards/WalletCardMd.tsx
+++ b/src/renderer/entities/wallet/ui/Cards/WalletCardMd.tsx
@@ -1,8 +1,8 @@
-import { type MouseEvent, type ReactNode } from 'react';
+import { type MouseEvent, type PropsWithChildren, type ReactNode } from 'react';
import { type Wallet } from '@/shared/core';
-import { cnTw } from '@/shared/lib/utils';
-import { FootnoteText, IconButton } from '@/shared/ui';
+import { cnTw, nonNullable, nullable } from '@/shared/lib/utils';
+import { BodyText, FootnoteText } from '@/shared/ui';
import { walletUtils } from '../../lib/wallet-utils';
import { WalletIcon } from '../WalletIcon/WalletIcon';
@@ -11,12 +11,17 @@ type Props = {
description?: string | ReactNode;
prefix?: ReactNode;
hideIcon?: boolean;
- className?: string;
onClick?: () => void;
- onInfoClick?: () => void;
};
-export const WalletCardMd = ({ wallet, description, prefix, hideIcon, className, onClick, onInfoClick }: Props) => {
+export const WalletCardMd = ({
+ wallet,
+ description,
+ prefix,
+ hideIcon,
+ children,
+ onClick,
+}: PropsWithChildren
) => {
const isWalletConnect = walletUtils.isWalletConnectGroup(wallet);
const handleClick = (fn?: () => void) => {
@@ -33,19 +38,28 @@ export const WalletCardMd = ({ wallet, description, prefix, hideIcon, className,
className={cnTw(
'group relative flex w-full items-center rounded transition-colors',
'focus-within:bg-action-background-hover hover:bg-action-background-hover',
- className,
)}
>