import { InfoIcon } from "@lume/icons"; import { cn } from "@lume/utils"; import { useTranslation } from "react-i18next"; export function EmptyFeed({ text, subtext, className, }: { text?: string; subtext?: string; className?: string; }) { const { t } = useTranslation(); return (

{text ? text : t("global.emptyFeedTitle")}

{subtext ? subtext : t("global.emptyFeedSubtitle")}

); }