import NoDataFound from "../../public/assets/no_data_found_illustrator.svg"; import { t } from "@/utils"; import CustomImage from "../Common/CustomImage"; const NoData = ({ name }) => { return (

{t("no")} {name} {t("found")}

{t("sorryTryAnotherWay")}

); }; export default NoData;