@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
11 lines • 471 B
TypeScript
import * as React from 'react';
export interface CardActionsProps extends React.HTMLProps<HTMLDivElement> {
/** Content rendered inside the Card Action */
children?: React.ReactNode;
/** Additional classes added to the Action */
className?: string;
/** Flag indicating that the actions have no offset */
hasNoOffset?: boolean;
}
export declare const CardActions: React.FunctionComponent<CardActionsProps>;
//# sourceMappingURL=CardActions.d.ts.map