import "./EmptyState.css"; export function EmptyState({ icon = null, title, description, action = null }) { return (
{icon &&
{icon}
}

{title}

{description &&

{description}

} {action &&
{action}
}
); }