"use client"; import { Inbox } from "lucide-react"; export default function Empty({ title = "چیزی پیدا نشد", hint, }: { title?: string; hint?: string; }) { return (
{title}
{hint &&
{hint}
}
); }