import { ReactNode } from 'react'; import { Icon, Text, Flexbox } from 'react-basics'; import Logo from 'assets/logo.svg'; export interface EmptyPlaceholderProps { message?: string; children?: ReactNode; } export function EmptyPlaceholder({ message, children }: EmptyPlaceholderProps) { return ( {message}
{children}
); } export default EmptyPlaceholder;