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.

13 lines (12 loc) 434 B
import { type FC } from 'react'; import type { FloatActionsItem, FloatActionsProps } from '../type'; interface FloatActionsItemProps { disabled?: boolean; gap?: string | number; groupCollapsed?: boolean; item: FloatActionsItem; onActionClick: FloatActionsProps['onActionClick']; setGroupCollapsed?: (collapse: boolean) => void; } declare const ActionItem: FC<FloatActionsItemProps>; export default ActionItem;