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