import { Button } from "@/components/ui/button"; import { t } from "@/utils"; import { MdArrowBack } from "react-icons/md"; const NoChatFound = ({ handleBack, isLargeScreen }) => { return (
{t("noChatFound")}

{t("startConversation")}

{!isLargeScreen && ( )}
); }; export default NoChatFound;