import type { ReactNode } from 'react' import { cn } from '@evobgp/ui/lib/utils' interface EmptyStateProps { title: string description?: string icon?: ReactNode action?: ReactNode className?: string } export function EmptyState({ title, description, icon, action, className }: EmptyStateProps) { return (
{icon ?
{icon}
: null}

{title}

{description ?

{description}

: null}
{action ?
{action}
: null}
) }