import { Typography } from '@mui/material'; import type { PropsWithChildren, ReactNode } from 'react'; import { EmptyContainer, IconContainer } from './SendToWalletPage.style.js'; interface EmptyListIndicatorProps extends PropsWithChildren { icon: ReactNode; } export const EmptyListIndicator = ({ icon, children, }: EmptyListIndicatorProps) => ( {icon} {children} );