@ant-design/x
Version:
Craft AI-driven interfaces effortlessly
9 lines (8 loc) • 361 B
TypeScript
import React from 'react';
import { ActionsProps } from '.';
import { ActionItem, ItemType } from './interface';
export declare const findItem: (keyPath: string[], items: ActionItem[]) => ActionItem | null;
declare const ActionMenu: (props: {
item: ItemType;
} & Pick<ActionsProps, 'prefixCls' | 'onClick'>) => React.JSX.Element;
export default ActionMenu;