@lobehub/editor
Version:
A powerful and extensible rich text editor built on Meta's Lexical framework, providing a modern editing experience with React integration.
10 lines (9 loc) • 334 B
TypeScript
import { type FC } from 'react';
import type { ChatInputActionItem, ChatInputActionsProps } from '../type';
interface ActionRenderProps {
disabled?: boolean;
item: ChatInputActionItem;
onActionClick: ChatInputActionsProps['onActionClick'];
}
declare const ActionRender: FC<ActionRenderProps>;
export default ActionRender;