import * as React from 'react'; import { css } from '@patternfly/react-styles'; import styles from '@patternfly/react-styles/css/components/EmptyState/empty-state'; export interface EmptyStateActionsProps extends React.HTMLProps { /** Content rendered inside the empty state actions */ children?: React.ReactNode; /** Additional classes added to the empty state actions */ className?: string; } export const EmptyStateActions: React.FunctionComponent = ({ children, className, ...props }: EmptyStateActionsProps) => (
{children}
); EmptyStateActions.displayName = 'EmptyStateActions';