import type { ReactNode } from 'react' import type { IconComponent } from './Icons' interface EmptyStateProps { Icon: IconComponent title: string description?: string action?: ReactNode } export function EmptyState({ Icon, title, description, action }: EmptyStateProps) { return (

{title}

{description && (

{description}

)} {action}
) }