import { Column, Icon, Text } from '@umami/react-zen'; import type { ReactNode } from 'react'; export interface EmptyPlaceholderProps { title?: string; description?: string; icon?: ReactNode; children?: ReactNode; } export function EmptyPlaceholder({ title, description, icon, children }: EmptyPlaceholderProps) { return ( {icon && ( {icon} )} {title && ( {title} )} {description && {description}} {children} ); }