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