import { Empty, Typography } from 'antd'; import React from 'react'; type EmptyListPlaceholderProps = { imageSrc?: string; imageHeight?: number; text: string; }; const EmptyListPlaceholder = ({ imageSrc = 'https://s3.us-west-2.amazonaws.com/worklenz.com/assets/empty-box.webp', imageHeight = 60, text, }: EmptyListPlaceholderProps) => { return ( {text}} /> ); }; export default EmptyListPlaceholder;