import * as React from 'react'; import { css } from '@patternfly/react-styles'; import styles from '@patternfly/react-styles/css/components/Card/card'; export interface CardActionsProps extends React.HTMLProps { /** 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 const CardActions: React.FunctionComponent = ({ children, className, hasNoOffset = false, ...props }: CardActionsProps) => (
{children}
); CardActions.displayName = 'CardActions';