UNPKG

@ansible/ansible-ui-framework

Version:

A framework for building applications using PatternFly.

9 lines (8 loc) 403 B
import { ComponentClass, FunctionComponent } from 'react'; import { IPageActionSwitch, IPageActionSwitchSingle } from './PageAction'; export declare function PageActionSwitch<T extends object>(props: { action: IPageActionSwitch | IPageActionSwitchSingle<T>; wrapper?: ComponentClass | FunctionComponent; selectedItem?: T; iconOnly?: boolean; }): import("react/jsx-runtime").JSX.Element;