export default function EmptyState({ icon: Icon, title, hint }) { return (
{Icon && ( )}

{title}

{hint && {hint}}
); }