import * as React from 'react'; import styles from '@breakaway/react-styles/css/components/Masthead/masthead'; import { css } from '@breakaway/react-styles'; export interface MastheadBrandProps extends React.DetailedHTMLProps, HTMLAnchorElement> { /** Content rendered inside of the masthead brand. */ children?: React.ReactNode; /** Additional classes added to the masthead brand. */ className?: string; /** Component type of the masthead brand. */ component?: React.ElementType | React.ComponentType; } export const MastheadBrand: React.FunctionComponent = ({ children, className, component = 'a', ...props }: MastheadBrandProps) => { const Component = component as any; return ( {children} ); }; MastheadBrand.displayName = 'MastheadBrand';