UNPKG

@lobehub/editor

Version:

A powerful and extensible rich text editor built on Meta's Lexical framework, providing a modern editing experience with React integration.

15 lines 496 B
import { useTranslation } from "../../../../editor-kernel/react/useTranslation"; import { imageBroken } from "../style"; import { styles } from "./style"; import { jsx as _jsx } from "react/jsx-runtime"; var BrokenImage = function BrokenImage() { var t = useTranslation(); return /*#__PURE__*/_jsx("img", { alt: t('image.broken'), className: styles.brokenImage, draggable: "false", src: imageBroken }); }; BrokenImage.displayName = 'BrokenImage'; export default BrokenImage;