import * as React from 'react'; import styles from '@patternfly/react-styles/css/components/Masthead/masthead'; import { css } from '@patternfly/react-styles'; export interface MastheadContentProps extends React.DetailedHTMLProps, HTMLDivElement> { /** Content rendered inside of the masthead content block. */ children?: React.ReactNode; /** Additional classes added to the masthead content. */ className?: string; } export const MastheadContent: React.FunctionComponent = ({ children, className, ...props }: MastheadContentProps) => (
{children}
); MastheadContent.displayName = 'MastheadContent';