import { Placeholder } from '@/entities/placeholder'; import MessagePlaceholderSVG from '@/shared/assets/images/placeholders/mailboxMessage.svg?react'; import styles from './MessagesPlaceholder.module.scss'; type Props = { isEmpty: boolean; }; const MessagesPlaceholder = ({ isEmpty }: Props) => (
} title="There are no messages yet" description="Your mailbox is currently empty" isEmpty={isEmpty} blocksCount={3} />
); export { MessagesPlaceholder };