@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) • 320 B
TypeScript
import { type FC } from 'react';
import type { FloatActionsItem, FloatActionsProps } from '../type';
interface ActionRenderProps {
disabled?: boolean;
item: FloatActionsItem;
onActionClick: FloatActionsProps['onActionClick'];
}
declare const ActionRender: FC<ActionRenderProps>;
export default ActionRender;