@ansible/ansible-ui-framework
Version:
A framework for building applications using PatternFly.
12 lines (11 loc) • 620 B
TypeScript
import { ComponentClass, FunctionComponent } from 'react';
import { IPageActionButton, IPageActionButtonMultiple, IPageActionButtonSingle, IPageActionLink, IPageActionLinkSingle } from './PageAction';
export declare function PageActionButton<T extends object>(props: {
action: IPageActionButton | IPageActionButtonSingle<T> | IPageActionButtonMultiple<T> | IPageActionLink | IPageActionLinkSingle<T>;
isSecondary?: boolean;
wrapper?: ComponentClass | FunctionComponent;
iconOnly?: boolean;
selectedItem?: T;
selectedItems?: T[];
isLink?: boolean;
}): import("react/jsx-runtime").JSX.Element;