@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
13 lines • 603 B
TypeScript
/// <reference types="react" />
export interface ActionListProps extends React.HTMLProps<HTMLDivElement> {
/** Children of the action list */
children?: React.ReactNode;
/** Flag indicating the action list contains multiple icons and item padding should be removed */
isIconList?: boolean;
/** Additional classes added to the action list */
className?: string;
/** @beta Whether the layout of children is vertical or horizontal. */
isVertical?: boolean;
}
export declare const ActionList: React.FunctionComponent<ActionListProps>;
//# sourceMappingURL=ActionList.d.ts.map