mirror of
https://github.com/docmost/docmost.git
synced 2026-07-25 11:04:42 +10:00
18 lines
488 B
TypeScript
18 lines
488 B
TypeScript
import { IconInfoCircle } from "@tabler/icons-react";
|
|
import { useTranslation } from "react-i18next";
|
|
import classes from "./transclusion.module.css";
|
|
|
|
export default function NotFoundPlaceholder() {
|
|
const { t } = useTranslation();
|
|
return (
|
|
<div className={classes.placeholder}>
|
|
<IconInfoCircle
|
|
size={18}
|
|
stroke={1.6}
|
|
className={classes.placeholderIcon}
|
|
/>
|
|
<span>{t("The original synced block no longer exists")}</span>
|
|
</div>
|
|
);
|
|
}
|