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