@lobehub/editor
Version:
A powerful and extensible rich text editor built on Meta's Lexical framework, providing a modern editing experience with React integration.
16 lines (15 loc) • 414 B
TypeScript
import type { CSSProperties, ReactNode, Ref } from 'react';
import { FlexboxProps } from 'react-layout-kit';
export interface ChatInputProps extends FlexboxProps {
classNames?: {
body?: string;
};
footer?: ReactNode;
fullscreen?: boolean;
header?: ReactNode;
maxHeight?: string | number;
slashMenuRef?: Ref<HTMLDivElement>;
styles?: {
body?: CSSProperties;
};
}