@lobehub/editor
Version:
A powerful and extensible rich text editor built on Meta's Lexical framework, providing a modern editing experience with React integration.
11 lines (10 loc) • 311 B
TypeScript
import { LexicalEditor } from 'lexical';
import { type FC } from 'react';
import { HorizontalRuleNode } from '../../node/HorizontalRuleNode';
interface HRNodeProps {
className?: string;
editor: LexicalEditor;
node: HorizontalRuleNode;
}
declare const HRNode: FC<HRNodeProps>;
export default HRNode;