import { ReactNode } from 'react'; import { Icon, Text, Column } from '@umami/react-zen'; import { Icons } from '@/components/icons'; export interface EmptyPlaceholderProps { message?: string; children?: ReactNode; } export function EmptyPlaceholder({ message, children }: EmptyPlaceholderProps) { return ( {message}
{children}
); }