import { Leaf } from "lucide-react"; import { Icon } from "./ui/Icon"; export function EmptyState({ message, hint, }: { message: string; hint?: string; }) { return (
{message}
{hint && (
{hint}
)}
); }